| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- //
- // Copyright 2021 Google Inc.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- @use 'sass:map';
- @use '@material/theme/theme';
- @use '@material/theme/keys';
- @use '@material/tokens/resolvers';
- @use './chip-theme';
- $_light-theme: (
- container-shape: null,
- container-height: null,
- flat-container-elevation: null,
- flat-outline-color: null,
- flat-outline-width: null,
- elevated-container-elevation: null,
- elevated-container-color: null,
- elevated-container-shadow-color: null,
- label-text-font: null,
- label-text-line-height: null,
- label-text-size: null,
- label-text-weight: null,
- label-text-tracking: null,
- label-text-type: null,
- label-text-color: null,
- flat-disabled-outline-color: null,
- flat-disabled-outline-opacity: null,
- disabled-label-text-color: null,
- disabled-label-text-opacity: null,
- elevated-disabled-container-elevation: null,
- elevated-disabled-container-color: null,
- elevated-disabled-container-opacity: null,
- hover-state-layer-color: null,
- hover-state-layer-opacity: null,
- hover-label-text-color: null,
- elevated-hover-container-elevation: null,
- focus-state-layer-color: null,
- focus-state-layer-opacity: null,
- focus-label-text-color: null,
- flat-focus-outline-color: null,
- elevated-focus-container-elevation: null,
- pressed-state-layer-color: null,
- pressed-state-layer-opacity: null,
- pressed-label-text-color: null,
- elevated-pressed-container-elevation: null,
- container-surface-tint-layer-color: null,
- with-leading-icon-disabled-leading-icon-color: null,
- with-leading-icon-disabled-leading-icon-opacity: null,
- with-leading-icon-focus-leading-icon-color: null,
- with-leading-icon-hover-leading-icon-color: null,
- with-leading-icon-leading-icon-color: null,
- with-leading-icon-leading-icon-size: null,
- with-leading-icon-pressed-leading-icon-color: null,
- );
- $_custom-property-prefix: 'suggestion-chip';
- @mixin theme($theme, $resolvers: resolvers.$material) {
- @include theme.validate-theme($_light-theme, $theme);
- $theme: chip-theme.resolve-theme($theme, $resolvers: $resolvers);
- @include keys.declare-custom-properties(
- $theme,
- $prefix: $_custom-property-prefix
- );
- }
- @mixin theme-styles($theme, $resolvers: resolvers.$material) {
- @include theme.validate-theme-styles($_light-theme, $theme);
- $theme: keys.create-theme-properties(
- $theme,
- $prefix: $_custom-property-prefix
- );
- @include chip-theme.theme-styles($theme, $resolvers: $resolvers);
- }
|