update angular to version 12

step two: ng update @angular/material
This commit is contained in:
2021-07-03 09:05:09 +02:00
parent 6c1a0f997e
commit 976369527b
4 changed files with 19 additions and 18 deletions

View File

@@ -1,24 +1,24 @@
@import '~@angular/material/theming';
@use '~@angular/material' as mat;
// Plus imports for other components in your app.
// Include the common styles for Angular Material. We include this here so that you only
// have to load a single css file for Angular Material in your app.
// Be sure that you only ever include this mixin once!
@include mat-core();
@include mat.core();
// Define the palettes for your theme using the Material Design palettes available in palette.scss
// (imported above). For each palette, you can optionally specify a default, lighter, and darker
// hue. Available color palettes: https://material.io/design/color/
$candy-app-primary: mat-palette($mat-blue);
$candy-app-accent: mat-palette($mat-blue, A200, A100, A400);
$candy-app-primary: mat.define-palette(mat.$blue-palette);
$candy-app-accent: mat.define-palette(mat.$blue-palette, A200, A100, A400);
// The warn palette is optional (defaults to red).
$candy-app-warn: mat-palette($mat-red);
$candy-app-warn: mat.define-palette(mat.$red-palette);
// Create the theme object (a Sass map containing all of the palettes).
$candy-app-theme: mat-light-theme($candy-app-primary, $candy-app-accent, $candy-app-warn);
$candy-app-theme: mat.define-light-theme($candy-app-primary, $candy-app-accent, $candy-app-warn);
// Include theme styles for core and each component used in your app.
// Alternatively, you can import and @include the theme mixins for each component
// that you are using.
@include angular-material-theme($candy-app-theme);
@include mat.all-component-themes($candy-app-theme);

View File

@@ -1,4 +1,5 @@
/* You can add global styles to this file, and also import other style files */
@use '~@angular/material' as mat;
/*
blue
#CBD7F4
@@ -145,7 +146,7 @@ mat-form-field.pdb-form-wide {
.errorPanel {
padding: 1ex;
background-color: map-get($mat-red, 100);
background-color: map-get(mat.$red-palette, 100);
border-radius: 5px;
}