Compare commits
3 Commits
35b428cef0
...
1e58cf9a94
| Author | SHA1 | Date | |
|---|---|---|---|
|
1e58cf9a94
|
|||
|
a324b0b5b3
|
|||
|
af09103b8e
|
Generated
+2332
-2047
File diff suppressed because it is too large
Load Diff
+18
-18
@@ -13,20 +13,20 @@
|
|||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "^20.0.2",
|
"@angular/animations": "^21.2.11",
|
||||||
"@angular/cdk": "^20.0.2",
|
"@angular/cdk": "^21.2.9",
|
||||||
"@angular/cli": "^20.3.18",
|
"@angular/cli": "^21.2.9",
|
||||||
"@angular/common": "^20.3.14",
|
"@angular/common": "^21.2.11",
|
||||||
"@angular/compiler": "^20.3.16",
|
"@angular/compiler": "^21.2.11",
|
||||||
"@angular/core": "^20.3.17",
|
"@angular/core": "^21.2.11",
|
||||||
"@angular/forms": "^20.0.2",
|
"@angular/forms": "^21.2.11",
|
||||||
"@angular/material": "^20.0.2",
|
"@angular/material": "^21.2.9",
|
||||||
"@angular/material-luxon-adapter": "^20.0.2",
|
"@angular/material-luxon-adapter": "^21.2.9",
|
||||||
"@angular/platform-browser": "^20.0.2",
|
"@angular/platform-browser": "^21.2.11",
|
||||||
"@angular/platform-browser-dynamic": "^20.0.2",
|
"@angular/platform-browser-dynamic": "^21.2.11",
|
||||||
"@angular/router": "^20.0.2",
|
"@angular/router": "^21.2.11",
|
||||||
"@angular/service-worker": "^20.0.2",
|
"@angular/service-worker": "^21.2.11",
|
||||||
"luxon": "^3.6.1",
|
"luxon": "^3.7.2",
|
||||||
"marked": "^12.0.1",
|
"marked": "^12.0.1",
|
||||||
"rxjs": "~7.5.0",
|
"rxjs": "~7.5.0",
|
||||||
"tslib": "^2.3.0",
|
"tslib": "^2.3.0",
|
||||||
@@ -34,9 +34,9 @@
|
|||||||
"zone.js": "~0.15.1"
|
"zone.js": "~0.15.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular/build": "^20.0.1",
|
"@angular/build": "^21.2.9",
|
||||||
"@angular/compiler-cli": "^20.0.2",
|
"@angular/compiler-cli": "^21.2.11",
|
||||||
"@angular/localize": "^20.0.2",
|
"@angular/localize": "^21.2.11",
|
||||||
"@types/jasmine": "~4.3.0",
|
"@types/jasmine": "~4.3.0",
|
||||||
"@types/luxon": "^3.6.2",
|
"@types/luxon": "^3.6.2",
|
||||||
"@types/underscore": "^1.13.0",
|
"@types/underscore": "^1.13.0",
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
"karma-jasmine": "~5.1.0",
|
"karma-jasmine": "~5.1.0",
|
||||||
"karma-jasmine-html-reporter": "~2.0.0",
|
"karma-jasmine-html-reporter": "~2.0.0",
|
||||||
"prettier": "3.5.3",
|
"prettier": "3.5.3",
|
||||||
"typescript": "~5.8.3",
|
"typescript": "~5.9.3",
|
||||||
"typescript-eslint": "8.33.1"
|
"typescript-eslint": "8.33.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ export class UserSearchComponent
|
|||||||
control: FormControl = new FormControl<UserSearchResult | string>("")
|
control: FormControl = new FormControl<UserSearchResult | string>("")
|
||||||
protected list: UserSearchResult[] = []
|
protected list: UserSearchResult[] = []
|
||||||
private _onChange!: (_: UserSearchResult) => void
|
private _onChange!: (_: UserSearchResult) => void
|
||||||
private _onTouched!: () => void
|
protected _onTouched!: () => void
|
||||||
|
|
||||||
static nextId = 0
|
static nextId = 0
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,13 @@
|
|||||||
|
import { provideZoneChangeDetection } from '@angular/core'
|
||||||
import { platformBrowser } from '@angular/platform-browser'
|
import { platformBrowser } from '@angular/platform-browser'
|
||||||
|
|
||||||
import { AppModule } from './app/app.module'
|
import { AppModule } from './app/app.module'
|
||||||
import { environment } from './environments/environment'
|
import { environment } from './environments/environment'
|
||||||
|
|
||||||
platformBrowser()
|
platformBrowser()
|
||||||
.bootstrapModule(AppModule)
|
.bootstrapModule(AppModule, {
|
||||||
|
applicationProviders: [provideZoneChangeDetection()],
|
||||||
|
})
|
||||||
.then(() => {
|
.then(() => {
|
||||||
if ('serviceWorker' in navigator && environment.production) {
|
if ('serviceWorker' in navigator && environment.production) {
|
||||||
navigator.serviceWorker.register('./ngsw-worker.js')
|
navigator.serviceWorker.register('./ngsw-worker.js')
|
||||||
|
|||||||
@@ -18,11 +18,7 @@
|
|||||||
"importHelpers": true,
|
"importHelpers": true,
|
||||||
"target": "ES2022",
|
"target": "ES2022",
|
||||||
"module": "ES2022",
|
"module": "ES2022",
|
||||||
"useDefineForClassFields": false,
|
"useDefineForClassFields": false
|
||||||
"lib": [
|
|
||||||
"ES2022",
|
|
||||||
"dom"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"angularCompilerOptions": {
|
"angularCompilerOptions": {
|
||||||
"enableI18nLegacyMessageIdFormat": false,
|
"enableI18nLegacyMessageIdFormat": false,
|
||||||
|
|||||||
Reference in New Issue
Block a user