Update to Angular 13

This commit is contained in:
FyloZ 2021-12-02 13:58:29 -05:00
parent 3136f2e1d6
commit 6ba1073004
Signed by: william
GPG Key ID: 835378AE9AF4AE97
4 changed files with 21 additions and 20 deletions

View File

@ -40,7 +40,7 @@
"vendorChunk": true, "vendorChunk": true,
"extractLicenses": false, "extractLicenses": false,
"buildOptimizer": false, "buildOptimizer": false,
"sourceMap": true, "sourceMap": false,
"optimization": false, "optimization": false,
"namedChunks": true "namedChunks": true
}, },

View File

@ -12,24 +12,24 @@
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular/animations": "~13.0.3", "@angular/animations": "~13.0.3",
"@angular/cdk": "^12.2.13", "@angular/cdk": "^13.0.3",
"@angular/common": "~13.0.3", "@angular/common": "~13.0.3",
"@angular/compiler": "~13.0.3", "@angular/compiler": "~13.0.3",
"@angular/core": "~13.0.3", "@angular/core": "~13.0.3",
"@angular/forms": "~13.0.3", "@angular/forms": "~13.0.3",
"@angular/material": "^12.2.13", "@angular/material": "^13.0.3",
"@angular/platform-browser": "~13.0.3", "@angular/platform-browser": "~13.0.3",
"@angular/platform-browser-dynamic": "~13.0.3", "@angular/platform-browser-dynamic": "~13.0.3",
"@angular/router": "~13.0.3", "@angular/router": "~13.0.3",
"@mdi/angular-material": "^5.7.55", "@mdi/angular-material": "^6.5.95",
"bootstrap": "^4.5.2", "bootstrap": "^4.5.2",
"copy-webpack-plugin": "^6.2.1", "copy-webpack-plugin": "^10.0.0",
"js-joda": "^1.11.0", "js-joda": "^1.11.0",
"material-design-icons": "^3.0.1", "material-design-icons": "^3.0.1",
"ngx-material-file-input": "3.0.0", "ngx-material-file-input": "3.0.0",
"rxjs": "~6.5.4", "rxjs": "^7.4.0",
"tslib": "^2.0.0", "tslib": "^2.3.1",
"zone.js": "~0.11.4" "zone.js": "^0.11.4"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "^13.0.4", "@angular-devkit/build-angular": "^13.0.4",
@ -41,24 +41,24 @@
"@angular/cli": "^13.0.4", "@angular/cli": "^13.0.4",
"@angular/compiler-cli": "~13.0.3", "@angular/compiler-cli": "~13.0.3",
"@angular/language-service": "~13.0.3", "@angular/language-service": "~13.0.3",
"@types/jasmine": "~3.6.0", "@types/jasmine": "~3.10.2",
"@types/jasminewd2": "~2.0.3", "@types/jasminewd2": "~2.0.10",
"@types/node": "^12.11.1", "@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "5.5.0", "@typescript-eslint/eslint-plugin": "5.5.0",
"@typescript-eslint/parser": "5.5.0", "@typescript-eslint/parser": "5.5.0",
"eslint": "8.3.0", "eslint": "8.3.0",
"eslint-plugin-import": "latest", "eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest", "eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest", "eslint-plugin-prefer-arrow": "latest",
"jasmine-core": "~3.6.0", "jasmine-core": "~3.10.1",
"jasmine-spec-reporter": "~5.0.0", "jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.2", "karma": "~6.3.9",
"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.3",
"karma-jasmine": "~4.0.0", "karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.5.0", "karma-jasmine-html-reporter": "^1.7.0",
"protractor": "~7.0.0", "protractor": "~7.0.0",
"ts-node": "~8.3.0", "ts-node": "~10.4.0",
"typescript": "~4.4.4" "typescript": "~4.4.4"
} }
} }

View File

@ -20,4 +20,5 @@ $color-accent: map-get($theme-accent, 500);
$color-warn: map-get($theme-error, 500); $color-warn: map-get($theme-error, 500);
$light-primary-text: white; $light-primary-text: white;
$dark-primary-text: black;
$dark-secondary-text: black; $dark-secondary-text: black;

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.