update angular framework

This commit is contained in:
_Bastler 2023-12-12 21:20:48 +01:00
parent 3d7dc4d03c
commit 2a2a2fdb6f
4 changed files with 9233 additions and 6949 deletions

View File

@ -75,7 +75,8 @@
"serve": { "serve": {
"builder": "@angular-devkit/build-angular:dev-server", "builder": "@angular-devkit/build-angular:dev-server",
"options": { "options": {
"browserTarget": "bstlboard-angular:build" "browserTarget": "bstlboard-angular:build",
"port": 4201
}, },
"configurations": { "configurations": {
"production": { "production": {

16108
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "bstlboard", "name": "bstlboard",
"version": "1.5.5", "version": "2.0.0",
"license": "AGPL3", "license": "AGPL3",
"scripts": { "scripts": {
"ng": "ng", "ng": "ng",
@ -12,36 +12,35 @@
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular-material-components/datetime-picker": "^9.0.0", "@angular/animations": "^17.0.6",
"@angular/animations": "^15.0.3", "@angular/cdk": "^17.0.3",
"@angular/cdk": "^15.0.2", "@angular/common": "^17.0.6",
"@angular/common": "^15.0.3", "@angular/compiler": "^17.0.6",
"@angular/compiler": "^15.0.3", "@angular/core": "^17.0.6",
"@angular/core": "^15.0.3", "@angular/forms": "^17.0.6",
"@angular/forms": "^15.0.3", "@angular/material": "^17.0.3",
"@angular/material": "^15.0.2", "@angular/material-moment-adapter": "^17.0.3",
"@angular/material-moment-adapter": "^15.0.2", "@angular/platform-browser": "^17.0.6",
"@angular/platform-browser": "^15.0.3", "@angular/platform-browser-dynamic": "^17.0.6",
"@angular/platform-browser-dynamic": "^15.0.3", "@angular/router": "^17.0.6",
"@angular/router": "^15.0.3", "@angular/service-worker": "^17.0.6",
"@angular/service-worker": "^15.0.3",
"moment": "^2.29.4", "moment": "^2.29.4",
"rxjs": "~7.6.0", "rxjs": "~7.8.1",
"tslib": "^2.4.1", "tslib": "^2.6.2",
"zone.js": "~0.12.0" "zone.js": "~0.14.2"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "^15.0.3", "@angular-devkit/build-angular": "^17.0.6",
"@angular/cli": "^15.0.3", "@angular/cli": "^17.0.6",
"@angular/compiler-cli": "^15.0.3", "@angular/compiler-cli": "^17.0.6",
"@angular/localize": "^15.0.3", "@angular/localize": "^17.0.6",
"@types/jasmine": "^4.3.1", "@types/jasmine": "^5.1.4",
"jasmine-core": "~4.5.0", "jasmine-core": "~5.1.1",
"karma": "^6.4.1", "karma": "^6.4.2",
"karma-chrome-launcher": "~3.1.1", "karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0", "karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0", "karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0", "karma-jasmine-html-reporter": "^2.1.0",
"typescript": "~4.8.4" "typescript": "~5.2.2"
} }
} }

View File

@ -44,12 +44,6 @@ import {MatSortModule} from '@angular/material/sort';
import {MatTableModule} from '@angular/material/table'; import {MatTableModule} from '@angular/material/table';
import {MatMomentDateModule} from '@angular/material-moment-adapter'; import {MatMomentDateModule} from '@angular/material-moment-adapter';
import {
NgxMatDatetimePickerModule,
NgxMatNativeDateModule,
NgxMatTimepickerModule
} from '@angular-material-components/datetime-picker';
@NgModule({ @NgModule({
declarations: [], declarations: [],
imports: [ imports: [
@ -89,10 +83,7 @@ import {
MatPaginatorModule, MatPaginatorModule,
MatSortModule, MatSortModule,
MatTableModule, MatTableModule,
MatMomentDateModule, MatMomentDateModule
NgxMatDatetimePickerModule,
NgxMatNativeDateModule,
NgxMatTimepickerModule
], ],
exports: [ exports: [
MatAutocompleteModule, MatAutocompleteModule,
@ -129,10 +120,7 @@ import {
MatTooltipModule, MatTooltipModule,
MatPaginatorModule, MatPaginatorModule,
MatSortModule, MatSortModule,
MatTableModule, MatTableModule
NgxMatDatetimePickerModule,
NgxMatNativeDateModule,
NgxMatTimepickerModule
] ]
}) })
export class MaterialModule {} export class MaterialModule {}