@aures5g/vue-component-library 0.52.0 → 1.0.0
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/dist/src/components/button/uiButton.theme.d.ts +11 -11
- package/dist/src/components/checkbox/uiCheckbox.theme.d.ts +5 -5
- package/dist/src/components/chip/uiChip.theme.d.ts +6 -6
- package/dist/src/components/copyToClipboard/UICopy.vue.d.ts +2 -2
- package/dist/src/components/divider/uiDivider.theme.d.ts +1 -1
- package/dist/src/components/dropdown/UIDropdown.vue.d.ts +4 -4
- package/dist/src/components/dropdown/uiDropdown.theme.d.ts +3 -3
- package/dist/src/components/form/FormFieldWrapper.vue.d.ts +5 -5
- package/dist/src/components/iconButton/uiIconButton.theme.d.ts +12 -12
- package/dist/src/components/infoStrip/UIInfoStrip.vue.d.ts +5 -5
- package/dist/src/components/infoStrip/UIInfoStripSecondaryBox.vue.d.ts +2 -2
- package/dist/src/components/infoStrip/brandLogo/uiBrandLogo.theme.d.ts +1 -1
- package/dist/src/components/infoStrip/uiInfoStrip.theme.d.ts +5 -5
- package/dist/src/components/infoStrip/uiInfoStripSecondaryBox.theme.d.ts +1 -1
- package/dist/src/components/infoStrip/uiPersonList.theme.d.ts +2 -2
- package/dist/src/components/languagePicker/uiLanguagePicker.theme.d.ts +1 -1
- package/dist/src/components/list/UIListItem.vue.d.ts +3 -3
- package/dist/src/components/list/uiList.theme.d.ts +1 -1
- package/dist/src/components/menu/useMenu.composables.d.ts +1 -1
- package/dist/src/components/radioButton/UIRadioButton.vue.d.ts +1 -1
- package/dist/src/components/radioButton/uiRadioButton.theme.d.ts +5 -5
- package/dist/src/components/richTooltip/UIRichTooltip.vue.d.ts +4 -4
- package/dist/src/components/switch/uiSwitch.theme.d.ts +2 -2
- package/dist/src/components/tabs/uiTabPanel.theme.d.ts +2 -2
- package/dist/src/components/tag/uiTag.theme.d.ts +1 -1
- package/dist/src/components/textField/UITextField.vue.d.ts +4 -4
- package/dist/src/components/textField/uiTextField.theme.d.ts +5 -5
- package/dist/src/components/textarea/UITextArea.vue.d.ts +4 -4
- package/dist/src/components/toggleButton/uiToggleButton.const.d.ts +5 -5
- package/dist/src/components/toggleButton/uiToggleButton.theme.d.ts +15 -15
- package/dist/vue-component-library.css +1 -1
- package/dist/vue-component-library.js +6019 -6109
- package/dist/vue-component-library.umd.cjs +2362 -0
- package/package.json +47 -49
- package/src/assets/base.css +11 -0
- package/src/assets/components.css +56 -0
- package/src/assets/theme.css +82 -0
- package/src/assets/utilities.css +0 -0
- package/dist/tailwind.config.cjs +0 -1
- package/dist/tailwind.config.d.ts +0 -89
- package/dist/tailwind.config.js +0 -162
- package/dist/vue-component-library.cjs +0 -2286
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export declare const BASE_BUTTON = "inline-flex items-center text-[1rem] relative hover:after:size-full hover:after:absolute hover:after:left-0";
|
|
2
|
-
export declare const BUTTON_PRIMARY = "bg-primary text-on-primary hover:after:bg-on-primary/
|
|
3
|
-
export declare const BUTTON_OUTLINED = "border-secondary border
|
|
4
|
-
export declare const BUTTON_TEXT = "text-primary px-md hover:bg-primary/
|
|
2
|
+
export declare const BUTTON_PRIMARY = "bg-primary text-on-primary hover:after:bg-on-primary/8 px-xl hover:shadow-1 h-[2.5rem]";
|
|
3
|
+
export declare const BUTTON_OUTLINED = "border-secondary border text-primary px-xl hover:bg-primary/8 h-[2.5rem]";
|
|
4
|
+
export declare const BUTTON_TEXT = "text-primary px-md hover:bg-primary/8 h-[2.5rem]";
|
|
5
5
|
export declare const BUTTON_SUCCESS = "bg-success text-on-success px-xl hover:shadow-1 h-[2.5rem]";
|
|
6
6
|
export declare const BUTTON_WARNING = "bg-warning text-on-warning px-xl hover:shadow-1 h-[2.5rem]";
|
|
7
7
|
export declare const BUTTON_DANGER = "bg-error text-on-error px-xl hover:shadow-1 h-[2.5rem]";
|
|
8
|
-
export declare const BUTTON_FILLED = "bg-on-primary px-xl hover:shadow-1 h-[2.5rem] hover:after:bg-on-surface-variant/
|
|
9
|
-
export declare const BUTTON_TRANSPARENT = "border border-on-primary/
|
|
8
|
+
export declare const BUTTON_FILLED = "bg-on-primary px-xl hover:shadow-1 h-[2.5rem] hover:after:bg-on-surface-variant/8";
|
|
9
|
+
export declare const BUTTON_TRANSPARENT = "border border-on-primary/16 text-on-primary px-xl hover:shadow-1 h-[2.5rem] hover:after:bg-on-primary/8";
|
|
10
10
|
export declare const ACTION_BUTTON = "flex-row-reverse w-full gap-sm pr-lg";
|
|
11
11
|
export declare const ACTION_BUTTON_LABEL = "grow truncate text-left";
|
|
12
12
|
export declare const BASE_LABEL = "title-small";
|
|
@@ -14,10 +14,10 @@ export declare const BUTTON_LABEL_WITH_ICON = "pl-sm";
|
|
|
14
14
|
export declare const BUTTON_LABEL_WITHOUT_ICON = "";
|
|
15
15
|
export declare const BUTTON_SEVERITY_IS_NOT_TEXT = "pl-lg";
|
|
16
16
|
export declare const BUTTON_SEVERITY_IS_TEXT = "pr-lg";
|
|
17
|
-
export declare const BUTTON_ICON_ONLY_SMALL = "
|
|
18
|
-
export declare const BUTTON_ICON_ONLY_LARGE = "h-[2.5rem] text-[1.25rem]
|
|
17
|
+
export declare const BUTTON_ICON_ONLY_SMALL = "size-[2rem]! p-sm! justify-center";
|
|
18
|
+
export declare const BUTTON_ICON_ONLY_LARGE = "h-[2.5rem] text-[1.25rem] p-0! w-[2.5rem] justify-center";
|
|
19
19
|
export declare const BUTTON_ICON_ONLY_LABEL = "hidden";
|
|
20
|
-
export declare const DEFAULT_DISABLED = "px-xl h-[2.5rem]
|
|
21
|
-
export declare const OUTLINED_DISABLED = "px-xl h-[2.5rem] border
|
|
22
|
-
export declare const FILLED_DISABLED = "px-xl h-[2.5rem] bg-on-primary/
|
|
23
|
-
export declare const TRANSPARENT_DISABLED = "px-xl h-[2.5rem] border border-on-primary/
|
|
20
|
+
export declare const DEFAULT_DISABLED = "px-xl h-[2.5rem] bg-on-surface/8! text-on-surface/38";
|
|
21
|
+
export declare const OUTLINED_DISABLED = "px-xl h-[2.5rem] border border-on-surface/12! bg-transparent! text-on-surface/38";
|
|
22
|
+
export declare const FILLED_DISABLED = "px-xl h-[2.5rem] bg-on-primary/12 text-on-primary/50 hover:after:hidden";
|
|
23
|
+
export declare const TRANSPARENT_DISABLED = "px-xl h-[2.5rem] border border-on-primary/12 text-on-primary/50 hover:after:hidden";
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
export declare const BASE = "size-[1.25rem] relative hover:after:size-[2.5rem] hover:after:absolute hover:after:rounded-full hover:after:-top-1/2 hover:after:-left-1/2";
|
|
2
|
-
export declare const NONACTIVE_BASE_BG = "hover:after:bg-on-surface/
|
|
3
|
-
export declare const ACTIVE_BASE_BG = "hover:after:bg-primary/
|
|
2
|
+
export declare const NONACTIVE_BASE_BG = "hover:after:bg-on-surface/8";
|
|
3
|
+
export declare const ACTIVE_BASE_BG = "hover:after:bg-primary/8";
|
|
4
4
|
export declare const BASE_DISABLED = "hover:after:transparent";
|
|
5
|
-
export declare const INPUT_STYLE = "size-full z-
|
|
5
|
+
export declare const INPUT_STYLE = "size-full z-1 absolute top-0 left-0 appearance-none";
|
|
6
6
|
export declare const INPUT_ACTIVE = "cursor-pointer";
|
|
7
7
|
export declare const INPUT_SELECTED = "border-2 border-primary";
|
|
8
8
|
export declare const BOX_STYLE = "size-[1.25rem] flex justify-center items-center border-2 p-[0.19rem]";
|
|
9
9
|
export declare const BOX_SELECTED = "bg-primary text-on-primary";
|
|
10
10
|
export declare const BOX_ACTIVE = "border-on-surface-variant";
|
|
11
|
-
export declare const BOX_DISABLED = "border-on-surface/
|
|
12
|
-
export declare const BOX_DISABLED_SELECTED = "border-on-surface/
|
|
11
|
+
export declare const BOX_DISABLED = "border-on-surface/38";
|
|
12
|
+
export declare const BOX_DISABLED_SELECTED = "border-on-surface/0 bg-on-surface/38 text-on-primary";
|
|
13
13
|
export declare const ALIGN = "flex items-center gap-[0.5rem]";
|
|
14
14
|
export declare const LABEL_LEFT = "order-first";
|
|
@@ -3,14 +3,14 @@ export declare const DEFAULT = "rounded-[0.5rem] after:rounded-[0.5rem]";
|
|
|
3
3
|
export declare const ROUNDED = "rounded-[2rem] after:rounded-[2rem]";
|
|
4
4
|
export declare const FILTER_PADDING = "px-[1rem]";
|
|
5
5
|
export declare const FILTER_SELECTED = "border border-secondary-container hover:shadow-1";
|
|
6
|
-
export declare const UNSELCTED = "hover:after:bg-on-surface-variant/
|
|
7
|
-
export declare const SELECTED = "bg-secondary-container hover:after:bg-on-surface-variant/
|
|
6
|
+
export declare const UNSELCTED = "hover:after:bg-on-surface-variant/8";
|
|
7
|
+
export declare const SELECTED = "bg-secondary-container hover:after:bg-on-surface-variant/8";
|
|
8
8
|
export declare const HAS_ICON = "pl-[0.56rem]";
|
|
9
9
|
export declare const FILTER_ICON_STYLE = "text-primary";
|
|
10
|
-
export declare const FILTER_ICON_DISABLED_STYLE = "text-on-surface/
|
|
10
|
+
export declare const FILTER_ICON_DISABLED_STYLE = "text-on-surface/38";
|
|
11
11
|
export declare const LABEL_STYLE = "text-[0.875rem] font-medium leading-[1.25rem]";
|
|
12
12
|
export declare const LABEL_REMOVABLE = "mr-[0.5rem]";
|
|
13
13
|
export declare const LABEL_WITH_ICON = "ml-[0.5rem]";
|
|
14
|
-
export declare const REMOVE_ICON = "cursor-pointer z-
|
|
15
|
-
export declare const UNSELECTED_DISABLED = "border border-on-surface-variant/
|
|
16
|
-
export declare const SELECTED_DISABLED = "border border-on-surface-variant/
|
|
14
|
+
export declare const REMOVE_ICON = "cursor-pointer z-1";
|
|
15
|
+
export declare const UNSELECTED_DISABLED = "border border-on-surface-variant/12 text-on-surface/38";
|
|
16
|
+
export declare const SELECTED_DISABLED = "border border-on-surface-variant/0 text-on-surface/38 bg-on-surface-variant/12";
|
|
@@ -7,9 +7,9 @@ type __VLS_Props = {
|
|
|
7
7
|
hiddenIcon?: boolean;
|
|
8
8
|
iconPosition?: (typeof ICON_POSITION)[keyof typeof ICON_POSITION];
|
|
9
9
|
};
|
|
10
|
-
declare var
|
|
10
|
+
declare var __VLS_7: {};
|
|
11
11
|
type __VLS_Slots = {} & {
|
|
12
|
-
default?: (props: typeof
|
|
12
|
+
default?: (props: typeof __VLS_7) => any;
|
|
13
13
|
};
|
|
14
14
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
15
15
|
textToDisplay: string | number;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const BASE = "h-[0.0625rem] bg-outline/
|
|
1
|
+
export declare const BASE = "h-[0.0625rem] bg-outline/16";
|
|
2
2
|
export declare const VERTICAL = "rotate-90";
|
|
@@ -19,13 +19,13 @@ type __VLS_Props = {
|
|
|
19
19
|
type __VLS_PublicProps = __VLS_Props & {
|
|
20
20
|
modelValue?: unknown;
|
|
21
21
|
};
|
|
22
|
-
declare var
|
|
22
|
+
declare var __VLS_12: {
|
|
23
23
|
containerClass: string;
|
|
24
|
-
},
|
|
24
|
+
}, __VLS_15: {};
|
|
25
25
|
type __VLS_Slots = {} & {
|
|
26
|
-
leadingIcon?: (props: typeof
|
|
26
|
+
leadingIcon?: (props: typeof __VLS_12) => any;
|
|
27
27
|
} & {
|
|
28
|
-
supportText?: (props: typeof
|
|
28
|
+
supportText?: (props: typeof __VLS_15) => any;
|
|
29
29
|
};
|
|
30
30
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
31
31
|
"update:modelValue": (value: unknown) => any;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare const BASE = "peer select-none border border-on-surface-variant flex justify-end items-center rounded-[0.25rem] w-full h-[2.5rem] bg-inherit overflow-hidden";
|
|
2
2
|
export declare const DROPDOWN = "text-[1rem] h-fit p-[0.25rem] mx-[0.5rem] flex items-center";
|
|
3
|
-
export declare const DISABLED_DROPDOWN = "
|
|
3
|
+
export declare const DISABLED_DROPDOWN = "text-on-surface/12! border-on-surface/12";
|
|
4
4
|
export declare const CLEAR_ICON = "text-[1rem] cursor-pointer";
|
|
5
|
-
export declare const SELECT_LABEL = "w-full flex justify-start bg-transparent text-on-surface-variant focus-visible:outline-
|
|
6
|
-
export declare const FLOATING_LABEL = "absolute select-none ml-[1rem] mb-0 text-[1rem] peer-[.focused]:top-0 peer-[.focused]:text-[0.75rem] peer-[.focused]:leading-[1rem] peer-[.focused]:px-[0.25rem] peer-[.focused]:ml-[0.5rem] leading-[1rem] text-on-surface-variant
|
|
5
|
+
export declare const SELECT_LABEL = "w-full flex justify-start bg-transparent text-on-surface-variant focus-visible:outline-hidden pr-[0.75rem]";
|
|
6
|
+
export declare const FLOATING_LABEL = "absolute select-none ml-[1rem] mb-0 text-[1rem] peer-[.focused]:top-0 peer-focus:top-0 peer-[.focused]:text-[0.75rem] peer-focus:text-[0.75rem] peer-[.focused]:leading-[1rem] peer-focus:leading-[1rem] peer-[.focused]:px-[0.25rem] peer-focus:px-[0.25rem] peer-[.focused]:ml-[0.5rem] peer-focus:ml-[0.5rem] leading-[1rem] text-on-surface-variant bg-inherit transition-all pointer-events-none";
|
|
7
7
|
export declare const OVERLAY_PANEL = "max-h-[8rem] overflow-auto shadow-1 rounded-[0.25rem] py-[0.5rem] bg-on-primary";
|
|
8
8
|
export declare const ITEM = "cursor-pointer px-[1rem] hover:bg-primary-fixed text-[1rem] leading-[2.5rem] text-on-surface-variant";
|
|
@@ -9,15 +9,15 @@ type __VLS_Props = {
|
|
|
9
9
|
invalid?: boolean;
|
|
10
10
|
alignLabelAndIcon?: 'center' | 'top';
|
|
11
11
|
};
|
|
12
|
-
declare var
|
|
12
|
+
declare var __VLS_6: {
|
|
13
13
|
containerClass: string;
|
|
14
|
-
},
|
|
14
|
+
}, __VLS_13: {}, __VLS_15: {};
|
|
15
15
|
type __VLS_Slots = {} & {
|
|
16
|
-
leadingIcon?: (props: typeof
|
|
16
|
+
leadingIcon?: (props: typeof __VLS_6) => any;
|
|
17
17
|
} & {
|
|
18
|
-
default?: (props: typeof
|
|
18
|
+
default?: (props: typeof __VLS_13) => any;
|
|
19
19
|
} & {
|
|
20
|
-
supportText?: (props: typeof
|
|
20
|
+
supportText?: (props: typeof __VLS_15) => any;
|
|
21
21
|
};
|
|
22
22
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
23
23
|
disabled: boolean;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
export declare const BASE_ICON_BUTTON = "rounded-full flex justify-center items-center relative hover:after:rounded-full hover:after:size-full hover:after:absolute hover:after:left-0";
|
|
2
2
|
export declare const NO_LABEL = "hidden";
|
|
3
|
-
export declare const ICON_BUTTON_PRIMARY = "bg-primary text-on-primary hover:after:bg-on-primary/
|
|
4
|
-
export declare const ICON_BUTTON_SECONDARY = "bg-secondary-container text-on-secondary-container hover:after:bg-on-secondary-container/
|
|
5
|
-
export declare const ICON_BUTTON_OUTLINED = "border border-on-surface-variant text-on-surface-variant hover:after:bg-on-surface-variant/
|
|
6
|
-
export declare const ICON_BUTTON_STANDARD = "text-on-surface-variant hover:after:bg-on-surface-variant/
|
|
7
|
-
export declare const ICON_BUTTON_FILLED = "bg-on-primary hover:after:bg-on-surface-variant/
|
|
8
|
-
export declare const ICON_BUTTON_TRANSPARENT = "bg-transparent border border-on-primary/
|
|
3
|
+
export declare const ICON_BUTTON_PRIMARY = "bg-primary text-on-primary hover:after:bg-on-primary/8";
|
|
4
|
+
export declare const ICON_BUTTON_SECONDARY = "bg-secondary-container text-on-secondary-container hover:after:bg-on-secondary-container/8";
|
|
5
|
+
export declare const ICON_BUTTON_OUTLINED = "border border-on-surface-variant text-on-surface-variant hover:after:bg-on-surface-variant/8";
|
|
6
|
+
export declare const ICON_BUTTON_STANDARD = "text-on-surface-variant hover:after:bg-on-surface-variant/8";
|
|
7
|
+
export declare const ICON_BUTTON_FILLED = "bg-on-primary hover:after:bg-on-surface-variant/8";
|
|
8
|
+
export declare const ICON_BUTTON_TRANSPARENT = "bg-transparent border border-on-primary/16 text-on-primary";
|
|
9
9
|
export declare const ICON_BUTTON_TEXT = "text-on-primary";
|
|
10
|
-
export declare const DEFAULT_DISABLED = "bg-on-surface/
|
|
11
|
-
export declare const OUTLINED_DISABLED = "border border-on-surface/
|
|
12
|
-
export declare const STANDARD_DISABLED = "bg-transparent text-on-surface/
|
|
13
|
-
export declare const FILLED_DISABLED = "bg-on-primary/
|
|
14
|
-
export declare const TRANSPARENT_DISABLED = "bg-transparent border border-on-primary/
|
|
15
|
-
export declare const TEXT_DISABLED = "text-on-primary/
|
|
10
|
+
export declare const DEFAULT_DISABLED = "bg-on-surface/8 text-on-surface/38 hover:after:hidden";
|
|
11
|
+
export declare const OUTLINED_DISABLED = "border border-on-surface/12 bg-transparent text-on-surface/38 hover:after:hidden";
|
|
12
|
+
export declare const STANDARD_DISABLED = "bg-transparent text-on-surface/38 hover:after:hidden";
|
|
13
|
+
export declare const FILLED_DISABLED = "bg-on-primary/12 text-on-primary/[0.28] hover:after:hidden";
|
|
14
|
+
export declare const TRANSPARENT_DISABLED = "bg-transparent border border-on-primary/8 text-on-primary/50 hover:after:hidden";
|
|
15
|
+
export declare const TEXT_DISABLED = "text-on-primary/50 hover:after:hidden";
|
|
@@ -4,19 +4,19 @@ type __VLS_Props = {
|
|
|
4
4
|
status?: (typeof CUSTOMER_STATUS)[keyof typeof CUSTOMER_STATUS];
|
|
5
5
|
title: string;
|
|
6
6
|
};
|
|
7
|
-
declare var __VLS_1: {}, __VLS_3: {},
|
|
7
|
+
declare var __VLS_1: {}, __VLS_3: {}, __VLS_25: {}, __VLS_27: {}, __VLS_29: {}, __VLS_31: {};
|
|
8
8
|
type __VLS_Slots = {} & {
|
|
9
9
|
'leading-icon'?: (props: typeof __VLS_1) => any;
|
|
10
10
|
} & {
|
|
11
11
|
'severity-swap'?: (props: typeof __VLS_3) => any;
|
|
12
12
|
} & {
|
|
13
|
-
'primary-content'?: (props: typeof
|
|
13
|
+
'primary-content'?: (props: typeof __VLS_25) => any;
|
|
14
14
|
} & {
|
|
15
|
-
'secondary-boxes'?: (props: typeof
|
|
15
|
+
'secondary-boxes'?: (props: typeof __VLS_27) => any;
|
|
16
16
|
} & {
|
|
17
|
-
'primary-action'?: (props: typeof
|
|
17
|
+
'primary-action'?: (props: typeof __VLS_29) => any;
|
|
18
18
|
} & {
|
|
19
|
-
'secondary-action'?: (props: typeof
|
|
19
|
+
'secondary-action'?: (props: typeof __VLS_31) => any;
|
|
20
20
|
};
|
|
21
21
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
22
22
|
severity: (typeof STRIP_SEVERITY)[keyof typeof STRIP_SEVERITY];
|
|
@@ -3,9 +3,9 @@ type __VLS_Props = {
|
|
|
3
3
|
headline: string;
|
|
4
4
|
icon?: FontAwesomeIconProps['icon'];
|
|
5
5
|
};
|
|
6
|
-
declare var
|
|
6
|
+
declare var __VLS_6: {};
|
|
7
7
|
type __VLS_Slots = {} & {
|
|
8
|
-
default?: (props: typeof
|
|
8
|
+
default?: (props: typeof __VLS_6) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
11
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const BASE = "relative bg-on-primary h-[2rem] pr-[1rem] rounded-[625rem] flex items-center label-medium tracking-[0.03125rem]";
|
|
2
|
-
export declare const ICON_BOX = "absolute left-
|
|
2
|
+
export declare const ICON_BOX = "absolute -left-px size-[2.5rem] text-[1rem] rounded-full flex justify-center items-center";
|
|
3
3
|
export declare const DEFAULT_BORDER = "border-4 border-[#0075E6]";
|
|
4
4
|
export declare const ENEMY_BORDER = "border-4 border-[#DE334A]";
|
|
5
5
|
export declare const VIP_BORDER = "border-4 border-[#414754]";
|
|
@@ -4,9 +4,9 @@ export declare const ENEMY_FIRST_BOX = "bg-[#DE334A] border-error";
|
|
|
4
4
|
export declare const VIP_FIRST_BOX = "bg-[#3F4753] border-[#A48111]";
|
|
5
5
|
export declare const HEADER_WRAPPER = "w-full flex justify-between items-center gap-[1rem]";
|
|
6
6
|
export declare const TAGS_WRAPPER = "flex gap-[0.25rem] items-center";
|
|
7
|
-
export declare const ENEMY_TAG = "text-on-primary
|
|
8
|
-
export declare const VIP_TAG = "text-on-primary
|
|
9
|
-
export declare const B2B_TAG = "text-on-primary
|
|
10
|
-
export declare const B2C_TAG = "text-on-primary
|
|
7
|
+
export declare const ENEMY_TAG = "text-on-primary bg-error!";
|
|
8
|
+
export declare const VIP_TAG = "text-on-primary bg-[#A48111]!";
|
|
9
|
+
export declare const B2B_TAG = "text-on-primary bg-success!";
|
|
10
|
+
export declare const B2C_TAG = "text-on-primary bg-tertiary!";
|
|
11
11
|
export declare const SECONDARY_BOXES_WRAPPER = "grow flex pt-[0.5rem] pb-[1rem] px-[1rem] bg-inherit";
|
|
12
|
-
export declare const ACTION_WRAPPER = "bg-on-primary/
|
|
12
|
+
export declare const ACTION_WRAPPER = "bg-on-primary/8 py-[1.5rem] px-[1rem] flex flex-col justify-start items-center gap-[1.5rem]";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const BASE = "p-[1rem] bg-inherit relative text-on-primary border border-on-primary/
|
|
1
|
+
export declare const BASE = "p-[1rem] bg-inherit relative text-on-primary border border-on-primary/16 mt-[1rem] rounded-[0.25rem]";
|
|
2
2
|
export declare const HEADLINE_BOX = "flex gap-[0.5rem] items-center bg-inherit absolute top-[-0.75rem] left-[0.5rem] px-[0.5rem]";
|
|
3
3
|
export declare const HEADLINE = "text-[1rem] font-medium leading-[1.5rem]";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const WRAPPER = "flex gap-[0.75rem]";
|
|
2
|
-
export declare const ICON_BOX = "flex justify-center items-center text-on-primary bg-black/
|
|
2
|
+
export declare const ICON_BOX = "flex justify-center items-center text-on-primary bg-black/25 size-[2.5rem] rounded-[0.5rem]";
|
|
3
3
|
export declare const LABELS_WRAPPER = "flex flex-col justify-center";
|
|
4
|
-
export declare const HEADLINE = "text-on-primary/
|
|
4
|
+
export declare const HEADLINE = "text-on-primary/82 body-small";
|
|
5
5
|
export declare const LABEL = "text-on-primary title-small";
|
|
@@ -3,7 +3,7 @@ export declare const SELECTED_LANG_BOX = "py-[0.5rem] w-fit";
|
|
|
3
3
|
export declare const SELECTED_LANG_BTN = "size-[2.5rem] p-[0.25rem] rounded-full flex items-center justify-center bg-on-primary border-2 border-primary";
|
|
4
4
|
export declare const UNSELECTED_LANG_BTN = "size-[2.5rem] p-[0.25rem] rounded-full flex items-center justify-center bg-on-primary border border-[#DDE2F3]";
|
|
5
5
|
export declare const DROPDOWN = "absolute flex items-center gap-[0.25rem] py-[0.5rem]";
|
|
6
|
-
export declare const DIVIDER = "h-[1.5rem] border-l
|
|
6
|
+
export declare const DIVIDER = "h-[1.5rem] border-l border-l-outline/16";
|
|
7
7
|
export declare const SLIDE_ENTER_ACTIVE = "transition-opacity ease-in duration-300";
|
|
8
8
|
export declare const SLIDE_ENTER_FROM = "opacity-0";
|
|
9
9
|
export declare const SLIDE_ENTER_TO = "opacity-100";
|
|
@@ -4,11 +4,11 @@ type __VLS_Props = {
|
|
|
4
4
|
multiline?: boolean;
|
|
5
5
|
icon?: FontAwesomeIconProps['icon'];
|
|
6
6
|
};
|
|
7
|
-
declare var
|
|
7
|
+
declare var __VLS_6: {}, __VLS_8: {};
|
|
8
8
|
type __VLS_Slots = {} & {
|
|
9
|
-
text?: (props: typeof
|
|
9
|
+
text?: (props: typeof __VLS_6) => any;
|
|
10
10
|
} & {
|
|
11
|
-
trailing?: (props: typeof
|
|
11
|
+
trailing?: (props: typeof __VLS_8) => any;
|
|
12
12
|
};
|
|
13
13
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
14
14
|
icon: FontAwesomeIconProps["icon"];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const BASE = "py-[0.5rem] text-on-surface";
|
|
2
|
-
export declare const LIST_ITEM = "w-full px-[1rem] py-[0.5rem] gap-[1rem] flex border-b-[0.0625rem] border-b-outline/
|
|
2
|
+
export declare const LIST_ITEM = "w-full px-[1rem] py-[0.5rem] gap-[1rem] flex border-b-[0.0625rem] border-b-outline/16";
|
|
3
3
|
export declare const ALIGN_CENTER = "items-center";
|
|
4
4
|
export declare const ALIGN_TOP = "items-start";
|
|
5
5
|
export declare const LABELS_CONTAINER = "grow flex flex-col";
|
|
@@ -9,7 +9,7 @@ export declare function useExpandableMenu(expandedRoutes?: RouteRecordName[]): {
|
|
|
9
9
|
isNavbarExpandedByDefault: import("vue").ComputedRef<boolean>;
|
|
10
10
|
isMenuOpen: import("vue").ComputedRef<boolean>;
|
|
11
11
|
onToggle: () => void;
|
|
12
|
-
navbarClasses: import("vue").ComputedRef<"w-
|
|
12
|
+
navbarClasses: import("vue").ComputedRef<"w-(--navbar--full)" | "navbar--collapsed w-(--navbar--collapsed)">;
|
|
13
13
|
};
|
|
14
14
|
/**
|
|
15
15
|
* Keep track of menu categories and submenu visibility state, append corresponding classes.
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
export declare const BASE = "size-[1.25rem] relative hover:after:size-[2.5rem] hover:after:absolute hover:after:rounded-full hover:after:-top-1/2 hover:after:-left-1/2";
|
|
2
|
-
export declare const NONACTIVE_BASE_BG = "hover:after:bg-on-surface/
|
|
3
|
-
export declare const ACTIVE_BASE_BG = "hover:after:bg-primary/
|
|
2
|
+
export declare const NONACTIVE_BASE_BG = "hover:after:bg-on-surface/8";
|
|
3
|
+
export declare const ACTIVE_BASE_BG = "hover:after:bg-primary/8";
|
|
4
4
|
export declare const BASE_DISABLED = "hover:after:transparent";
|
|
5
|
-
export declare const INPUT_STYLE = "size-full z-
|
|
5
|
+
export declare const INPUT_STYLE = "size-full z-1 absolute top-0 left-0 rounded-full appearance-none";
|
|
6
6
|
export declare const INPUT_ACTIVE = "cursor-pointer";
|
|
7
7
|
export declare const INPUT_DISABLED = "cursor-default";
|
|
8
8
|
export declare const BOX_STYLE = "size-[1.25rem] rounded-full flex justify-center items-center border-2";
|
|
9
9
|
export declare const BOX_SELECTED = "border-primary";
|
|
10
10
|
export declare const BOX_ACTIVE = "border-on-surface-variant";
|
|
11
|
-
export declare const BOX_DISABLED = "border-on-surface/
|
|
11
|
+
export declare const BOX_DISABLED = "border-on-surface/38";
|
|
12
12
|
export declare const ICON_STYLE = "size-[0.5rem] rounded-full";
|
|
13
13
|
export declare const ICON_SELECTED = "bg-primary";
|
|
14
|
-
export declare const ICON_DISABLED = "bg-on-surface/
|
|
14
|
+
export declare const ICON_DISABLED = "bg-on-surface/38";
|
|
15
15
|
export declare const ALIGN = "flex items-center gap-[0.5rem]";
|
|
16
16
|
export declare const LABEL_LEFT = "order-first";
|
|
@@ -3,13 +3,13 @@ type __VLS_Props = {
|
|
|
3
3
|
text?: string;
|
|
4
4
|
hasAction?: boolean;
|
|
5
5
|
};
|
|
6
|
-
declare var
|
|
6
|
+
declare var __VLS_7: {}, __VLS_10: {}, __VLS_12: {};
|
|
7
7
|
type __VLS_Slots = {} & {
|
|
8
|
-
trigger?: (props: typeof
|
|
8
|
+
trigger?: (props: typeof __VLS_7) => any;
|
|
9
9
|
} & {
|
|
10
|
-
content?: (props: typeof
|
|
10
|
+
content?: (props: typeof __VLS_10) => any;
|
|
11
11
|
} & {
|
|
12
|
-
action?: (props: typeof
|
|
12
|
+
action?: (props: typeof __VLS_12) => any;
|
|
13
13
|
};
|
|
14
14
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
15
15
|
text: string;
|
|
@@ -4,8 +4,8 @@ export declare const SLIDER = "size-full rounded-[625rem] flex items-center px-[
|
|
|
4
4
|
export declare const SLIDER_UNCHECKED = "bg-surface-container-highest";
|
|
5
5
|
export declare const SLIDER_CHECKED = "bg-primary justify-end";
|
|
6
6
|
export declare const SLIDER_UNCHECKED_DISABLED = "!bg-opacity-[0.38]";
|
|
7
|
-
export declare const SLIDER_CHECKED_DISABLED = "
|
|
7
|
+
export declare const SLIDER_CHECKED_DISABLED = "bg-on-surface/12!";
|
|
8
8
|
export declare const HANDLE = "size-[1.5rem] rounded-full flex justify-center items-center";
|
|
9
9
|
export declare const HANDLE_UNCHECKED = "bg-outline text-on-primary";
|
|
10
10
|
export declare const HANDLE_CHECKED = "bg-on-primary text-on-primary-container";
|
|
11
|
-
export declare const HANDLE_UNCHECKED_DISABLED = "bg-on-surface/
|
|
11
|
+
export declare const HANDLE_UNCHECKED_DISABLED = "bg-on-surface/38 text-surface-container-highest/38";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare const BASE_TABPANEL = "grow shrink basis-0 cursor-pointer hover:bg-surface px-lg overflow-hidden text-nowrap";
|
|
2
|
-
export declare const HEADER_ACTION = "h-full w-full flex justify-center items-center focus-visible:outline-
|
|
3
|
-
export declare const HEADER_TITLE = "relative inline-flex items-center text-primary after:border-b-2 after:border-primary after:rounded-t-lg after:absolute after:bottom-0 after:left-0 after:w-full h-full
|
|
2
|
+
export declare const HEADER_ACTION = "h-full w-full flex justify-center items-center focus-visible:outline-hidden";
|
|
3
|
+
export declare const HEADER_TITLE = "relative inline-flex items-center text-primary after:border-b-2 after:border-primary after:rounded-t-lg after:absolute after:bottom-0 after:left-0 after:w-full h-full focus-visible:after:outline-hidden";
|
|
@@ -4,7 +4,7 @@ export declare const TAG_WITHOUT_ICON = "px-sm";
|
|
|
4
4
|
export declare const TAG_SMALL = "h-[24px] label-medium";
|
|
5
5
|
export declare const TAG_LARGE = "h-[28px] label-large";
|
|
6
6
|
export declare const TAG_PRIMARY = "bg-primary text-on-primary";
|
|
7
|
-
export declare const TAG_SECONDARY = "border-secondary border
|
|
7
|
+
export declare const TAG_SECONDARY = "border-secondary border text-secondary";
|
|
8
8
|
export declare const TAG_SUCCESS = "bg-success text-on-success";
|
|
9
9
|
export declare const TAG_INFO = "bg-secondary-container text-on-secondary-container";
|
|
10
10
|
export declare const TAG_WARNING = "bg-warning text-on-warning";
|
|
@@ -19,13 +19,13 @@ type __VLS_Props = {
|
|
|
19
19
|
type __VLS_PublicProps = __VLS_Props & {
|
|
20
20
|
modelValue?: string;
|
|
21
21
|
};
|
|
22
|
-
declare var
|
|
22
|
+
declare var __VLS_18: {
|
|
23
23
|
containerClass: string;
|
|
24
|
-
},
|
|
24
|
+
}, __VLS_21: {};
|
|
25
25
|
type __VLS_Slots = {} & {
|
|
26
|
-
leadingIcon?: (props: typeof
|
|
26
|
+
leadingIcon?: (props: typeof __VLS_18) => any;
|
|
27
27
|
} & {
|
|
28
|
-
supportText?: (props: typeof
|
|
28
|
+
supportText?: (props: typeof __VLS_21) => any;
|
|
29
29
|
};
|
|
30
30
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
31
31
|
"update:modelValue": (value: string) => any;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export declare const BASE = "relative rounded-[0.25rem] p-[0.25rem] w-fit h-[2.5rem] box-border bg-inherit flex items-center";
|
|
2
|
-
export declare const INPUT_STYLE = "bg-inherit text-[1rem] text-on-surface border-none peer focus:outline-
|
|
3
|
-
export declare const INPUT_DISABLED = "cursor-default bg-
|
|
2
|
+
export declare const INPUT_STYLE = "bg-inherit text-[1rem] text-on-surface border-none peer focus:outline-hidden leading-[1.5rem] mr-[0.75rem] placeholder:invisible";
|
|
3
|
+
export declare const INPUT_DISABLED = "cursor-default bg-transparent";
|
|
4
4
|
export declare const LABEL = "absolute peer-placeholder-shown:text-[1rem] text-[0.75rem] peer-placeholder-shown:leading-[0.5rem] leading-[1rem] peer-placeholder-shown:top-[1rem] -top-[0.625rem] peer-focus:-top-[0.625rem] peer-focus:leading-[1rem] text-on-surface-variant peer-placeholder-shown:px-0 peer-focus:px-[0.25rem] px-[0.25rem] bg-inherit peer-focus:text-[0.75rem] peer-placeholder-shown:left-[1rem] left-[0.75rem] peer-focus:left-[0.75rem] transition-all";
|
|
5
5
|
export declare const LABEL_SEARCH_ICON = "peer-placeholder-shown:left-[3rem]";
|
|
6
|
-
export declare const INVALID_TEXT = "
|
|
7
|
-
export declare const DISABLED_TEXT = "
|
|
6
|
+
export declare const INVALID_TEXT = "text-error!";
|
|
7
|
+
export declare const DISABLED_TEXT = "text-on-surface/38! cursor-default";
|
|
8
8
|
export declare const SUPPORTING_TEXT = "text-[0.75rem] text-on-surface-variant mt-[0.25rem] ml-[1rem]";
|
|
9
9
|
export declare const BUTTON_STYLE = "text-[1.32rem] px-[0.62rem]";
|
|
10
10
|
export declare const BASE_DEFAULT = "border border-on-surface-variant";
|
|
11
11
|
export declare const BASE_FOCUSED = "border-2 border-primary";
|
|
12
12
|
export declare const BASE_INVALID = "border-2 border-error";
|
|
13
|
-
export declare const BASE_DISABLED = "border border-on-surface/
|
|
13
|
+
export declare const BASE_DISABLED = "border border-on-surface/12";
|
|
@@ -18,13 +18,13 @@ type __VLS_Props = {
|
|
|
18
18
|
type __VLS_PublicProps = __VLS_Props & {
|
|
19
19
|
modelValue?: string;
|
|
20
20
|
};
|
|
21
|
-
declare var
|
|
21
|
+
declare var __VLS_12: {
|
|
22
22
|
containerClass: string;
|
|
23
|
-
},
|
|
23
|
+
}, __VLS_15: {};
|
|
24
24
|
type __VLS_Slots = {} & {
|
|
25
|
-
leadingIcon?: (props: typeof
|
|
25
|
+
leadingIcon?: (props: typeof __VLS_12) => any;
|
|
26
26
|
} & {
|
|
27
|
-
supportText?: (props: typeof
|
|
27
|
+
supportText?: (props: typeof __VLS_15) => any;
|
|
28
28
|
};
|
|
29
29
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
30
30
|
"update:modelValue": (value: string) => any;
|
|
@@ -6,11 +6,11 @@ export declare const TOGGLE_BUTTON_SEVERITY: {
|
|
|
6
6
|
};
|
|
7
7
|
export type ToggleButtonSeverities = (typeof TOGGLE_BUTTON_SEVERITY)[keyof typeof TOGGLE_BUTTON_SEVERITY];
|
|
8
8
|
export declare const DISABLED_CLASS_MAP: {
|
|
9
|
-
readonly standard: "text-on-surface/
|
|
10
|
-
readonly filled: "bg-on-surface/
|
|
11
|
-
readonly tonal: "bg-on-surface/
|
|
12
|
-
readonly outlined: "border border-opacity[0.08] text-on-surface/
|
|
9
|
+
readonly standard: "text-on-surface/38";
|
|
10
|
+
readonly filled: "bg-on-surface/12 text-on-surface/38";
|
|
11
|
+
readonly tonal: "bg-on-surface/12 text-on-surface/38";
|
|
12
|
+
readonly outlined: "border border-opacity[0.08] text-on-surface/38";
|
|
13
13
|
};
|
|
14
14
|
export declare const SEVERITY_CLASSES_MAP: {
|
|
15
|
-
readonly [x: string]: "bg-secondary-container text-on-secondary-container hover:after:bg-on-secondary-container/
|
|
15
|
+
readonly [x: string]: "bg-secondary-container text-on-secondary-container hover:after:bg-on-secondary-container/8" | "text-on-surface-variant hover:after:bg-on-surface-variant/8" | "bg-surface-container-highest text-primary hover:after:bg-primary/8" | "bg-surface-container-highest text-on-surface-variant hover:after:bg-on-surface-variant/8" | "border border-outline text-on-surface-variant hover:after:bg-on-surface-variant/8" | "text-primary hover:after:bg-primary/8" | "bg-primary text-on-primary hover:after:bg-primary/8" | "bg-inverse-surface text-inverse-on-surface hover:after:bg-inverse-on-surface/8";
|
|
16
16
|
};
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
export declare const BASE = "h-[2.5rem] w-[2.5rem] text-[1.25rem] rounded-full relative flex justify-center items-center hover:after:rounded-full hover:after:size-full hover:after:absolute hover:after:left-0";
|
|
2
2
|
export declare const NO_LABEL = "hidden";
|
|
3
|
-
export declare const INPUT_STYLE = "rounded-full absolute lg:top-0 lg:left-0 max-md:top-[-0.25rem] max-md:left-[-0.25rem] h-[calc(100%+0.5rem)] w-[calc(100%+0.5rem)] lg:h-full lg:w-full appearance-none z-
|
|
3
|
+
export declare const INPUT_STYLE = "rounded-full absolute lg:top-0 lg:left-0 max-md:top-[-0.25rem] max-md:left-[-0.25rem] h-[calc(100%+0.5rem)] w-[calc(100%+0.5rem)] lg:h-full lg:w-full appearance-none z-10";
|
|
4
4
|
export declare const BOX_STYLE = "flex justify-center items-center w-[2.5rem] h-[2.5rem]";
|
|
5
5
|
export declare const POINTER = "cursor-pointer";
|
|
6
6
|
export declare const DEFAULT_DISABLED = "cursor-default";
|
|
7
|
-
export declare const STANDARD = "text-on-surface-variant hover:after:bg-on-surface-variant/
|
|
8
|
-
export declare const FILLED = "bg-surface-container-highest text-primary hover:after:bg-primary/
|
|
9
|
-
export declare const TONAL = "bg-surface-container-highest text-on-surface-variant hover:after:bg-on-surface-variant/
|
|
10
|
-
export declare const OUTLINED = "border border-outline text-on-surface-variant hover:after:bg-on-surface-variant/
|
|
11
|
-
export declare const STANDARD_DISABLED = "text-on-surface/
|
|
12
|
-
export declare const FILLED_DISABLED = "bg-on-surface/
|
|
13
|
-
export declare const TONAL_DISABLED = "bg-on-surface/
|
|
14
|
-
export declare const OUTLINED_DISABLED = "border border-opacity[0.08] text-on-surface/
|
|
15
|
-
export declare const STANDARD_ACTIVE = "text-primary hover:after:bg-primary/
|
|
16
|
-
export declare const FILLED_ACTIVE = "bg-primary text-on-primary hover:after:bg-primary/
|
|
17
|
-
export declare const TONAL_ACTIVE = "bg-secondary-container text-on-secondary-container hover:after:bg-on-secondary-container/
|
|
18
|
-
export declare const OUTLINED_ACTIVE = "bg-inverse-surface text-inverse-on-surface hover:after:bg-inverse-on-surface/
|
|
19
|
-
export declare const STANDARD_ACTIVE_DISABLED = "text-on-surface/
|
|
20
|
-
export declare const ACTIVE_DISABLED = "bg-on-surface/
|
|
7
|
+
export declare const STANDARD = "text-on-surface-variant hover:after:bg-on-surface-variant/8";
|
|
8
|
+
export declare const FILLED = "bg-surface-container-highest text-primary hover:after:bg-primary/8";
|
|
9
|
+
export declare const TONAL = "bg-surface-container-highest text-on-surface-variant hover:after:bg-on-surface-variant/8";
|
|
10
|
+
export declare const OUTLINED = "border border-outline text-on-surface-variant hover:after:bg-on-surface-variant/8";
|
|
11
|
+
export declare const STANDARD_DISABLED = "text-on-surface/38";
|
|
12
|
+
export declare const FILLED_DISABLED = "bg-on-surface/12 text-on-surface/38";
|
|
13
|
+
export declare const TONAL_DISABLED = "bg-on-surface/12 text-on-surface/38";
|
|
14
|
+
export declare const OUTLINED_DISABLED = "border border-opacity[0.08] text-on-surface/38";
|
|
15
|
+
export declare const STANDARD_ACTIVE = "text-primary hover:after:bg-primary/8";
|
|
16
|
+
export declare const FILLED_ACTIVE = "bg-primary text-on-primary hover:after:bg-primary/8";
|
|
17
|
+
export declare const TONAL_ACTIVE = "bg-secondary-container text-on-secondary-container hover:after:bg-on-secondary-container/8";
|
|
18
|
+
export declare const OUTLINED_ACTIVE = "bg-inverse-surface text-inverse-on-surface hover:after:bg-inverse-on-surface/8";
|
|
19
|
+
export declare const STANDARD_ACTIVE_DISABLED = "text-on-surface/38";
|
|
20
|
+
export declare const ACTIVE_DISABLED = "bg-on-surface/12 text-on-surface/38";
|