-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf(material-experimental/mdc-list): reduce bundle size (#24291)
Reduces the amount of CSS generated by the MDC-based list by: * Uses a similar approach to #24256 to reduce the amount of CSS for the internal checkbox. These changes reduce the styles even more, because we can exclude the hover/focus/pressed styles. This shaved off ~15kb. * Disabling CSS variable fallbacks. This shaved off another 1-2kb. (cherry picked from commit 5a00027)
- Loading branch information
Showing
9 changed files
with
108 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
src/material-experimental/mdc-checkbox/_checkbox-private.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
@use 'sass:map'; | ||
@use 'sass:color'; | ||
@use '@material/checkbox/checkbox-theme' as mdc-checkbox-theme; | ||
@use '@material/theme/theme-color' as mdc-theme-color; | ||
|
||
// Configuration used to define the theme-related CSS variables. | ||
$private-checkbox-theme-config: map.merge(mdc-checkbox-theme.$light-theme, ( | ||
// Exclude all of the ripple-related styles. | ||
selected-focus-state-layer-color: null, | ||
selected-focus-state-layer-opacity: null, | ||
selected-hover-state-layer-color: null, | ||
selected-hover-state-layer-opacity: null, | ||
selected-pressed-state-layer-color: null, | ||
selected-pressed-state-layer-opacity: null, | ||
unselected-focus-state-layer-color: null, | ||
unselected-focus-state-layer-opacity: null, | ||
unselected-hover-state-layer-color: null, | ||
unselected-hover-state-layer-opacity: null, | ||
unselected-pressed-state-layer-color: null, | ||
unselected-pressed-state-layer-opacity: null, | ||
)); | ||
|
||
// Mixin that includes the checkbox theme styles with a given palette. | ||
// By default, the MDC checkbox always uses the `secondary` palette. | ||
@mixin private-checkbox-styles-with-color($color, $mdc-color) { | ||
$on-surface: mdc-theme-color.prop-value(on-surface); | ||
$border-color: rgba($on-surface, color.opacity(mdc-checkbox-theme.$border-color)); | ||
$disabled-color: rgba($on-surface, color.opacity(mdc-checkbox-theme.$disabled-color)); | ||
|
||
@include mdc-checkbox-theme.theme(( | ||
selected-checkmark-color: mdc-theme-color.prop-value(on-#{$mdc-color}), | ||
|
||
selected-focus-icon-color: $color, | ||
selected-hover-icon-color: $color, | ||
selected-icon-color: $color, | ||
selected-pressed-icon-color: $color, | ||
unselected-focus-icon-color: $color, | ||
unselected-hover-icon-color: $color, | ||
|
||
disabled-selected-icon-color: $disabled-color, | ||
disabled-unselected-icon-color: $disabled-color, | ||
|
||
unselected-icon-color: $border-color, | ||
unselected-pressed-icon-color: $border-color, | ||
)); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters