Skip to content

Commit 3521e20

Browse files
authored
build: update dependencies and resolve breaking change (#32799)
Takes over the dependency bump from #32690 and resolves a breaking change.
1 parent a7d1b3b commit 3521e20

4 files changed

Lines changed: 33 additions & 26 deletions

File tree

docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"@types/jasmine": "^6.0.0",
6262
"@types/node": "^22.14.1",
6363
"@types/shelljs": "0.10.0",
64-
"firebase-tools": "15.2.1",
64+
"firebase-tools": "15.6.0",
6565
"jasmine-core": "^6.0.0",
6666
"jasmine-spec-reporter": "7.0.0",
6767
"karma": "~6.4.4",
@@ -75,7 +75,7 @@
7575
"npm-run-all": "^4.1.5",
7676
"protractor": "^7.0.0",
7777
"puppeteer-core": "^24.6.1",
78-
"sass": "1.97.2",
78+
"sass": "1.97.3",
7979
"shelljs": "^0.10.0",
8080
"ts-node": "10.9.2",
8181
"typescript": "~5.9.2"

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@
8080
"@angular/platform-server": "catalog:",
8181
"@angular/router": "catalog:",
8282
"@babel/core": "^7.16.12",
83-
"@bazel/bazelisk": "1.26.0",
83+
"@bazel/bazelisk": "1.28.1",
8484
"@bazel/buildifier": "8.2.1",
8585
"@bazel/ibazel": "^0.28.0",
8686
"@bazel/runfiles": "6.5.0",
8787
"@firebase/app-types": "^0.9.0",
88-
"@material/material-color-utilities": "^0.3.0",
88+
"@material/material-color-utilities": "^0.4.0",
8989
"@octokit/rest": "22.0.1",
9090
"@rollup/plugin-commonjs": "^29.0.0",
9191
"@rollup/plugin-node-resolve": "^16.0.0",
@@ -105,7 +105,7 @@
105105
"dgeni": "^0.4.14",
106106
"dgeni-packages": "^0.30.0",
107107
"esbuild": "^0.27.0",
108-
"firebase-tools": "15.2.1",
108+
"firebase-tools": "15.6.0",
109109
"fs-extra": "^11.0.0",
110110
"glob": "^13.0.0",
111111
"highlight.js": "^11.0.0",

pnpm-lock.yaml

Lines changed: 25 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/material/schematics/ng-generate/theme-color/index.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import {
1616
DynamicScheme,
1717
DislikeAnalyzer,
1818
TemperatureCache,
19+
Variant,
1920
} from '@material/material-color-utilities';
2021

2122
// For each color tonal palettes are created using the following hue tones. The
@@ -90,8 +91,8 @@ export function getMaterialDynamicScheme(
9091
contrastLevel: number,
9192
): DynamicScheme {
9293
return new DynamicScheme({
93-
sourceColorArgb: primaryPalette.keyColor.toInt(),
94-
variant: 6, // Variant.FIDELITY, used number representation since enum is not accessible outside of @material/material-color-utilities
94+
sourceColorHct: primaryPalette.keyColor,
95+
variant: Variant.FIDELITY,
9596
contrastLevel: contrastLevel,
9697
isDark: isDark,
9798
primaryPalette: primaryPalette,

0 commit comments

Comments
 (0)