Skip to content

Commit ad6a21e

Browse files
andrewseguinAndrew Seguin
and
Andrew Seguin
authored
refactor: rename mdc- prefixed tokens/variables to mat- (#30677)
* refactor: rename mdc- prefixed tokens to mat- * refactor: repeat mdc tokens along with mat rename * refactor: include mdc prefix in icon button --------- Co-authored-by: Andrew Seguin <[email protected]>
1 parent ec538b5 commit ad6a21e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+612
-260
lines changed

material.angular.io/scenes/src/app/scenes/snack-bar/snack-bar-scene.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// within the scene bounds.
33
.mat-mdc-snack-bar-container {
44
margin: 8px !important;
5-
--mdc-snackbar-container-color: red;
5+
--mat-snackbar-container-color: red;
66
color: rgba(white, 0.87) !important;
77

88
button {

src/material/button/_icon-button-theme.scss

+5-4
Original file line numberDiff line numberDiff line change
@@ -108,14 +108,15 @@
108108
// Match the styles that used to be present. This is necessary for backwards
109109
// compat to match the previous implementations selector count (two classes).
110110
--mdc-icon-button-state-layer-size: #{$calculated-size};
111+
--mat-icon-button-state-layer-size: #{$calculated-size};
111112

112-
// TODO: Switch calculated-size to "var(--mdc-icon-button-state-layer-size)"
113+
// TODO: Switch calculated-size to "var(--mat-icon-button-state-layer-size)"
113114
// Currently fails validation because the variable is "undefined"
114115
// in the sass stack.
115-
// TODO: Switch icon-size to "var(--mdc-icon-button-icon-size)". Currently
116+
// TODO: Switch icon-size to "var(--mat-icon-button-icon-size)". Currently
116117
// fails validation because the variable is "undefined" in the sass stack.
117-
width: var(--mdc-icon-button-state-layer-size);
118-
height: var(--mdc-icon-button-state-layer-size);
118+
width: var(--mat-icon-button-state-layer-size);
119+
height: var(--mat-icon-button-state-layer-size);
119120
padding: math.div($calculated-size - $icon-size, 2);
120121
}
121122
}

src/material/chips/chip.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ $_avatar-trailing-padding: 8px;
629629

630630
// Technically the avatar is only supposed to have an image, but we also allow for icons.
631631
// Set the color so the icons inherit the correct color.
632-
color: var(--mdc-chip-with-icon-icon-color, currentColor);
632+
color: var(--mat-chip-with-icon-icon-color, currentColor);
633633
}
634634

635635
// Required for the strong focus indicator to fill the chip.

src/material/core/theming/_definition.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
@use './config-validation';
88

99
// Prefix used for component token fallback variables, e.g.
10-
// `color: var(--mdc-text-button-label-text-color, var(--mat-sys-primary));`
10+
// `color: var(--mat-text-button-label-text-color, var(--mat-sys-primary));`
1111
$system-fallback-prefix: mat-sys;
1212

1313
// Default system level prefix to use when directly calling the `system-level-*` mixins.
1414
// Prefix used for component token fallback variables, e.g.
15-
// `color: var(--mdc-text-button-label-text-color, var(--mat-sys-primary));`
15+
// `color: var(--mat-text-button-label-text-color, var(--mat-sys-primary));`
1616
// TODO: Remove this variable after internal clients are migrated from "sys"
1717
$system-level-prefix: mat-sys;
1818

