Skip to content

Commit 913267c

Browse files
committed
fix(material/core): custom system-level variable prefix not used in some mixins (#29513)
Fixes that the `system-level-colors` and `system-level-typography` mixins weren't using the `system-variables-prefix` passed in by the user. Note: a bit of a gotcha here is that we need to store two separate prefixes, because in theory the user can pass different prefixes into `color` and `typography`. Fixes #29504. (cherry picked from commit 6d70114)
1 parent d7d82e1 commit 913267c

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

src/material/core/theming/_definition.scss

+2
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ $theme-version: 1;
5555
neutral-variant: map.get($primary, neutral-variant),
5656
error: map.get($primary, error),
5757
),
58+
color-system-variables-prefix: $system-variables-prefix,
5859
color-tokens: m3-tokens.generate-color-tokens(
5960
$type, $primary, $tertiary, map.get($primary, error), $system-variables-prefix)
6061
)
@@ -88,6 +89,7 @@ $theme-version: 1;
8889
medium: $medium,
8990
regular: $regular,
9091
),
92+
typography-system-variables-prefix: $system-variables-prefix,
9193
typography-tokens: m3-tokens.generate-typography-tokens(
9294
$brand, $plain, $bold, $medium, $regular, $system-variables-prefix)
9395
)

src/material/core/theming/tests/theming-definition-api.spec.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,19 @@ describe('theming definition api', () => {
6363
--color-tokens: #{list.length(map.get($data, color-tokens)) > 0};
6464
--typography-tokens: #{list.length(map.get($data, typography-tokens)) > 0};
6565
--density-tokens: #{list.length(map.get($data, density-tokens)) > 0};
66+
--color-system-variables-prefix: #{map.get($data, color-system-variables-prefix)};
67+
--typography-system-variables-prefix: #{map.get($data, typography-system-variables-prefix)};
6668
}
6769
`);
6870
const vars = getRootVars(css);
6971
expect(vars['keys'].split(', ')).toEqual([
7072
'theme-version',
7173
'theme-type',
7274
'palettes',
75+
'color-system-variables-prefix',
7376
'color-tokens',
7477
'font-definition',
78+
'typography-system-variables-prefix',
7579
'typography-tokens',
7680
'density-scale',
7781
'density-tokens',
@@ -92,6 +96,8 @@ describe('theming definition api', () => {
9296
expect(vars['color-tokens']).toBe('true');
9397
expect(vars['typography-tokens']).toBe('true');
9498
expect(vars['density-tokens']).toBe('true');
99+
expect(vars['typography-system-variables-prefix']).toBe('sys');
100+
expect(vars['color-system-variables-prefix']).toBe('sys');
95101
});
96102

97103
it('should customize colors', () => {
@@ -253,6 +259,7 @@ describe('theming definition api', () => {
253259
'theme-version',
254260
'theme-type',
255261
'palettes',
262+
'color-system-variables-prefix',
256263
'color-tokens',
257264
]);
258265
});
@@ -271,13 +278,14 @@ describe('theming definition api', () => {
271278
expect(vars['keys'].split(', ')).toEqual([
272279
'theme-version',
273280
'font-definition',
281+
'typography-system-variables-prefix',
274282
'typography-tokens',
275283
]);
276284
});
277285
});
278286

279287
describe('define-density', () => {
280-
it('should omit non-color info', () => {
288+
it('should omit non-density info', () => {
281289
const css = transpile(`
282290
$theme: mat.define-density();
283291
$data: map.get($theme, $internals);

src/material/core/tokens/_m3-tokens.scss

+4-2
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ $_cached-token-slots: null;
135135
);
136136

137137
$type: map.get($theme, _mat-theming-internals-do-not-access, theme-type);
138-
$system-variables-prefix: map.get($theme, system-variables-prefix) or sys;
138+
$system-variables-prefix: map.get($theme, _mat-theming-internals-do-not-access,
139+
color-system-variables-prefix) or sys;
139140
$primary: map.merge(map.get($palettes, primary), $base-palettes);
140141
$tertiary: map.merge(map.get($palettes, tertiary), $base-palettes);
141142
$error: map.get($palettes, error);
@@ -160,7 +161,8 @@ $_cached-token-slots: null;
160161
$bold: map.get($font-definition, bold);
161162
$medium: map.get($font-definition, medium);
162163
$regular: map.get($font-definition, regular);
163-
$system-variables-prefix: map.get($theme, system-variables-prefix) or sys;
164+
$system-variables-prefix: map.get($theme, _mat-theming-internals-do-not-access,
165+
typography-system-variables-prefix) or sys;
164166
$ref: (
165167
md-ref-typeface: _generate-ref-typeface-tokens($brand, $plain, $bold, $medium, $regular)
166168
);

0 commit comments

Comments
 (0)