material-web/tokens/_md-comp-outlined-select.scss
Elizabeth Mitchell cfd053c397 fix(tokens): update components to v0.192
PiperOrigin-RevId: 565714251
2023-09-15 10:27:07 -07:00

156 lines
5.2 KiB
SCSS

//
// Copyright 2023 Google LLC
// SPDX-License-Identifier: Apache-2.0
//
// go/keep-sorted start
@use 'sass:map';
@use 'sass:string';
// go/keep-sorted end
// go/keep-sorted start
@use './md-sys-color';
@use './md-sys-elevation';
@use './md-sys-shape';
@use './md-sys-state';
@use './md-sys-typescale';
@use './v0_192/md-comp-outlined-select';
@use './values';
// go/keep-sorted end
$supported-tokens: (
// go/keep-sorted start
'text-field-container-shape',
'text-field-disabled-input-text-color',
'text-field-disabled-input-text-opacity',
'text-field-disabled-label-text-color',
'text-field-disabled-label-text-opacity',
'text-field-disabled-leading-icon-color',
'text-field-disabled-leading-icon-opacity',
'text-field-disabled-outline-color',
'text-field-disabled-outline-opacity',
'text-field-disabled-outline-width',
'text-field-disabled-supporting-text-color',
'text-field-disabled-supporting-text-opacity',
'text-field-disabled-trailing-icon-color',
'text-field-disabled-trailing-icon-opacity',
'text-field-error-focus-input-text-color',
'text-field-error-focus-label-text-color',
'text-field-error-focus-leading-icon-color',
'text-field-error-focus-outline-color',
'text-field-error-focus-supporting-text-color',
'text-field-error-focus-trailing-icon-color',
'text-field-error-hover-input-text-color',
'text-field-error-hover-label-text-color',
'text-field-error-hover-leading-icon-color',
'text-field-error-hover-outline-color',
'text-field-error-hover-supporting-text-color',
'text-field-error-hover-trailing-icon-color',
'text-field-error-input-text-color',
'text-field-error-label-text-color',
'text-field-error-leading-icon-color',
'text-field-error-outline-color',
'text-field-error-supporting-text-color',
'text-field-error-trailing-icon-color',
'text-field-focus-input-text-color',
'text-field-focus-label-text-color',
'text-field-focus-leading-icon-color',
'text-field-focus-outline-color',
'text-field-focus-outline-width',
'text-field-focus-supporting-text-color',
'text-field-focus-trailing-icon-color',
'text-field-hover-input-text-color',
'text-field-hover-label-text-color',
'text-field-hover-leading-icon-color',
'text-field-hover-outline-color',
'text-field-hover-outline-width',
'text-field-hover-supporting-text-color',
'text-field-hover-trailing-icon-color',
'text-field-input-text-color',
'text-field-input-text-font',
'text-field-input-text-line-height',
'text-field-input-text-size',
'text-field-input-text-weight',
'text-field-label-text-color',
'text-field-label-text-font',
'text-field-label-text-line-height',
'text-field-label-text-populated-line-height',
'text-field-label-text-populated-size',
'text-field-label-text-size',
'text-field-label-text-weight',
'text-field-leading-icon-color',
'text-field-leading-icon-size',
'text-field-outline-color',
'text-field-outline-width',
'text-field-supporting-text-color',
'text-field-supporting-text-font',
'text-field-supporting-text-line-height',
'text-field-supporting-text-size',
'text-field-supporting-text-weight',
'text-field-trailing-icon-color',
'text-field-trailing-icon-size',
// go/keep-sorted end
);
$unsupported-tokens: (
// go/keep-sorted start
'menu-cascading-menu-indicator-icon-color',
'menu-cascading-menu-indicator-icon-size',
'menu-container-color',
'menu-container-elevation',
'menu-container-shadow-color',
'menu-container-shape',
'menu-divider-color',
'menu-divider-height',
'menu-list-item-container-height',
'menu-list-item-label-text-color',
'menu-list-item-label-text-font',
'menu-list-item-label-text-line-height',
'menu-list-item-label-text-size',
'menu-list-item-label-text-tracking',
'menu-list-item-label-text-type',
'menu-list-item-label-text-weight',
'menu-list-item-selected-container-color',
'menu-list-item-with-leading-icon-leading-icon-color',
'menu-list-item-with-leading-icon-leading-icon-size',
'menu-list-item-with-trailing-icon-trailing-icon-color',
'menu-list-item-with-trailing-icon-trailing-icon-size',
'text-field-container-color',
'text-field-error-hover-state-layer-color',
'text-field-error-hover-state-layer-opacity',
'text-field-hover-state-layer-color',
'text-field-hover-state-layer-opacity',
'text-field-input-text-tracking',
'text-field-input-text-type',
'text-field-label-text-tracking',
'text-field-label-text-type',
'text-field-supporting-text-tracking',
'text-field-supporting-text-type',
// go/keep-sorted end
);
$_default: (
'md-sys-color': md-sys-color.values-light(),
'md-sys-elevation': md-sys-elevation.values(),
'md-sys-shape': md-sys-shape.values(),
'md-sys-state': md-sys-state.values(),
'md-sys-typescale': md-sys-typescale.values(),
);
@function values($deps: $_default, $exclude-hardcoded-values: false) {
$tokens: values.validate(
md-comp-outlined-select.values($deps, $exclude-hardcoded-values),
$supported-tokens: $supported-tokens,
$unsupported-tokens: $unsupported-tokens
);
$tokens: map.merge(
$tokens,
(
// TODO(b/259455114): remove when focus tokens update to 3px
'text-field-focus-outline-width': if($exclude-hardcoded-values, null, 3px)
)
);
@return $tokens;
}