Skip to content

Commit 3ea64a9

Browse files
authored
docs(material/theming): fix incorrect type annotation (#30671)
1 parent b53de49 commit 3ea64a9

File tree

1 file changed

+68
-44
lines changed

1 file changed

+68
-44
lines changed

src/material/core/m2/_theming.scss

+68-44
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
@return map.get(map.get($palette, contrast), $hue);
2525
}
2626

27-
2827
/// Creates a map of hues to colors for a theme. This is used to define a theme palette in terms
2928
/// of the Material Design hues.
3029
/// @param {Map} $base-palette Map of hue keys to color values for the basis for this palette.
@@ -33,29 +32,39 @@
3332
/// @param {String | Number} $darker "darker" hue for this palette.
3433
/// @param {String | Number} $text "text" hue for this palette.
3534
/// @returns {Map} A complete Angular Material theming palette.
36-
@function define-palette($base-palette, $default: 500, $lighter: 100, $darker: 700,
37-
$text: $default) {
38-
$result: map.merge($base-palette, (
39-
default: _get-color-from-palette($base-palette, $default),
40-
lighter: _get-color-from-palette($base-palette, $lighter),
41-
darker: _get-color-from-palette($base-palette, $darker),
42-
text: _get-color-from-palette($base-palette, $text),
43-
default-contrast: get-contrast-color-from-palette($base-palette, $default),
44-
lighter-contrast: get-contrast-color-from-palette($base-palette, $lighter),
45-
darker-contrast: get-contrast-color-from-palette($base-palette, $darker)
46-
));
35+
@function define-palette(
36+
$base-palette,
37+
$default: 500,
38+
$lighter: 100,
39+
$darker: 700,
40+
$text: $default
41+
) {
42+
$result: map.merge(
43+
$base-palette,
44+
(
45+
default: _get-color-from-palette($base-palette, $default),
46+
lighter: _get-color-from-palette($base-palette, $lighter),
47+
darker: _get-color-from-palette($base-palette, $darker),
48+
text: _get-color-from-palette($base-palette, $text),
49+
default-contrast: get-contrast-color-from-palette($base-palette, $default),
50+
lighter-contrast: get-contrast-color-from-palette($base-palette, $lighter),
51+
darker-contrast: get-contrast-color-from-palette($base-palette, $darker),
52+
)
53+
);
4754

4855
// For each hue in the palette, add a "-contrast" color to the map.
4956
@each $hue, $color in $base-palette {
50-
$result: map.merge($result, (
51-
'#{$hue}-contrast': get-contrast-color-from-palette($base-palette, $hue)
52-
));
57+
$result: map.merge(
58+
$result,
59+
(
60+
'#{$hue}-contrast': get-contrast-color-from-palette($base-palette, $hue),
61+
)
62+
);
5363
}
5464

5565
@return $result;
5666
}
5767

58-
5968
/// Gets a color from a theme palette (the output of mat-palette).
6069
/// The hue can be one of the standard values (500, A400, etc.), one of the three preconfigured
6170
/// hues (default, lighter, darker), or any of the aforementioned suffixed with "-contrast".
@@ -93,11 +102,9 @@
93102
$color: map.get($theme, color);
94103
@if not map.get($color, primary) {
95104
@error 'Theme does not define a valid "primary" palette.';
96-
}
97-
@else if not map.get($color, accent) {
105+
} @else if not map.get($color, accent) {
98106
@error 'Theme does not define a valid "accent" palette.';
99-
}
100-
@else if not map.get($color, warn) {
107+
} @else if not map.get($color, warn) {
101108
@error 'Theme does not define a valid "warn" palette.';
102109
}
103110
}
@@ -113,7 +120,7 @@
113120
warn: if($warn != null, $warn, define-palette(palette.$red-palette)),
114121
is-dark: false,
115122
foreground: palette.$light-theme-foreground-palette,
116-
background: palette.$light-theme-background-palette,
123+
background: palette.$light-theme-background-palette
117124
);
118125
}
119126

@@ -126,7 +133,7 @@
126133
warn: if($warn != null, $warn, define-palette(palette.$red-palette)),
127134
is-dark: true,
128135
foreground: palette.$dark-theme-foreground-palette,
129-
background: palette.$dark-theme-background-palette,
136+
background: palette.$dark-theme-background-palette
130137
);
131138
}
132139

