@foi/design-system 0.0.0 → 0.0.2
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/components/atoms/Button/Button.d.ts +10 -0
- package/dist/components/atoms/Button/Button.emotion.d.ts +2 -0
- package/dist/components/atoms/Button/Button.interface.d.ts +29 -0
- package/dist/components/atoms/Button/index.d.ts +3 -0
- package/dist/components/atoms/Checkbox/Checkbox.d.ts +7 -0
- package/dist/components/atoms/Checkbox/Checkbox.emotion.d.ts +2 -0
- package/dist/components/atoms/Checkbox/Checkbox.interface.d.ts +64 -0
- package/dist/components/atoms/Checkbox/index.d.ts +4 -0
- package/dist/components/atoms/DatePicker/DatePicker.d.ts +17 -0
- package/dist/components/atoms/DatePicker/DatePicker.emotion.d.ts +2 -0
- package/dist/components/atoms/DatePicker/DatePicker.interface.d.ts +105 -0
- package/dist/components/atoms/DatePicker/DatePicker.utils.d.ts +50 -0
- package/dist/components/atoms/DatePicker/DatePickerMenu/DatePickerMenu.d.ts +14 -0
- package/dist/components/atoms/DatePicker/DatePickerMenu/DatePickerMenu.emotion.d.ts +2 -0
- package/dist/components/atoms/DatePicker/DatePickerMenu/DatePickerMenu.interface.d.ts +46 -0
- package/dist/components/atoms/DatePicker/DatePickerMenu/index.d.ts +4 -0
- package/dist/components/atoms/DatePicker/index.d.ts +4 -0
- package/dist/components/atoms/IconButton/IconButton.d.ts +9 -0
- package/dist/components/atoms/IconButton/IconButton.emotion.d.ts +2 -0
- package/dist/components/atoms/IconButton/IconButton.interface.d.ts +21 -0
- package/dist/components/atoms/IconButton/index.d.ts +3 -0
- package/dist/components/atoms/Input/Input.d.ts +11 -0
- package/dist/components/atoms/Input/Input.emotion.d.ts +2 -0
- package/dist/components/atoms/Input/Input.interface.d.ts +55 -0
- package/dist/components/atoms/Input/index.d.ts +4 -0
- package/dist/components/atoms/Radio/Radio.d.ts +12 -0
- package/dist/components/atoms/Radio/Radio.emotion.d.ts +2 -0
- package/dist/components/atoms/Radio/Radio.interface.d.ts +51 -0
- package/dist/components/atoms/Radio/RadioGroup.context.d.ts +15 -0
- package/dist/components/atoms/Radio/index.d.ts +3 -0
- package/dist/components/atoms/Select/Select.d.ts +11 -0
- package/dist/components/atoms/Select/Select.emotion.d.ts +2 -0
- package/dist/components/atoms/Select/Select.interface.d.ts +55 -0
- package/dist/components/atoms/Select/SelectMenu/SelectMenu.d.ts +9 -0
- package/dist/components/atoms/Select/SelectMenu/SelectMenu.emotion.d.ts +2 -0
- package/dist/components/atoms/Select/SelectMenu/SelectMenu.interface.d.ts +33 -0
- package/dist/components/atoms/Select/SelectMenu/index.d.ts +4 -0
- package/dist/components/atoms/Select/index.d.ts +4 -0
- package/dist/components/atoms/Slider/Slider.d.ts +13 -0
- package/dist/components/atoms/Slider/Slider.emotion.d.ts +2 -0
- package/dist/components/atoms/Slider/Slider.interface.d.ts +59 -0
- package/dist/components/atoms/Slider/index.d.ts +4 -0
- package/dist/components/atoms/Switch/Switch.d.ts +11 -0
- package/dist/components/atoms/Switch/Switch.emotion.d.ts +2 -0
- package/dist/components/atoms/Switch/Switch.interface.d.ts +27 -0
- package/dist/components/atoms/Switch/index.d.ts +4 -0
- package/dist/components/molecules/CheckboxGroup/CheckboxGroup.context.d.ts +13 -0
- package/dist/components/molecules/CheckboxGroup/CheckboxGroup.d.ts +23 -0
- package/dist/components/molecules/CheckboxGroup/CheckboxGroup.emotion.d.ts +2 -0
- package/dist/components/molecules/CheckboxGroup/CheckboxGroup.interface.d.ts +38 -0
- package/dist/components/molecules/CheckboxGroup/index.d.ts +4 -0
- package/dist/components/molecules/CheckboxTree/CheckboxTree.context.d.ts +13 -0
- package/dist/components/molecules/CheckboxTree/CheckboxTree.d.ts +23 -0
- package/dist/components/molecules/CheckboxTree/CheckboxTree.emotion.d.ts +2 -0
- package/dist/components/molecules/CheckboxTree/CheckboxTree.interface.d.ts +42 -0
- package/dist/components/molecules/CheckboxTree/index.d.ts +4 -0
- package/dist/components/molecules/RadioGroup/RadioGroup.d.ts +19 -0
- package/dist/components/molecules/RadioGroup/RadioGroup.emotion.d.ts +2 -0
- package/dist/components/molecules/RadioGroup/RadioGroup.interface.d.ts +38 -0
- package/dist/components/molecules/RadioGroup/index.d.ts +4 -0
- package/dist/hocs/MarginPage/index.d.ts +6 -0
- package/dist/hocs/OutsideEvent/index.d.ts +7 -0
- package/dist/hocs/ScrollToTop/index.d.ts +2 -0
- package/dist/hocs/ThemeProvider/ThemeProvider.d.ts +4 -0
- package/dist/hocs/ThemeProvider/ThemeProvider.interface.d.ts +29 -0
- package/dist/hocs/ThemeProvider/components/Button.d.ts +36 -0
- package/dist/hocs/ThemeProvider/components/Checkbox.d.ts +60 -0
- package/dist/hocs/ThemeProvider/components/CheckboxGroup.d.ts +20 -0
- package/dist/hocs/ThemeProvider/components/CheckboxTree.d.ts +20 -0
- package/dist/hocs/ThemeProvider/components/DatePicker.d.ts +60 -0
- package/dist/hocs/ThemeProvider/components/DatePickerMenu.d.ts +36 -0
- package/dist/hocs/ThemeProvider/components/IconButton.d.ts +36 -0
- package/dist/hocs/ThemeProvider/components/Input.d.ts +60 -0
- package/dist/hocs/ThemeProvider/components/Radio.d.ts +60 -0
- package/dist/hocs/ThemeProvider/components/RadioGroup.d.ts +20 -0
- package/dist/hocs/ThemeProvider/components/Select.d.ts +60 -0
- package/dist/hocs/ThemeProvider/components/SelectMenu.d.ts +32 -0
- package/dist/hocs/ThemeProvider/components/Slider.d.ts +36 -0
- package/dist/hocs/ThemeProvider/components/Switch.d.ts +40 -0
- package/dist/hocs/ThemeProvider/components/index.d.ts +13 -0
- package/dist/hocs/ThemeProvider/createComponentStyles.d.ts +2 -0
- package/dist/hocs/ThemeProvider/fonts/index.d.ts +6 -0
- package/dist/hocs/ThemeProvider/index.d.ts +1 -0
- package/dist/hocs/ThemeProvider/interfaces/Components.interface.d.ts +16 -0
- package/dist/hocs/ThemeProvider/interfaces/Events.interface.d.ts +16 -0
- package/dist/hocs/ThemeProvider/interfaces/Styles.interface.d.ts +54 -0
- package/dist/hocs/ThemeProvider/interfaces/Typography.interface.d.ts +10 -0
- package/dist/hocs/ThemeProvider/interfaces/index.d.ts +4 -0
- package/dist/hocs/ThemeProvider/useThemeProvider.hook.d.ts +10 -0
- package/dist/hocs/ThemeProvider/useThemeProvider.store.d.ts +2 -0
- package/dist/hooks/useOnClickOutside.d.ts +10 -0
- package/dist/hooks/useStateCallback.d.ts +1 -0
- package/dist/index.d.ts +27 -0
- package/dist/index.mjs +2728 -3254
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/Option.d.ts +10 -0
- package/dist/interfaces/index.d.ts +1 -0
- package/dist/theme/dark/colors.d.ts +31 -0
- package/dist/theme/dark/components/Button.d.ts +35 -0
- package/dist/theme/dark/components/Checkbox.d.ts +64 -0
- package/dist/theme/dark/components/CheckboxGroup.d.ts +18 -0
- package/dist/theme/dark/components/CheckboxTree.d.ts +17 -0
- package/dist/theme/dark/components/DatePicker.d.ts +58 -0
- package/dist/theme/dark/components/DatePickerMenu.d.ts +31 -0
- package/dist/theme/dark/components/IconButton.d.ts +30 -0
- package/dist/theme/dark/components/Input.d.ts +58 -0
- package/dist/theme/dark/components/Radio.d.ts +61 -0
- package/dist/theme/dark/components/RadioGroup.d.ts +18 -0
- package/dist/theme/dark/components/Select.d.ts +58 -0
- package/dist/theme/dark/components/SelectMenu.d.ts +30 -0
- package/dist/theme/dark/components/Slider.d.ts +46 -0
- package/dist/theme/dark/components/Switch.d.ts +55 -0
- package/dist/theme/dark/components/index.d.ts +540 -0
- package/dist/theme/dark/fonts.d.ts +6 -0
- package/dist/theme/dark/index.d.ts +547 -0
- package/dist/theme/index.d.ts +549 -0
- package/dist/utilities/emotion/styles.d.ts +2 -0
- package/package.json +81 -81
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface OptionProp {
|
|
2
|
+
/** Use label to display a text for a Select row */
|
|
3
|
+
label: string;
|
|
4
|
+
/** Use value to give an internal ID to the label prop */
|
|
5
|
+
value: string;
|
|
6
|
+
}
|
|
7
|
+
export interface MenuOption extends OptionProp {
|
|
8
|
+
/** Use description to explain the label prop */
|
|
9
|
+
description?: string;
|
|
10
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Option';
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export declare const blueChill = "#188aa2";
|
|
2
|
+
export declare const blueDeepAqua = "#0c748a";
|
|
3
|
+
export declare const blueEigengrau = "#0e1621";
|
|
4
|
+
export declare const graySeashell = "#f1f1f1";
|
|
5
|
+
export declare const grayAsh = "#b2bac2";
|
|
6
|
+
export declare const grayGrass = "#989a9b";
|
|
7
|
+
export declare const grayGunmetal = "#495057";
|
|
8
|
+
export declare const darkRed = "#f44336";
|
|
9
|
+
declare const _default: {
|
|
10
|
+
white400: string;
|
|
11
|
+
white500: string;
|
|
12
|
+
white600: string;
|
|
13
|
+
red100: string;
|
|
14
|
+
red200: string;
|
|
15
|
+
red300: string;
|
|
16
|
+
red400: string;
|
|
17
|
+
red500: string;
|
|
18
|
+
gray100: string;
|
|
19
|
+
gray200: string;
|
|
20
|
+
gray300: string;
|
|
21
|
+
gray400: string;
|
|
22
|
+
gray500: string;
|
|
23
|
+
blue100: string;
|
|
24
|
+
blue200: string;
|
|
25
|
+
blue300: string;
|
|
26
|
+
blue400: string;
|
|
27
|
+
blue500: string;
|
|
28
|
+
darkBlue300: string;
|
|
29
|
+
darkBlue400: string;
|
|
30
|
+
};
|
|
31
|
+
export default _default;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
declare const component: {
|
|
2
|
+
readonly BUTTON: {
|
|
3
|
+
readonly ROOT: {
|
|
4
|
+
readonly 'border-radius': "4px";
|
|
5
|
+
};
|
|
6
|
+
readonly EVENTS: {
|
|
7
|
+
readonly ENABLED: {
|
|
8
|
+
readonly 'background-color': string;
|
|
9
|
+
readonly 'color-primary': string;
|
|
10
|
+
readonly 'border-style': "none";
|
|
11
|
+
};
|
|
12
|
+
readonly HOVER: {
|
|
13
|
+
readonly 'background-color': string;
|
|
14
|
+
};
|
|
15
|
+
readonly ACTIVE: {
|
|
16
|
+
readonly 'background-color': string;
|
|
17
|
+
};
|
|
18
|
+
readonly FOCUS: {
|
|
19
|
+
readonly 'outline-color': string;
|
|
20
|
+
readonly 'outline-width': "1px";
|
|
21
|
+
readonly 'outline-style': "solid";
|
|
22
|
+
readonly 'outline-offset': "2px";
|
|
23
|
+
};
|
|
24
|
+
readonly DISABLED: {
|
|
25
|
+
readonly 'background-color': string;
|
|
26
|
+
readonly 'color-primary': string;
|
|
27
|
+
};
|
|
28
|
+
readonly LOADING: {
|
|
29
|
+
readonly 'background-color': string;
|
|
30
|
+
readonly 'color-primary': string;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
export default component;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
declare const component: {
|
|
2
|
+
readonly CHECKBOX: {
|
|
3
|
+
readonly ROOT: {
|
|
4
|
+
readonly 'border-radius': "4px";
|
|
5
|
+
};
|
|
6
|
+
readonly EVENTS: {
|
|
7
|
+
readonly ENABLED: {
|
|
8
|
+
readonly 'color-primary': string;
|
|
9
|
+
readonly 'color-secondary': string;
|
|
10
|
+
readonly 'icon-color': string;
|
|
11
|
+
readonly 'background-color': "transparent";
|
|
12
|
+
readonly 'border-color': string;
|
|
13
|
+
readonly 'border-width': "2px";
|
|
14
|
+
readonly 'border-style': "solid";
|
|
15
|
+
};
|
|
16
|
+
readonly VALUE: {
|
|
17
|
+
readonly 'icon-color': string;
|
|
18
|
+
readonly 'background-color': string;
|
|
19
|
+
readonly 'border-color': string;
|
|
20
|
+
};
|
|
21
|
+
readonly HOVER: {
|
|
22
|
+
readonly 'shadow-color': string;
|
|
23
|
+
};
|
|
24
|
+
readonly ACTIVE: {
|
|
25
|
+
readonly 'shadow-color': string;
|
|
26
|
+
};
|
|
27
|
+
readonly FOCUS: {
|
|
28
|
+
readonly 'outline-color': string;
|
|
29
|
+
readonly 'outline-width': "1px";
|
|
30
|
+
readonly 'outline-style': "solid";
|
|
31
|
+
readonly 'outline-offset': "2px";
|
|
32
|
+
};
|
|
33
|
+
readonly ERROR: {
|
|
34
|
+
readonly 'background-color': "transparent";
|
|
35
|
+
readonly 'color-secondary': string;
|
|
36
|
+
readonly 'border-color': string;
|
|
37
|
+
};
|
|
38
|
+
readonly ERROR_VALUE: {
|
|
39
|
+
readonly 'icon-color': string;
|
|
40
|
+
readonly 'background-color': string;
|
|
41
|
+
readonly 'border-color': string;
|
|
42
|
+
};
|
|
43
|
+
readonly ERROR_HOVER: {
|
|
44
|
+
readonly 'shadow-color': string;
|
|
45
|
+
};
|
|
46
|
+
readonly ERROR_ACTIVE: {
|
|
47
|
+
readonly 'shadow-color': string;
|
|
48
|
+
};
|
|
49
|
+
readonly ERROR_FOCUS: {
|
|
50
|
+
readonly 'outline-color': string;
|
|
51
|
+
};
|
|
52
|
+
readonly DISABLED: {
|
|
53
|
+
readonly 'background-color': "transparent";
|
|
54
|
+
readonly 'color-secondary': string;
|
|
55
|
+
readonly 'border-color': string;
|
|
56
|
+
};
|
|
57
|
+
readonly DISABLED_VALUE: {
|
|
58
|
+
readonly 'icon-color': string;
|
|
59
|
+
readonly 'background-color': string;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
export default component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare const component: {
|
|
2
|
+
readonly CHECKBOXGROUP: {
|
|
3
|
+
readonly EVENTS: {
|
|
4
|
+
readonly ENABLED: {
|
|
5
|
+
readonly 'color-primary': string;
|
|
6
|
+
readonly 'color-secondary': string;
|
|
7
|
+
};
|
|
8
|
+
readonly ERROR: {
|
|
9
|
+
readonly 'color-primary': string;
|
|
10
|
+
readonly 'color-secondary': string;
|
|
11
|
+
};
|
|
12
|
+
readonly DISABLED: {
|
|
13
|
+
readonly 'color-secondary': string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export default component;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
declare const component: {
|
|
2
|
+
readonly CHECKBOXTREE: {
|
|
3
|
+
readonly EVENTS: {
|
|
4
|
+
readonly ENABLED: {
|
|
5
|
+
readonly 'color-primary': string;
|
|
6
|
+
readonly 'color-secondary': string;
|
|
7
|
+
};
|
|
8
|
+
readonly ERROR: {
|
|
9
|
+
readonly 'color-secondary': string;
|
|
10
|
+
};
|
|
11
|
+
readonly DISABLED: {
|
|
12
|
+
readonly 'color-secondary': string;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
export default component;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
declare const component: {
|
|
2
|
+
readonly DATEPICKER: {
|
|
3
|
+
readonly ROOT: {
|
|
4
|
+
readonly 'border-radius': "4px";
|
|
5
|
+
};
|
|
6
|
+
readonly EVENTS: {
|
|
7
|
+
readonly ENABLED: {
|
|
8
|
+
readonly 'background-color': "transparent";
|
|
9
|
+
readonly 'color-primary': string;
|
|
10
|
+
readonly 'color-secondary': string;
|
|
11
|
+
readonly 'color-tertiary': string;
|
|
12
|
+
readonly 'border-color': string;
|
|
13
|
+
readonly 'border-width': "2px";
|
|
14
|
+
readonly 'border-style': "solid";
|
|
15
|
+
};
|
|
16
|
+
readonly VALUE: {
|
|
17
|
+
readonly 'border-color': string;
|
|
18
|
+
};
|
|
19
|
+
readonly HOVER: {
|
|
20
|
+
readonly 'border-color': string;
|
|
21
|
+
};
|
|
22
|
+
readonly ACTIVE: {
|
|
23
|
+
readonly 'border-color': string;
|
|
24
|
+
};
|
|
25
|
+
readonly FOCUS: {
|
|
26
|
+
readonly 'border-color': string;
|
|
27
|
+
};
|
|
28
|
+
readonly ERROR: {
|
|
29
|
+
readonly 'background-color': "transparent";
|
|
30
|
+
readonly 'color-primary': string;
|
|
31
|
+
readonly 'color-secondary': string;
|
|
32
|
+
readonly 'color-tertiary': string;
|
|
33
|
+
readonly 'border-color': string;
|
|
34
|
+
};
|
|
35
|
+
readonly ERROR_VALUE: {
|
|
36
|
+
readonly 'border-color': string;
|
|
37
|
+
};
|
|
38
|
+
readonly ERROR_HOVER: {
|
|
39
|
+
readonly 'border-color': string;
|
|
40
|
+
};
|
|
41
|
+
readonly ERROR_ACTIVE: {
|
|
42
|
+
readonly 'border-color': string;
|
|
43
|
+
};
|
|
44
|
+
readonly ERROR_FOCUS: {
|
|
45
|
+
readonly 'border-color': string;
|
|
46
|
+
};
|
|
47
|
+
readonly DISABLED: {
|
|
48
|
+
readonly 'background-color': "transparent";
|
|
49
|
+
readonly 'color-primary': string;
|
|
50
|
+
readonly 'color-secondary': string;
|
|
51
|
+
readonly 'color-tertiary': string;
|
|
52
|
+
readonly 'border-color': string;
|
|
53
|
+
};
|
|
54
|
+
readonly DISABLED_VALUE: {};
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
export default component;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
declare const component: {
|
|
2
|
+
readonly DATEPICKERMENU: {
|
|
3
|
+
readonly ROOT: {
|
|
4
|
+
readonly 'background-color': string;
|
|
5
|
+
readonly 'border-radius': "4px";
|
|
6
|
+
};
|
|
7
|
+
readonly EVENTS: {
|
|
8
|
+
readonly ENABLED: {
|
|
9
|
+
readonly 'color-primary': string;
|
|
10
|
+
readonly 'color-secondary': string;
|
|
11
|
+
readonly 'background-color': string;
|
|
12
|
+
};
|
|
13
|
+
readonly VALUE: {
|
|
14
|
+
readonly 'background-color': string;
|
|
15
|
+
};
|
|
16
|
+
readonly HOVER: {
|
|
17
|
+
readonly 'background-color': string;
|
|
18
|
+
};
|
|
19
|
+
readonly ACTIVE: {
|
|
20
|
+
readonly 'background-color': string;
|
|
21
|
+
};
|
|
22
|
+
readonly FOCUS: {
|
|
23
|
+
readonly 'outline-color': string;
|
|
24
|
+
readonly 'outline-width': "1px";
|
|
25
|
+
readonly 'outline-style': "solid";
|
|
26
|
+
readonly 'outline-offset': "2px";
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
export default component;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const component: {
|
|
2
|
+
readonly ICONBUTTON: {
|
|
3
|
+
readonly ROOT: {
|
|
4
|
+
readonly 'border-radius': "4px";
|
|
5
|
+
};
|
|
6
|
+
readonly EVENTS: {
|
|
7
|
+
readonly ENABLED: {
|
|
8
|
+
readonly 'icon-color': string;
|
|
9
|
+
readonly 'background-color': "transparent";
|
|
10
|
+
readonly 'border-style': "none";
|
|
11
|
+
};
|
|
12
|
+
readonly HOVER: {
|
|
13
|
+
readonly 'shadow-color': string;
|
|
14
|
+
};
|
|
15
|
+
readonly ACTIVE: {
|
|
16
|
+
readonly 'shadow-color': string;
|
|
17
|
+
};
|
|
18
|
+
readonly FOCUS: {
|
|
19
|
+
readonly 'outline-color': string;
|
|
20
|
+
readonly 'outline-width': "1px";
|
|
21
|
+
readonly 'outline-style': "solid";
|
|
22
|
+
readonly 'outline-offset': "2px";
|
|
23
|
+
};
|
|
24
|
+
readonly DISABLED: {
|
|
25
|
+
readonly 'icon-color': string;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
export default component;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
declare const component: {
|
|
2
|
+
readonly INPUT: {
|
|
3
|
+
readonly ROOT: {
|
|
4
|
+
readonly 'border-radius': "4px";
|
|
5
|
+
};
|
|
6
|
+
readonly EVENTS: {
|
|
7
|
+
readonly ENABLED: {
|
|
8
|
+
readonly 'background-color': "transparent";
|
|
9
|
+
readonly 'color-primary': string;
|
|
10
|
+
readonly 'color-secondary': string;
|
|
11
|
+
readonly 'color-tertiary': string;
|
|
12
|
+
readonly 'border-color': string;
|
|
13
|
+
readonly 'border-width': "2px";
|
|
14
|
+
readonly 'border-style': "solid";
|
|
15
|
+
};
|
|
16
|
+
readonly VALUE: {
|
|
17
|
+
readonly 'border-color': string;
|
|
18
|
+
};
|
|
19
|
+
readonly HOVER: {
|
|
20
|
+
readonly 'border-color': string;
|
|
21
|
+
};
|
|
22
|
+
readonly ACTIVE: {
|
|
23
|
+
readonly 'border-color': string;
|
|
24
|
+
};
|
|
25
|
+
readonly FOCUS: {
|
|
26
|
+
readonly 'border-color': string;
|
|
27
|
+
};
|
|
28
|
+
readonly ERROR: {
|
|
29
|
+
readonly 'background-color': "transparent";
|
|
30
|
+
readonly 'color-primary': string;
|
|
31
|
+
readonly 'color-secondary': string;
|
|
32
|
+
readonly 'color-tertiary': string;
|
|
33
|
+
readonly 'border-color': string;
|
|
34
|
+
};
|
|
35
|
+
readonly ERROR_VALUE: {
|
|
36
|
+
readonly 'border-color': string;
|
|
37
|
+
};
|
|
38
|
+
readonly ERROR_HOVER: {
|
|
39
|
+
readonly 'border-color': string;
|
|
40
|
+
};
|
|
41
|
+
readonly ERROR_ACTIVE: {
|
|
42
|
+
readonly 'border-color': string;
|
|
43
|
+
};
|
|
44
|
+
readonly ERROR_FOCUS: {
|
|
45
|
+
readonly 'border-color': string;
|
|
46
|
+
};
|
|
47
|
+
readonly DISABLED: {
|
|
48
|
+
readonly 'background-color': "transparent";
|
|
49
|
+
readonly 'color-primary': string;
|
|
50
|
+
readonly 'color-secondary': string;
|
|
51
|
+
readonly 'color-tertiary': string;
|
|
52
|
+
readonly 'border-color': string;
|
|
53
|
+
};
|
|
54
|
+
readonly DISABLED_VALUE: {};
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
export default component;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
declare const component: {
|
|
2
|
+
readonly RADIO: {
|
|
3
|
+
readonly ROOT: {
|
|
4
|
+
readonly 'border-radius': "4px";
|
|
5
|
+
};
|
|
6
|
+
readonly EVENTS: {
|
|
7
|
+
readonly ENABLED: {
|
|
8
|
+
readonly 'color-primary': string;
|
|
9
|
+
readonly 'color-secondary': string;
|
|
10
|
+
readonly 'icon-color': string;
|
|
11
|
+
readonly 'background-color': "transparent";
|
|
12
|
+
readonly 'border-color': string;
|
|
13
|
+
readonly 'border-width': "2px";
|
|
14
|
+
readonly 'border-style': "solid";
|
|
15
|
+
};
|
|
16
|
+
readonly VALUE: {
|
|
17
|
+
readonly 'icon-color': string;
|
|
18
|
+
readonly 'border-color': string;
|
|
19
|
+
};
|
|
20
|
+
readonly HOVER: {
|
|
21
|
+
readonly 'shadow-color': string;
|
|
22
|
+
};
|
|
23
|
+
readonly ACTIVE: {
|
|
24
|
+
readonly 'shadow-color': string;
|
|
25
|
+
};
|
|
26
|
+
readonly FOCUS: {
|
|
27
|
+
readonly 'outline-color': string;
|
|
28
|
+
readonly 'outline-width': "1px";
|
|
29
|
+
readonly 'outline-style': "solid";
|
|
30
|
+
readonly 'outline-offset': "2px";
|
|
31
|
+
};
|
|
32
|
+
readonly ERROR: {
|
|
33
|
+
readonly 'background-color': "transparent";
|
|
34
|
+
readonly 'color-secondary': string;
|
|
35
|
+
readonly 'border-color': string;
|
|
36
|
+
};
|
|
37
|
+
readonly ERROR_VALUE: {
|
|
38
|
+
readonly 'icon-color': string;
|
|
39
|
+
readonly 'background-color': string;
|
|
40
|
+
};
|
|
41
|
+
readonly ERROR_HOVER: {
|
|
42
|
+
readonly 'shadow-color': string;
|
|
43
|
+
};
|
|
44
|
+
readonly ERROR_ACTIVE: {
|
|
45
|
+
readonly 'shadow-color': string;
|
|
46
|
+
};
|
|
47
|
+
readonly ERROR_FOCUS: {
|
|
48
|
+
readonly 'outline-color': string;
|
|
49
|
+
};
|
|
50
|
+
readonly DISABLED: {
|
|
51
|
+
readonly 'background-color': "transparent";
|
|
52
|
+
readonly 'color-secondary': string;
|
|
53
|
+
readonly 'border-color': string;
|
|
54
|
+
};
|
|
55
|
+
readonly DISABLED_VALUE: {
|
|
56
|
+
readonly 'icon-color': string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
export default component;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare const component: {
|
|
2
|
+
readonly RADIOGROUP: {
|
|
3
|
+
readonly EVENTS: {
|
|
4
|
+
readonly ENABLED: {
|
|
5
|
+
readonly 'color-primary': string;
|
|
6
|
+
readonly 'color-secondary': string;
|
|
7
|
+
};
|
|
8
|
+
readonly ERROR: {
|
|
9
|
+
readonly 'color-primary': string;
|
|
10
|
+
readonly 'color-secondary': string;
|
|
11
|
+
};
|
|
12
|
+
readonly DISABLED: {
|
|
13
|
+
readonly 'color-secondary': string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export default component;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
declare const component: {
|
|
2
|
+
readonly SELECT: {
|
|
3
|
+
readonly ROOT: {
|
|
4
|
+
readonly 'border-radius': "4px";
|
|
5
|
+
};
|
|
6
|
+
readonly EVENTS: {
|
|
7
|
+
readonly ENABLED: {
|
|
8
|
+
readonly 'background-color': "transparent";
|
|
9
|
+
readonly 'color-primary': string;
|
|
10
|
+
readonly 'color-secondary': string;
|
|
11
|
+
readonly 'color-tertiary': string;
|
|
12
|
+
readonly 'border-color': string;
|
|
13
|
+
readonly 'border-width': "2px";
|
|
14
|
+
readonly 'border-style': "solid";
|
|
15
|
+
};
|
|
16
|
+
readonly VALUE: {
|
|
17
|
+
readonly 'border-color': string;
|
|
18
|
+
};
|
|
19
|
+
readonly HOVER: {
|
|
20
|
+
readonly 'border-color': string;
|
|
21
|
+
};
|
|
22
|
+
readonly ACTIVE: {
|
|
23
|
+
readonly 'border-color': string;
|
|
24
|
+
};
|
|
25
|
+
readonly FOCUS: {
|
|
26
|
+
readonly 'border-color': string;
|
|
27
|
+
};
|
|
28
|
+
readonly ERROR: {
|
|
29
|
+
readonly 'background-color': "transparent";
|
|
30
|
+
readonly 'color-primary': string;
|
|
31
|
+
readonly 'color-secondary': string;
|
|
32
|
+
readonly 'color-tertiary': string;
|
|
33
|
+
readonly 'border-color': string;
|
|
34
|
+
};
|
|
35
|
+
readonly ERROR_VALUE: {
|
|
36
|
+
readonly 'border-color': string;
|
|
37
|
+
};
|
|
38
|
+
readonly ERROR_HOVER: {
|
|
39
|
+
readonly 'border-color': string;
|
|
40
|
+
};
|
|
41
|
+
readonly ERROR_ACTIVE: {
|
|
42
|
+
readonly 'border-color': string;
|
|
43
|
+
};
|
|
44
|
+
readonly ERROR_FOCUS: {
|
|
45
|
+
readonly 'border-color': string;
|
|
46
|
+
};
|
|
47
|
+
readonly DISABLED: {
|
|
48
|
+
readonly 'background-color': "transparent";
|
|
49
|
+
readonly 'color-primary': string;
|
|
50
|
+
readonly 'color-secondary': string;
|
|
51
|
+
readonly 'color-tertiary': string;
|
|
52
|
+
readonly 'border-color': string;
|
|
53
|
+
};
|
|
54
|
+
readonly DISABLED_VALUE: {};
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
export default component;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
declare const component: {
|
|
2
|
+
readonly SELECTMENU: {
|
|
3
|
+
readonly ROOT: {
|
|
4
|
+
readonly 'background-color': string;
|
|
5
|
+
readonly 'border-radius': "4px";
|
|
6
|
+
readonly top: "4px";
|
|
7
|
+
};
|
|
8
|
+
readonly EVENTS: {
|
|
9
|
+
readonly ENABLED: {
|
|
10
|
+
readonly 'background-color': "transparent";
|
|
11
|
+
readonly 'color-primary': string;
|
|
12
|
+
readonly 'color-secondary': string;
|
|
13
|
+
readonly 'color-tertiary': string;
|
|
14
|
+
};
|
|
15
|
+
readonly VALUE: {
|
|
16
|
+
readonly 'background-color': string;
|
|
17
|
+
};
|
|
18
|
+
readonly HOVER: {
|
|
19
|
+
readonly 'background-color': string;
|
|
20
|
+
};
|
|
21
|
+
readonly ACTIVE: {
|
|
22
|
+
readonly 'background-color': string;
|
|
23
|
+
};
|
|
24
|
+
readonly FOCUS: {
|
|
25
|
+
readonly 'background-color': string;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
export default component;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const component: {
|
|
2
|
+
readonly SLIDER: {
|
|
3
|
+
readonly EVENTS: {
|
|
4
|
+
readonly ENABLED: {
|
|
5
|
+
readonly 'icon-color': string;
|
|
6
|
+
readonly 'icon-background-color': string;
|
|
7
|
+
readonly 'background-color': string;
|
|
8
|
+
readonly 'border-color': string;
|
|
9
|
+
readonly 'border-width': "2px";
|
|
10
|
+
readonly 'border-style': "solid";
|
|
11
|
+
};
|
|
12
|
+
readonly VALUE: {
|
|
13
|
+
readonly 'background-color': string;
|
|
14
|
+
};
|
|
15
|
+
readonly HOVER: {
|
|
16
|
+
readonly 'background-color': string;
|
|
17
|
+
};
|
|
18
|
+
readonly ACTIVE: {
|
|
19
|
+
readonly 'background-color': string;
|
|
20
|
+
};
|
|
21
|
+
readonly FOCUS: {
|
|
22
|
+
readonly 'outline-color': string;
|
|
23
|
+
readonly 'outline-width': "1px";
|
|
24
|
+
readonly 'outline-style': "solid";
|
|
25
|
+
readonly 'outline-offset': "2px";
|
|
26
|
+
};
|
|
27
|
+
readonly DISABLED: {
|
|
28
|
+
readonly 'icon-color': string;
|
|
29
|
+
readonly 'icon-background-color': string;
|
|
30
|
+
readonly 'background-color': string;
|
|
31
|
+
readonly 'border-color': string;
|
|
32
|
+
readonly 'border-width': "2px";
|
|
33
|
+
readonly 'border-style': "solid";
|
|
34
|
+
};
|
|
35
|
+
readonly DISABLED_VALUE: {
|
|
36
|
+
readonly 'icon-color': string;
|
|
37
|
+
readonly 'icon-background-color': string;
|
|
38
|
+
readonly 'background-color': string;
|
|
39
|
+
readonly 'border-color': string;
|
|
40
|
+
readonly 'border-width': "2px";
|
|
41
|
+
readonly 'border-style': "solid";
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
export default component;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
declare const component: {
|
|
2
|
+
readonly SWITCH: {
|
|
3
|
+
readonly ROOT: {
|
|
4
|
+
readonly 'border-radius': "12px";
|
|
5
|
+
};
|
|
6
|
+
readonly EVENTS: {
|
|
7
|
+
readonly ENABLED: {
|
|
8
|
+
readonly 'color-primary': string;
|
|
9
|
+
readonly 'color-secondary': string;
|
|
10
|
+
readonly 'icon-color': string;
|
|
11
|
+
readonly 'icon-background-color': string;
|
|
12
|
+
readonly 'background-color': "transparent";
|
|
13
|
+
readonly 'border-color': string;
|
|
14
|
+
readonly 'border-width': "2px";
|
|
15
|
+
readonly 'border-style': "solid";
|
|
16
|
+
};
|
|
17
|
+
readonly VALUE: {
|
|
18
|
+
readonly 'icon-color': string;
|
|
19
|
+
readonly 'icon-background-color': string;
|
|
20
|
+
readonly 'background-color': string;
|
|
21
|
+
readonly 'border-color': string;
|
|
22
|
+
};
|
|
23
|
+
readonly HOVER: {
|
|
24
|
+
readonly 'shadow-color': string;
|
|
25
|
+
};
|
|
26
|
+
readonly ACTIVE: {
|
|
27
|
+
readonly 'shadow-color': string;
|
|
28
|
+
};
|
|
29
|
+
readonly FOCUS: {
|
|
30
|
+
readonly 'outline-color': string;
|
|
31
|
+
readonly 'outline-width': "1px";
|
|
32
|
+
readonly 'outline-style': "solid";
|
|
33
|
+
readonly 'outline-offset': "2px";
|
|
34
|
+
};
|
|
35
|
+
readonly DISABLED: {
|
|
36
|
+
readonly 'icon-color': string;
|
|
37
|
+
readonly 'icon-background-color': string;
|
|
38
|
+
readonly 'background-color': "transparent";
|
|
39
|
+
readonly 'color-secondary': string;
|
|
40
|
+
readonly 'border-color': string;
|
|
41
|
+
readonly 'border-width': "2px";
|
|
42
|
+
readonly 'border-style': "solid";
|
|
43
|
+
};
|
|
44
|
+
readonly DISABLED_VALUE: {
|
|
45
|
+
readonly 'icon-color': string;
|
|
46
|
+
readonly 'icon-background-color': string;
|
|
47
|
+
readonly 'background-color': string;
|
|
48
|
+
readonly 'border-color': string;
|
|
49
|
+
readonly 'border-width': "2px";
|
|
50
|
+
readonly 'border-style': "solid";
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
export default component;
|