@dangl/angular-material-shared 2.9.0-beta0039 → 2.9.0-beta0040

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dangl/angular-material-shared",
3
- "version": "2.9.0-beta0039",
3
+ "version": "2.9.0-beta0040",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=22.0.0",
6
6
  "@angular/common": ">=22.0.0",
@@ -23,5 +23,5 @@
23
23
  // Alternatively, you can import and @include the theme mixins for each component
24
24
  // that you are using.
25
25
  // @include mat.all-legacy-component-themes($dangl-app-theme);
26
- @include mat.all-component-themes($dangl-app-theme);
26
+ @include mat.all-component-themes(material-variables.$dangl-app-theme);
27
27
  @include mat.typography-hierarchy(mat.m2-define-typography-config());
@@ -1,9 +1,9 @@
1
1
  // Import material theming functions
2
2
  @use '@angular/material' as mat;
3
+ @use "./hex-to-rgba.scss";
3
4
  // @import '@angular/material/theming';
4
5
  @include mat.elevation-classes();
5
6
  @include mat.app-background();
6
- @use "./hex-to-rgba.scss";
7
7
  // Define the palettes for your theme using the Material Design palettes available in palette.scss
8
8
  // (imported above). For each palette, you can optionally specify a default, lighter, and darker
9
9
  // hue.
@@ -33,10 +33,10 @@ $color-dark: #3b4c55;
33
33
  $color-light: #bdbdbd;
34
34
 
35
35
  :root {
36
- --color-primary: #{hex-to-rgba($color-primary,1)};
37
- --color-accent: #{hex-to-rgba($color-accent,1)};
38
- --color-warn: #{hex-to-rgba($color-warn,1)};
36
+ --color-primary: #{hex-to-rgba.hex-to-rgba($color-primary,1)};
37
+ --color-accent: #{hex-to-rgba.hex-to-rgba($color-accent,1)};
38
+ --color-warn: #{hex-to-rgba.hex-to-rgba($color-warn,1)};
39
39
  --color-dark: #3b4c55;
40
40
  --color-light: #bdbdbd;
41
- --color-primary-rgba: #{hex-to-rgba($color-primary,1)};
41
+ --color-primary-rgba: #{hex-to-rgba.hex-to-rgba($color-primary,1)};
42
42
  }