123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- @use '../core/theming/theming';
- @use '../core/theming/inspection';
- @use '../core/theming/validation';
- @use '../core/typography/typography';
- @use '../core/style/sass-utils';
- @use '../core/tokens/token-utils';
- @use '../core/tokens/m2/mat/slider' as tokens-mat-slider;
- @use '../core/tokens/m2/mdc/slider' as tokens-mdc-slider;
- /// Outputs base theme styles (styles not dependent on the color, typography, or density settings)
- /// for the mat-slider.
- /// @param {Map} $theme The theme to generate base styles for.
- @mixin base($theme) {
- @if inspection.get-theme-version($theme) == 1 {
- @include _theme-from-tokens(inspection.get-theme-tokens($theme, base));
- } @else {
- @include sass-utils.current-selector-or-root() {
- @include token-utils.create-token-values(
- tokens-mdc-slider.$prefix,
- tokens-mdc-slider.get-unthemable-tokens()
- );
- @include token-utils.create-token-values(
- tokens-mat-slider.$prefix,
- tokens-mat-slider.get-unthemable-tokens()
- );
- }
- }
- }
- /// Outputs color theme styles for the mat-slider.
- /// @param {Map} $theme The theme to generate color styles for.
- /// @param {ArgList} Additional optional arguments (only supported for M3 themes):
- /// $color-variant: The color variant to use for the slider: primary, secondary, tertiary,
- /// or error (If not specified, default primary color will be used).
- @mixin color($theme, $options...) {
- @if inspection.get-theme-version($theme) == 1 {
- @include _theme-from-tokens(inspection.get-theme-tokens($theme, color), $options...);
- } @else {
- @include sass-utils.current-selector-or-root() {
- @include token-utils.create-token-values(
- tokens-mdc-slider.$prefix,
- tokens-mdc-slider.get-color-tokens($theme)
- );
- @include token-utils.create-token-values(
- tokens-mat-slider.$prefix,
- tokens-mat-slider.get-color-tokens($theme)
- );
- .mat-accent {
- @include token-utils.create-token-values(
- tokens-mdc-slider.$prefix,
- tokens-mdc-slider.private-get-color-palette-color-tokens($theme, accent)
- );
- @include token-utils.create-token-values(
- tokens-mat-slider.$prefix,
- tokens-mat-slider.private-get-color-palette-color-tokens($theme, accent)
- );
- }
- .mat-warn {
- @include token-utils.create-token-values(
- tokens-mdc-slider.$prefix,
- tokens-mdc-slider.private-get-color-palette-color-tokens($theme, warn)
- );
- @include token-utils.create-token-values(
- tokens-mat-slider.$prefix,
- tokens-mat-slider.private-get-color-palette-color-tokens($theme, warn)
- );
- }
- }
- }
- }
- /// Outputs typography theme styles for the mat-slider.
- /// @param {Map} $theme The theme to generate typography styles for.
- @mixin typography($theme) {
- @if inspection.get-theme-version($theme) == 1 {
- @include _theme-from-tokens(inspection.get-theme-tokens($theme, typography));
- } @else {
- @include sass-utils.current-selector-or-root() {
- @include token-utils.create-token-values(
- tokens-mdc-slider.$prefix,
- tokens-mdc-slider.get-typography-tokens($theme)
- );
- }
- }
- }
- /// Outputs density theme styles for the mat-slider.
- /// @param {Map} $theme The theme to generate density styles for.
- @mixin density($theme) {
- @if inspection.get-theme-version($theme) == 1 {
- @include _theme-from-tokens(inspection.get-theme-tokens($theme, density));
- } @else {
- @include sass-utils.current-selector-or-root() {
- @include token-utils.create-token-values(
- tokens-mdc-slider.$prefix,
- tokens-mdc-slider.get-density-tokens($theme)
- );
- }
- }
- }
- /// Defines the tokens that will be available in the `overrides` mixin and for docs extraction.
- @function _define-overrides() {
- @return (
- (
- namespace: tokens-mat-slider.$prefix,
- tokens: tokens-mat-slider.get-token-slots(),
- ),
- (
- namespace: tokens-mdc-slider.$prefix,
- tokens: tokens-mdc-slider.get-token-slots(),
- ),
- );
- }
- /// Outputs the CSS variable values for the given tokens.
- /// @param {Map} $tokens The token values to emit.
- @mixin overrides($tokens: ()) {
- @include token-utils.batch-create-token-values($tokens, _define-overrides()...);
- }
- /// Outputs all (base, color, typography, and density) theme styles for the mat-option.
- /// @param {Map} $theme The theme to generate styles for.
- /// @param {ArgList} Additional optional arguments (only supported for M3 themes):
- /// $color-variant: The color variant to use for the slider: primary, secondary, tertiary,
- /// or error (If not specified, default primary color will be used).
- @mixin theme($theme, $options...) {
- @include theming.private-check-duplicate-theme-styles($theme, 'mat-slider') {
- @if inspection.get-theme-version($theme) == 1 {
- @include _theme-from-tokens(inspection.get-theme-tokens($theme), $options...);
- } @else {
- @include base($theme);
- @if inspection.theme-has($theme, color) {
- @include color($theme);
- }
- @if inspection.theme-has($theme, density) {
- @include density($theme);
- }
- @if inspection.theme-has($theme, typography) {
- @include typography($theme);
- }
- }
- }
- }
- @mixin _theme-from-tokens($tokens, $options...) {
- @include validation.selector-defined(
- 'Calls to Angular Material theme mixins with an M3 theme must be wrapped in a selector'
- );
- $mdc-slider-tokens: token-utils.get-tokens-for($tokens, tokens-mdc-slider.$prefix, $options...);
- $mat-slider-tokens: token-utils.get-tokens-for($tokens, tokens-mat-slider.$prefix, $options...);
- @include token-utils.create-token-values(tokens-mdc-slider.$prefix, $mdc-slider-tokens);
- @include token-utils.create-token-values(tokens-mat-slider.$prefix, $mat-slider-tokens);
- }
|