Skip to content

Commit b7959c2

Browse files
committed
fix(material/button): support palettes for icon button in M3 (#29433)
Fixes that palettes weren't implemented for the icon button in M3. This was done initially, because M3 doesn't explicitly support palettes, but it can make it harder for users to migrate. Fixes #29307. (cherry picked from commit 095947c)
1 parent 58efa28 commit b7959c2

File tree

4 files changed

+72
-13
lines changed

4 files changed

+72
-13
lines changed

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

+18-9
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,13 @@
3737
@include token-utils.create-token-values(tokens-mat-icon-button.$prefix, $mat-tokens);
3838
}
3939

40-
@mixin color($theme) {
40+
/// Outputs color theme styles for the mat-icon-button.
41+
/// @param {Map} $theme The theme to generate color styles for.
42+
/// @param {ArgList} Additional optional arguments (only supported for M3 themes):
43+
/// $color-variant: The color variant to use for the button: primary, secondary, tertiary, or error.
44+
@mixin color($theme, $options...) {
4145
@if inspection.get-theme-version($theme) == 1 {
42-
@include _theme-from-tokens(inspection.get-theme-tokens($theme, color));
46+
@include _theme-from-tokens(inspection.get-theme-tokens($theme, color), $options...);
4347
}
4448
@else {
4549
@include sass-utils.current-selector-or-root() {
@@ -122,10 +126,14 @@
122126
);
123127
}
124128

125-
@mixin theme($theme) {
129+
/// Outputs all (base, color, typography, and density) theme styles for the mat-icon-button.
130+
/// @param {Map} $theme The theme to generate styles for.
131+
/// @param {ArgList} Additional optional arguments (only supported for M3 themes):
132+
/// $color-variant: The color variant to use for the button: primary, secondary, tertiary, or error.
133+
@mixin theme($theme, $options...) {
126134
@include theming.private-check-duplicate-theme-styles($theme, 'mat-icon-button') {
127135
@if inspection.get-theme-version($theme) == 1 {
128-
@include _theme-from-tokens(inspection.get-theme-tokens($theme));
136+
@include _theme-from-tokens(inspection.get-theme-tokens($theme), $options...);
129137
}
130138
@else {
131139
@include base($theme);
@@ -142,13 +150,14 @@
142150
}
143151
}
144152

145-
@mixin _theme-from-tokens($tokens) {
153+
@mixin _theme-from-tokens($tokens, $options...) {
146154
@include validation.selector-defined(
147155
'Calls to Angular Material theme mixins with an M3 theme must be wrapped in a selector');
148156
@if ($tokens != ()) {
149-
@include token-utils.create-token-values(
150-
tokens-mdc-icon-button.$prefix, map.get($tokens, tokens-mdc-icon-button.$prefix));
151-
@include token-utils.create-token-values(
152-
tokens-mat-icon-button.$prefix, map.get($tokens, tokens-mat-icon-button.$prefix));
157+
$mdc-tokens: token-utils.get-tokens-for($tokens, tokens-mdc-icon-button.$prefix, $options...);
158+
$mat-tokens: token-utils.get-tokens-for($tokens, tokens-mat-icon-button.$prefix, $options...);
159+
160+
@include token-utils.create-token-values(tokens-mdc-icon-button.$prefix, $mdc-tokens);
161+
@include token-utils.create-token-values(tokens-mat-icon-button.$prefix, $mat-tokens);
153162
}
154163
}

src/material/core/theming/_color-api-backwards-compatibility.scss

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
@use '../../badge/badge-theme';
22
@use '../../button/button-theme';
33
@use '../../button/fab-theme';
4+
@use '../../button/icon-button-theme';
45
@use '../../checkbox/checkbox-theme';
56
@use '../../chips/chips-theme';
67
@use '../../datepicker/datepicker-theme';
@@ -80,6 +81,7 @@ $_overrides-only: true;
8081

8182
&.mat-mdc-button-base {
8283
@include button-theme.color($theme, $primary-options...);
84+
@include icon-button-theme.color($theme, $primary-options...);
8385
}
8486

8587
&.mat-mdc-standard-chip {

src/material/core/tokens/m3/mat/_icon-button.scss

+31-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $prefix: (mat, icon-button);
1111
/// @param {Map} $token-slots Possible token slots
1212
/// @return {Map} A set of custom tokens for the mat-icon-button
1313
@function get-tokens($systems, $exclude-hardcoded, $token-slots) {
14-
$tokens: (
14+
$tokens: ((
1515
state-layer-color: map.get($systems, md-sys-color, on-surface-variant),
1616
disabled-state-layer-color: map.get($systems, md-sys-color, on-surface-variant),
1717
ripple-color: sass-utils.safe-color-change(
@@ -21,7 +21,36 @@ $prefix: (mat, icon-button);
2121
hover-state-layer-opacity: map.get($systems, md-sys-state, hover-state-layer-opacity),
2222
focus-state-layer-opacity: map.get($systems, md-sys-state, focus-state-layer-opacity),
2323
pressed-state-layer-opacity: map.get($systems, md-sys-state, pressed-state-layer-opacity),
24-
);
24+
), (
25+
primary: (
26+
state-layer-color: map.get($systems, md-sys-color, primary),
27+
ripple-color: sass-utils.safe-color-change(
28+
map.get($systems, md-sys-color, primary),
29+
$alpha: map.get($systems, md-sys-state, pressed-state-layer-opacity)
30+
),
31+
),
32+
secondary: (
33+
state-layer-color: map.get($systems, md-sys-color, secondary),
34+
ripple-color: sass-utils.safe-color-change(
35+
map.get($systems, md-sys-color, secondary),
36+
$alpha: map.get($systems, md-sys-state, pressed-state-layer-opacity)
37+
),
38+
),
39+
tertiary: (
40+
state-layer-color: map.get($systems, md-sys-color, tertiary),
41+
ripple-color: sass-utils.safe-color-change(
42+
map.get($systems, md-sys-color, tertiary),
43+
$alpha: map.get($systems, md-sys-state, pressed-state-layer-opacity)
44+
),
45+
),
46+
error: (
47+
state-layer-color: map.get($systems, md-sys-color, error),
48+
ripple-color: sass-utils.safe-color-change(
49+
map.get($systems, md-sys-color, error),
50+
$alpha: map.get($systems, md-sys-state, pressed-state-layer-opacity)
51+
),
52+
)
53+
));
2554

2655
@return token-utils.namespace-tokens($prefix, $tokens, $token-slots);
2756
}

src/material/core/tokens/m3/mdc/_icon-button.scss

+21-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use 'sass:map';
2+
@use 'sass:meta';
13
@use '../../token-utils';
24

35
// The prefix used to generate the fully qualified name for tokens in this file.
@@ -9,9 +11,26 @@ $prefix: (mdc, icon-button);
911
/// @param {Map} $token-slots Possible token slots
1012
/// @return {Map} A set of tokens for the MDC icon-button
1113
@function get-tokens($systems, $exclude-hardcoded, $token-slots) {
12-
$mdc-tokens: token-utils.get-mdc-tokens('icon-button', $systems, $exclude-hardcoded);
14+
$tokens: token-utils.get-mdc-tokens('icon-button', $systems, $exclude-hardcoded);
15+
$variant-tokens: (
16+
primary: (
17+
icon-color: map.get($systems, md-sys-color, primary)
18+
),
19+
secondary: (
20+
icon-color: map.get($systems, md-sys-color, secondary)
21+
),
22+
tertiary: (
23+
icon-color: map.get($systems, md-sys-color, tertiary)
24+
),
25+
error: (
26+
icon-color: map.get($systems, md-sys-color, error)
27+
)
28+
);
1329

14-
@return token-utils.namespace-tokens($prefix, _fix-tokens($mdc-tokens), $token-slots);
30+
@return token-utils.namespace-tokens($prefix, (
31+
_fix-tokens($tokens),
32+
token-utils.map-values($variant-tokens, meta.get-function(_fix-tokens))
33+
), $token-slots);
1534
}
1635

1736
/// Fixes inconsistent values in the icon button tokens so that they can produce valid styles.

0 commit comments

Comments
 (0)