update dependencies

This commit is contained in:
_Bastler 2022-01-20 08:55:52 +01:00
parent 2323262174
commit 48c66a3abb
4 changed files with 523 additions and 452 deletions

948
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -11,22 +11,23 @@
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular-material-components/datetime-picker": "^6.0.3", "@angular-material-components/datetime-picker": "^7.0.1",
"@angular-material-components/moment-adapter": "^6.0.0", "@angular-material-components/moment-adapter": "^7.0.0",
"@angular/animations": "^13.1.3", "@angular/animations": "^13.1.3",
"@angular/cdk": "^12.2.10", "@angular/cdk": "^13.1.3",
"@angular/common": "^13.1.3", "@angular/common": "^13.1.3",
"@angular/compiler": "^13.1.3", "@angular/compiler": "^13.1.3",
"@angular/core": "^13.1.3", "@angular/core": "^13.1.3",
"@angular/flex-layout": "^12.0.0-beta.35", "@angular/flex-layout": "^13.0.0-beta.36",
"@angular/forms": "^13.1.3", "@angular/forms": "^13.1.3",
"@angular/material": "^12.2.10", "@angular/material": "^13.1.3",
"@angular/material-moment-adapter": "^12.2.10", "@angular/material-moment-adapter": "^13.1.3",
"@angular/platform-browser": "^13.1.3", "@angular/platform-browser": "^13.1.3",
"@angular/platform-browser-dynamic": "^13.1.3", "@angular/platform-browser-dynamic": "^13.1.3",
"@angular/router": "^13.1.3", "@angular/router": "^13.1.3",
"ng-qrcode": "^5.1.1", "moment": "^2.29.1",
"ngx-mat-timepicker": "^12.1.0", "ng-qrcode": "^5.2.0",
"ngx-mat-timepicker": "^13.0.0",
"openpgp": "^4.10.10", "openpgp": "^4.10.10",
"qr-scanner": "^1.3.0", "qr-scanner": "^1.3.0",
"rxjs": "~6.6.7", "rxjs": "~6.6.7",
@ -39,14 +40,14 @@
"@angular/cli": "^13.1.4", "@angular/cli": "^13.1.4",
"@angular/compiler-cli": "^13.1.3", "@angular/compiler-cli": "^13.1.3",
"@angular/localize": "^13.1.3", "@angular/localize": "^13.1.3",
"@types/jasmine": "^3.10.0", "@types/jasmine": "^3.10.3",
"@types/jasminewd2": "^2.0.10", "@types/jasminewd2": "^2.0.10",
"@types/node": "^12.20.33", "@types/node": "^12.20.42",
"@types/openpgp": "^4.4.18", "@types/openpgp": "^4.4.18",
"codelyzer": "^6.0.2", "codelyzer": "^6.0.2",
"jasmine-core": "~3.6.0", "jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0", "jasmine-spec-reporter": "~5.0.0",
"karma": "^6.3.4", "karma": "^6.3.11",
"karma-chrome-launcher": "~3.1.0", "karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2", "karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0", "karma-jasmine": "~4.0.0",

View File

@ -1,5 +1,5 @@
// Custom Theming for Angular Material // Custom Theming for Angular Material
@use '~@angular/material'as mat; @use '@angular/material'as mat;
// For more information: https://material.angular.io/guide/theming // For more information: https://material.angular.io/guide/theming
// Plus imports for other components in your app. // Plus imports for other components in your app.

View File

@ -1,4 +1,4 @@
@use '~@angular/material' as mat; @use '@angular/material' as mat;
$light-primary: mat.define-palette(mat.$gray-palette, 800); $light-primary: mat.define-palette(mat.$gray-palette, 800);
$light-accent: mat.define-palette(mat.$pink-palette, A200, A100, A400); $light-accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);