@@ -152,10 +159,12 @@
152159
// configuration for the `color` theming part.
153160
@if $accent != null {
154161
@warn theming.$private-legacy-theme-warning;
155-
$theme: _mat-validate-theme((
156-
_is-legacy-theme: true,
157-
color: _mat-create-light-color-config($primary, $accent, $warn),
158-
));
162+
$theme: _mat-validate-theme(
163+
(
164+
_is-legacy-theme: true,
165+
color: _mat-create-light-color-config($primary, $accent, $warn),
166+
)
167+
);
159168

160169
@return _internalize-theme(theming.private-create-backwards-compatibility-theme($theme));
161170
}
@@ -168,10 +177,16 @@
168177
$primary: map.get($color-settings, primary);
169178
$accent: map.get($color-settings, accent);
170179
$warn: map.get($color-settings, warn);
171-
$result: map.merge($result, (color: _mat-create-light-color-config($primary, $accent, $warn)));
180+
$result: map.merge(
181+
$result,
182+
(
183+
color: _mat-create-light-color-config($primary, $accent, $warn),
184+
)
185+
);
172186
}
173187
@return _internalize-theme(
174-
theming.private-create-backwards-compatibility-theme(_mat-validate-theme($result)));
188+
theming.private-create-backwards-compatibility-theme(_mat-validate-theme($result))
189+
);
175190
}
176191

177192
// TODO: Remove legacy API and rename below `$primary` to `$config`. Currently it cannot be renamed
@@ -196,10 +211,12 @@
196211
// configuration for the `color` theming part.
197212
@if $accent != null {
198213
@warn theming.$private-legacy-theme-warning;
199-
$theme: _mat-validate-theme((
200-
_is-legacy-theme: true,
201-
color: _mat-create-dark-color-config($primary, $accent, $warn),
202-
));
214+
$theme: _mat-validate-theme(
215+
(
216+
_is-legacy-theme: true,
217+
color: _mat-create-dark-color-config($primary, $accent, $warn),
218+
)
219+
);
203220
@return _internalize-theme(theming.private-create-backwards-compatibility-theme($theme));
204221
}
205222
// If the map pattern is used (1), we just pass-through the configurations for individual
@@ -211,10 +228,16 @@
211228
$primary: map.get($color-settings, primary);
212229
$accent: map.get($color-settings, accent);
213230
$warn: map.get($color-settings, warn);
214-
$result: map.merge($result, (color: _mat-create-dark-color-config($primary, $accent, $warn)));
231+
$result: map.merge(
232+
$result,
233+
(
234+
color: _mat-create-dark-color-config($primary, $accent, $warn),
235+
)
236+
);
215237
}
216238
@return _internalize-theme(
217-
theming.private-create-backwards-compatibility-theme(_mat-validate-theme($result)));
239+
theming.private-create-backwards-compatibility-theme(_mat-validate-theme($result))
240+
);
218241
}
219242

220243
/// Gets the color configuration from the given theme or configuration.
@@ -227,11 +250,11 @@
227250
}
228251

229252
/// Gets the density configuration from the given theme or configuration.
230-
/// @param {Map} $theme-or-config The theme map returned from `define-light-theme` or
253+
/// @param {Map|string|number} $theme-or-config The theme map returned from `define-light-theme` or
231254
/// `define-dark-theme`.
232-
/// @param {Map} $default The default value returned if the given `$theme` does not include a
233-
/// `density` configuration.
234-
/// @returns {Map} Density configuration for a theme.
255+
/// @param {string|number} $default The default value returned if the given `$theme` does not
256+
/// include a `density` configuration.
257+
/// @returns {string|number} Density configuration for a theme.
235258
@function get-density-config($theme-or-config, $default: 0) {
236259
@return theming.private-get-density-config($theme-or-config, $default);
237260
}
@@ -258,14 +281,16 @@
258281
$internalized-theme: (
259282
theming.$private-internal-name: (
260283
theme-version: 0,
261-
m2-config: $theme
262-
)
284+
m2-config: $theme,
285+
),
263286
);
264287
@if (theming.$theme-legacy-inspection-api-compatibility) {
265288
@return map.merge($theme, $internalized-theme);
266289
}
267-
$error-theme:
268-
_replace-values-with-errors($theme, 'Theme may only be accessed via theme inspection API');
290+
$error-theme: _replace-values-with-errors(
291+
$theme,
292+
'Theme may only be accessed via theme inspection API'
293+
);
269294
@return map.merge($error-theme, $internalized-theme);
270295
}
271296

@@ -285,8 +310,7 @@
285310
$value: map.set($value, $k, _replace-values-with-errors($v, $message));
286311
}
287312
@return $value;
288-
}
289-
@else if $value-type == 'list' and list.length($value) > 0 {
313+
} @else if $value-type == 'list' and list.length($value) > 0 {
290314
@for $i from 1 through list.length() {
291315
$value: list.set-nth($value, $i, _replace-values-with-errors(list.nth($value, $i), $message));
292316
}

0 commit comments

Comments
 (0)