@koobiq/components 16.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +6 -0
- package/_index.scss +3 -0
- package/alert/README.md +0 -0
- package/alert/_alert-theme.scss +61 -0
- package/alert/alert.component.d.ts +22 -0
- package/alert/alert.component.scss +81 -0
- package/alert/alert.module.d.ts +10 -0
- package/alert/index.d.ts +1 -0
- package/alert/public-api.d.ts +2 -0
- package/autocomplete/README.md +0 -0
- package/autocomplete/_autocomplete-theme.scss +21 -0
- package/autocomplete/autocomplete-origin.directive.d.ts +12 -0
- package/autocomplete/autocomplete-trigger.directive.d.ts +167 -0
- package/autocomplete/autocomplete.component.d.ts +73 -0
- package/autocomplete/autocomplete.module.d.ts +12 -0
- package/autocomplete/autocomplete.scss +63 -0
- package/autocomplete/index.d.ts +1 -0
- package/autocomplete/public-api.d.ts +4 -0
- package/button/README.md +0 -0
- package/button/_button-base.scss +69 -0
- package/button/_button-theme.scss +180 -0
- package/button/button.component.d.ts +58 -0
- package/button/button.module.d.ts +11 -0
- package/button/button.scss +59 -0
- package/button/index.d.ts +1 -0
- package/button/public-api.d.ts +2 -0
- package/button-toggle/README.md +0 -0
- package/button-toggle/_button-toggle-theme.scss +92 -0
- package/button-toggle/button-toggle.component.d.ts +145 -0
- package/button-toggle/button-toggle.module.d.ts +10 -0
- package/button-toggle/button-toggle.scss +163 -0
- package/button-toggle/index.d.ts +1 -0
- package/button-toggle/public-api.d.ts +2 -0
- package/card/README.md +0 -0
- package/card/_card-theme.scss +61 -0
- package/card/card.component.d.ts +28 -0
- package/card/card.component.scss +40 -0
- package/card/card.module.d.ts +10 -0
- package/card/index.d.ts +1 -0
- package/card/public-api.d.ts +2 -0
- package/checkbox/README.md +1 -0
- package/checkbox/_checkbox-theme.scss +120 -0
- package/checkbox/checkbox-config.d.ts +13 -0
- package/checkbox/checkbox-module.d.ts +9 -0
- package/checkbox/checkbox-required-validator.d.ts +13 -0
- package/checkbox/checkbox.d.ts +133 -0
- package/checkbox/checkbox.scss +177 -0
- package/checkbox/index.d.ts +1 -0
- package/checkbox/public-api.d.ts +4 -0
- package/code-block/README.md +32 -0
- package/code-block/_code-block-theme.scss +326 -0
- package/code-block/actionbar.component.d.ts +22 -0
- package/code-block/actionbar.component.scss +27 -0
- package/code-block/code-block.component.d.ts +74 -0
- package/code-block/code-block.module.d.ts +14 -0
- package/code-block/code-block.scss +128 -0
- package/code-block/code-block.types.d.ts +16 -0
- package/code-block/index.d.ts +1 -0
- package/code-block/public-api.d.ts +3 -0
- package/core/_index.scss +1 -0
- package/core/animation/animation.d.ts +6 -0
- package/core/animation/fade-animations.d.ts +2 -0
- package/core/animation/index.d.ts +3 -0
- package/core/animation/select-animations.d.ts +12 -0
- package/core/common-behaviors/color.d.ts +33 -0
- package/core/common-behaviors/common-module.d.ts +25 -0
- package/core/common-behaviors/constructor.d.ts +9 -0
- package/core/common-behaviors/disabled.d.ts +8 -0
- package/core/common-behaviors/error-state.d.ts +28 -0
- package/core/common-behaviors/index.d.ts +5 -0
- package/core/common-behaviors/tabindex.d.ts +8 -0
- package/core/datetime/date-adapter.d.ts +12 -0
- package/core/datetime/date-formats.d.ts +4 -0
- package/core/datetime/index.d.ts +2 -0
- package/core/error/error-options.d.ts +14 -0
- package/core/form-field/form-field-ref.d.ts +11 -0
- package/core/form-field/index.d.ts +1 -0
- package/core/formatters/date/formatter.d.ts +9 -0
- package/core/formatters/date/formatter.pipe.d.ts +109 -0
- package/core/formatters/index.d.ts +11 -0
- package/core/formatters/number/formatter.d.ts +37 -0
- package/core/forms/_forms-theme.scss +34 -0
- package/core/forms/_forms.scss +114 -0
- package/core/forms/forms-module.d.ts +7 -0
- package/core/forms/forms.directive.d.ts +22 -0
- package/core/forms/index.d.ts +2 -0
- package/core/highlight/_highlight-theme.scss +8 -0
- package/core/highlight/highlight.pipe.d.ts +8 -0
- package/core/highlight/index.d.ts +9 -0
- package/core/index.d.ts +1 -0
- package/core/label/label-options.d.ts +13 -0
- package/core/line/line.d.ts +28 -0
- package/core/locales/en-US.d.ts +11 -0
- package/core/locales/es-LA.d.ts +7 -0
- package/core/locales/fa-IR.d.ts +7 -0
- package/core/locales/index.d.ts +4 -0
- package/core/locales/locale-service.d.ts +63 -0
- package/core/locales/locale-service.module.d.ts +6 -0
- package/core/locales/pt-BR.d.ts +7 -0
- package/core/locales/ru-RU.d.ts +11 -0
- package/core/locales/zh-CN.d.ts +7 -0
- package/core/option/_optgroup-theme.scss +25 -0
- package/core/option/_option-action-theme.scss +41 -0
- package/core/option/_option-theme.scss +44 -0
- package/core/option/action.d.ts +44 -0
- package/core/option/action.scss +28 -0
- package/core/option/index.d.ts +4 -0
- package/core/option/optgroup.d.ts +16 -0
- package/core/option/optgroup.scss +16 -0
- package/core/option/option-module.d.ts +11 -0
- package/core/option/option.d.ts +116 -0
- package/core/option/option.scss +62 -0
- package/core/overlay/overlay-position-map.d.ts +34 -0
- package/core/pop-up/_pop-up.scss +129 -0
- package/core/pop-up/constants.d.ts +30 -0
- package/core/pop-up/index.d.ts +3 -0
- package/core/pop-up/pop-up-trigger.d.ts +71 -0
- package/core/pop-up/pop-up.d.ts +36 -0
- package/core/public-api.d.ts +21 -0
- package/core/select/constants.d.ts +23 -0
- package/core/select/errors.d.ts +19 -0
- package/core/select/events.d.ts +1 -0
- package/core/select/index.d.ts +3 -0
- package/core/selection/constants.d.ts +4 -0
- package/core/selection/index.d.ts +3 -0
- package/core/selection/pseudo-checkbox/_pseudo-checkbox-theme.scss +48 -0
- package/core/selection/pseudo-checkbox/pseudo-checkbox.d.ts +32 -0
- package/core/selection/pseudo-checkbox/pseudo-checkbox.module.d.ts +8 -0
- package/core/selection/pseudo-checkbox/pseudo-checkbox.scss +77 -0
- package/core/services/measure-scrollbar.service.d.ts +11 -0
- package/core/styles/_core.scss +11 -0
- package/core/styles/_koobiq-theme.scss +153 -0
- package/core/styles/_tokens.kbq.import.scss +4 -0
- package/core/styles/_tokens.scss +6 -0
- package/core/styles/_variables.scss +9 -0
- package/core/styles/common/_animation.scss +35 -0
- package/core/styles/common/_button.scss +10 -0
- package/core/styles/common/_clearfix.scss +13 -0
- package/core/styles/common/_groups.scss +119 -0
- package/core/styles/common/_index.scss +13 -0
- package/core/styles/common/_input.scss +28 -0
- package/core/styles/common/_layout.scss +8 -0
- package/core/styles/common/_list.scss +46 -0
- package/core/styles/common/_overlay.scss +173 -0
- package/core/styles/common/_popup.scss +11 -0
- package/core/styles/common/_rtl.scss +33 -0
- package/core/styles/common/_size.scss +8 -0
- package/core/styles/common/_vendor-prefixes.scss +24 -0
- package/core/styles/common/_visually-hidden.scss +36 -0
- package/core/styles/functions/_index.scss +3 -0
- package/core/styles/functions/_number.scss +65 -0
- package/core/styles/functions/_string.scss +19 -0
- package/core/styles/functions/_timing.scss +30 -0
- package/core/styles/theming/_badges-theme.scss +118 -0
- package/core/styles/theming/_badges.scss +57 -0
- package/core/styles/theming/_components-theming.scss +1218 -0
- package/core/styles/theming/_index.scss +2 -0
- package/core/styles/theming/_scrollbars-theme.scss +77 -0
- package/core/styles/theming/_theming.scss +144 -0
- package/core/styles/theming/prebuilt/light-theme.scss +20 -0
- package/core/styles/typography/_index.scss +2 -0
- package/core/styles/typography/_typography-utils.scss +78 -0
- package/core/styles/typography/_typography.scss +191 -0
- package/core/styles/visual/_body.scss +35 -0
- package/core/styles/visual/_index.scss +3 -0
- package/core/styles/visual/_layout-media.scss +7 -0
- package/core/styles/visual/_layout.scss +527 -0
- package/core/title/index.d.ts +1 -0
- package/core/title/title-text-ref.d.ts +6 -0
- package/core/utils/data-size/config.d.ts +20 -0
- package/core/utils/data-size/data-size.pipe.d.ts +13 -0
- package/core/utils/data-size/index.d.ts +3 -0
- package/core/utils/data-size/size.d.ts +16 -0
- package/core/utils/index.d.ts +1 -0
- package/core/utils/public-api.d.ts +2 -0
- package/core/utils/utils.d.ts +2 -0
- package/core/validation/index.d.ts +1 -0
- package/core/validation/validation.d.ts +7 -0
- package/core/version.d.ts +2 -0
- package/datepicker/README.md +0 -0
- package/datepicker/_datepicker-theme.scss +101 -0
- package/datepicker/calendar-body.component.d.ts +55 -0
- package/datepicker/calendar-body.scss +61 -0
- package/datepicker/calendar-header.component.d.ts +45 -0
- package/datepicker/calendar-header.scss +75 -0
- package/datepicker/calendar.component.d.ts +81 -0
- package/datepicker/calendar.scss +68 -0
- package/datepicker/datepicker-animations.d.ts +9 -0
- package/datepicker/datepicker-content.scss +33 -0
- package/datepicker/datepicker-errors.d.ts +2 -0
- package/datepicker/datepicker-input.directive.d.ts +180 -0
- package/datepicker/datepicker-input.scss +15 -0
- package/datepicker/datepicker-intl.d.ts +32 -0
- package/datepicker/datepicker-module.d.ts +20 -0
- package/datepicker/datepicker-toggle.component.d.ts +35 -0
- package/datepicker/datepicker-toggle.scss +41 -0
- package/datepicker/datepicker.component.d.ts +148 -0
- package/datepicker/index.d.ts +1 -0
- package/datepicker/month-view.component.d.ts +74 -0
- package/datepicker/public-api.d.ts +10 -0
- package/divider/README.md +0 -0
- package/divider/_divider-theme.scss +10 -0
- package/divider/divider.component.d.ts +14 -0
- package/divider/divider.module.d.ts +8 -0
- package/divider/divider.scss +47 -0
- package/divider/index.d.ts +1 -0
- package/divider/public-api.d.ts +2 -0
- package/dl/README.md +0 -0
- package/dl/_dl-theme.scss +86 -0
- package/dl/dl.component.d.ts +27 -0
- package/dl/dl.module.d.ts +10 -0
- package/dl/dl.scss +99 -0
- package/dl/index.d.ts +1 -0
- package/dl/public-api.d.ts +2 -0
- package/dropdown/_dropdown-theme.scss +85 -0
- package/dropdown/dropdown-animations.d.ts +11 -0
- package/dropdown/dropdown-content.directive.d.ts +32 -0
- package/dropdown/dropdown-errors.d.ts +17 -0
- package/dropdown/dropdown-item.component.d.ts +52 -0
- package/dropdown/dropdown-item.scss +82 -0
- package/dropdown/dropdown-trigger.directive.d.ts +136 -0
- package/dropdown/dropdown.component.d.ts +121 -0
- package/dropdown/dropdown.module.d.ts +13 -0
- package/dropdown/dropdown.scss +79 -0
- package/dropdown/dropdown.types.d.ts +53 -0
- package/dropdown/index.d.ts +1 -0
- package/dropdown/public-api.d.ts +8 -0
- package/ellipsis-center/ellipsis-center.directive.d.ts +27 -0
- package/ellipsis-center/index.d.ts +1 -0
- package/ellipsis-center/public-api.d.ts +1 -0
- package/esm2022/alert/alert.component.mjs +67 -0
- package/esm2022/alert/alert.module.mjs +44 -0
- package/esm2022/alert/index.mjs +2 -0
- package/esm2022/alert/koobiq-components-alert.mjs +5 -0
- package/esm2022/alert/public-api.mjs +3 -0
- package/esm2022/autocomplete/autocomplete-origin.directive.mjs +21 -0
- package/esm2022/autocomplete/autocomplete-trigger.directive.mjs +552 -0
- package/esm2022/autocomplete/autocomplete.component.mjs +153 -0
- package/esm2022/autocomplete/autocomplete.module.mjs +34 -0
- package/esm2022/autocomplete/index.mjs +2 -0
- package/esm2022/autocomplete/koobiq-components-autocomplete.mjs +5 -0
- package/esm2022/autocomplete/public-api.mjs +5 -0
- package/esm2022/button/button.component.mjs +164 -0
- package/esm2022/button/button.module.mjs +40 -0
- package/esm2022/button/index.mjs +2 -0
- package/esm2022/button/koobiq-components-button.mjs +5 -0
- package/esm2022/button/public-api.mjs +3 -0
- package/esm2022/button-toggle/button-toggle.component.mjs +381 -0
- package/esm2022/button-toggle/button-toggle.module.mjs +20 -0
- package/esm2022/button-toggle/index.mjs +2 -0
- package/esm2022/button-toggle/koobiq-components-button-toggle.mjs +5 -0
- package/esm2022/button-toggle/public-api.mjs +3 -0
- package/esm2022/card/card.component.mjs +80 -0
- package/esm2022/card/card.module.mjs +28 -0
- package/esm2022/card/index.mjs +2 -0
- package/esm2022/card/koobiq-components-card.mjs +5 -0
- package/esm2022/card/public-api.mjs +3 -0
- package/esm2022/checkbox/checkbox-config.mjs +6 -0
- package/esm2022/checkbox/checkbox-module.mjs +19 -0
- package/esm2022/checkbox/checkbox-required-validator.mjs +27 -0
- package/esm2022/checkbox/checkbox.mjs +304 -0
- package/esm2022/checkbox/index.mjs +2 -0
- package/esm2022/checkbox/koobiq-components-checkbox.mjs +5 -0
- package/esm2022/checkbox/public-api.mjs +5 -0
- package/esm2022/code-block/actionbar.component.mjs +67 -0
- package/esm2022/code-block/code-block.component.mjs +157 -0
- package/esm2022/code-block/code-block.module.mjs +60 -0
- package/esm2022/code-block/code-block.types.mjs +2 -0
- package/esm2022/code-block/index.mjs +2 -0
- package/esm2022/code-block/koobiq-components-code-block.mjs +5 -0
- package/esm2022/code-block/public-api.mjs +4 -0
- package/esm2022/core/animation/animation.mjs +8 -0
- package/esm2022/core/animation/fade-animations.mjs +9 -0
- package/esm2022/core/animation/index.mjs +4 -0
- package/esm2022/core/animation/select-animations.mjs +45 -0
- package/esm2022/core/common-behaviors/color.mjs +45 -0
- package/esm2022/core/common-behaviors/common-module.mjs +83 -0
- package/esm2022/core/common-behaviors/constructor.mjs +2 -0
- package/esm2022/core/common-behaviors/disabled.mjs +17 -0
- package/esm2022/core/common-behaviors/error-state.mjs +21 -0
- package/esm2022/core/common-behaviors/index.mjs +6 -0
- package/esm2022/core/common-behaviors/tabindex.mjs +18 -0
- package/esm2022/core/datetime/date-adapter.mjs +15 -0
- package/esm2022/core/datetime/date-formats.mjs +3 -0
- package/esm2022/core/datetime/index.mjs +3 -0
- package/esm2022/core/error/error-options.mjs +26 -0
- package/esm2022/core/form-field/form-field-ref.mjs +8 -0
- package/esm2022/core/form-field/index.mjs +2 -0
- package/esm2022/core/formatters/date/formatter.mjs +21 -0
- package/esm2022/core/formatters/date/formatter.pipe.mjs +220 -0
- package/esm2022/core/formatters/index.mjs +78 -0
- package/esm2022/core/formatters/number/formatter.mjs +129 -0
- package/esm2022/core/forms/forms-module.mjs +24 -0
- package/esm2022/core/forms/forms.directive.mjs +66 -0
- package/esm2022/core/forms/index.mjs +3 -0
- package/esm2022/core/highlight/highlight.pipe.mjs +23 -0
- package/esm2022/core/highlight/index.mjs +19 -0
- package/esm2022/core/index.mjs +2 -0
- package/esm2022/core/koobiq-components-core.mjs +5 -0
- package/esm2022/core/label/label-options.mjs +4 -0
- package/esm2022/core/line/line.mjs +70 -0
- package/esm2022/core/locales/en-US.mjs +10 -0
- package/esm2022/core/locales/es-LA.mjs +6 -0
- package/esm2022/core/locales/fa-IR.mjs +6 -0
- package/esm2022/core/locales/index.mjs +5 -0
- package/esm2022/core/locales/locale-service.mjs +70 -0
- package/esm2022/core/locales/locale-service.module.mjs +19 -0
- package/esm2022/core/locales/pt-BR.mjs +6 -0
- package/esm2022/core/locales/ru-RU.mjs +10 -0
- package/esm2022/core/locales/zh-CN.mjs +6 -0
- package/esm2022/core/option/action.mjs +122 -0
- package/esm2022/core/option/index.mjs +5 -0
- package/esm2022/core/option/optgroup.mjs +31 -0
- package/esm2022/core/option/option-module.mjs +21 -0
- package/esm2022/core/option/option.mjs +262 -0
- package/esm2022/core/overlay/overlay-position-map.mjs +244 -0
- package/esm2022/core/pop-up/constants.mjs +36 -0
- package/esm2022/core/pop-up/index.mjs +4 -0
- package/esm2022/core/pop-up/pop-up-trigger.mjs +247 -0
- package/esm2022/core/pop-up/pop-up.mjs +94 -0
- package/esm2022/core/public-api.mjs +22 -0
- package/esm2022/core/select/constants.mjs +27 -0
- package/esm2022/core/select/errors.mjs +26 -0
- package/esm2022/core/select/events.mjs +2 -0
- package/esm2022/core/select/index.mjs +4 -0
- package/esm2022/core/selection/constants.mjs +6 -0
- package/esm2022/core/selection/index.mjs +4 -0
- package/esm2022/core/selection/pseudo-checkbox/pseudo-checkbox.mjs +52 -0
- package/esm2022/core/selection/pseudo-checkbox/pseudo-checkbox.module.mjs +18 -0
- package/esm2022/core/services/measure-scrollbar.service.mjs +48 -0
- package/esm2022/core/title/index.mjs +2 -0
- package/esm2022/core/title/title-text-ref.mjs +3 -0
- package/esm2022/core/utils/data-size/config.mjs +22 -0
- package/esm2022/core/utils/data-size/data-size.pipe.mjs +32 -0
- package/esm2022/core/utils/data-size/index.mjs +4 -0
- package/esm2022/core/utils/data-size/size.mjs +50 -0
- package/esm2022/core/utils/index.mjs +2 -0
- package/esm2022/core/utils/public-api.mjs +3 -0
- package/esm2022/core/utils/utils.mjs +5 -0
- package/esm2022/core/validation/index.mjs +2 -0
- package/esm2022/core/validation/validation.mjs +5 -0
- package/esm2022/core/version.mjs +3 -0
- package/esm2022/datepicker/calendar-body.component.mjs +87 -0
- package/esm2022/datepicker/calendar-header.component.mjs +134 -0
- package/esm2022/datepicker/calendar.component.mjs +175 -0
- package/esm2022/datepicker/datepicker-animations.mjs +32 -0
- package/esm2022/datepicker/datepicker-errors.mjs +6 -0
- package/esm2022/datepicker/datepicker-input.directive.mjs +954 -0
- package/esm2022/datepicker/datepicker-intl.mjs +40 -0
- package/esm2022/datepicker/datepicker-module.mjs +97 -0
- package/esm2022/datepicker/datepicker-toggle.component.mjs +86 -0
- package/esm2022/datepicker/datepicker.component.mjs +393 -0
- package/esm2022/datepicker/index.mjs +2 -0
- package/esm2022/datepicker/koobiq-components-datepicker.mjs +5 -0
- package/esm2022/datepicker/month-view.component.mjs +158 -0
- package/esm2022/datepicker/public-api.mjs +11 -0
- package/esm2022/divider/divider.component.mjs +49 -0
- package/esm2022/divider/divider.module.mjs +18 -0
- package/esm2022/divider/index.mjs +2 -0
- package/esm2022/divider/koobiq-components-divider.mjs +5 -0
- package/esm2022/divider/public-api.mjs +3 -0
- package/esm2022/dl/dl.component.mjs +82 -0
- package/esm2022/dl/dl.module.mjs +40 -0
- package/esm2022/dl/index.mjs +2 -0
- package/esm2022/dl/koobiq-components-dl.mjs +5 -0
- package/esm2022/dl/public-api.mjs +3 -0
- package/esm2022/dropdown/dropdown-animations.mjs +41 -0
- package/esm2022/dropdown/dropdown-content.directive.mjs +64 -0
- package/esm2022/dropdown/dropdown-errors.mjs +29 -0
- package/esm2022/dropdown/dropdown-item.component.mjs +146 -0
- package/esm2022/dropdown/dropdown-trigger.directive.mjs +489 -0
- package/esm2022/dropdown/dropdown.component.mjs +292 -0
- package/esm2022/dropdown/dropdown.module.mjs +48 -0
- package/esm2022/dropdown/dropdown.types.mjs +24 -0
- package/esm2022/dropdown/index.mjs +2 -0
- package/esm2022/dropdown/koobiq-components-dropdown.mjs +5 -0
- package/esm2022/dropdown/public-api.mjs +9 -0
- package/esm2022/ellipsis-center/ellipsis-center.directive.mjs +106 -0
- package/esm2022/ellipsis-center/index.mjs +2 -0
- package/esm2022/ellipsis-center/koobiq-components-ellipsis-center.mjs +5 -0
- package/esm2022/ellipsis-center/public-api.mjs +2 -0
- package/esm2022/file-upload/file-drop.mjs +43 -0
- package/esm2022/file-upload/file-upload.mjs +4 -0
- package/esm2022/file-upload/file-upload.module.mjs +66 -0
- package/esm2022/file-upload/index.mjs +2 -0
- package/esm2022/file-upload/koobiq-components-file-upload.mjs +5 -0
- package/esm2022/file-upload/multiple-file-upload.component.mjs +161 -0
- package/esm2022/file-upload/public-api.mjs +6 -0
- package/esm2022/file-upload/single-file-upload.component.mjs +130 -0
- package/esm2022/form-field/cleaner.mjs +14 -0
- package/esm2022/form-field/form-field-control.mjs +5 -0
- package/esm2022/form-field/form-field-errors.mjs +7 -0
- package/esm2022/form-field/form-field.mjs +276 -0
- package/esm2022/form-field/form-field.module.mjs +71 -0
- package/esm2022/form-field/hint.mjs +34 -0
- package/esm2022/form-field/index.mjs +2 -0
- package/esm2022/form-field/koobiq-components-form-field.mjs +5 -0
- package/esm2022/form-field/password-hint.mjs +144 -0
- package/esm2022/form-field/password-toggle.mjs +64 -0
- package/esm2022/form-field/prefix.mjs +13 -0
- package/esm2022/form-field/public-api.mjs +13 -0
- package/esm2022/form-field/stepper.mjs +71 -0
- package/esm2022/form-field/suffix.mjs +13 -0
- package/esm2022/form-field/validate.directive.mjs +158 -0
- package/esm2022/icon/icon.component.mjs +145 -0
- package/esm2022/icon/icon.module.mjs +40 -0
- package/esm2022/icon/index.mjs +2 -0
- package/esm2022/icon/koobiq-components-icon.mjs +5 -0
- package/esm2022/icon/public-api.mjs +3 -0
- package/esm2022/index.mjs +2 -0
- package/esm2022/input/index.mjs +2 -0
- package/esm2022/input/input-errors.mjs +4 -0
- package/esm2022/input/input-number-validators.mjs +88 -0
- package/esm2022/input/input-number.mjs +168 -0
- package/esm2022/input/input-password.mjs +233 -0
- package/esm2022/input/input-value-accessor.mjs +3 -0
- package/esm2022/input/input.mjs +297 -0
- package/esm2022/input/input.module.mjs +63 -0
- package/esm2022/input/koobiq-components-input.mjs +5 -0
- package/esm2022/input/public-api.mjs +7 -0
- package/esm2022/koobiq-components.mjs +5 -0
- package/esm2022/link/index.mjs +2 -0
- package/esm2022/link/koobiq-components-link.mjs +5 -0
- package/esm2022/link/link.component.mjs +132 -0
- package/esm2022/link/link.module.mjs +24 -0
- package/esm2022/link/public-api.mjs +3 -0
- package/esm2022/list/index.mjs +2 -0
- package/esm2022/list/koobiq-components-list.mjs +5 -0
- package/esm2022/list/list-selection.component.mjs +705 -0
- package/esm2022/list/list.component.mjs +44 -0
- package/esm2022/list/list.module.mjs +53 -0
- package/esm2022/list/public-api.mjs +4 -0
- package/esm2022/loader-overlay/index.mjs +2 -0
- package/esm2022/loader-overlay/koobiq-components-loader-overlay.mjs +5 -0
- package/esm2022/loader-overlay/loader-overlay.component.mjs +103 -0
- package/esm2022/loader-overlay/loader-overlay.module.mjs +48 -0
- package/esm2022/loader-overlay/public-api.mjs +3 -0
- package/esm2022/markdown/index.mjs +2 -0
- package/esm2022/markdown/koobiq-components-markdown.mjs +5 -0
- package/esm2022/markdown/markdown.component.mjs +53 -0
- package/esm2022/markdown/markdown.module.mjs +23 -0
- package/esm2022/markdown/markdown.service.mjs +25 -0
- package/esm2022/markdown/markdown.values.mjs +29 -0
- package/esm2022/markdown/public-api.mjs +5 -0
- package/esm2022/modal/css-unit.pipe.mjs +17 -0
- package/esm2022/modal/index.mjs +2 -0
- package/esm2022/modal/koobiq-components-modal.mjs +5 -0
- package/esm2022/modal/modal-control.service.mjs +85 -0
- package/esm2022/modal/modal-ref.class.mjs +8 -0
- package/esm2022/modal/modal-util.mjs +17 -0
- package/esm2022/modal/modal.component.mjs +509 -0
- package/esm2022/modal/modal.directive.mjs +52 -0
- package/esm2022/modal/modal.module.mjs +69 -0
- package/esm2022/modal/modal.service.mjs +124 -0
- package/esm2022/modal/modal.type.mjs +9 -0
- package/esm2022/modal/public-api.mjs +7 -0
- package/esm2022/navbar/index.mjs +2 -0
- package/esm2022/navbar/koobiq-components-navbar.mjs +5 -0
- package/esm2022/navbar/navbar-item.component.mjs +605 -0
- package/esm2022/navbar/navbar.component.mjs +239 -0
- package/esm2022/navbar/navbar.module.mjs +90 -0
- package/esm2022/navbar/public-api.mjs +5 -0
- package/esm2022/navbar/vertical-navbar.animation.mjs +10 -0
- package/esm2022/navbar/vertical-navbar.component.mjs +114 -0
- package/esm2022/popover/index.mjs +2 -0
- package/esm2022/popover/koobiq-components-popover.mjs +5 -0
- package/esm2022/popover/popover-animations.mjs +16 -0
- package/esm2022/popover/popover-confirm.component.mjs +108 -0
- package/esm2022/popover/popover.component.mjs +266 -0
- package/esm2022/popover/popover.module.mjs +29 -0
- package/esm2022/popover/public-api.mjs +5 -0
- package/esm2022/progress-bar/index.mjs +2 -0
- package/esm2022/progress-bar/koobiq-components-progress-bar.mjs +5 -0
- package/esm2022/progress-bar/progress-bar.component.mjs +70 -0
- package/esm2022/progress-bar/progress-bar.module.mjs +36 -0
- package/esm2022/progress-bar/public-api.mjs +3 -0
- package/esm2022/progress-spinner/index.mjs +2 -0
- package/esm2022/progress-spinner/koobiq-components-progress-spinner.mjs +5 -0
- package/esm2022/progress-spinner/progress-spinner.component.mjs +85 -0
- package/esm2022/progress-spinner/progress-spinner.module.mjs +36 -0
- package/esm2022/progress-spinner/public-api.mjs +3 -0
- package/esm2022/public-api.mjs +2 -0
- package/esm2022/radio/index.mjs +2 -0
- package/esm2022/radio/koobiq-components-radio.mjs +5 -0
- package/esm2022/radio/public-api.mjs +3 -0
- package/esm2022/radio/radio.component.mjs +460 -0
- package/esm2022/radio/radio.module.mjs +20 -0
- package/esm2022/select/index.mjs +2 -0
- package/esm2022/select/koobiq-components-select.mjs +5 -0
- package/esm2022/select/public-api.mjs +4 -0
- package/esm2022/select/select-option.directive.mjs +65 -0
- package/esm2022/select/select.component.mjs +1146 -0
- package/esm2022/select/select.module.mjs +79 -0
- package/esm2022/sidebar/index.mjs +2 -0
- package/esm2022/sidebar/koobiq-components-sidebar.mjs +5 -0
- package/esm2022/sidebar/public-api.mjs +3 -0
- package/esm2022/sidebar/sidebar-animations.mjs +23 -0
- package/esm2022/sidebar/sidebar.component.mjs +146 -0
- package/esm2022/sidebar/sidebar.module.mjs +30 -0
- package/esm2022/sidepanel/index.mjs +2 -0
- package/esm2022/sidepanel/koobiq-components-sidepanel.mjs +5 -0
- package/esm2022/sidepanel/public-api.mjs +7 -0
- package/esm2022/sidepanel/sidepanel-animations.mjs +26 -0
- package/esm2022/sidepanel/sidepanel-config.mjs +33 -0
- package/esm2022/sidepanel/sidepanel-container.component.mjs +110 -0
- package/esm2022/sidepanel/sidepanel-directives.mjs +167 -0
- package/esm2022/sidepanel/sidepanel-ref.mjs +53 -0
- package/esm2022/sidepanel/sidepanel.module.mjs +75 -0
- package/esm2022/sidepanel/sidepanel.service.mjs +171 -0
- package/esm2022/splitter/index.mjs +2 -0
- package/esm2022/splitter/koobiq-components-splitter.mjs +5 -0
- package/esm2022/splitter/public-api.mjs +3 -0
- package/esm2022/splitter/splitter.component.mjs +482 -0
- package/esm2022/splitter/splitter.module.mjs +38 -0
- package/esm2022/table/index.mjs +2 -0
- package/esm2022/table/koobiq-components-table.mjs +5 -0
- package/esm2022/table/public-api.mjs +3 -0
- package/esm2022/table/table.component.mjs +13 -0
- package/esm2022/table/table.module.mjs +28 -0
- package/esm2022/tabs/index.mjs +2 -0
- package/esm2022/tabs/koobiq-components-tabs.mjs +5 -0
- package/esm2022/tabs/paginated-tab-header.mjs +479 -0
- package/esm2022/tabs/public-api.mjs +11 -0
- package/esm2022/tabs/tab-body.component.mjs +179 -0
- package/esm2022/tabs/tab-content.directive.mjs +15 -0
- package/esm2022/tabs/tab-group.component.mjs +349 -0
- package/esm2022/tabs/tab-header.component.mjs +67 -0
- package/esm2022/tabs/tab-label-wrapper.directive.mjs +78 -0
- package/esm2022/tabs/tab-label.directive.mjs +17 -0
- package/esm2022/tabs/tab-nav-bar/index.mjs +2 -0
- package/esm2022/tabs/tab-nav-bar/tab-nav-bar.mjs +111 -0
- package/esm2022/tabs/tab.component.mjs +134 -0
- package/esm2022/tabs/tabs-animations.mjs +24 -0
- package/esm2022/tabs/tabs.module.mjs +106 -0
- package/esm2022/tags/index.mjs +2 -0
- package/esm2022/tags/koobiq-components-tags.mjs +5 -0
- package/esm2022/tags/public-api.mjs +6 -0
- package/esm2022/tags/tag-default-options.mjs +4 -0
- package/esm2022/tags/tag-input.mjs +248 -0
- package/esm2022/tags/tag-list.component.mjs +714 -0
- package/esm2022/tags/tag-text-control.mjs +2 -0
- package/esm2022/tags/tag.component.mjs +381 -0
- package/esm2022/tags/tag.module.mjs +56 -0
- package/esm2022/textarea/index.mjs +2 -0
- package/esm2022/textarea/koobiq-components-textarea.mjs +5 -0
- package/esm2022/textarea/public-api.mjs +3 -0
- package/esm2022/textarea/textarea.component.mjs +254 -0
- package/esm2022/textarea/textarea.module.mjs +21 -0
- package/esm2022/timepicker/index.mjs +2 -0
- package/esm2022/timepicker/koobiq-components-timepicker.mjs +5 -0
- package/esm2022/timepicker/public-api.mjs +4 -0
- package/esm2022/timepicker/timepicker.constants.mjs +25 -0
- package/esm2022/timepicker/timepicker.directive.mjs +647 -0
- package/esm2022/timepicker/timepicker.module.mjs +32 -0
- package/esm2022/timezone/cities-by-filter.pipe.mjs +17 -0
- package/esm2022/timezone/index.mjs +2 -0
- package/esm2022/timezone/koobiq-components-timezone.mjs +5 -0
- package/esm2022/timezone/public-api.mjs +7 -0
- package/esm2022/timezone/timezone-option.component.mjs +48 -0
- package/esm2022/timezone/timezone-option.directive.mjs +60 -0
- package/esm2022/timezone/timezone-select.component.mjs +40 -0
- package/esm2022/timezone/timezone.models.mjs +3 -0
- package/esm2022/timezone/timezone.module.mjs +75 -0
- package/esm2022/timezone/timezone.utils.mjs +79 -0
- package/esm2022/timezone/utc-offset.pipe.mjs +17 -0
- package/esm2022/title/index.mjs +2 -0
- package/esm2022/title/koobiq-components-title.mjs +5 -0
- package/esm2022/title/public-api.mjs +3 -0
- package/esm2022/title/title.directive.mjs +107 -0
- package/esm2022/title/title.module.mjs +18 -0
- package/esm2022/toast/index.mjs +2 -0
- package/esm2022/toast/koobiq-components-toast.mjs +5 -0
- package/esm2022/toast/public-api.mjs +6 -0
- package/esm2022/toast/toast-animations.mjs +9 -0
- package/esm2022/toast/toast-container.component.mjs +44 -0
- package/esm2022/toast/toast.component.mjs +92 -0
- package/esm2022/toast/toast.module.mjs +42 -0
- package/esm2022/toast/toast.service.mjs +188 -0
- package/esm2022/toast/toast.type.mjs +15 -0
- package/esm2022/toggle/index.mjs +2 -0
- package/esm2022/toggle/koobiq-components-toggle.mjs +5 -0
- package/esm2022/toggle/public-api.mjs +3 -0
- package/esm2022/toggle/toggle.component.mjs +160 -0
- package/esm2022/toggle/toggle.module.mjs +20 -0
- package/esm2022/tooltip/index.mjs +2 -0
- package/esm2022/tooltip/koobiq-components-tooltip.mjs +5 -0
- package/esm2022/tooltip/public-api.mjs +3 -0
- package/esm2022/tooltip/tooltip.animations.mjs +19 -0
- package/esm2022/tooltip/tooltip.component.mjs +308 -0
- package/esm2022/tooltip/tooltip.module.mjs +42 -0
- package/esm2022/tree/control/base-tree-control.mjs +60 -0
- package/esm2022/tree/control/flat-tree-control.mjs +130 -0
- package/esm2022/tree/control/nested-tree-control.mjs +41 -0
- package/esm2022/tree/control/tree-control.mjs +2 -0
- package/esm2022/tree/data-source/flat-data-source.mjs +162 -0
- package/esm2022/tree/data-source/nested-data-source.mjs +30 -0
- package/esm2022/tree/index.mjs +2 -0
- package/esm2022/tree/koobiq-components-tree.mjs +5 -0
- package/esm2022/tree/node.mjs +31 -0
- package/esm2022/tree/outlet.mjs +15 -0
- package/esm2022/tree/padding.directive.mjs +113 -0
- package/esm2022/tree/public-api.mjs +16 -0
- package/esm2022/tree/toggle.mjs +81 -0
- package/esm2022/tree/tree-base.mjs +243 -0
- package/esm2022/tree/tree-errors.mjs +36 -0
- package/esm2022/tree/tree-option.component.mjs +299 -0
- package/esm2022/tree/tree-selection.component.mjs +557 -0
- package/esm2022/tree/tree.mjs +15 -0
- package/esm2022/tree/tree.module.mjs +57 -0
- package/esm2022/tree-select/index.mjs +2 -0
- package/esm2022/tree-select/koobiq-components-tree-select.mjs +5 -0
- package/esm2022/tree-select/public-api.mjs +3 -0
- package/esm2022/tree-select/tree-select.component.mjs +936 -0
- package/esm2022/tree-select/tree-select.module.mjs +45 -0
- package/fesm2022/koobiq-components-alert.mjs +115 -0
- package/fesm2022/koobiq-components-alert.mjs.map +1 -0
- package/fesm2022/koobiq-components-autocomplete.mjs +748 -0
- package/fesm2022/koobiq-components-autocomplete.mjs.map +1 -0
- package/fesm2022/koobiq-components-button-toggle.mjs +403 -0
- package/fesm2022/koobiq-components-button-toggle.mjs.map +1 -0
- package/fesm2022/koobiq-components-button.mjs +207 -0
- package/fesm2022/koobiq-components-button.mjs.map +1 -0
- package/fesm2022/koobiq-components-card.mjs +111 -0
- package/fesm2022/koobiq-components-card.mjs.map +1 -0
- package/fesm2022/koobiq-components-checkbox.mjs +353 -0
- package/fesm2022/koobiq-components-checkbox.mjs.map +1 -0
- package/fesm2022/koobiq-components-code-block.mjs +278 -0
- package/fesm2022/koobiq-components-code-block.mjs.map +1 -0
- package/fesm2022/koobiq-components-core.mjs +2338 -0
- package/fesm2022/koobiq-components-core.mjs.map +1 -0
- package/fesm2022/koobiq-components-datepicker.mjs +2101 -0
- package/fesm2022/koobiq-components-datepicker.mjs.map +1 -0
- package/fesm2022/koobiq-components-divider.mjs +71 -0
- package/fesm2022/koobiq-components-divider.mjs.map +1 -0
- package/fesm2022/koobiq-components-dl.mjs +126 -0
- package/fesm2022/koobiq-components-dl.mjs.map +1 -0
- package/fesm2022/koobiq-components-dropdown.mjs +1102 -0
- package/fesm2022/koobiq-components-dropdown.mjs.map +1 -0
- package/fesm2022/koobiq-components-ellipsis-center.mjs +111 -0
- package/fesm2022/koobiq-components-ellipsis-center.mjs.map +1 -0
- package/fesm2022/koobiq-components-file-upload.mjs +388 -0
- package/fesm2022/koobiq-components-file-upload.mjs.map +1 -0
- package/fesm2022/koobiq-components-form-field.mjs +825 -0
- package/fesm2022/koobiq-components-form-field.mjs.map +1 -0
- package/fesm2022/koobiq-components-icon.mjs +188 -0
- package/fesm2022/koobiq-components-icon.mjs.map +1 -0
- package/fesm2022/koobiq-components-input.mjs +831 -0
- package/fesm2022/koobiq-components-input.mjs.map +1 -0
- package/fesm2022/koobiq-components-link.mjs +159 -0
- package/fesm2022/koobiq-components-link.mjs.map +1 -0
- package/fesm2022/koobiq-components-list.mjs +800 -0
- package/fesm2022/koobiq-components-list.mjs.map +1 -0
- package/fesm2022/koobiq-components-loader-overlay.mjs +155 -0
- package/fesm2022/koobiq-components-loader-overlay.mjs.map +1 -0
- package/fesm2022/koobiq-components-markdown.mjs +127 -0
- package/fesm2022/koobiq-components-markdown.mjs.map +1 -0
- package/fesm2022/koobiq-components-modal.mjs +868 -0
- package/fesm2022/koobiq-components-modal.mjs.map +1 -0
- package/fesm2022/koobiq-components-navbar.mjs +1037 -0
- package/fesm2022/koobiq-components-navbar.mjs.map +1 -0
- package/fesm2022/koobiq-components-popover.mjs +407 -0
- package/fesm2022/koobiq-components-popover.mjs.map +1 -0
- package/fesm2022/koobiq-components-progress-bar.mjs +110 -0
- package/fesm2022/koobiq-components-progress-bar.mjs.map +1 -0
- package/fesm2022/koobiq-components-progress-spinner.mjs +125 -0
- package/fesm2022/koobiq-components-progress-spinner.mjs.map +1 -0
- package/fesm2022/koobiq-components-radio.mjs +481 -0
- package/fesm2022/koobiq-components-radio.mjs.map +1 -0
- package/fesm2022/koobiq-components-select.mjs +1278 -0
- package/fesm2022/koobiq-components-select.mjs.map +1 -0
- package/fesm2022/koobiq-components-sidebar.mjs +202 -0
- package/fesm2022/koobiq-components-sidebar.mjs.map +1 -0
- package/fesm2022/koobiq-components-sidepanel.mjs +613 -0
- package/fesm2022/koobiq-components-sidepanel.mjs.map +1 -0
- package/fesm2022/koobiq-components-splitter.mjs +524 -0
- package/fesm2022/koobiq-components-splitter.mjs.map +1 -0
- package/fesm2022/koobiq-components-table.mjs +45 -0
- package/fesm2022/koobiq-components-table.mjs.map +1 -0
- package/fesm2022/koobiq-components-tabs.mjs +1499 -0
- package/fesm2022/koobiq-components-tabs.mjs.map +1 -0
- package/fesm2022/koobiq-components-tags.mjs +1383 -0
- package/fesm2022/koobiq-components-tags.mjs.map +1 -0
- package/fesm2022/koobiq-components-textarea.mjs +277 -0
- package/fesm2022/koobiq-components-textarea.mjs.map +1 -0
- package/fesm2022/koobiq-components-timepicker.mjs +706 -0
- package/fesm2022/koobiq-components-timepicker.mjs.map +1 -0
- package/fesm2022/koobiq-components-timezone.mjs +314 -0
- package/fesm2022/koobiq-components-timezone.mjs.map +1 -0
- package/fesm2022/koobiq-components-title.mjs +125 -0
- package/fesm2022/koobiq-components-title.mjs.map +1 -0
- package/fesm2022/koobiq-components-toast.mjs +375 -0
- package/fesm2022/koobiq-components-toast.mjs.map +1 -0
- package/fesm2022/koobiq-components-toggle.mjs +182 -0
- package/fesm2022/koobiq-components-toggle.mjs.map +1 -0
- package/fesm2022/koobiq-components-tooltip.mjs +370 -0
- package/fesm2022/koobiq-components-tooltip.mjs.map +1 -0
- package/fesm2022/koobiq-components-tree-select.mjs +978 -0
- package/fesm2022/koobiq-components-tree-select.mjs.map +1 -0
- package/fesm2022/koobiq-components-tree.mjs +1802 -0
- package/fesm2022/koobiq-components-tree.mjs.map +1 -0
- package/fesm2022/koobiq-components.mjs +4 -0
- package/fesm2022/koobiq-components.mjs.map +1 -0
- package/file-upload/README.md +0 -0
- package/file-upload/_file-upload-theme.scss +174 -0
- package/file-upload/file-drop.d.ts +11 -0
- package/file-upload/file-upload.d.ts +22 -0
- package/file-upload/file-upload.module.d.ts +18 -0
- package/file-upload/file-upload.scss +46 -0
- package/file-upload/index.d.ts +1 -0
- package/file-upload/multiple-file-upload.component.d.ts +51 -0
- package/file-upload/multiple-file-upload.component.scss +148 -0
- package/file-upload/public-api.d.ts +5 -0
- package/file-upload/single-file-upload.component.d.ts +34 -0
- package/file-upload/single-file-upload.component.scss +60 -0
- package/form-field/README.md +0 -0
- package/form-field/_form-field-theme.scss +112 -0
- package/form-field/_hint-theme.scss +67 -0
- package/form-field/cleaner.d.ts +5 -0
- package/form-field/cleaner.scss +22 -0
- package/form-field/form-field-control.d.ts +37 -0
- package/form-field/form-field-errors.d.ts +2 -0
- package/form-field/form-field.d.ts +84 -0
- package/form-field/form-field.module.d.ts +17 -0
- package/form-field/form-field.scss +143 -0
- package/form-field/hint.d.ts +17 -0
- package/form-field/hint.scss +15 -0
- package/form-field/index.d.ts +1 -0
- package/form-field/password-hint.d.ts +40 -0
- package/form-field/password-hint.scss +11 -0
- package/form-field/password-toggle.d.ts +18 -0
- package/form-field/password-toggle.scss +29 -0
- package/form-field/prefix.d.ts +5 -0
- package/form-field/public-api.d.ts +12 -0
- package/form-field/stepper.d.ts +11 -0
- package/form-field/stepper.scss +33 -0
- package/form-field/suffix.d.ts +5 -0
- package/form-field/validate.directive.d.ts +33 -0
- package/icon/README.md +0 -0
- package/icon/_icon-theme.scss +267 -0
- package/icon/icon.component.d.ts +47 -0
- package/icon/icon.module.d.ts +10 -0
- package/icon/icon.scss +73 -0
- package/icon/index.d.ts +1 -0
- package/icon/public-api.d.ts +2 -0
- package/index.d.ts +1 -0
- package/input/_input-theme.scss +13 -0
- package/input/index.d.ts +1 -0
- package/input/input-errors.d.ts +1 -0
- package/input/input-number-validators.d.ts +35 -0
- package/input/input-number.d.ts +33 -0
- package/input/input-password.d.ts +92 -0
- package/input/input-value-accessor.d.ts +4 -0
- package/input/input.d.ts +117 -0
- package/input/input.module.d.ts +15 -0
- package/input/input.scss +48 -0
- package/input/public-api.d.ts +6 -0
- package/link/README.md +0 -0
- package/link/_link-theme.scss +178 -0
- package/link/index.d.ts +1 -0
- package/link/link.component.d.ts +47 -0
- package/link/link.module.d.ts +9 -0
- package/link/public-api.d.ts +2 -0
- package/list/README.md +0 -0
- package/list/_list-base.scss +54 -0
- package/list/_list-theme.scss +47 -0
- package/list/index.d.ts +1 -0
- package/list/list-selection.component.d.ts +172 -0
- package/list/list.component.d.ts +18 -0
- package/list/list.module.d.ts +11 -0
- package/list/list.scss +52 -0
- package/list/public-api.d.ts +3 -0
- package/loader-overlay/README.md +0 -0
- package/loader-overlay/_loader-overlay-theme.scss +34 -0
- package/loader-overlay/index.d.ts +1 -0
- package/loader-overlay/loader-overlay.component.d.ts +34 -0
- package/loader-overlay/loader-overlay.module.d.ts +11 -0
- package/loader-overlay/loader-overlay.scss +64 -0
- package/loader-overlay/public-api.d.ts +2 -0
- package/markdown/README.md +0 -0
- package/markdown/_markdown-theme.scss +142 -0
- package/markdown/index.d.ts +1 -0
- package/markdown/markdown.component.d.ts +19 -0
- package/markdown/markdown.module.d.ts +11 -0
- package/markdown/markdown.scss +249 -0
- package/markdown/markdown.service.d.ts +7 -0
- package/markdown/markdown.values.d.ts +3 -0
- package/markdown/public-api.d.ts +4 -0
- package/modal/README.md +34 -0
- package/modal/_modal-animation.scss +114 -0
- package/modal/_modal-confirm.scss +53 -0
- package/modal/_modal-theme.scss +90 -0
- package/modal/css-unit.pipe.d.ts +7 -0
- package/modal/index.d.ts +1 -0
- package/modal/modal-control.service.d.ts +20 -0
- package/modal/modal-ref.class.d.ts +36 -0
- package/modal/modal-util.d.ts +12 -0
- package/modal/modal.component.d.ts +128 -0
- package/modal/modal.directive.d.ts +17 -0
- package/modal/modal.module.d.ts +14 -0
- package/modal/modal.scss +143 -0
- package/modal/modal.service.d.ts +33 -0
- package/modal/modal.type.d.ts +61 -0
- package/modal/public-api.d.ts +6 -0
- package/navbar/README.md +41 -0
- package/navbar/_navbar-theme.scss +123 -0
- package/navbar/index.d.ts +1 -0
- package/navbar/navbar-brand.scss +70 -0
- package/navbar/navbar-divider.scss +18 -0
- package/navbar/navbar-item.component.d.ts +167 -0
- package/navbar/navbar-item.scss +159 -0
- package/navbar/navbar.component.d.ts +58 -0
- package/navbar/navbar.module.d.ts +14 -0
- package/navbar/navbar.scss +20 -0
- package/navbar/public-api.d.ts +4 -0
- package/navbar/vertical-navbar.animation.d.ts +2 -0
- package/navbar/vertical-navbar.component.d.ts +23 -0
- package/navbar/vertical-navbar.scss +46 -0
- package/package.json +323 -0
- package/popover/README.md +32 -0
- package/popover/_popover-theme.scss +111 -0
- package/popover/index.d.ts +1 -0
- package/popover/popover-animations.d.ts +4 -0
- package/popover/popover-confirm.component.d.ts +33 -0
- package/popover/popover.component.d.ts +75 -0
- package/popover/popover.module.d.ts +12 -0
- package/popover/popover.scss +114 -0
- package/popover/public-api.d.ts +4 -0
- package/prebuilt-themes/dark-theme.css +1 -0
- package/prebuilt-themes/light-theme.css +1 -0
- package/progress-bar/README.md +0 -0
- package/progress-bar/_progress-bar-theme.scss +41 -0
- package/progress-bar/index.d.ts +1 -0
- package/progress-bar/progress-bar.component.d.ts +28 -0
- package/progress-bar/progress-bar.module.d.ts +9 -0
- package/progress-bar/progress-bar.scss +68 -0
- package/progress-bar/public-api.d.ts +2 -0
- package/progress-spinner/README.md +0 -0
- package/progress-spinner/_progress-spinner-theme.scss +35 -0
- package/progress-spinner/index.d.ts +1 -0
- package/progress-spinner/progress-spinner.component.d.ts +34 -0
- package/progress-spinner/progress-spinner.module.d.ts +9 -0
- package/progress-spinner/progress-spinner.scss +72 -0
- package/progress-spinner/public-api.d.ts +2 -0
- package/public-api.d.ts +1 -0
- package/radio/_radio-theme.scss +95 -0
- package/radio/index.d.ts +1 -0
- package/radio/public-api.d.ts +2 -0
- package/radio/radio.component.d.ts +204 -0
- package/radio/radio.module.d.ts +10 -0
- package/radio/radio.scss +143 -0
- package/select/README.md +0 -0
- package/select/_select-theme.scss +55 -0
- package/select/index.d.ts +1 -0
- package/select/public-api.d.ts +3 -0
- package/select/select-option.directive.d.ts +20 -0
- package/select/select.component.d.ts +330 -0
- package/select/select.module.d.ts +15 -0
- package/select/select.scss +222 -0
- package/sidebar/index.d.ts +1 -0
- package/sidebar/public-api.d.ts +2 -0
- package/sidebar/sidebar-animations.d.ts +8 -0
- package/sidebar/sidebar.component.d.ts +53 -0
- package/sidebar/sidebar.module.d.ts +8 -0
- package/sidebar/sidebar.scss +12 -0
- package/sidepanel/_sidepanel-theme.scss +67 -0
- package/sidepanel/index.d.ts +1 -0
- package/sidepanel/public-api.d.ts +6 -0
- package/sidepanel/sidepanel-animations.d.ts +14 -0
- package/sidepanel/sidepanel-config.d.ts +31 -0
- package/sidepanel/sidepanel-container.component.d.ts +46 -0
- package/sidepanel/sidepanel-directives.d.ts +50 -0
- package/sidepanel/sidepanel-ref.d.ts +24 -0
- package/sidepanel/sidepanel.module.d.ts +16 -0
- package/sidepanel/sidepanel.scss +203 -0
- package/sidepanel/sidepanel.service.d.ts +57 -0
- package/splitter/_splitter-theme.scss +31 -0
- package/splitter/index.d.ts +1 -0
- package/splitter/public-api.d.ts +2 -0
- package/splitter/splitter.component.d.ts +130 -0
- package/splitter/splitter.module.d.ts +9 -0
- package/splitter/splitter.scss +48 -0
- package/table/README.md +0 -0
- package/table/_table-theme.scss +65 -0
- package/table/index.d.ts +1 -0
- package/table/public-api.d.ts +2 -0
- package/table/table.component.d.ts +5 -0
- package/table/table.module.d.ts +10 -0
- package/table/table.scss +76 -0
- package/tabs/README.md +0 -0
- package/tabs/_tabs-common.scss +197 -0
- package/tabs/_tabs-theme.scss +240 -0
- package/tabs/index.d.ts +1 -0
- package/tabs/paginated-tab-header.d.ts +179 -0
- package/tabs/public-api.d.ts +10 -0
- package/tabs/tab-body.component.d.ts +95 -0
- package/tabs/tab-body.scss +8 -0
- package/tabs/tab-content.directive.d.ts +9 -0
- package/tabs/tab-group.component.d.ts +134 -0
- package/tabs/tab-group.scss +63 -0
- package/tabs/tab-header.component.d.ts +35 -0
- package/tabs/tab-header.scss +106 -0
- package/tabs/tab-label-wrapper.directive.d.ts +31 -0
- package/tabs/tab-label.directive.d.ts +9 -0
- package/tabs/tab-nav-bar/index.d.ts +1 -0
- package/tabs/tab-nav-bar/tab-nav-bar.d.ts +40 -0
- package/tabs/tab-nav-bar/tab-nav-bar.scss +54 -0
- package/tabs/tab.component.d.ts +68 -0
- package/tabs/tabs-animations.d.ts +4 -0
- package/tabs/tabs.module.d.ts +21 -0
- package/tags/README.md +0 -0
- package/tags/_tag-theme.scss +100 -0
- package/tags/index.d.ts +1 -0
- package/tags/public-api.d.ts +5 -0
- package/tags/tag-default-options.d.ts +8 -0
- package/tags/tag-input.d.ts +87 -0
- package/tags/tag-list.component.d.ts +246 -0
- package/tags/tag-list.scss +66 -0
- package/tags/tag-text-control.d.ts +10 -0
- package/tags/tag.component.d.ts +140 -0
- package/tags/tag.module.d.ts +11 -0
- package/tags/tag.scss +67 -0
- package/textarea/README.md +0 -0
- package/textarea/_textarea-theme.scss +13 -0
- package/textarea/index.d.ts +1 -0
- package/textarea/public-api.d.ts +2 -0
- package/textarea/textarea.component.d.ts +114 -0
- package/textarea/textarea.module.d.ts +11 -0
- package/textarea/textarea.scss +45 -0
- package/timepicker/README.md +0 -0
- package/timepicker/index.d.ts +1 -0
- package/timepicker/public-api.d.ts +3 -0
- package/timepicker/timepicker.constants.d.ts +20 -0
- package/timepicker/timepicker.directive.d.ts +141 -0
- package/timepicker/timepicker.module.d.ts +11 -0
- package/timepicker/timepicker.scss +18 -0
- package/timezone/README.md +0 -0
- package/timezone/_timezone-option-theme.scss +34 -0
- package/timezone/cities-by-filter.pipe.d.ts +7 -0
- package/timezone/index.d.ts +1 -0
- package/timezone/public-api.d.ts +6 -0
- package/timezone/timezone-option.component.d.ts +15 -0
- package/timezone/timezone-option.component.scss +35 -0
- package/timezone/timezone-option.directive.d.ts +20 -0
- package/timezone/timezone-select.component.d.ts +14 -0
- package/timezone/timezone.models.d.ts +16 -0
- package/timezone/timezone.module.d.ts +19 -0
- package/timezone/timezone.utils.d.ts +18 -0
- package/timezone/utc-offset.pipe.d.ts +7 -0
- package/title/index.d.ts +1 -0
- package/title/public-api.d.ts +2 -0
- package/title/title.directive.d.ts +31 -0
- package/title/title.module.d.ts +8 -0
- package/toast/_toast-theme.scss +61 -0
- package/toast/index.d.ts +1 -0
- package/toast/public-api.d.ts +5 -0
- package/toast/toast-animations.d.ts +4 -0
- package/toast/toast-container.component.d.ts +15 -0
- package/toast/toast-container.component.scss +23 -0
- package/toast/toast.component.d.ts +35 -0
- package/toast/toast.component.scss +76 -0
- package/toast/toast.module.d.ts +13 -0
- package/toast/toast.service.d.ts +51 -0
- package/toast/toast.type.d.ts +27 -0
- package/toggle/_toggle-theme.scss +98 -0
- package/toggle/index.d.ts +1 -0
- package/toggle/public-api.d.ts +2 -0
- package/toggle/toggle.component.d.ts +57 -0
- package/toggle/toggle.module.d.ts +10 -0
- package/toggle/toggle.scss +99 -0
- package/tooltip/_tooltip-theme.scss +49 -0
- package/tooltip/index.d.ts +1 -0
- package/tooltip/public-api.d.ts +2 -0
- package/tooltip/tooltip.animations.d.ts +8 -0
- package/tooltip/tooltip.component.d.ts +94 -0
- package/tooltip/tooltip.module.d.ts +9 -0
- package/tooltip/tooltip.scss +54 -0
- package/tree/_tree-theme.scss +69 -0
- package/tree/control/base-tree-control.d.ts +40 -0
- package/tree/control/flat-tree-control.d.ts +53 -0
- package/tree/control/nested-tree-control.d.ts +19 -0
- package/tree/control/tree-control.d.ts +44 -0
- package/tree/data-source/flat-data-source.d.ts +80 -0
- package/tree/data-source/nested-data-source.d.ts +15 -0
- package/tree/index.d.ts +1 -0
- package/tree/node.d.ts +34 -0
- package/tree/outlet.d.ts +9 -0
- package/tree/padding.directive.d.ts +47 -0
- package/tree/public-api.d.ts +15 -0
- package/tree/toggle.d.ts +30 -0
- package/tree/toggle.scss +35 -0
- package/tree/tree-base.d.ts +97 -0
- package/tree/tree-errors.d.ts +25 -0
- package/tree/tree-option.component.d.ts +80 -0
- package/tree/tree-option.scss +67 -0
- package/tree/tree-selection.component.d.ts +134 -0
- package/tree/tree-selection.scss +3 -0
- package/tree/tree.d.ts +6 -0
- package/tree/tree.module.d.ts +16 -0
- package/tree/tree.scss +3 -0
- package/tree-select/README.md +0 -0
- package/tree-select/_tree-select-theme.scss +41 -0
- package/tree-select/index.d.ts +1 -0
- package/tree-select/public-api.d.ts +2 -0
- package/tree-select/tree-select.component.d.ts +283 -0
- package/tree-select/tree-select.module.d.ts +14 -0
- package/tree-select/tree-select.scss +225 -0
|
@@ -0,0 +1,1218 @@
|
|
|
1
|
+
@function kbq-components-theme($tokens, $scheme) {
|
|
2
|
+
$alert: (
|
|
3
|
+
contrast: (
|
|
4
|
+
background: map-get($tokens, 'alert-#{$scheme}-contrast-container-background'),
|
|
5
|
+
title: map-get($tokens, 'alert-#{$scheme}-contrast-container-title'),
|
|
6
|
+
text: map-get($tokens, 'alert-#{$scheme}-contrast-container-text')
|
|
7
|
+
),
|
|
8
|
+
error: (
|
|
9
|
+
background: map-get($tokens, 'alert-#{$scheme}-error-container-background'),
|
|
10
|
+
title: map-get($tokens, 'alert-#{$scheme}-error-container-title'),
|
|
11
|
+
text: map-get($tokens, 'alert-#{$scheme}-error-container-text')
|
|
12
|
+
)
|
|
13
|
+
);
|
|
14
|
+
|
|
15
|
+
$popup: (
|
|
16
|
+
shadow: map-get($tokens, 'popup-#{$scheme}-shadow'),
|
|
17
|
+
border: map-get($tokens, 'popup-#{$scheme}-border'),
|
|
18
|
+
|
|
19
|
+
background: map-get($tokens, 'popup-#{$scheme}-background'),
|
|
20
|
+
footer-background: map-get($tokens, 'popup-#{$scheme}-footer-background')
|
|
21
|
+
);
|
|
22
|
+
|
|
23
|
+
$badge: (
|
|
24
|
+
filled: (
|
|
25
|
+
fade-off: (
|
|
26
|
+
success: (
|
|
27
|
+
color: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-success-color'),
|
|
28
|
+
background: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-success-background'),
|
|
29
|
+
caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-success-caption')
|
|
30
|
+
),
|
|
31
|
+
warning: (
|
|
32
|
+
color: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-warning-color'),
|
|
33
|
+
background: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-warning-background'),
|
|
34
|
+
caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-warning-caption')
|
|
35
|
+
),
|
|
36
|
+
error: (
|
|
37
|
+
color: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-error-color'),
|
|
38
|
+
background: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-error-background'),
|
|
39
|
+
caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-error-caption')
|
|
40
|
+
)
|
|
41
|
+
),
|
|
42
|
+
fade-on: (
|
|
43
|
+
theme: (
|
|
44
|
+
color: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-theme-color'),
|
|
45
|
+
background: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-theme-background'),
|
|
46
|
+
caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-theme-caption')
|
|
47
|
+
),
|
|
48
|
+
contrast: (
|
|
49
|
+
color: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-contrast-color'),
|
|
50
|
+
background: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-contrast-background'),
|
|
51
|
+
caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-contrast-caption')
|
|
52
|
+
),
|
|
53
|
+
success: (
|
|
54
|
+
color: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-success-color'),
|
|
55
|
+
background: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-success-background'),
|
|
56
|
+
caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-success-caption')
|
|
57
|
+
),
|
|
58
|
+
warning: (
|
|
59
|
+
color: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-warning-color'),
|
|
60
|
+
background: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-warning-background'),
|
|
61
|
+
caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-warning-caption')
|
|
62
|
+
),
|
|
63
|
+
error: (
|
|
64
|
+
color: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-error-color'),
|
|
65
|
+
background: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-error-background'),
|
|
66
|
+
caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-error-caption')
|
|
67
|
+
)
|
|
68
|
+
)
|
|
69
|
+
),
|
|
70
|
+
outline: (
|
|
71
|
+
fade-on: (
|
|
72
|
+
theme: (
|
|
73
|
+
color: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-theme-color'),
|
|
74
|
+
background: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-theme-background'),
|
|
75
|
+
border: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-theme-border'),
|
|
76
|
+
caption: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-theme-caption')
|
|
77
|
+
),
|
|
78
|
+
contrast: (
|
|
79
|
+
color: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-contrast-color'),
|
|
80
|
+
background: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-contrast-background'),
|
|
81
|
+
border: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-contrast-border'),
|
|
82
|
+
caption: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-contrast-caption')
|
|
83
|
+
),
|
|
84
|
+
success: (
|
|
85
|
+
color: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-success-color'),
|
|
86
|
+
background: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-success-background'),
|
|
87
|
+
border: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-success-border'),
|
|
88
|
+
caption: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-success-caption')
|
|
89
|
+
),
|
|
90
|
+
warning: (
|
|
91
|
+
color: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-warning-color'),
|
|
92
|
+
background: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-warning-background'),
|
|
93
|
+
border: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-warning-border'),
|
|
94
|
+
caption: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-warning-caption')
|
|
95
|
+
),
|
|
96
|
+
error: (
|
|
97
|
+
color: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-error-color'),
|
|
98
|
+
background: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-error-background'),
|
|
99
|
+
border: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-error-border'),
|
|
100
|
+
caption: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-error-caption')
|
|
101
|
+
)
|
|
102
|
+
)
|
|
103
|
+
)
|
|
104
|
+
);
|
|
105
|
+
|
|
106
|
+
$button: (
|
|
107
|
+
filled: (
|
|
108
|
+
contrast-fade-off: (
|
|
109
|
+
border: map-get($tokens, 'button-#{$scheme}-filled-contrast-fade-off-border'),
|
|
110
|
+
foreground: map-get($tokens, 'button-#{$scheme}-filled-contrast-fade-off-foreground'),
|
|
111
|
+
background: map-get($tokens, 'button-#{$scheme}-filled-contrast-fade-off-background'),
|
|
112
|
+
left-icon: map-get($tokens, 'button-#{$scheme}-filled-contrast-fade-off-left-icon'),
|
|
113
|
+
right-icon: map-get($tokens, 'button-#{$scheme}-filled-contrast-fade-off-right-icon'),
|
|
114
|
+
|
|
115
|
+
states_hover_background: map-get(
|
|
116
|
+
$tokens, 'button-#{$scheme}-filled-contrast-fade-off-states-hover-background'
|
|
117
|
+
),
|
|
118
|
+
states_active_background: map-get(
|
|
119
|
+
$tokens, 'button-#{$scheme}-filled-contrast-fade-off-states-active-background'
|
|
120
|
+
),
|
|
121
|
+
states_disabled_foreground: map-get(
|
|
122
|
+
$tokens, 'button-#{$scheme}-filled-contrast-fade-off-states-disabled-foreground'
|
|
123
|
+
),
|
|
124
|
+
states_disabled_background: map-get(
|
|
125
|
+
$tokens, 'button-#{$scheme}-filled-contrast-fade-off-states-disabled-background'
|
|
126
|
+
),
|
|
127
|
+
states_disabled_left-icon: map-get(
|
|
128
|
+
$tokens, 'button-#{$scheme}-filled-contrast-fade-off-states-disabled-left-icon'
|
|
129
|
+
),
|
|
130
|
+
states_disabled_right-icon: map-get(
|
|
131
|
+
$tokens, 'button-#{$scheme}-filled-contrast-fade-off-states-disabled-right-icon'
|
|
132
|
+
)
|
|
133
|
+
),
|
|
134
|
+
contrast-fade-on: (
|
|
135
|
+
border: map-get($tokens, 'button-#{$scheme}-filled-contrast-fade-on-border'),
|
|
136
|
+
foreground: map-get($tokens, 'button-#{$scheme}-filled-contrast-fade-on-foreground'),
|
|
137
|
+
background: map-get($tokens, 'button-#{$scheme}-filled-contrast-fade-on-background'),
|
|
138
|
+
left-icon: map-get($tokens, 'button-#{$scheme}-filled-contrast-fade-on-left-icon'),
|
|
139
|
+
right-icon: map-get($tokens, 'button-#{$scheme}-filled-contrast-fade-on-right-icon'),
|
|
140
|
+
|
|
141
|
+
states_hover_background: map-get(
|
|
142
|
+
$tokens, 'button-#{$scheme}-filled-contrast-fade-on-states-hover-background'
|
|
143
|
+
),
|
|
144
|
+
states_active_background: map-get(
|
|
145
|
+
$tokens, 'button-#{$scheme}-filled-contrast-fade-on-states-active-background'
|
|
146
|
+
),
|
|
147
|
+
states_disabled_foreground: map-get(
|
|
148
|
+
$tokens, 'button-#{$scheme}-filled-contrast-fade-on-states-disabled-foreground'
|
|
149
|
+
),
|
|
150
|
+
states_disabled_background: map-get(
|
|
151
|
+
$tokens, 'button-#{$scheme}-filled-contrast-fade-on-states-disabled-background'
|
|
152
|
+
),
|
|
153
|
+
states_disabled_left-icon: map-get(
|
|
154
|
+
$tokens, 'button-#{$scheme}-filled-contrast-fade-on-states-disabled-left-icon'
|
|
155
|
+
),
|
|
156
|
+
states_disabled_right-icon: map-get(
|
|
157
|
+
$tokens, 'button-#{$scheme}-filled-contrast-fade-on-states-disabled-right-icon'
|
|
158
|
+
)
|
|
159
|
+
)
|
|
160
|
+
),
|
|
161
|
+
outline: (
|
|
162
|
+
theme-fade-on: (
|
|
163
|
+
border: map-get($tokens, 'button-#{$scheme}-outline-theme-fade-on-border'),
|
|
164
|
+
foreground: map-get($tokens, 'button-#{$scheme}-outline-theme-fade-on-foreground'),
|
|
165
|
+
background: map-get($tokens, 'button-#{$scheme}-outline-theme-fade-on-background'),
|
|
166
|
+
left-icon: map-get($tokens, 'button-#{$scheme}-outline-theme-fade-on-left-icon'),
|
|
167
|
+
right-icon: map-get($tokens, 'button-#{$scheme}-outline-theme-fade-on-right-icon'),
|
|
168
|
+
|
|
169
|
+
states_hover_background: map-get(
|
|
170
|
+
$tokens, 'button-#{$scheme}-outline-theme-fade-on-states-hover-background'
|
|
171
|
+
),
|
|
172
|
+
states_active_background: map-get(
|
|
173
|
+
$tokens, 'button-#{$scheme}-outline-theme-fade-on-states-active-background'
|
|
174
|
+
),
|
|
175
|
+
states_disabled_border: map-get(
|
|
176
|
+
$tokens, 'button-#{$scheme}-outline-theme-fade-on-states-disabled-border'
|
|
177
|
+
),
|
|
178
|
+
states_disabled_foreground: map-get(
|
|
179
|
+
$tokens, 'button-#{$scheme}-outline-theme-fade-on-states-disabled-foreground'
|
|
180
|
+
),
|
|
181
|
+
states_disabled_left-icon: map-get(
|
|
182
|
+
$tokens, 'button-#{$scheme}-outline-theme-fade-on-states-disabled-left-icon'
|
|
183
|
+
),
|
|
184
|
+
states_disabled_right-icon: map-get(
|
|
185
|
+
$tokens, 'button-#{$scheme}-outline-theme-fade-on-states-disabled-right-icon'
|
|
186
|
+
)
|
|
187
|
+
),
|
|
188
|
+
contrast-fade-on: (
|
|
189
|
+
border: map-get($tokens, 'button-#{$scheme}-outline-contrast-fade-on-border'),
|
|
190
|
+
foreground: map-get($tokens, 'button-#{$scheme}-outline-contrast-fade-on-foreground'),
|
|
191
|
+
background: map-get($tokens, 'button-#{$scheme}-outline-contrast-fade-on-background'),
|
|
192
|
+
left-icon: map-get($tokens, 'button-#{$scheme}-outline-contrast-fade-on-left-icon'),
|
|
193
|
+
right-icon: map-get($tokens, 'button-#{$scheme}-outline-contrast-fade-on-right-icon'),
|
|
194
|
+
|
|
195
|
+
states_hover_background: map-get(
|
|
196
|
+
$tokens, 'button-#{$scheme}-outline-contrast-fade-on-states-hover-background'
|
|
197
|
+
),
|
|
198
|
+
states_active_background: map-get(
|
|
199
|
+
$tokens, 'button-#{$scheme}-outline-contrast-fade-on-states-active-background'
|
|
200
|
+
),
|
|
201
|
+
states_disabled_border: map-get(
|
|
202
|
+
$tokens, 'button-#{$scheme}-outline-contrast-fade-on-states-disabled-border'
|
|
203
|
+
),
|
|
204
|
+
states_disabled_foreground: map-get(
|
|
205
|
+
$tokens, 'button-#{$scheme}-outline-contrast-fade-on-states-disabled-foreground'
|
|
206
|
+
),
|
|
207
|
+
states_disabled_left-icon: map-get(
|
|
208
|
+
$tokens, 'button-#{$scheme}-outline-contrast-fade-on-states-disabled-left-icon'
|
|
209
|
+
),
|
|
210
|
+
states_disabled_right-icon: map-get(
|
|
211
|
+
$tokens, 'button-#{$scheme}-outline-contrast-fade-on-states-disabled-right-icon'
|
|
212
|
+
)
|
|
213
|
+
)
|
|
214
|
+
),
|
|
215
|
+
transparent: (
|
|
216
|
+
theme: (
|
|
217
|
+
border: map-get($tokens, 'button-#{$scheme}-transparent-theme-fade-on-border'),
|
|
218
|
+
foreground: map-get($tokens, 'button-#{$scheme}-transparent-theme-fade-on-foreground'),
|
|
219
|
+
background: map-get($tokens, 'button-#{$scheme}-transparent-theme-fade-on-background'),
|
|
220
|
+
left-icon: map-get($tokens, 'button-#{$scheme}-transparent-theme-fade-on-left-icon'),
|
|
221
|
+
right-icon: map-get($tokens, 'button-#{$scheme}-transparent-theme-fade-on-right-icon'),
|
|
222
|
+
|
|
223
|
+
states_hover_background: map-get(
|
|
224
|
+
$tokens, 'button-#{$scheme}-transparent-theme-fade-on-states-hover-background'
|
|
225
|
+
),
|
|
226
|
+
states_active_background: map-get(
|
|
227
|
+
$tokens, 'button-#{$scheme}-transparent-theme-fade-on-states-active-background'
|
|
228
|
+
),
|
|
229
|
+
states_disabled_foreground: map-get(
|
|
230
|
+
$tokens, 'button-#{$scheme}-transparent-theme-fade-on-states-disabled-foreground'
|
|
231
|
+
),
|
|
232
|
+
states_disabled_left-icon: map-get(
|
|
233
|
+
$tokens, 'button-#{$scheme}-transparent-theme-fade-on-states-disabled-left-icon'
|
|
234
|
+
),
|
|
235
|
+
states_disabled_right-icon: map-get(
|
|
236
|
+
$tokens, 'button-#{$scheme}-transparent-theme-fade-on-states-disabled-right-icon'
|
|
237
|
+
)
|
|
238
|
+
),
|
|
239
|
+
contrast: (
|
|
240
|
+
border: map-get($tokens, 'button-#{$scheme}-transparent-contrast-fade-on-border'),
|
|
241
|
+
foreground: map-get($tokens, 'button-#{$scheme}-transparent-contrast-fade-on-foreground'),
|
|
242
|
+
background: map-get($tokens, 'button-#{$scheme}-transparent-contrast-fade-on-background'),
|
|
243
|
+
left-icon: map-get($tokens, 'button-#{$scheme}-transparent-contrast-fade-on-left-icon'),
|
|
244
|
+
right-icon: map-get($tokens, 'button-#{$scheme}-transparent-contrast-fade-on-right-icon'),
|
|
245
|
+
|
|
246
|
+
states_hover_background: map-get(
|
|
247
|
+
$tokens, 'button-#{$scheme}-transparent-contrast-fade-on-states-hover-background'
|
|
248
|
+
),
|
|
249
|
+
states_active_background: map-get(
|
|
250
|
+
$tokens, 'button-#{$scheme}-transparent-contrast-fade-on-states-active-background'
|
|
251
|
+
),
|
|
252
|
+
states_disabled_foreground: map-get(
|
|
253
|
+
$tokens, 'button-#{$scheme}-transparent-contrast-fade-on-states-disabled-foreground'
|
|
254
|
+
),
|
|
255
|
+
states_disabled_left-icon: map-get(
|
|
256
|
+
$tokens, 'button-#{$scheme}-transparent-contrast-fade-on-states-disabled-left-icon'
|
|
257
|
+
),
|
|
258
|
+
states_disabled_right-icon: map-get(
|
|
259
|
+
$tokens, 'button-#{$scheme}-transparent-contrast-fade-on-states-disabled-right-icon'
|
|
260
|
+
)
|
|
261
|
+
)
|
|
262
|
+
)
|
|
263
|
+
);
|
|
264
|
+
|
|
265
|
+
$card: (
|
|
266
|
+
error: (
|
|
267
|
+
vertical-line: map-get($tokens, 'card-#{$scheme}-error-vertical-line'),
|
|
268
|
+
background: map-get($tokens, 'card-#{$scheme}-error-background'),
|
|
269
|
+
shadow: map-get($tokens, 'card-#{$scheme}-error-shadow')
|
|
270
|
+
),
|
|
271
|
+
warning: (
|
|
272
|
+
vertical-line: map-get($tokens, 'card-#{$scheme}-warning-vertical-line'),
|
|
273
|
+
background: map-get($tokens, 'card-#{$scheme}-warning-background'),
|
|
274
|
+
shadow: map-get($tokens, 'card-#{$scheme}-warning-shadow')
|
|
275
|
+
),
|
|
276
|
+
success: (
|
|
277
|
+
vertical-line: map-get($tokens, 'card-#{$scheme}-success-vertical-line'),
|
|
278
|
+
background: map-get($tokens, 'card-#{$scheme}-success-background'),
|
|
279
|
+
shadow: map-get($tokens, 'card-#{$scheme}-success-shadow')
|
|
280
|
+
),
|
|
281
|
+
info: (
|
|
282
|
+
vertical-line: map-get($tokens, 'card-#{$scheme}-info-vertical-line'),
|
|
283
|
+
background: map-get($tokens, 'card-#{$scheme}-info-background'),
|
|
284
|
+
shadow: map-get($tokens, 'card-#{$scheme}-info-shadow')
|
|
285
|
+
)
|
|
286
|
+
);
|
|
287
|
+
|
|
288
|
+
$checkbox: (
|
|
289
|
+
theme: (
|
|
290
|
+
default: (
|
|
291
|
+
border: map-get($tokens, 'checkbox-#{$scheme}-theme-default-border'),
|
|
292
|
+
color: map-get($tokens, 'checkbox-#{$scheme}-theme-default-color'),
|
|
293
|
+
background: map-get($tokens, 'checkbox-#{$scheme}-theme-default-background')
|
|
294
|
+
),
|
|
295
|
+
hover: (
|
|
296
|
+
border: map-get($tokens, 'checkbox-#{$scheme}-theme-states-hover-border'),
|
|
297
|
+
background: map-get($tokens, 'checkbox-#{$scheme}-theme-states-hover-background')
|
|
298
|
+
),
|
|
299
|
+
checked: (
|
|
300
|
+
border: map-get($tokens, 'checkbox-#{$scheme}-theme-states-checked-border'),
|
|
301
|
+
background: map-get($tokens, 'checkbox-#{$scheme}-theme-states-checked-background')
|
|
302
|
+
),
|
|
303
|
+
checked-hover: (
|
|
304
|
+
border: map-get($tokens, 'checkbox-#{$scheme}-theme-states-checked-hover-border'),
|
|
305
|
+
background: map-get($tokens, 'checkbox-#{$scheme}-theme-states-checked-hover-background')
|
|
306
|
+
),
|
|
307
|
+
focused: (
|
|
308
|
+
border: map-get($tokens, 'checkbox-#{$scheme}-theme-states-focused-border'),
|
|
309
|
+
background: map-get($tokens, 'checkbox-#{$scheme}-theme-states-focused-background'),
|
|
310
|
+
outline: map-get($tokens, 'checkbox-#{$scheme}-theme-states-focused-outline')
|
|
311
|
+
),
|
|
312
|
+
checked-focused: (
|
|
313
|
+
border: map-get($tokens, 'checkbox-#{$scheme}-theme-states-checked-focused-border'),
|
|
314
|
+
background: map-get($tokens, 'checkbox-#{$scheme}-theme-states-checked-focused-background'),
|
|
315
|
+
outline: map-get($tokens, 'checkbox-#{$scheme}-theme-states-checked-focused-outline')
|
|
316
|
+
),
|
|
317
|
+
disabled: (
|
|
318
|
+
border: map-get($tokens, 'checkbox-#{$scheme}-theme-states-disabled-border'),
|
|
319
|
+
color: map-get($tokens, 'checkbox-#{$scheme}-theme-states-disabled-color'),
|
|
320
|
+
background: map-get($tokens, 'checkbox-#{$scheme}-theme-states-disabled-background')
|
|
321
|
+
)
|
|
322
|
+
),
|
|
323
|
+
error: (
|
|
324
|
+
default: (
|
|
325
|
+
border: map-get($tokens, 'checkbox-#{$scheme}-error-default-border'),
|
|
326
|
+
color: map-get($tokens, 'checkbox-#{$scheme}-error-default-color'),
|
|
327
|
+
background: map-get($tokens, 'checkbox-#{$scheme}-error-default-background'),
|
|
328
|
+
),
|
|
329
|
+
|
|
330
|
+
hover: (
|
|
331
|
+
border: map-get($tokens, 'checkbox-#{$scheme}-error-states-hover-border'),
|
|
332
|
+
background: map-get($tokens, 'checkbox-#{$scheme}-error-states-hover-background')
|
|
333
|
+
),
|
|
334
|
+
checked: (
|
|
335
|
+
border: map-get($tokens, 'checkbox-#{$scheme}-error-states-checked-border'),
|
|
336
|
+
background: map-get($tokens, 'checkbox-#{$scheme}-error-states-checked-background')
|
|
337
|
+
),
|
|
338
|
+
checked-hover: (
|
|
339
|
+
border: map-get($tokens, 'checkbox-#{$scheme}-error-states-checked-hover-border'),
|
|
340
|
+
background: map-get($tokens, 'checkbox-#{$scheme}-error-states-checked-hover-background')
|
|
341
|
+
),
|
|
342
|
+
focused: (
|
|
343
|
+
border: map-get($tokens, 'checkbox-#{$scheme}-error-states-focused-border'),
|
|
344
|
+
background: map-get($tokens, 'checkbox-#{$scheme}-error-states-focused-background'),
|
|
345
|
+
outline: map-get($tokens, 'checkbox-#{$scheme}-error-states-focused-outline')
|
|
346
|
+
),
|
|
347
|
+
checked-focused: (
|
|
348
|
+
border: map-get($tokens, 'checkbox-#{$scheme}-error-states-checked-focused-border'),
|
|
349
|
+
background: map-get($tokens, 'checkbox-#{$scheme}-error-states-checked-focused-background'),
|
|
350
|
+
outline: map-get($tokens, 'checkbox-#{$scheme}-error-states-checked-focused-outline')
|
|
351
|
+
),
|
|
352
|
+
disabled: (
|
|
353
|
+
border: map-get($tokens, 'checkbox-#{$scheme}-error-states-disabled-border'),
|
|
354
|
+
color: map-get($tokens, 'checkbox-#{$scheme}-error-states-disabled-color'),
|
|
355
|
+
background: map-get($tokens, 'checkbox-#{$scheme}-error-states-disabled-background')
|
|
356
|
+
)
|
|
357
|
+
)
|
|
358
|
+
);
|
|
359
|
+
|
|
360
|
+
$code-block: (
|
|
361
|
+
main-background: map-get($tokens, 'code-block-#{$scheme}-background'),
|
|
362
|
+
actionbar-background: map-get($tokens, 'code-block-#{$scheme}-actionbar-background'),
|
|
363
|
+
border: map-get($tokens, 'code-block-#{$scheme}-border'),
|
|
364
|
+
main-background-less-contrast: map-get($tokens, 'code-block-#{$scheme}-decoration-less-contrast-background'),
|
|
365
|
+
line-numbers-color: map-get($tokens, 'code-block-#{$scheme}-line-numbers-color'),
|
|
366
|
+
main-code-color: map-get($tokens, 'code-block-#{$scheme}-color'),
|
|
367
|
+
|
|
368
|
+
actionbar: (
|
|
369
|
+
bg: map-get($tokens, 'code-block-#{$scheme}-actionbar-background'),
|
|
370
|
+
bg-less-contrast: map-get($tokens, 'code-block-#{$scheme}-decoration-less-contrast-actionbar-background'),
|
|
371
|
+
),
|
|
372
|
+
|
|
373
|
+
hljs: (
|
|
374
|
+
addition-background: map-get($tokens, 'code-block-#{$scheme}-hljs-addition-background'),
|
|
375
|
+
addition-color: map-get($tokens, 'code-block-#{$scheme}-hljs-addition-color'),
|
|
376
|
+
attr-background: map-get($tokens, 'code-block-#{$scheme}-hljs-attr-background'),
|
|
377
|
+
attr-color: map-get($tokens, 'code-block-#{$scheme}-hljs-attr-color'),
|
|
378
|
+
attribute-background: map-get($tokens, 'code-block-#{$scheme}-hljs-attribute-background'),
|
|
379
|
+
attribute-color: map-get($tokens, 'code-block-#{$scheme}-hljs-attribute-color'),
|
|
380
|
+
built-in-background: map-get($tokens, 'code-block-#{$scheme}-hljs-built-in-background'),
|
|
381
|
+
built-in-color: map-get($tokens, 'code-block-#{$scheme}-hljs-built-in-color'),
|
|
382
|
+
bullet-background: map-get($tokens, 'code-block-#{$scheme}-hljs-bullet-background'),
|
|
383
|
+
bullet-color: map-get($tokens, 'code-block-#{$scheme}-hljs-bullet-color'),
|
|
384
|
+
char-escape-background: map-get($tokens, 'code-block-#{$scheme}-hljs-char-escape-background'),
|
|
385
|
+
char-escape-color: map-get($tokens, 'code-block-#{$scheme}-hljs-char-escape-color'),
|
|
386
|
+
class-background: map-get($tokens, 'code-block-#{$scheme}-hljs-class-background'),
|
|
387
|
+
class-color: map-get($tokens, 'code-block-#{$scheme}-hljs-class-color'),
|
|
388
|
+
code-background: map-get($tokens, 'code-block-#{$scheme}-hljs-code-background'),
|
|
389
|
+
code-color: map-get($tokens, 'code-block-#{$scheme}-hljs-code-color'),
|
|
390
|
+
comment-background: map-get($tokens, 'code-block-#{$scheme}-hljs-comment-background'),
|
|
391
|
+
comment-color: map-get($tokens, 'code-block-#{$scheme}-hljs-comment-color'),
|
|
392
|
+
deletion-background: map-get($tokens, 'code-block-#{$scheme}-hljs-deletion-background'),
|
|
393
|
+
deletion-color: map-get($tokens, 'code-block-#{$scheme}-hljs-deletion-color'),
|
|
394
|
+
doctag-background: map-get($tokens, 'code-block-#{$scheme}-hljs-doctag-background'),
|
|
395
|
+
doctag-color: map-get($tokens, 'code-block-#{$scheme}-hljs-doctag-color'),
|
|
396
|
+
emphasis-background: map-get($tokens, 'code-block-#{$scheme}-hljs-emphasis-background'),
|
|
397
|
+
emphasis-color: map-get($tokens, 'code-block-#{$scheme}-hljs-emphasis-color'),
|
|
398
|
+
formula-background: map-get($tokens, 'code-block-#{$scheme}-hljs-formula-background'),
|
|
399
|
+
formula-color: map-get($tokens, 'code-block-#{$scheme}-hljs-formula-color'),
|
|
400
|
+
function-background: map-get($tokens, 'code-block-#{$scheme}-hljs-function-background'),
|
|
401
|
+
function-color: map-get($tokens, 'code-block-#{$scheme}-hljs-function-color'),
|
|
402
|
+
keyword-background: map-get($tokens, 'code-block-#{$scheme}-hljs-keyword-background'),
|
|
403
|
+
keyword-color: map-get($tokens, 'code-block-#{$scheme}-hljs-keyword-color'),
|
|
404
|
+
link-background: map-get($tokens, 'code-block-#{$scheme}-hljs-link-background'),
|
|
405
|
+
link-color: map-get($tokens, 'code-block-#{$scheme}-hljs-link-color'),
|
|
406
|
+
literal-background: map-get($tokens, 'code-block-#{$scheme}-hljs-literal-background'),
|
|
407
|
+
literal-color: map-get($tokens, 'code-block-#{$scheme}-hljs-literal-color'),
|
|
408
|
+
meta-background: map-get($tokens, 'code-block-#{$scheme}-hljs-meta-background'),
|
|
409
|
+
meta-color: map-get($tokens, 'code-block-#{$scheme}-hljs-meta-color'),
|
|
410
|
+
meta-keyword-background: map-get($tokens, 'code-block-#{$scheme}-hljs-meta-keyword-background'),
|
|
411
|
+
meta-keyword-color: map-get($tokens, 'code-block-#{$scheme}-hljs-meta-keyword-color'),
|
|
412
|
+
meta-string-background: map-get($tokens, 'code-block-#{$scheme}-hljs-meta-string-background'),
|
|
413
|
+
meta-string-color: map-get($tokens, 'code-block-#{$scheme}-hljs-meta-string-color'),
|
|
414
|
+
meta-prompt-background: map-get($tokens, 'code-block-#{$scheme}-hljs-meta-prompt-background'),
|
|
415
|
+
meta-prompt-color: map-get($tokens, 'code-block-#{$scheme}-hljs-meta-prompt-color'),
|
|
416
|
+
name-background: map-get($tokens, 'code-block-#{$scheme}-hljs-name-background'),
|
|
417
|
+
name-color: map-get($tokens, 'code-block-#{$scheme}-hljs-name-color'),
|
|
418
|
+
number-background: map-get($tokens, 'code-block-#{$scheme}-hljs-number-background'),
|
|
419
|
+
number-color: map-get($tokens, 'code-block-#{$scheme}-hljs-number-color'),
|
|
420
|
+
operator-background: map-get($tokens, 'code-block-#{$scheme}-hljs-operator-background'),
|
|
421
|
+
operator-color: map-get($tokens, 'code-block-#{$scheme}-hljs-operator-color'),
|
|
422
|
+
params-background: map-get($tokens, 'code-block-#{$scheme}-hljs-params-background'),
|
|
423
|
+
params-color: map-get($tokens, 'code-block-#{$scheme}-hljs-params-color'),
|
|
424
|
+
property-background: map-get($tokens, 'code-block-#{$scheme}-hljs-property-background'),
|
|
425
|
+
property-color: map-get($tokens, 'code-block-#{$scheme}-hljs-property-color'),
|
|
426
|
+
punctuation-background: map-get($tokens, 'code-block-#{$scheme}-hljs-punctuation-background'),
|
|
427
|
+
punctuation-color: map-get($tokens, 'code-block-#{$scheme}-hljs-punctuation-color'),
|
|
428
|
+
quote-background: map-get($tokens, 'code-block-#{$scheme}-hljs-quote-background'),
|
|
429
|
+
quote-color: map-get($tokens, 'code-block-#{$scheme}-hljs-quote-color'),
|
|
430
|
+
regexp-background: map-get($tokens, 'code-block-#{$scheme}-hljs-regexp-background'),
|
|
431
|
+
regexp-color: map-get($tokens, 'code-block-#{$scheme}-hljs-regexp-color'),
|
|
432
|
+
section-background: map-get($tokens, 'code-block-#{$scheme}-hljs-section-background'),
|
|
433
|
+
section-color: map-get($tokens, 'code-block-#{$scheme}-hljs-section-color'),
|
|
434
|
+
selector-attr-background: map-get($tokens, 'code-block-#{$scheme}-hljs-selector-attr-background'),
|
|
435
|
+
selector-attr-color: map-get($tokens, 'code-block-#{$scheme}-hljs-selector-attr-color'),
|
|
436
|
+
selector-class-background: map-get($tokens, 'code-block-#{$scheme}-hljs-selector-class-background'),
|
|
437
|
+
selector-class-color: map-get($tokens, 'code-block-#{$scheme}-hljs-selector-class-color'),
|
|
438
|
+
selector-id-background: map-get($tokens, 'code-block-#{$scheme}-hljs-selector-id-background'),
|
|
439
|
+
selector-id-color: map-get($tokens, 'code-block-#{$scheme}-hljs-selector-id-color'),
|
|
440
|
+
selector-pseudo-background: map-get($tokens, 'code-block-#{$scheme}-hljs-selector-pseudo-background'),
|
|
441
|
+
selector-pseudo-color: map-get($tokens, 'code-block-#{$scheme}-hljs-selector-pseudo-color'),
|
|
442
|
+
selector-tag-background: map-get($tokens, 'code-block-#{$scheme}-hljs-selector-tag-background'),
|
|
443
|
+
selector-tag-color: map-get($tokens, 'code-block-#{$scheme}-hljs-selector-tag-color'),
|
|
444
|
+
string-background: map-get($tokens, 'code-block-#{$scheme}-hljs-string-background'),
|
|
445
|
+
string-color: map-get($tokens, 'code-block-#{$scheme}-hljs-string-color'),
|
|
446
|
+
strong-background: map-get($tokens, 'code-block-#{$scheme}-hljs-strong-background'),
|
|
447
|
+
strong-color: map-get($tokens, 'code-block-#{$scheme}-hljs-strong-color'),
|
|
448
|
+
subst-background: map-get($tokens, 'code-block-#{$scheme}-hljs-subst-background'),
|
|
449
|
+
subst-color: map-get($tokens, 'code-block-#{$scheme}-hljs-subst-color'),
|
|
450
|
+
symbol-background: map-get($tokens, 'code-block-#{$scheme}-hljs-symbol-background'),
|
|
451
|
+
symbol-color: map-get($tokens, 'code-block-#{$scheme}-hljs-symbol-color'),
|
|
452
|
+
tag-background: map-get($tokens, 'code-block-#{$scheme}-hljs-tag-background'),
|
|
453
|
+
tag-color: map-get($tokens, 'code-block-#{$scheme}-hljs-tag-color'),
|
|
454
|
+
template-tag-background: map-get($tokens, 'code-block-#{$scheme}-hljs-template-tag-background'),
|
|
455
|
+
template-tag-color: map-get($tokens, 'code-block-#{$scheme}-hljs-template-tag-color'),
|
|
456
|
+
template-variable-background: map-get($tokens, 'code-block-#{$scheme}-hljs-template-variable-background'),
|
|
457
|
+
template-variable-color: map-get($tokens, 'code-block-#{$scheme}-hljs-template-variable-color'),
|
|
458
|
+
title-background: map-get($tokens, 'code-block-#{$scheme}-hljs-title-background'),
|
|
459
|
+
title-color: map-get($tokens, 'code-block-#{$scheme}-hljs-title-color'),
|
|
460
|
+
title-class-background: map-get($tokens, 'code-block-#{$scheme}-hljs-title-class-background'),
|
|
461
|
+
title-class-color: map-get($tokens, 'code-block-#{$scheme}-hljs-title-class-color'),
|
|
462
|
+
title-class-inherited-background: map-get(
|
|
463
|
+
$tokens, 'code-block-#{$scheme}-hljs-title-class-inherited-background'
|
|
464
|
+
),
|
|
465
|
+
title-class-inherited-color: map-get($tokens, 'code-block-#{$scheme}-hljs-title-class-inherited-color'),
|
|
466
|
+
title-function-background: map-get($tokens, 'code-block-#{$scheme}-hljs-title-function-background'),
|
|
467
|
+
title-function-color: map-get($tokens, 'code-block-#{$scheme}-hljs-title-function-color'),
|
|
468
|
+
title-function-invoke-background: map-get(
|
|
469
|
+
$tokens, 'code-block-#{$scheme}-hljs-title-function-invoke-background'
|
|
470
|
+
),
|
|
471
|
+
title-function-invoke-color: map-get($tokens, 'code-block-#{$scheme}-hljs-title-function-invoke-color'),
|
|
472
|
+
type-background: map-get($tokens, 'code-block-#{$scheme}-hljs-type-background'),
|
|
473
|
+
type-color: map-get($tokens, 'code-block-#{$scheme}-hljs-type-color'),
|
|
474
|
+
variable-background: map-get($tokens, 'code-block-#{$scheme}-hljs-variable-background'),
|
|
475
|
+
variable-color: map-get($tokens, 'code-block-#{$scheme}-hljs-variable-color'),
|
|
476
|
+
variable-constant-background: map-get($tokens, 'code-block-#{$scheme}-hljs-variable-constant-background'),
|
|
477
|
+
variable-constant-color: map-get($tokens, 'code-block-#{$scheme}-hljs-variable-constant-color'),
|
|
478
|
+
variable-language-background: map-get($tokens, 'code-block-#{$scheme}-hljs-variable-language-background'),
|
|
479
|
+
variable-language-color: map-get($tokens, 'code-block-#{$scheme}-hljs-variable-language-color')r
|
|
480
|
+
)
|
|
481
|
+
);
|
|
482
|
+
|
|
483
|
+
$datepicker: (
|
|
484
|
+
state-today-color: map-get($tokens, 'datepicker-body-#{$scheme}-states-today-color'),
|
|
485
|
+
state-today-background: map-get($tokens, 'datepicker-body-#{$scheme}-states-today-background'),
|
|
486
|
+
state-selected-color: map-get($tokens, 'datepicker-body-#{$scheme}-states-selected-color'),
|
|
487
|
+
state-selected-background: map-get($tokens, 'datepicker-body-#{$scheme}-states-selected-background')
|
|
488
|
+
);
|
|
489
|
+
|
|
490
|
+
$divider: (
|
|
491
|
+
color: map-get($tokens, 'divider-#{$scheme}-color')
|
|
492
|
+
);
|
|
493
|
+
|
|
494
|
+
$dl: (
|
|
495
|
+
dt: map-get($tokens, 'description-list-#{$scheme}-dt'),
|
|
496
|
+
dd: map-get($tokens, 'description-list-#{$scheme}-dd')
|
|
497
|
+
);
|
|
498
|
+
|
|
499
|
+
$form-field: (
|
|
500
|
+
default: (
|
|
501
|
+
border: map-get($tokens, 'form-field-#{$scheme}-default-border-color'),
|
|
502
|
+
background: map-get($tokens, 'form-field-#{$scheme}-default-background'),
|
|
503
|
+
placeholder: map-get($tokens, 'form-field-#{$scheme}-default-placeholder'),
|
|
504
|
+
text: map-get($tokens, 'form-field-#{$scheme}-default-text'),
|
|
505
|
+
label: map-get($tokens, 'form-field-#{$scheme}-default-label')
|
|
506
|
+
),
|
|
507
|
+
focused: (
|
|
508
|
+
border: map-get($tokens, 'form-field-#{$scheme}-states-focused-border-color'),
|
|
509
|
+
background: map-get($tokens, 'form-field-#{$scheme}-states-focused-background'),
|
|
510
|
+
placeholder: map-get($tokens, 'form-field-#{$scheme}-states-focused-placeholder'),
|
|
511
|
+
text: map-get($tokens, 'form-field-#{$scheme}-states-focused-text'),
|
|
512
|
+
focus-outline: map-get($tokens, 'form-field-#{$scheme}-states-focused-focus-outline')
|
|
513
|
+
),
|
|
514
|
+
error: (
|
|
515
|
+
border: map-get($tokens, 'form-field-#{$scheme}-states-error-border-color'),
|
|
516
|
+
background: map-get($tokens, 'form-field-#{$scheme}-states-error-background'),
|
|
517
|
+
placeholder: map-get($tokens, 'form-field-#{$scheme}-states-error-placeholder'),
|
|
518
|
+
text: map-get($tokens, 'form-field-#{$scheme}-states-error-text'),
|
|
519
|
+
focus-outline: map-get($tokens, 'form-field-#{$scheme}-states-error-focused-focus-outline')
|
|
520
|
+
),
|
|
521
|
+
autofill: (
|
|
522
|
+
border: map-get($tokens, 'form-field-#{$scheme}-states-autofill-border-color'),
|
|
523
|
+
background: map-get($tokens, 'form-field-#{$scheme}-states-autofill-background'),
|
|
524
|
+
placeholder: map-get($tokens, 'form-field-#{$scheme}-states-autofill-placeholder'),
|
|
525
|
+
text: map-get($tokens, 'form-field-#{$scheme}-states-autofill-text')
|
|
526
|
+
),
|
|
527
|
+
disabled: (
|
|
528
|
+
border: map-get($tokens, 'form-field-#{$scheme}-states-disabled-border-color'),
|
|
529
|
+
background: map-get($tokens, 'form-field-#{$scheme}-states-disabled-background'),
|
|
530
|
+
placeholder: map-get($tokens, 'form-field-#{$scheme}-states-disabled-placeholder'),
|
|
531
|
+
text: map-get($tokens, 'form-field-#{$scheme}-states--disabled-text')
|
|
532
|
+
)
|
|
533
|
+
);
|
|
534
|
+
|
|
535
|
+
$form-field-hint: (
|
|
536
|
+
text: map-get($tokens, 'form-field-hint-#{$scheme}-text')
|
|
537
|
+
);
|
|
538
|
+
|
|
539
|
+
$form-field-password-hint: (
|
|
540
|
+
text-color: map-get($tokens, 'form-field-password-hint-#{$scheme}-text-color'),
|
|
541
|
+
icon-color: map-get($tokens, 'form-field-password-hint-#{$scheme}-text-color'),
|
|
542
|
+
|
|
543
|
+
state-invalid-text-color: map-get($tokens, 'form-field-password-hint-#{$scheme}-states-invalid-text-color'),
|
|
544
|
+
state-invalid-icon-color: map-get($tokens, 'form-field-password-hint-#{$scheme}-states-invalid-icon-color'),
|
|
545
|
+
|
|
546
|
+
state-valid-text-color: map-get($tokens, 'form-field-password-hint-#{$scheme}-states-valid-text-color'),
|
|
547
|
+
state-valid-icon-color: map-get($tokens, 'form-field-password-hint-#{$scheme}-states-valid-icon-color')
|
|
548
|
+
);
|
|
549
|
+
|
|
550
|
+
$hint: (
|
|
551
|
+
fill-text-on: (
|
|
552
|
+
fade-contrast: (
|
|
553
|
+
text: map-get($tokens, 'hint-#{$scheme}-fill-text-on-fade-contrast-text'),
|
|
554
|
+
icon: map-get($tokens, 'hint-#{$scheme}-fill-text-on-fade-contrast-icon')
|
|
555
|
+
),
|
|
556
|
+
success: (
|
|
557
|
+
text: map-get($tokens, 'hint-#{$scheme}-fill-text-on-success-text'),
|
|
558
|
+
icon: map-get($tokens, 'hint-#{$scheme}-fill-text-on-success-icon')
|
|
559
|
+
),
|
|
560
|
+
warning: (
|
|
561
|
+
text: map-get($tokens, 'hint-#{$scheme}-fill-text-on-warning-text'),
|
|
562
|
+
icon: map-get($tokens, 'hint-#{$scheme}-fill-text-on-warning-icon')
|
|
563
|
+
),
|
|
564
|
+
error: (
|
|
565
|
+
text: map-get($tokens, 'hint-#{$scheme}-fill-text-on-error-text'),
|
|
566
|
+
icon: map-get($tokens, 'hint-#{$scheme}-fill-text-on-error-icon')
|
|
567
|
+
)
|
|
568
|
+
),
|
|
569
|
+
fill-text-off: (
|
|
570
|
+
fade-contrast: (
|
|
571
|
+
text: map-get($tokens, 'hint-#{$scheme}-fill-text-off-fade-contrast-text'),
|
|
572
|
+
icon: map-get($tokens, 'hint-#{$scheme}-fill-text-off-fade-contrast-icon')
|
|
573
|
+
),
|
|
574
|
+
success: (
|
|
575
|
+
text: map-get($tokens, 'hint-#{$scheme}-fill-text-off-success-text'),
|
|
576
|
+
icon: map-get($tokens, 'hint-#{$scheme}-fill-text-off-success-icon')
|
|
577
|
+
),
|
|
578
|
+
warning: (
|
|
579
|
+
text: map-get($tokens, 'hint-#{$scheme}-fill-text-off-warning-text'),
|
|
580
|
+
icon: map-get($tokens, 'hint-#{$scheme}-fill-text-off-warning-icon')
|
|
581
|
+
),
|
|
582
|
+
error: (
|
|
583
|
+
text: map-get($tokens, 'hint-#{$scheme}-fill-text-off-error-text'),
|
|
584
|
+
icon: map-get($tokens, 'hint-#{$scheme}-fill-text-off-error-icon')
|
|
585
|
+
)
|
|
586
|
+
)
|
|
587
|
+
);
|
|
588
|
+
|
|
589
|
+
$forms: (
|
|
590
|
+
label: map-get($tokens, 'forms-#{$scheme}-label'),
|
|
591
|
+
legend: map-get($tokens, 'forms-#{$scheme}-legend'),
|
|
592
|
+
);
|
|
593
|
+
|
|
594
|
+
$icon: (
|
|
595
|
+
theme: (
|
|
596
|
+
color: map-get($tokens, 'icon-#{$scheme}-theme-color')
|
|
597
|
+
),
|
|
598
|
+
contrast: (
|
|
599
|
+
color: map-get($tokens, 'icon-#{$scheme}-contrast-color')
|
|
600
|
+
),
|
|
601
|
+
fade-contrast: (
|
|
602
|
+
color: map-get($tokens, 'icon-#{$scheme}-fade-contrast-color')
|
|
603
|
+
),
|
|
604
|
+
error: (
|
|
605
|
+
color: map-get($tokens, 'icon-#{$scheme}-error-color')
|
|
606
|
+
),
|
|
607
|
+
success: (
|
|
608
|
+
color: map-get($tokens, 'icon-#{$scheme}-success-color')
|
|
609
|
+
)
|
|
610
|
+
);
|
|
611
|
+
|
|
612
|
+
$icon-item: (
|
|
613
|
+
theme: (
|
|
614
|
+
color: map-get($tokens, 'icon-item-#{$scheme}-theme-color'),
|
|
615
|
+
background: map-get($tokens, 'icon-item-#{$scheme}-theme-background')
|
|
616
|
+
),
|
|
617
|
+
contrast: (
|
|
618
|
+
color: map-get($tokens, 'icon-item-#{$scheme}-contrast-color'),
|
|
619
|
+
background: map-get($tokens, 'icon-item-#{$scheme}-contrast-background')
|
|
620
|
+
),
|
|
621
|
+
fade-contrast: (
|
|
622
|
+
color: map-get($tokens, 'icon-item-#{$scheme}-fade-contrast-color'),
|
|
623
|
+
background: map-get($tokens, 'icon-item-#{$scheme}-fade-contrast-background')
|
|
624
|
+
),
|
|
625
|
+
error: (
|
|
626
|
+
color: map-get($tokens, 'icon-item-#{$scheme}-error-color'),
|
|
627
|
+
background: map-get($tokens, 'icon-item-#{$scheme}-error-background')
|
|
628
|
+
),
|
|
629
|
+
success: (
|
|
630
|
+
color: map-get($tokens, 'icon-item-#{$scheme}-success-color'),
|
|
631
|
+
background: map-get($tokens, 'icon-item-#{$scheme}-success-background')
|
|
632
|
+
)
|
|
633
|
+
);
|
|
634
|
+
|
|
635
|
+
$icon-button: (
|
|
636
|
+
theme: (
|
|
637
|
+
default: map-get($tokens, 'icon-button-#{$scheme}-theme-default'),
|
|
638
|
+
state-hover: map-get($tokens, 'icon-button-#{$scheme}-theme-states-hover'),
|
|
639
|
+
state-active: map-get($tokens, 'icon-button-#{$scheme}-theme-states-active'),
|
|
640
|
+
state-disabled: map-get($tokens, 'icon-button-#{$scheme}-theme-states-disabled')
|
|
641
|
+
),
|
|
642
|
+
contrast: (
|
|
643
|
+
default: map-get($tokens, 'icon-button-#{$scheme}-contrast-default'),
|
|
644
|
+
state-hover: map-get($tokens, 'icon-button-#{$scheme}-contrast-states-hover'),
|
|
645
|
+
state-active: map-get($tokens, 'icon-button-#{$scheme}-contrast-states-active'),
|
|
646
|
+
state-disabled: map-get($tokens, 'icon-button-#{$scheme}-contrast-states-disabled')
|
|
647
|
+
),
|
|
648
|
+
fade-contrast: (
|
|
649
|
+
default: map-get($tokens, 'icon-button-#{$scheme}-fade-contrast-default'),
|
|
650
|
+
state-hover: map-get($tokens, 'icon-button-#{$scheme}-fade-contrast-states-hover'),
|
|
651
|
+
state-active: map-get($tokens, 'icon-button-#{$scheme}-fade-contrast-states-active'),
|
|
652
|
+
state-disabled: map-get($tokens, 'icon-button-#{$scheme}-fade-contrast-states-disabled')
|
|
653
|
+
),
|
|
654
|
+
error: (
|
|
655
|
+
default: map-get($tokens, 'icon-button-#{$scheme}-error-default'),
|
|
656
|
+
state-hover: map-get($tokens, 'icon-button-#{$scheme}-error-states-hover'),
|
|
657
|
+
state-active: map-get($tokens, 'icon-button-#{$scheme}-error-states-active'),
|
|
658
|
+
state-disabled: map-get($tokens, 'icon-button-#{$scheme}-error-states-disabled')
|
|
659
|
+
),
|
|
660
|
+
success: (
|
|
661
|
+
default: map-get($tokens, 'icon-button-#{$scheme}-success-default'),
|
|
662
|
+
state-hover: map-get($tokens, 'icon-button-#{$scheme}-success-states-hover'),
|
|
663
|
+
state-active: map-get($tokens, 'icon-button-#{$scheme}-success-states-active'),
|
|
664
|
+
state-disabled: map-get($tokens, 'icon-button-#{$scheme}-success-states-disabled')
|
|
665
|
+
)
|
|
666
|
+
);
|
|
667
|
+
|
|
668
|
+
$link: (
|
|
669
|
+
text: map-get($tokens, 'link-#{$scheme}-text'),
|
|
670
|
+
border-bottom: map-get($tokens, 'link-#{$scheme}-border-bottom'),
|
|
671
|
+
|
|
672
|
+
state-visited-text: map-get($tokens, 'link-#{$scheme}-state-visited-text'),
|
|
673
|
+
state-visited-border-bottom: map-get($tokens, 'link-#{$scheme}-state-visited-border-bottom'),
|
|
674
|
+
|
|
675
|
+
state-hover-text: map-get($tokens, 'link-#{$scheme}-state-hover-text'),
|
|
676
|
+
state-hover-border-bottom: map-get($tokens, 'link-#{$scheme}-state-hover-border-bottom'),
|
|
677
|
+
|
|
678
|
+
state-active-text: map-get($tokens, 'link-#{$scheme}-state-active'),
|
|
679
|
+
state-active-border-bottom: map-get($tokens, 'link-#{$scheme}-state-active-border-bottom'),
|
|
680
|
+
|
|
681
|
+
state-focused-outline: map-get($tokens, 'link-#{$scheme}-state-focused-outline')
|
|
682
|
+
);
|
|
683
|
+
|
|
684
|
+
$loader-overlay: (
|
|
685
|
+
background: map-get($tokens, 'loader-overlay-#{$scheme}-background'),
|
|
686
|
+
|
|
687
|
+
text: map-get($tokens, 'loader-overlay-#{$scheme}-text'),
|
|
688
|
+
caption: map-get($tokens, 'loader-overlay-#{$scheme}-caption'),
|
|
689
|
+
);
|
|
690
|
+
|
|
691
|
+
$modal: (
|
|
692
|
+
background-mask: map-get($tokens, 'modal-#{$scheme}-background-mask'),
|
|
693
|
+
shadow: map-get($tokens, 'modal-#{$scheme}-shadow'),
|
|
694
|
+
header-border: map-get($tokens, 'modal-header-#{$scheme}-border'),
|
|
695
|
+
body-top-shadow: map-get($tokens, 'modal-#{$scheme}-body-top-shadow'),
|
|
696
|
+
body-bottom-shadow: map-get($tokens, 'modal-#{$scheme}-body-bottom-shadow'),
|
|
697
|
+
footer-border: map-get($tokens, 'modal-footer-#{$scheme}-border')
|
|
698
|
+
);
|
|
699
|
+
|
|
700
|
+
$markdown: (
|
|
701
|
+
h1-color: map-get($tokens, 'markdown-h1-#{$scheme}-color'),
|
|
702
|
+
h2-color: map-get($tokens, 'markdown-h2-#{$scheme}-color'),
|
|
703
|
+
h3-color: map-get($tokens, 'markdown-h3-#{$scheme}-color'),
|
|
704
|
+
h4-color: map-get($tokens, 'markdown-h4-#{$scheme}-color'),
|
|
705
|
+
h5-color: map-get($tokens, 'markdown-h5-#{$scheme}-color'),
|
|
706
|
+
h6-color: map-get($tokens, 'markdown-h6-#{$scheme}-color'),
|
|
707
|
+
|
|
708
|
+
p-color: map-get($tokens, 'markdown-p-#{$scheme}-color'),
|
|
709
|
+
|
|
710
|
+
list-color: map-get($tokens, 'markdown-list-#{$scheme}-color'),
|
|
711
|
+
|
|
712
|
+
blockquote-text: map-get($tokens, 'markdown-blockquote-#{$scheme}-text'),
|
|
713
|
+
blockquote-line: map-get($tokens, 'markdown-blockquote-#{$scheme}-line'),
|
|
714
|
+
blockquote-background: map-get($tokens, 'markdown-blockquote-#{$scheme}-background'),
|
|
715
|
+
blockquote-border: map-get($tokens, 'markdown-blockquote-#{$scheme}-border'),
|
|
716
|
+
|
|
717
|
+
code-text: map-get($tokens, 'markdown-code-#{$scheme}-text'),
|
|
718
|
+
code-background: map-get($tokens, 'markdown-code-#{$scheme}-background'),
|
|
719
|
+
code-border: map-get($tokens, 'markdown-code-#{$scheme}-border'),
|
|
720
|
+
|
|
721
|
+
link-text: map-get($tokens, 'markdown-link-#{$scheme}-text'),
|
|
722
|
+
link-border-bottom: map-get($tokens, 'markdown-link-#{$scheme}-border-bottom'),
|
|
723
|
+
|
|
724
|
+
link-state-visited-text: map-get($tokens, 'markdown-link-#{$scheme}-state-visited-text'),
|
|
725
|
+
link-state-visited-border-bottom: map-get($tokens, 'markdown-link-#{$scheme}-state-visited-border-bottom'),
|
|
726
|
+
|
|
727
|
+
link-state-hover-text: map-get($tokens, 'markdown-link-#{$scheme}-state-hover-text'),
|
|
728
|
+
link-state-hover-border-bottom: map-get($tokens, 'markdown-link-#{$scheme}-state-hover-border-bottom'),
|
|
729
|
+
|
|
730
|
+
link-state-active-text: map-get($tokens, 'markdown-link-#{$scheme}-state-active'),
|
|
731
|
+
|
|
732
|
+
link-state-focused-outline: map-get($tokens, 'markdown-link-#{$scheme}-state-focused-outline'),
|
|
733
|
+
|
|
734
|
+
image-caption-text: map-get($tokens, 'markdown-image-#{$scheme}-caption-text'),
|
|
735
|
+
|
|
736
|
+
hr-color: map-get($tokens, 'markdown-hr-#{$scheme}-color'),
|
|
737
|
+
|
|
738
|
+
table-header: map-get($tokens, 'markdown-table-#{$scheme}-header'),
|
|
739
|
+
table-body: map-get($tokens, 'markdown-table-#{$scheme}-body'),
|
|
740
|
+
table-border: map-get($tokens, 'markdown-table-#{$scheme}-border')
|
|
741
|
+
);
|
|
742
|
+
|
|
743
|
+
$navbar: (
|
|
744
|
+
background: map-get($tokens, 'navbar-#{$scheme}-background'),
|
|
745
|
+
|
|
746
|
+
divider-background: map-get($tokens, 'navbar-#{$scheme}-divider-background')
|
|
747
|
+
);
|
|
748
|
+
|
|
749
|
+
$navbar-item: (
|
|
750
|
+
color: map-get($tokens, 'navbar-item-#{$scheme}-text'),
|
|
751
|
+
icon-color: map-get($tokens, 'navbar-item-#{$scheme}-icon'),
|
|
752
|
+
|
|
753
|
+
state-active: map-get($tokens, 'navbar-item-#{$scheme}-states-active'),
|
|
754
|
+
state-selected: map-get($tokens, 'navbar-item-#{$scheme}-states-selected'),
|
|
755
|
+
state-hover: map-get($tokens, 'navbar-item-#{$scheme}-states-hover'),
|
|
756
|
+
state-progress: map-get($tokens, 'navbar-item-#{$scheme}-states-progress'),
|
|
757
|
+
state-disabled-opacity: map-get($tokens, 'navbar-item-#{$scheme}-states-disabled-opacity'),
|
|
758
|
+
);
|
|
759
|
+
|
|
760
|
+
$popover: (
|
|
761
|
+
background: map-get($tokens, 'popover-#{$scheme}-background'),
|
|
762
|
+
text: map-get($tokens, 'popover-#{$scheme}-text'),
|
|
763
|
+
shadow: map-get($tokens, 'popover-#{$scheme}-shadow'),
|
|
764
|
+
border: map-get($tokens, 'popover-#{$scheme}-border'),
|
|
765
|
+
|
|
766
|
+
footer: (
|
|
767
|
+
background: map-get($tokens, 'popover-footer-#{$scheme}-background'),
|
|
768
|
+
border: map-get($tokens, 'popover-footer-#{$scheme}-border'),
|
|
769
|
+
),
|
|
770
|
+
|
|
771
|
+
header: (
|
|
772
|
+
text: map-get($tokens, 'popover-header-#{$scheme}-text'),
|
|
773
|
+
background: map-get($tokens, 'popover-header-#{$scheme}-background'),
|
|
774
|
+
border: map-get($tokens, 'popover-header-#{$scheme}-border'),
|
|
775
|
+
)
|
|
776
|
+
);
|
|
777
|
+
|
|
778
|
+
$progress-bar: (
|
|
779
|
+
bar: (
|
|
780
|
+
background: map-get($tokens, 'progress-bar-#{$scheme}-bar-background'),
|
|
781
|
+
foreground: map-get($tokens, 'progress-bar-#{$scheme}-bar-foreground')
|
|
782
|
+
),
|
|
783
|
+
text: map-get($tokens, 'progress-bar-#{$scheme}-text-color'),
|
|
784
|
+
caption: map-get($tokens, 'progress-bar-#{$scheme}-caption-color')
|
|
785
|
+
);
|
|
786
|
+
|
|
787
|
+
$progress-spinner: (
|
|
788
|
+
circle: map-get($tokens, 'progress-spinner-#{$scheme}-circle-background'),
|
|
789
|
+
text: map-get($tokens, 'progress-spinner-#{$scheme}-text-color'),
|
|
790
|
+
caption: map-get($tokens, 'progress-spinner-#{$scheme}-caption-color')
|
|
791
|
+
);
|
|
792
|
+
|
|
793
|
+
$radio: (
|
|
794
|
+
theme: (
|
|
795
|
+
default: (
|
|
796
|
+
outer-circle-border: map-get($tokens, 'radio-#{$scheme}-theme-default-outer-circle-border'),
|
|
797
|
+
outer-circle-background: map-get($tokens, 'radio-#{$scheme}-theme-default-outer-circle-background'),
|
|
798
|
+
inner-circle-background: map-get($tokens, 'radio-#{$scheme}-theme-default-inner-circle-background'),
|
|
799
|
+
),
|
|
800
|
+
|
|
801
|
+
hover: (
|
|
802
|
+
outer-circle-border: map-get($tokens, 'radio-#{$scheme}-theme-states-hover-outer-circle-border'),
|
|
803
|
+
outer-circle-background: map-get(
|
|
804
|
+
$tokens, 'radio-#{$scheme}-theme-states-hover-outer-circle-background'
|
|
805
|
+
),
|
|
806
|
+
inner-circle-background: map-get(
|
|
807
|
+
$tokens, 'radio-#{$scheme}-theme-states-hover-inner-circle-background'
|
|
808
|
+
)
|
|
809
|
+
),
|
|
810
|
+
checked: (
|
|
811
|
+
outer-circle-border: map-get($tokens, 'radio-#{$scheme}-theme-states-checked-outer-circle-border'),
|
|
812
|
+
outer-circle-background: map-get(
|
|
813
|
+
$tokens, 'radio-#{$scheme}-theme-states-checked-outer-circle-background'
|
|
814
|
+
),
|
|
815
|
+
inner-circle-background: map-get(
|
|
816
|
+
$tokens, 'radio-#{$scheme}-theme-states-checked-inner-circle-background'
|
|
817
|
+
)
|
|
818
|
+
),
|
|
819
|
+
checked-hover: (
|
|
820
|
+
outer-circle-border: map-get(
|
|
821
|
+
$tokens, 'radio-#{$scheme}-theme-states-checked-hover-outer-circle-border'
|
|
822
|
+
),
|
|
823
|
+
outer-circle-background: map-get(
|
|
824
|
+
$tokens, 'radio-#{$scheme}-theme-states-checked-hover-outer-circle-background'
|
|
825
|
+
),
|
|
826
|
+
inner-circle-background: map-get(
|
|
827
|
+
$tokens, 'radio-#{$scheme}-theme-states-checked-hover-inner-circle-background'
|
|
828
|
+
)
|
|
829
|
+
),
|
|
830
|
+
focused: (
|
|
831
|
+
outer-circle-border: map-get($tokens, 'radio-#{$scheme}-theme-states-focused-outer-circle-border'),
|
|
832
|
+
outer-circle-background: map-get(
|
|
833
|
+
$tokens, 'radio-#{$scheme}-theme-states-focused-outer-circle-background'
|
|
834
|
+
),
|
|
835
|
+
inner-circle-background: map-get(
|
|
836
|
+
$tokens, 'radio-#{$scheme}-theme-states-focused-inner-circle-background'
|
|
837
|
+
),
|
|
838
|
+
outer-circle-shadow: map-get(
|
|
839
|
+
$tokens, 'radio-#{$scheme}-theme-states-focused-outer-circle-shadow'
|
|
840
|
+
)
|
|
841
|
+
),
|
|
842
|
+
checked-focused: (
|
|
843
|
+
outer-circle-border: map-get(
|
|
844
|
+
$tokens, 'radio-#{$scheme}-theme-states-checked-focused-outer-circle-border'
|
|
845
|
+
),
|
|
846
|
+
outer-circle-background: map-get(
|
|
847
|
+
$tokens, 'radio-#{$scheme}-theme-states-checked-focused-outer-circle-background'
|
|
848
|
+
),
|
|
849
|
+
inner-circle-background: map-get(
|
|
850
|
+
$tokens, 'radio-#{$scheme}-theme-states-checked-focused-inner-circle-background'
|
|
851
|
+
),
|
|
852
|
+
outer-circle-shadow: map-get(
|
|
853
|
+
$tokens, 'radio-#{$scheme}-theme-states-checked-focused-outer-circle-shadow'
|
|
854
|
+
)
|
|
855
|
+
),
|
|
856
|
+
disabled: (
|
|
857
|
+
outer-circle-border: map-get($tokens, 'radio-#{$scheme}-theme-states-disabled-outer-circle-border'),
|
|
858
|
+
outer-circle-background: map-get(
|
|
859
|
+
$tokens, 'radio-#{$scheme}-theme-states-disabled-outer-circle-background'
|
|
860
|
+
),
|
|
861
|
+
inner-circle-background: map-get(
|
|
862
|
+
$tokens, 'radio-#{$scheme}-theme-states-disabled-inner-circle-background'
|
|
863
|
+
)
|
|
864
|
+
)
|
|
865
|
+
),
|
|
866
|
+
error: (
|
|
867
|
+
default: (
|
|
868
|
+
outer-circle-border: map-get($tokens, 'radio-#{$scheme}-error-default-outer-circle-border'),
|
|
869
|
+
outer-circle-background: map-get($tokens, 'radio-#{$scheme}-error-default-outer-circle-background'),
|
|
870
|
+
inner-circle-background: map-get($tokens, 'radio-#{$scheme}-error-default-inner-circle-background'),
|
|
871
|
+
),
|
|
872
|
+
|
|
873
|
+
hover: (
|
|
874
|
+
outer-circle-border: map-get($tokens, 'radio-#{$scheme}-error-states-hover-outer-circle-border'),
|
|
875
|
+
outer-circle-background: map-get(
|
|
876
|
+
$tokens, 'radio-#{$scheme}-error-states-hover-outer-circle-background'
|
|
877
|
+
),
|
|
878
|
+
inner-circle-background: map-get(
|
|
879
|
+
$tokens, 'radio-#{$scheme}-error-states-hover-inner-circle-background'
|
|
880
|
+
)
|
|
881
|
+
),
|
|
882
|
+
checked: (
|
|
883
|
+
outer-circle-border: map-get($tokens, 'radio-#{$scheme}-error-states-checked-outer-circle-border'),
|
|
884
|
+
outer-circle-background: map-get(
|
|
885
|
+
$tokens, 'radio-#{$scheme}-error-states-checked-outer-circle-background'
|
|
886
|
+
),
|
|
887
|
+
inner-circle-background: map-get(
|
|
888
|
+
$tokens, 'radio-#{$scheme}-error-states-checked-inner-circle-background'
|
|
889
|
+
)
|
|
890
|
+
),
|
|
891
|
+
checked-hover: (
|
|
892
|
+
outer-circle-border: map-get(
|
|
893
|
+
$tokens, 'radio-#{$scheme}-error-states-checked-hover-outer-circle-border'
|
|
894
|
+
),
|
|
895
|
+
outer-circle-background: map-get(
|
|
896
|
+
$tokens, 'radio-#{$scheme}-error-states-checked-hover-outer-circle-background'
|
|
897
|
+
),
|
|
898
|
+
inner-circle-background: map-get(
|
|
899
|
+
$tokens, 'radio-#{$scheme}-error-states-checked-hover-inner-circle-background'
|
|
900
|
+
)
|
|
901
|
+
),
|
|
902
|
+
focused: (
|
|
903
|
+
outer-circle-border: map-get($tokens, 'radio-#{$scheme}-error-states-focused-outer-circle-border'),
|
|
904
|
+
outer-circle-background: map-get(
|
|
905
|
+
$tokens, 'radio-#{$scheme}-error-states-focused-outer-circle-background'
|
|
906
|
+
),
|
|
907
|
+
inner-circle-background: map-get(
|
|
908
|
+
$tokens, 'radio-#{$scheme}-error-states-focused-inner-circle-background'
|
|
909
|
+
),
|
|
910
|
+
outer-circle-shadow: map-get(
|
|
911
|
+
$tokens, 'radio-#{$scheme}-error-states-focused-outer-circle-shadow'
|
|
912
|
+
)
|
|
913
|
+
),
|
|
914
|
+
checked-focused: (
|
|
915
|
+
outer-circle-border: map-get(
|
|
916
|
+
$tokens, 'radio-#{$scheme}-error-states-checked-focused-outer-circle-border'
|
|
917
|
+
),
|
|
918
|
+
outer-circle-background: map-get(
|
|
919
|
+
$tokens, 'radio-#{$scheme}-error-states-checked-focused-outer-circle-background'
|
|
920
|
+
),
|
|
921
|
+
inner-circle-background: map-get(
|
|
922
|
+
$tokens, 'radio-#{$scheme}-error-states-checked-focused-inner-circle-background'
|
|
923
|
+
),
|
|
924
|
+
outer-circle-shadow: map-get(
|
|
925
|
+
$tokens, 'radio-#{$scheme}-error-states-checked-focused-outer-circle-shadow'
|
|
926
|
+
)
|
|
927
|
+
),
|
|
928
|
+
disabled: (
|
|
929
|
+
outer-circle-border: map-get($tokens, 'radio-#{$scheme}-error-states-disabled-outer-circle-border'),
|
|
930
|
+
outer-circle-background: map-get(
|
|
931
|
+
$tokens, 'radio-#{$scheme}-error-states-disabled-outer-circle-background'
|
|
932
|
+
),
|
|
933
|
+
inner-circle-background: map-get(
|
|
934
|
+
$tokens, 'radio-#{$scheme}-error-states-disabled-inner-circle-background'
|
|
935
|
+
)
|
|
936
|
+
)
|
|
937
|
+
)
|
|
938
|
+
);
|
|
939
|
+
|
|
940
|
+
$sidepanel: (
|
|
941
|
+
border: map-get($tokens, 'sidepanel-#{$scheme}-border'),
|
|
942
|
+
header-border: map-get($tokens, 'sidepanel-header-#{$scheme}-border'),
|
|
943
|
+
footer-border: map-get($tokens, 'sidepanel-footer-#{$scheme}-border')
|
|
944
|
+
);
|
|
945
|
+
|
|
946
|
+
$tabs: (
|
|
947
|
+
border: map-get($tokens, 'tabs-#{$scheme}-border'),
|
|
948
|
+
state-normal-icon: map-get($tokens, 'tabs-#{$scheme}-state-normal-icon'),
|
|
949
|
+
state-normal-text: map-get($tokens, 'tabs-#{$scheme}-state-normal-text'),
|
|
950
|
+
|
|
951
|
+
state-hover-icon: map-get($tokens, 'tabs-#{$scheme}-state-hover-icon'),
|
|
952
|
+
state-hover-text: map-get($tokens, 'tabs-#{$scheme}-state-hover-text'),
|
|
953
|
+
|
|
954
|
+
state-active-marker: map-get($tokens, 'tabs-#{$scheme}-state-active-marker-color'),
|
|
955
|
+
|
|
956
|
+
state-empty-icon: map-get($tokens, 'tabs-#{$scheme}-state-empty-icon'),
|
|
957
|
+
state-empty-text: map-get($tokens, 'tabs-#{$scheme}-state-empty-text'),
|
|
958
|
+
|
|
959
|
+
state-disabled-icon: map-get($tokens, 'tabs-#{$scheme}-state-disabled-icon'),
|
|
960
|
+
state-disabled-text: map-get($tokens, 'tabs-#{$scheme}-state-disabled-text'),
|
|
961
|
+
state-disabled-marker-opacity: map-get($tokens, 'tabs-#{$scheme}-state-disabled-marker-opacity')
|
|
962
|
+
);
|
|
963
|
+
|
|
964
|
+
$vertical-tabs: (
|
|
965
|
+
state-normal-background: map-get($tokens, 'vertical-tabs-#{$scheme}-state-normal-background'),
|
|
966
|
+
state-selected-background: map-get($tokens, 'vertical-tabs-#{$scheme}-state-selected-background'),
|
|
967
|
+
state-hover-background: map-get($tokens, 'vertical-tabs-#{$scheme}-state-hover-background'),
|
|
968
|
+
state-hover-selected-background: map-get($tokens, 'vertical-tabs-#{$scheme}-state-hover-selected-background')
|
|
969
|
+
);
|
|
970
|
+
|
|
971
|
+
$tag: (
|
|
972
|
+
theme-fade-on: (
|
|
973
|
+
default: (
|
|
974
|
+
background: map-get($tokens, 'tag-#{$scheme}-theme-fade-on-default-background'),
|
|
975
|
+
text: map-get($tokens, 'tag-#{$scheme}-theme-fade-on-default-text'),
|
|
976
|
+
icon: map-get($tokens, 'tag-#{$scheme}-theme-fade-on-default-icon'),
|
|
977
|
+
close-button: map-get($tokens, 'tag-#{$scheme}-theme-fade-on-default-close-button')
|
|
978
|
+
),
|
|
979
|
+
hover: (
|
|
980
|
+
background: map-get($tokens, 'tag-#{$scheme}-theme-fade-on-states-hover-background'),
|
|
981
|
+
text: map-get($tokens, 'tag-#{$scheme}-theme-fade-on-states-hover-text'),
|
|
982
|
+
icon: map-get($tokens, 'tag-#{$scheme}-theme-fade-on-states-hover-icon'),
|
|
983
|
+
close-button: map-get($tokens, 'tag-#{$scheme}-theme-fade-on-states-hover-close-button')
|
|
984
|
+
),
|
|
985
|
+
focus: (
|
|
986
|
+
background: map-get($tokens, 'tag-#{$scheme}-theme-fade-on-states-focus-background'),
|
|
987
|
+
text: map-get($tokens, 'tag-#{$scheme}-theme-fade-on-states-focus-text'),
|
|
988
|
+
icon: map-get($tokens, 'tag-#{$scheme}-theme-fade-on-states-focus-icon'),
|
|
989
|
+
close-button: map-get($tokens, 'tag-#{$scheme}-theme-fade-on-states-focus-close-button'),
|
|
990
|
+
outline: map-get($tokens, 'tag-#{$scheme}-theme-fade-on-states-focus-outline')
|
|
991
|
+
),
|
|
992
|
+
disabled: (
|
|
993
|
+
background: map-get($tokens, 'tag-#{$scheme}-theme-fade-on-states-disabled-background'),
|
|
994
|
+
text: map-get($tokens, 'tag-#{$scheme}-theme-fade-on-states-disabled-text'),
|
|
995
|
+
icon: map-get($tokens, 'tag-#{$scheme}-theme-fade-on-states-disabled-icon'),
|
|
996
|
+
close-button: map-get($tokens, 'tag-#{$scheme}-theme-fade-on-states-disabled-close-button')
|
|
997
|
+
)
|
|
998
|
+
),
|
|
999
|
+
contrast-fade-on: (
|
|
1000
|
+
default: (
|
|
1001
|
+
background: map-get($tokens, 'tag-#{$scheme}-contrast-fade-on-default-background'),
|
|
1002
|
+
text: map-get($tokens, 'tag-#{$scheme}-contrast-fade-on-default-text'),
|
|
1003
|
+
icon: map-get($tokens, 'tag-#{$scheme}-contrast-fade-on-default-icon'),
|
|
1004
|
+
close-button: map-get($tokens, 'tag-#{$scheme}-contrast-fade-on-default-close-button')
|
|
1005
|
+
),
|
|
1006
|
+
hover: (
|
|
1007
|
+
background: map-get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-hover-background'),
|
|
1008
|
+
text: map-get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-hover-text'),
|
|
1009
|
+
icon: map-get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-hover-icon'),
|
|
1010
|
+
close-button: map-get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-hover-close-button')
|
|
1011
|
+
),
|
|
1012
|
+
focus: (
|
|
1013
|
+
background: map-get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-focus-background'),
|
|
1014
|
+
text: map-get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-focus-text'),
|
|
1015
|
+
icon: map-get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-focus-icon'),
|
|
1016
|
+
close-button: map-get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-focus-close-button'),
|
|
1017
|
+
outline: map-get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-focus-outline')
|
|
1018
|
+
),
|
|
1019
|
+
disabled: (
|
|
1020
|
+
background: map-get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-disabled-background'),
|
|
1021
|
+
text: map-get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-disabled-text'),
|
|
1022
|
+
icon: map-get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-disabled-icon'),
|
|
1023
|
+
close-button: map-get($tokens, 'tag-#{$scheme}-contrast-fade-on-states-disabled-close-button')
|
|
1024
|
+
)
|
|
1025
|
+
),
|
|
1026
|
+
error-fade-on: (
|
|
1027
|
+
default: (
|
|
1028
|
+
background: map-get($tokens, 'tag-#{$scheme}-error-fade-on-default-background'),
|
|
1029
|
+
text: map-get($tokens, 'tag-#{$scheme}-error-fade-on-default-text'),
|
|
1030
|
+
icon: map-get($tokens, 'tag-#{$scheme}-error-fade-on-default-icon'),
|
|
1031
|
+
close-button: map-get($tokens, 'tag-#{$scheme}-error-fade-on-default-close-button')
|
|
1032
|
+
),
|
|
1033
|
+
hover: (
|
|
1034
|
+
background: map-get($tokens, 'tag-#{$scheme}-error-fade-on-states-hover-background'),
|
|
1035
|
+
text: map-get($tokens, 'tag-#{$scheme}-error-fade-on-states-hover-text'),
|
|
1036
|
+
icon: map-get($tokens, 'tag-#{$scheme}-error-fade-on-states-hover-icon'),
|
|
1037
|
+
close-button: map-get($tokens, 'tag-#{$scheme}-error-fade-on-states-hover-close-button')
|
|
1038
|
+
),
|
|
1039
|
+
focus: (
|
|
1040
|
+
background: map-get($tokens, 'tag-#{$scheme}-error-fade-on-states-focus-background'),
|
|
1041
|
+
text: map-get($tokens, 'tag-#{$scheme}-error-fade-on-states-focus-text'),
|
|
1042
|
+
icon: map-get($tokens, 'tag-#{$scheme}-error-fade-on-states-focus-icon'),
|
|
1043
|
+
close-button: map-get($tokens, 'tag-#{$scheme}-error-fade-on-states-focus-close-button'),
|
|
1044
|
+
outline: map-get($tokens, 'tag-#{$scheme}-error-fade-on-states-focus-outline')
|
|
1045
|
+
),
|
|
1046
|
+
disabled: (
|
|
1047
|
+
background: map-get($tokens, 'tag-#{$scheme}-error-fade-on-states-disabled-background'),
|
|
1048
|
+
text: map-get($tokens, 'tag-#{$scheme}-error-fade-on-states-disabled-text'),
|
|
1049
|
+
icon: map-get($tokens, 'tag-#{$scheme}-error-fade-on-states-disabled-icon'),
|
|
1050
|
+
close-button: map-get($tokens, 'tag-#{$scheme}-error-fade-on-states-disabled-close-button')
|
|
1051
|
+
)
|
|
1052
|
+
)
|
|
1053
|
+
);
|
|
1054
|
+
|
|
1055
|
+
$toggle: (
|
|
1056
|
+
theme:(
|
|
1057
|
+
default:(
|
|
1058
|
+
border: map-get($tokens, 'toggle-#{$scheme}-theme-default-border'),
|
|
1059
|
+
background: map-get($tokens, 'toggle-#{$scheme}-theme-default-background'),
|
|
1060
|
+
circle-background: map-get($tokens, 'toggle-#{$scheme}-theme-default-circle-background')
|
|
1061
|
+
),
|
|
1062
|
+
hover: (
|
|
1063
|
+
border: map-get($tokens, 'toggle-#{$scheme}-theme-states-hover-border'),
|
|
1064
|
+
background: map-get($tokens, 'toggle-#{$scheme}-theme-states-hover-background'),
|
|
1065
|
+
circle-background: map-get($tokens, 'toggle-#{$scheme}-theme-states-hover-circle-background')
|
|
1066
|
+
),
|
|
1067
|
+
checked: (
|
|
1068
|
+
border: map-get($tokens, 'toggle-#{$scheme}-theme-states-checked-border'),
|
|
1069
|
+
background: map-get($tokens, 'toggle-#{$scheme}-theme-states-checked-background'),
|
|
1070
|
+
circle-background: map-get($tokens, 'toggle-#{$scheme}-theme-states-checked-circle-background')
|
|
1071
|
+
),
|
|
1072
|
+
checked-hover: (
|
|
1073
|
+
border: map-get($tokens, 'toggle-#{$scheme}-theme-states-checked-hover-border'),
|
|
1074
|
+
background: map-get($tokens, 'toggle-#{$scheme}-theme-states-checked-hover-background'),
|
|
1075
|
+
circle-background: map-get($tokens, 'toggle-#{$scheme}-theme-states-checked-hover-circle-background')
|
|
1076
|
+
),
|
|
1077
|
+
focused: (
|
|
1078
|
+
border: map-get($tokens, 'toggle-#{$scheme}-theme-states-focused-border'),
|
|
1079
|
+
background: map-get($tokens, 'toggle-#{$scheme}-theme-states-focused-background'),
|
|
1080
|
+
circle-background: map-get($tokens, 'toggle-#{$scheme}-theme-states-focused-circle-background'),
|
|
1081
|
+
focus-outline: map-get($tokens, 'toggle-#{$scheme}-theme-states-focused-focus-outline')
|
|
1082
|
+
),
|
|
1083
|
+
checked-focused: (
|
|
1084
|
+
border: map-get($tokens, 'toggle-#{$scheme}-theme-states-checked-focused-border'),
|
|
1085
|
+
background: map-get($tokens, 'toggle-#{$scheme}-theme-states-checked-focused-background'),
|
|
1086
|
+
circle-background: map-get($tokens, 'toggle-#{$scheme}-theme-states-checked-focused-circle-background'),
|
|
1087
|
+
focus-outline: map-get($tokens, 'toggle-#{$scheme}-theme-states-checked-focused-focus-outline')
|
|
1088
|
+
),
|
|
1089
|
+
disabled: (
|
|
1090
|
+
border: map-get($tokens, 'toggle-#{$scheme}-theme-states-disabled-border'),
|
|
1091
|
+
background: map-get($tokens, 'toggle-#{$scheme}-theme-states-disabled-background'),
|
|
1092
|
+
circle-background: map-get($tokens, 'toggle-#{$scheme}-theme-states-disabled-circle-background')
|
|
1093
|
+
)
|
|
1094
|
+
),
|
|
1095
|
+
error:(
|
|
1096
|
+
default:(
|
|
1097
|
+
border: map-get($tokens, 'toggle-#{$scheme}-error-default-border'),
|
|
1098
|
+
background: map-get($tokens, 'toggle-#{$scheme}-error-default-background'),
|
|
1099
|
+
circle-background: map-get($tokens, 'toggle-#{$scheme}-error-default-circle-background')
|
|
1100
|
+
),
|
|
1101
|
+
hover: (
|
|
1102
|
+
border: map-get($tokens, 'toggle-#{$scheme}-error-states-hover-border'),
|
|
1103
|
+
background: map-get($tokens, 'toggle-#{$scheme}-error-states-hover-background'),
|
|
1104
|
+
circle-background: map-get($tokens, 'toggle-#{$scheme}-error-states-hover-circle-background')
|
|
1105
|
+
),
|
|
1106
|
+
checked: (
|
|
1107
|
+
border: map-get($tokens, 'toggle-#{$scheme}-error-states-checked-border'),
|
|
1108
|
+
background: map-get($tokens, 'toggle-#{$scheme}-error-states-checked-background'),
|
|
1109
|
+
circle-background: map-get($tokens, 'toggle-#{$scheme}-error-states-checked-circle-background')
|
|
1110
|
+
),
|
|
1111
|
+
checked-hover: (
|
|
1112
|
+
border: map-get($tokens, 'toggle-#{$scheme}-error-states-checked-hover-border'),
|
|
1113
|
+
background: map-get($tokens, 'toggle-#{$scheme}-error-states-checked-hover-background'),
|
|
1114
|
+
circle-background: map-get($tokens, 'toggle-#{$scheme}-error-states-checked-hover-circle-background')
|
|
1115
|
+
),
|
|
1116
|
+
focused: (
|
|
1117
|
+
border: map-get($tokens, 'toggle-#{$scheme}-error-states-focused-border'),
|
|
1118
|
+
background: map-get($tokens, 'toggle-#{$scheme}-error-states-focused-background'),
|
|
1119
|
+
circle-background: map-get($tokens, 'toggle-#{$scheme}-error-states-focused-circle-background'),
|
|
1120
|
+
focus-outline: map-get($tokens, 'toggle-#{$scheme}-error-states-focused-focus-outline'),
|
|
1121
|
+
),
|
|
1122
|
+
checked-focused: (
|
|
1123
|
+
border: map-get($tokens, 'toggle-#{$scheme}-error-states-checked-focused-border'),
|
|
1124
|
+
background: map-get($tokens, 'toggle-#{$scheme}-error-states-checked-focused-background'),
|
|
1125
|
+
circle-background: map-get($tokens, 'toggle-#{$scheme}-error-states-checked-focused-circle-background'),
|
|
1126
|
+
focus-outline: map-get($tokens, 'toggle-#{$scheme}-error-states-checked-focused-focus-outline')
|
|
1127
|
+
),
|
|
1128
|
+
disabled: (
|
|
1129
|
+
border: map-get($tokens, 'toggle-#{$scheme}-error-states-disabled-border'),
|
|
1130
|
+
background: map-get($tokens, 'toggle-#{$scheme}-error-states-disabled-background'),
|
|
1131
|
+
circle-background: map-get($tokens, 'toggle-#{$scheme}-error-states-disabled-circle-background')
|
|
1132
|
+
)
|
|
1133
|
+
)
|
|
1134
|
+
);
|
|
1135
|
+
|
|
1136
|
+
$timezone: (
|
|
1137
|
+
text: map-get($tokens, 'timezone-option-#{$scheme}-text'),
|
|
1138
|
+
caption: map-get($tokens, 'timezone-option-#{$scheme}-caption')
|
|
1139
|
+
);
|
|
1140
|
+
|
|
1141
|
+
$toast: (
|
|
1142
|
+
background: map-get($tokens, 'toast-#{$scheme}-background'),
|
|
1143
|
+
border: map-get($tokens, 'toast-#{$scheme}-border'),
|
|
1144
|
+
text: map-get($tokens, 'toast-#{$scheme}-text'),
|
|
1145
|
+
text-caption: map-get($tokens, 'toast-#{$scheme}-text-caption'),
|
|
1146
|
+
shadow: map-get($tokens, 'toast-#{$scheme}-shadow'),
|
|
1147
|
+
|
|
1148
|
+
icon_info: map-get($tokens, 'toast-#{$scheme}-icon-info'),
|
|
1149
|
+
icon_error: map-get($tokens, 'toast-#{$scheme}-icon-error'),
|
|
1150
|
+
icon_success: map-get($tokens, 'toast-#{$scheme}-icon-success'),
|
|
1151
|
+
icon_warning: map-get($tokens, 'toast-#{$scheme}-icon-warning')
|
|
1152
|
+
);
|
|
1153
|
+
|
|
1154
|
+
$tooltip: (
|
|
1155
|
+
theme-fade-off: (
|
|
1156
|
+
background: map-get($tokens, 'tooltip-#{$scheme}-theme-fade-off-background'),
|
|
1157
|
+
text: map-get($tokens, 'tooltip-#{$scheme}-theme-fade-off-text'),
|
|
1158
|
+
shadow: map-get($tokens, 'tooltip-#{$scheme}-theme-fade-off-shadow')
|
|
1159
|
+
),
|
|
1160
|
+
contrast-fade-on: (
|
|
1161
|
+
background: map-get($tokens, 'tooltip-#{$scheme}-contrast-fade-on-background'),
|
|
1162
|
+
text: map-get($tokens, 'tooltip-#{$scheme}-contrast-fade-on-text'),
|
|
1163
|
+
shadow: map-get($tokens, 'tooltip-#{$scheme}-contrast-fade-on-shadow')
|
|
1164
|
+
),
|
|
1165
|
+
contrast-fade-off: (
|
|
1166
|
+
background: map-get($tokens, 'tooltip-#{$scheme}-contrast-fade-off-background'),
|
|
1167
|
+
text: map-get($tokens, 'tooltip-#{$scheme}-contrast-fade-off-text'),
|
|
1168
|
+
shadow: map-get($tokens, 'tooltip-#{$scheme}-contrast-fade-off-shadow')
|
|
1169
|
+
)
|
|
1170
|
+
);
|
|
1171
|
+
|
|
1172
|
+
$scrollbar: (
|
|
1173
|
+
default: map-get($tokens, 'scrollbar-#{$scheme}-thumb-default-background'),
|
|
1174
|
+
hover: map-get($tokens, 'scrollbar-#{$scheme}-thumb-hover-background'),
|
|
1175
|
+
active: map-get($tokens, 'scrollbar-#{$scheme}-thumb-active-background'),
|
|
1176
|
+
disabled: map-get($tokens, 'scrollbar-#{$scheme}-thumb-disabled-background')
|
|
1177
|
+
);
|
|
1178
|
+
|
|
1179
|
+
@return (
|
|
1180
|
+
alert: $alert,
|
|
1181
|
+
popup: $popup,
|
|
1182
|
+
badge: $badge,
|
|
1183
|
+
button: $button,
|
|
1184
|
+
card: $card,
|
|
1185
|
+
checkbox: $checkbox,
|
|
1186
|
+
code-block: $code-block,
|
|
1187
|
+
datepicker: $datepicker,
|
|
1188
|
+
divider: $divider,
|
|
1189
|
+
dl: $dl,
|
|
1190
|
+
form-field: $form-field,
|
|
1191
|
+
form-field-hint: $form-field-hint,
|
|
1192
|
+
form-field-password-hint: $form-field-password-hint,
|
|
1193
|
+
hint: $hint,
|
|
1194
|
+
forms: $forms,
|
|
1195
|
+
icon: $icon,
|
|
1196
|
+
icon-item: $icon-item,
|
|
1197
|
+
icon-button: $icon-button,
|
|
1198
|
+
link: $link,
|
|
1199
|
+
loader-overlay: $loader-overlay,
|
|
1200
|
+
modal: $modal,
|
|
1201
|
+
markdown: $markdown,
|
|
1202
|
+
navbar: $navbar,
|
|
1203
|
+
navbar-item: $navbar-item,
|
|
1204
|
+
popover: $popover,
|
|
1205
|
+
progress-bar: $progress-bar,
|
|
1206
|
+
progress-spinner: $progress-spinner,
|
|
1207
|
+
radio: $radio,
|
|
1208
|
+
sidepanel: $sidepanel,
|
|
1209
|
+
tabs: $tabs,
|
|
1210
|
+
vertical-tabs: $vertical-tabs,
|
|
1211
|
+
tag: $tag,
|
|
1212
|
+
timezone: $timezone,
|
|
1213
|
+
toast: $toast,
|
|
1214
|
+
toggle: $toggle,
|
|
1215
|
+
tooltip: $tooltip,
|
|
1216
|
+
scrollbar: $scrollbar
|
|
1217
|
+
);
|
|
1218
|
+
}
|