@dangl/angular-material-shared 2.4.0-beta0015 → 2.4.0-beta0021

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.4.0-beta0015",
3
+ "version": "2.4.0-beta0021",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">=15.0.1",
6
6
  "@angular/common": ">=15.0.1",
@@ -1,15 +1,22 @@
1
1
  // Import theming functions
2
- @import '@angular/material/theming';
2
+ @import "@angular/material/theming";
3
3
  // Import your custom theme
4
- @import './material-theme.scss';
4
+ @import "./material-theme.scss";
5
5
 
6
- @import './material-variables.scss';
6
+ @import "./material-variables.scss";
7
7
 
8
- @import './partials/logo.scss';
9
- @import './partials/mat-toolbar.scss';
10
- @import './partials/side-navbar.scss';
11
- @import './partials/footer.scss';
12
- @import './partials/highlights.scss';
8
+ @import "./partials/logo.scss";
9
+ @import "./partials/mat-toolbar.scss";
10
+ @import "./partials/side-navbar.scss";
11
+ @import "./partials/footer.scss";
12
+ @import "./partials/highlights.scss";
13
+
14
+ // This is required, since there's a bug in Angular Material
15
+ // that prevents the foreground color from being correctly
16
+ // detected as white instead of black for some colors, e.g.
17
+ // Cyan 600
18
+ // See here for more information:
19
+ // https://github.com/angular/components/issues/26056
13
20
  .mat-primary .mdc-button__label {
14
21
  color: #fff;
15
22
  }