mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
Compare commits
6 Commits
fix/5270-U
...
angular-18
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
138b4cc606 | ||
|
|
6a7124a955 | ||
|
|
d96c217a4b | ||
|
|
9009258c1a | ||
|
|
0a4aa9cc00 | ||
|
|
a7f758f277 |
39
angular.json
39
angular.json
@@ -959,10 +959,10 @@
|
|||||||
"builder": "@angular-devkit/build-angular:dev-server",
|
"builder": "@angular-devkit/build-angular:dev-server",
|
||||||
"configurations": {
|
"configurations": {
|
||||||
"production": {
|
"production": {
|
||||||
"browserTarget": "isa-app:build:production"
|
"buildTarget": "isa-app:build:production"
|
||||||
},
|
},
|
||||||
"development": {
|
"development": {
|
||||||
"browserTarget": "isa-app:build:development"
|
"buildTarget": "isa-app:build:development"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"defaultConfiguration": "development"
|
"defaultConfiguration": "development"
|
||||||
@@ -970,7 +970,7 @@
|
|||||||
"extract-i18n": {
|
"extract-i18n": {
|
||||||
"builder": "@angular-devkit/build-angular:extract-i18n",
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
||||||
"options": {
|
"options": {
|
||||||
"browserTarget": "isa-app:build"
|
"buildTarget": "isa-app:build"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"test": {
|
"test": {
|
||||||
@@ -1470,39 +1470,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"shell": {
|
|
||||||
"projectType": "library",
|
|
||||||
"root": "apps/shell",
|
|
||||||
"sourceRoot": "apps/shell/src",
|
|
||||||
"prefix": "shell",
|
|
||||||
"architect": {
|
|
||||||
"build": {
|
|
||||||
"builder": "@angular-devkit/build-angular:ng-packagr",
|
|
||||||
"options": {
|
|
||||||
"project": "apps/shell/ng-package.json"
|
|
||||||
},
|
|
||||||
"configurations": {
|
|
||||||
"production": {
|
|
||||||
"tsConfig": "apps/shell/tsconfig.lib.prod.json"
|
|
||||||
},
|
|
||||||
"development": {
|
|
||||||
"tsConfig": "apps/shell/tsconfig.lib.json"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"defaultConfiguration": "production"
|
|
||||||
},
|
|
||||||
"test": {
|
|
||||||
"builder": "@angular-devkit/build-angular:karma",
|
|
||||||
"options": {
|
|
||||||
"tsConfig": "apps/shell/tsconfig.spec.json",
|
|
||||||
"polyfills": [
|
|
||||||
"zone.js",
|
|
||||||
"zone.js/testing"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"cli": {
|
"cli": {
|
||||||
|
|||||||
@@ -1,18 +1,18 @@
|
|||||||
import { DOCUMENT } from '@angular/common';
|
import { DOCUMENT } from '@angular/common';
|
||||||
import { Component, HostListener, Inject, OnInit, Renderer2 } from '@angular/core';
|
|
||||||
import { Title } from '@angular/platform-browser';
|
|
||||||
import { SwUpdate, UpdateAvailableEvent } from '@angular/service-worker';
|
|
||||||
import { ApplicationService } from '@core/application';
|
import { ApplicationService } from '@core/application';
|
||||||
import { Config } from '@core/config';
|
import { Config } from '@core/config';
|
||||||
import { NotificationsHub } from '@hub/notifications';
|
import { NotificationsHub } from '@hub/notifications';
|
||||||
import packageInfo from 'package';
|
import packageInfo from 'package';
|
||||||
import { asapScheduler, interval, Observable, Subscription } from 'rxjs';
|
import { SwUpdate } from '@angular/service-worker';
|
||||||
|
import { Title } from '@angular/platform-browser';
|
||||||
|
|
||||||
import { UserStateService } from '@swagger/isa';
|
import { UserStateService } from '@swagger/isa';
|
||||||
import { IsaLogProvider } from './providers';
|
import { IsaLogProvider } from './providers';
|
||||||
import { EnvironmentService } from '@core/environment';
|
import { EnvironmentService } from '@core/environment';
|
||||||
import { AuthService } from '@core/auth';
|
import { AuthService } from '@core/auth';
|
||||||
import { UiMessageModalComponent, UiModalService } from '@ui/modal';
|
import { UiMessageModalComponent, UiModalService } from '@ui/modal';
|
||||||
import { tap } from 'rxjs/operators';
|
import { Component, HostListener, Inject, OnInit, Renderer2 } from '@angular/core';
|
||||||
|
import { Subscription, asapScheduler, interval } from 'rxjs';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-root',
|
selector: 'app-root',
|
||||||
@@ -21,7 +21,6 @@ import { tap } from 'rxjs/operators';
|
|||||||
})
|
})
|
||||||
export class AppComponent implements OnInit {
|
export class AppComponent implements OnInit {
|
||||||
private _checkForUpdates: number = this._config.get('checkForUpdates');
|
private _checkForUpdates: number = this._config.get('checkForUpdates');
|
||||||
updateAvailableObs: Observable<UpdateAvailableEvent>;
|
|
||||||
|
|
||||||
get checkForUpdates(): number {
|
get checkForUpdates(): number {
|
||||||
return this._checkForUpdates;
|
return this._checkForUpdates;
|
||||||
|
|||||||
10716
package-lock.json
generated
10716
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
42
package.json
42
package.json
@@ -62,17 +62,17 @@
|
|||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular/animations": "^16.1.7",
|
"@angular/animations": "^17.3.10",
|
||||||
"@angular/cdk": "^16.1.6",
|
"@angular/cdk": "^17.3.10",
|
||||||
"@angular/common": "^16.1.7",
|
"@angular/common": "^17.3.10",
|
||||||
"@angular/compiler": "^16.1.7",
|
"@angular/compiler": "^17.3.10",
|
||||||
"@angular/core": "^16.1.7",
|
"@angular/core": "^17.3.10",
|
||||||
"@angular/forms": "^16.1.7",
|
"@angular/forms": "^17.3.10",
|
||||||
"@angular/localize": "^16.1.7",
|
"@angular/localize": "^17.3.10",
|
||||||
"@angular/platform-browser": "^16.1.7",
|
"@angular/platform-browser": "^17.3.10",
|
||||||
"@angular/platform-browser-dynamic": "^16.1.7",
|
"@angular/platform-browser-dynamic": "^17.3.10",
|
||||||
"@angular/router": "^16.1.7",
|
"@angular/router": "^17.3.10",
|
||||||
"@angular/service-worker": "^16.1.7",
|
"@angular/service-worker": "^17.3.10",
|
||||||
"@microsoft/signalr": "^7.0.0",
|
"@microsoft/signalr": "^7.0.0",
|
||||||
"@ngrx/component-store": "^16.1.0",
|
"@ngrx/component-store": "^16.1.0",
|
||||||
"@ngrx/effects": "^16.1.0",
|
"@ngrx/effects": "^16.1.0",
|
||||||
@@ -94,13 +94,13 @@
|
|||||||
"uglify-js": "^3.4.9",
|
"uglify-js": "^3.4.9",
|
||||||
"uuid": "^8.3.2",
|
"uuid": "^8.3.2",
|
||||||
"web-animations-js": "^2.3.2",
|
"web-animations-js": "^2.3.2",
|
||||||
"zone.js": "~0.13.1"
|
"zone.js": "~0.14.6"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@angular-devkit/build-angular": "^16.1.6",
|
"@angular-devkit/build-angular": "^17.3.8",
|
||||||
"@angular/cli": "^16.1.6",
|
"@angular/cli": "^17.3.8",
|
||||||
"@angular/compiler-cli": "^16.1.7",
|
"@angular/compiler-cli": "^17.3.10",
|
||||||
"@angular/language-service": "^16.1.7",
|
"@angular/language-service": "^17.3.10",
|
||||||
"@ngneat/spectator": "^15.0.1",
|
"@ngneat/spectator": "^15.0.1",
|
||||||
"@types/jasmine": "~3.6.0",
|
"@types/jasmine": "~3.6.0",
|
||||||
"@types/jasminewd2": "~2.0.3",
|
"@types/jasminewd2": "~2.0.3",
|
||||||
@@ -121,8 +121,8 @@
|
|||||||
"karma-jasmine": "~4.0.0",
|
"karma-jasmine": "~4.0.0",
|
||||||
"karma-jasmine-html-reporter": "^1.5.0",
|
"karma-jasmine-html-reporter": "^1.5.0",
|
||||||
"karma-junit-reporter": "^2.0.1",
|
"karma-junit-reporter": "^2.0.1",
|
||||||
"ng-mocks": "^14.11.0",
|
"ng-mocks": "^14.12.2",
|
||||||
"ng-packagr": "^16.1.0",
|
"ng-packagr": "^17.3.0",
|
||||||
"ng-swagger-gen": "^2.3.1",
|
"ng-swagger-gen": "^2.3.1",
|
||||||
"ngrx-store-freeze": "^0.2.4",
|
"ngrx-store-freeze": "^0.2.4",
|
||||||
"npm-run-all": "^4.1.5",
|
"npm-run-all": "^4.1.5",
|
||||||
@@ -137,10 +137,6 @@
|
|||||||
"tailwindcss": "^3.1.8",
|
"tailwindcss": "^3.1.8",
|
||||||
"ts-node": "~7.0.0",
|
"ts-node": "~7.0.0",
|
||||||
"tslint": "~6.1.0",
|
"tslint": "~6.1.0",
|
||||||
"typescript": "~5.1.6"
|
"typescript": "^5.2"
|
||||||
},
|
|
||||||
"engines": {
|
|
||||||
"node": "18.x",
|
|
||||||
"npm": "8.x"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user