/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/material/input/_input-theme.scss
36 строк
661 B
Andrew Seguin
refactor: remove duplicate theme style warnings (#31361)
17 июн 2025, 20:49
Не верифицирован
17 июн 2025, 20:49
ca83d31
Код
Авторство
О чём код?
@use '../core/typography/typography'; @use '../core/tokens/token-utils'; @mixin base($theme) { // No-op } @mixin color($theme) { // No-op } @mixin typography($theme) { // No-op } @mixin density($theme) { // No-op } /// Defines the tokens that will be available in the `overrides` mixin and for docs extraction. @function _define-overrides() { @return ( ( namespace: '', tokens: token-utils.get-overrides((base: (), color: (), typography: (), density: ()), input), ), ); } @mixin overrides($tokens: ()) { @include token-utils.batch-create-token-values($tokens, _define-overrides()); } @mixin theme($theme) { // No-op }