src/material/core/theming/_inspection.scss

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ $_typography-properties: (font, font-family, line-height, font-size, letter-spac
119119
@if not theme-has($theme, color) {
120120
@error 'Color information is not available on this theme.';
121121
}
122-
$color-roles: map.get($theme, $_internals, color-tokens, (mdc, theme));
122+
$color-roles: map.get($theme, $_internals, color-tokens, (mat, theme));
123123
$result: map.get($color-roles, $color-role-name);
124124
@if not $result {
125125
@error #{'Valid color roles are: #{map.keys($color-roles)}. Got:'} $color-role-name;
@@ -185,7 +185,7 @@ $_typography-properties: (font, font-family, line-height, font-size, letter-spac
185185
font-weight: '-weight'
186186
), $property);
187187
$token-name: '#{$typescale}#{$property-key}';
188-
@return map.get($theme, $_internals, typography-tokens, (mdc, typography), $token-name);
188+
@return map.get($theme, $_internals, typography-tokens, (mat, typography), $token-name);
189189
}
190190
@else {
191191
@error #{'Unrecognized theme version:'} $version;

src/material/core/theming/tests/m3-theme.spec.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ describe('M3 theme', () => {
151151
}
152152
`);
153153

154-
expect(css).toContain('--mdc-checkbox-selected-checkmark-color: magenta');
154+
expect(css).toContain('--mat-checkbox-selected-checkmark-color: magenta');
155155
expectNoWarning(/`selected-checkmark-color` is deprecated/);
156156
});
157157

@@ -162,8 +162,8 @@ describe('M3 theme', () => {
162162
}
163163
`);
164164

165-
expect(css).toContain('--mdc-filled-text-field-caret-color: magenta');
166-
expect(css).not.toContain('--mdc-outline-text-field-caret-color: magenta');
165+
expect(css).toContain('--mat-filled-text-field-caret-color: magenta');
166+
expect(css).not.toContain('--mat-outline-text-field-caret-color: magenta');
167167
expectNoWarning(/`filled-caret-color` is deprecated/);
168168
});
169169

@@ -174,8 +174,8 @@ describe('M3 theme', () => {
174174
}
175175
`);
176176

177-
expect(css).toContain('--mdc-filled-text-field-caret-color: magenta');
178-
expect(css).toContain('--mdc-outlined-text-field-caret-color: magenta');
177+
expect(css).toContain('--mat-filled-text-field-caret-color: magenta');
178+
expect(css).toContain('--mat-outlined-text-field-caret-color: magenta');
179179
expectWarning(
180180
/Token `caret-color` is deprecated. Please use one of the following alternatives: filled-caret-color, outlined-caret-color/,
181181
);

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

+9-9
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ describe('theming definition api', () => {
111111
));
112112
$data: map.get($theme, $internals);
113113
:root {
114-
--token-surface: #{map.get($data, color-tokens, (mdc, theme), surface)};
115-
--token-primary: #{map.get($data, color-tokens, (mdc, theme), primary)};
116-
--token-secondary: #{map.get($data, color-tokens, (mdc, theme), secondary)};
117-
--token-tertiary: #{map.get($data, color-tokens, (mdc, theme), tertiary)};
114+
--token-surface: #{map.get($data, color-tokens, (mat, theme), surface)};
115+
--token-primary: #{map.get($data, color-tokens, (mat, theme), primary)};
116+
--token-secondary: #{map.get($data, color-tokens, (mat, theme), secondary)};
117+
--token-tertiary: #{map.get($data, color-tokens, (mat, theme), tertiary)};
118118
--palette-primary: #{map.get($data, palettes, primary, 50)};
119119
--palette-secondary: #{map.get($data, palettes, secondary, 50)};
120120
--palette-tertiary: #{map.get($data, palettes, tertiary, 50)};
@@ -146,13 +146,13 @@ describe('theming definition api', () => {
146146
$data: map.get($theme, $internals);
147147
:root {
148148
--display-font:
149-
#{map.get($data, typography-tokens, (mdc, typography), display-large-font)};
149+
#{map.get($data, typography-tokens, (mat, typography), display-large-font)};
150150
--display-weight:
151-
#{map.get($data, typography-tokens, (mdc, typography), display-large-weight)};
151+
#{map.get($data, typography-tokens, (mat, typography), display-large-weight)};
152152
--title-font:
153-
#{map.get($data, typography-tokens, (mdc, typography), title-small-font)};
153+
#{map.get($data, typography-tokens, (mat, typography), title-small-font)};
154154
--title-weight:
155-
#{map.get($data, typography-tokens, (mdc, typography), title-small-weight)};
155+
#{map.get($data, typography-tokens, (mat, typography), title-small-weight)};
156156
}
157157
`);
158158
const vars = getRootVars(css);
@@ -171,7 +171,7 @@ describe('theming definition api', () => {
171171
));
172172
$data: map.get($theme, $internals);
173173
:root {
174-
--size: #{map.get($data, density-tokens, (mdc, checkbox), state-layer-size)};
174+
--size: #{map.get($data, density-tokens, (mat, checkbox), state-layer-size)};
175175
}
176176
`);
177177
const vars = getRootVars(css);

0 commit comments

Comments
 (0)