update angualr to fix bug in 12.2.0

This commit is contained in:
Matt Hill
2021-09-07 18:17:27 -06:00
parent 369676cdc5
commit 690fa82ee9
9 changed files with 1608 additions and 1401 deletions

2933
ui/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -12,44 +12,43 @@
"lint": "ng lint" "lint": "ng lint"
}, },
"dependencies": { "dependencies": {
"@angular/common": "12.2.0", "@angular/common": "^12.2.4",
"@angular/core": "12.2.0", "@angular/core": "^12.2.4",
"@angular/forms": "12.2.0", "@angular/forms": "^12.2.4",
"@angular/platform-browser": "12.2.0", "@angular/platform-browser": "^12.2.4",
"@angular/platform-browser-dynamic": "12.2.0", "@angular/platform-browser-dynamic": "^12.2.4",
"@angular/router": "12.2.0", "@angular/router": "^12.2.4",
"@ionic/angular": "5.6.13", "@ionic/angular": "^5.7.0",
"@ionic/storage-angular": "3.0.6", "@ionic/storage-angular": "^3.0.6",
"@start9labs/emver": "0.1.5", "@start9labs/emver": "0.1.5",
"ajv": "6.12.6", "ajv": "^6.12.6",
"compare-versions": "3.6.0", "core-js": "^3.17.2",
"core-js": "3.16.1", "json-pointer": "^0.6.1",
"json-pointer": "0.6.1", "jsonpointerx": "^1.1.4",
"jsonpointerx": "1.1.3", "marked": "3.0.2",
"marked": "2.1.3",
"mustache": "^4.2.0", "mustache": "^4.2.0",
"ng-qrcode": "^5.0.0", "ng-qrcode": "^5.0.0",
"patch-db-client": "file: ../../../../patch-db/client", "patch-db-client": "file: ../../../../patch-db/client",
"rxjs": "6.6.7", "rxjs": "^6.6.7",
"uuid": "8.3.2", "uuid": "^8.3.2",
"zone.js": "0.11.4" "zone.js": "^0.11.4"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "12.2.0", "@angular-devkit/build-angular": "^12.2.4",
"@angular/cli": "12.2.0", "@angular/cli": "^12.2.4",
"@angular/compiler": "12.2.0", "@angular/compiler": "^12.2.4",
"@angular/compiler-cli": "12.2.0", "@angular/compiler-cli": "^12.2.4",
"@angular/language-service": "12.2.0", "@angular/language-service": "^12.2.4",
"@ionic/angular-toolkit": "4.0.0", "@ionic/angular-toolkit": "^4.0.0",
"@types/json-pointer": "1.0.31", "@types/json-pointer": "^1.0.31",
"@types/marked": "2.0.4", "@types/marked": "^3.0.0",
"@types/mustache": "^4.1.2", "@types/mustache": "^4.1.2",
"@types/node": "16.4.13", "@types/node": "^16.7.13",
"@types/uuid": "8.3.1", "@types/uuid": "^8.3.1",
"node-html-parser": "4.1.3", "node-html-parser": "^4.1.4",
"raw-loader": "^4.0.2", "raw-loader": "^4.0.2",
"ts-node": "10.2.0", "ts-node": "^10.2.0",
"tslint": "6.1.3", "tslint": "^6.1.3",
"typescript": "4.3.5" "typescript": "4.3.5"
} }
} }

View File

@@ -16,7 +16,6 @@ import { FormObjectComponentModule } from 'src/app/components/form-object/form-o
FormObjectComponentModule, FormObjectComponentModule,
ReactiveFormsModule, ReactiveFormsModule,
], ],
entryComponents: [AppConfigPage],
exports: [AppConfigPage], exports: [AppConfigPage],
}) })
export class AppConfigPageModule { } export class AppConfigPageModule { }

View File

@@ -6,15 +6,13 @@ import { BackupConfirmationComponentModule } from '../backup-confirmation/backup
import { SharingModule } from '../../modules/sharing.module' import { SharingModule } from '../../modules/sharing.module'
@NgModule({ @NgModule({
declarations: [AppRestoreComponent],
imports: [ imports: [
CommonModule, CommonModule,
IonicModule, IonicModule,
BackupConfirmationComponentModule, BackupConfirmationComponentModule,
SharingModule, SharingModule,
], ],
declarations: [
AppRestoreComponent,
],
exports: [AppRestoreComponent], exports: [AppRestoreComponent],
}) })

View File

@@ -7,9 +7,7 @@ import { SharingModule } from 'src/app/modules/sharing.module'
import { FormsModule } from '@angular/forms' import { FormsModule } from '@angular/forms'
@NgModule({ @NgModule({
declarations: [ declarations: [BackupConfirmationComponent],
BackupConfirmationComponent,
],
imports: [ imports: [
CommonModule, CommonModule,
IonicModule, IonicModule,

View File

@@ -11,7 +11,6 @@ import { FormsModule } from '@angular/forms'
IonicModule, IonicModule,
FormsModule, FormsModule,
], ],
entryComponents: [EnumListPage],
exports: [EnumListPage], exports: [EnumListPage],
}) })
export class EnumListPageModule { } export class EnumListPageModule { }

View File

@@ -14,7 +14,6 @@ import { FormObjectComponentModule } from 'src/app/components/form-object/form-o
ReactiveFormsModule, ReactiveFormsModule,
FormObjectComponentModule, FormObjectComponentModule,
], ],
entryComponents: [GenericFormPage],
exports: [GenericFormPage], exports: [GenericFormPage],
}) })
export class GenericFormPageModule { } export class GenericFormPageModule { }

View File

@@ -5,11 +5,12 @@ import { MarkdownPage } from './markdown.page'
import { SharingModule } from 'src/app/modules/sharing.module' import { SharingModule } from 'src/app/modules/sharing.module'
@NgModule({ @NgModule({
declarations: [MarkdownPage],
imports: [ imports: [
CommonModule, CommonModule,
IonicModule, IonicModule,
SharingModule, SharingModule,
], ],
declarations: [MarkdownPage], exports: [MarkdownPage],
}) })
export class MarkdownPageModule { } export class MarkdownPageModule { }

View File

@@ -6,12 +6,13 @@ import { SharingModule } from 'src/app/modules/sharing.module'
import { FormsModule } from '@angular/forms' import { FormsModule } from '@angular/forms'
@NgModule({ @NgModule({
declarations: [OSWelcomePage],
imports: [ imports: [
CommonModule, CommonModule,
IonicModule, IonicModule,
FormsModule, FormsModule,
SharingModule, SharingModule,
], ],
declarations: [OSWelcomePage], exports: [OSWelcomePage],
}) })
export class OSWelcomePageModule { } export class OSWelcomePageModule { }