@foi/design-system 0.0.0 → 0.0.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.
Files changed (116) hide show
  1. package/dist/components/atoms/Button/Button.d.ts +10 -0
  2. package/dist/components/atoms/Button/Button.emotion.d.ts +2 -0
  3. package/dist/components/atoms/Button/Button.interface.d.ts +29 -0
  4. package/dist/components/atoms/Button/index.d.ts +3 -0
  5. package/dist/components/atoms/Checkbox/Checkbox.d.ts +7 -0
  6. package/dist/components/atoms/Checkbox/Checkbox.emotion.d.ts +2 -0
  7. package/dist/components/atoms/Checkbox/Checkbox.interface.d.ts +64 -0
  8. package/dist/components/atoms/Checkbox/index.d.ts +4 -0
  9. package/dist/components/atoms/DatePicker/DatePicker.d.ts +17 -0
  10. package/dist/components/atoms/DatePicker/DatePicker.emotion.d.ts +2 -0
  11. package/dist/components/atoms/DatePicker/DatePicker.interface.d.ts +105 -0
  12. package/dist/components/atoms/DatePicker/DatePicker.utils.d.ts +50 -0
  13. package/dist/components/atoms/DatePicker/DatePickerMenu/DatePickerMenu.d.ts +14 -0
  14. package/dist/components/atoms/DatePicker/DatePickerMenu/DatePickerMenu.emotion.d.ts +2 -0
  15. package/dist/components/atoms/DatePicker/DatePickerMenu/DatePickerMenu.interface.d.ts +46 -0
  16. package/dist/components/atoms/DatePicker/DatePickerMenu/index.d.ts +4 -0
  17. package/dist/components/atoms/DatePicker/index.d.ts +4 -0
  18. package/dist/components/atoms/IconButton/IconButton.d.ts +9 -0
  19. package/dist/components/atoms/IconButton/IconButton.emotion.d.ts +2 -0
  20. package/dist/components/atoms/IconButton/IconButton.interface.d.ts +21 -0
  21. package/dist/components/atoms/IconButton/index.d.ts +3 -0
  22. package/dist/components/atoms/Input/Input.d.ts +11 -0
  23. package/dist/components/atoms/Input/Input.emotion.d.ts +2 -0
  24. package/dist/components/atoms/Input/Input.interface.d.ts +55 -0
  25. package/dist/components/atoms/Input/index.d.ts +4 -0
  26. package/dist/components/atoms/Radio/Radio.d.ts +12 -0
  27. package/dist/components/atoms/Radio/Radio.emotion.d.ts +2 -0
  28. package/dist/components/atoms/Radio/Radio.interface.d.ts +51 -0
  29. package/dist/components/atoms/Radio/RadioGroup.context.d.ts +15 -0
  30. package/dist/components/atoms/Radio/index.d.ts +3 -0
  31. package/dist/components/atoms/Select/Select.d.ts +11 -0
  32. package/dist/components/atoms/Select/Select.emotion.d.ts +2 -0
  33. package/dist/components/atoms/Select/Select.interface.d.ts +55 -0
  34. package/dist/components/atoms/Select/SelectMenu/SelectMenu.d.ts +9 -0
  35. package/dist/components/atoms/Select/SelectMenu/SelectMenu.emotion.d.ts +2 -0
  36. package/dist/components/atoms/Select/SelectMenu/SelectMenu.interface.d.ts +33 -0
  37. package/dist/components/atoms/Select/SelectMenu/index.d.ts +4 -0
  38. package/dist/components/atoms/Select/index.d.ts +4 -0
  39. package/dist/components/atoms/Slider/Slider.d.ts +13 -0
  40. package/dist/components/atoms/Slider/Slider.emotion.d.ts +2 -0
  41. package/dist/components/atoms/Slider/Slider.interface.d.ts +59 -0
  42. package/dist/components/atoms/Slider/index.d.ts +4 -0
  43. package/dist/components/atoms/Switch/Switch.d.ts +11 -0
  44. package/dist/components/atoms/Switch/Switch.emotion.d.ts +2 -0
  45. package/dist/components/atoms/Switch/Switch.interface.d.ts +27 -0
  46. package/dist/components/atoms/Switch/index.d.ts +4 -0
  47. package/dist/components/molecules/CheckboxGroup/CheckboxGroup.context.d.ts +13 -0
  48. package/dist/components/molecules/CheckboxGroup/CheckboxGroup.d.ts +23 -0
  49. package/dist/components/molecules/CheckboxGroup/CheckboxGroup.emotion.d.ts +2 -0
  50. package/dist/components/molecules/CheckboxGroup/CheckboxGroup.interface.d.ts +38 -0
  51. package/dist/components/molecules/CheckboxGroup/index.d.ts +4 -0
  52. package/dist/components/molecules/CheckboxTree/CheckboxTree.context.d.ts +13 -0
  53. package/dist/components/molecules/CheckboxTree/CheckboxTree.d.ts +23 -0
  54. package/dist/components/molecules/CheckboxTree/CheckboxTree.emotion.d.ts +2 -0
  55. package/dist/components/molecules/CheckboxTree/CheckboxTree.interface.d.ts +42 -0
  56. package/dist/components/molecules/CheckboxTree/index.d.ts +4 -0
  57. package/dist/components/molecules/RadioGroup/RadioGroup.d.ts +19 -0
  58. package/dist/components/molecules/RadioGroup/RadioGroup.emotion.d.ts +2 -0
  59. package/dist/components/molecules/RadioGroup/RadioGroup.interface.d.ts +38 -0
  60. package/dist/components/molecules/RadioGroup/index.d.ts +4 -0
  61. package/dist/hocs/MarginPage/index.d.ts +6 -0
  62. package/dist/hocs/OutsideEvent/index.d.ts +7 -0
  63. package/dist/hocs/ScrollToTop/index.d.ts +2 -0
  64. package/dist/hocs/ThemeProvider/ThemeProvider.d.ts +4 -0
  65. package/dist/hocs/ThemeProvider/ThemeProvider.interface.d.ts +29 -0
  66. package/dist/hocs/ThemeProvider/components/Button.d.ts +36 -0
  67. package/dist/hocs/ThemeProvider/components/Checkbox.d.ts +60 -0
  68. package/dist/hocs/ThemeProvider/components/CheckboxGroup.d.ts +20 -0
  69. package/dist/hocs/ThemeProvider/components/CheckboxTree.d.ts +20 -0
  70. package/dist/hocs/ThemeProvider/components/DatePicker.d.ts +60 -0
  71. package/dist/hocs/ThemeProvider/components/DatePickerMenu.d.ts +36 -0
  72. package/dist/hocs/ThemeProvider/components/IconButton.d.ts +36 -0
  73. package/dist/hocs/ThemeProvider/components/Input.d.ts +60 -0
  74. package/dist/hocs/ThemeProvider/components/Radio.d.ts +60 -0
  75. package/dist/hocs/ThemeProvider/components/RadioGroup.d.ts +20 -0
  76. package/dist/hocs/ThemeProvider/components/Select.d.ts +60 -0
  77. package/dist/hocs/ThemeProvider/components/SelectMenu.d.ts +32 -0
  78. package/dist/hocs/ThemeProvider/components/Slider.d.ts +36 -0
  79. package/dist/hocs/ThemeProvider/components/Switch.d.ts +40 -0
  80. package/dist/hocs/ThemeProvider/components/index.d.ts +13 -0
  81. package/dist/hocs/ThemeProvider/createComponentStyles.d.ts +2 -0
  82. package/dist/hocs/ThemeProvider/fonts/index.d.ts +6 -0
  83. package/dist/hocs/ThemeProvider/index.d.ts +1 -0
  84. package/dist/hocs/ThemeProvider/interfaces/Components.interface.d.ts +16 -0
  85. package/dist/hocs/ThemeProvider/interfaces/Events.interface.d.ts +16 -0
  86. package/dist/hocs/ThemeProvider/interfaces/Styles.interface.d.ts +54 -0
  87. package/dist/hocs/ThemeProvider/interfaces/Typography.interface.d.ts +10 -0
  88. package/dist/hocs/ThemeProvider/interfaces/index.d.ts +4 -0
  89. package/dist/hocs/ThemeProvider/useThemeProvider.hook.d.ts +10 -0
  90. package/dist/hocs/ThemeProvider/useThemeProvider.store.d.ts +2 -0
  91. package/dist/hooks/useOnClickOutside.d.ts +10 -0
  92. package/dist/hooks/useStateCallback.d.ts +1 -0
  93. package/dist/index.d.ts +27 -0
  94. package/dist/interfaces/Option.d.ts +10 -0
  95. package/dist/interfaces/index.d.ts +1 -0
  96. package/dist/theme/dark/colors.d.ts +31 -0
  97. package/dist/theme/dark/components/Button.d.ts +35 -0
  98. package/dist/theme/dark/components/Checkbox.d.ts +64 -0
  99. package/dist/theme/dark/components/CheckboxGroup.d.ts +18 -0
  100. package/dist/theme/dark/components/CheckboxTree.d.ts +17 -0
  101. package/dist/theme/dark/components/DatePicker.d.ts +58 -0
  102. package/dist/theme/dark/components/DatePickerMenu.d.ts +31 -0
  103. package/dist/theme/dark/components/IconButton.d.ts +30 -0
  104. package/dist/theme/dark/components/Input.d.ts +58 -0
  105. package/dist/theme/dark/components/Radio.d.ts +61 -0
  106. package/dist/theme/dark/components/RadioGroup.d.ts +18 -0
  107. package/dist/theme/dark/components/Select.d.ts +58 -0
  108. package/dist/theme/dark/components/SelectMenu.d.ts +30 -0
  109. package/dist/theme/dark/components/Slider.d.ts +46 -0
  110. package/dist/theme/dark/components/Switch.d.ts +55 -0
  111. package/dist/theme/dark/components/index.d.ts +540 -0
  112. package/dist/theme/dark/fonts.d.ts +6 -0
  113. package/dist/theme/dark/index.d.ts +547 -0
  114. package/dist/theme/index.d.ts +549 -0
  115. package/dist/utilities/emotion/styles.d.ts +2 -0
  116. package/package.json +81 -81
@@ -0,0 +1,54 @@
1
+ export declare enum StyleValues {
2
+ COLOR_PRIMARY = "color-primary",
3
+ COLOR_SECONDARY = "color-secondary",
4
+ COLOR_TERTIARY = "color-tertiary",
5
+ ICON_COLOR = "icon-color",
6
+ ICON_BACKGROUND_COLOR = "icon-background-color",
7
+ BACKGROUND_COLOR = "background-color",
8
+ SHADOW_COLOR = "shadow-color",
9
+ WIDTH = "width",
10
+ HEIGHT = "height",
11
+ MIN_WIDTH = "min-width",
12
+ MIN_HEIGHT = "min-height",
13
+ MAX_WIDTH = "max-width",
14
+ MAX_HEIGHT = "max-height",
15
+ BORDER_COLOR = "border-color",
16
+ BORDER_WIDTH = "border-width",
17
+ BORDER_RADIUS = "border-radius",
18
+ BORDER_STYLE = "border-style",
19
+ OUTLINE_COLOR = "outline-color",
20
+ OUTLINE_WIDTH = "outline-width",
21
+ OUTLINE_STYLE = "outline-style",
22
+ OUTLINE_OFFSET = "outline-offset",
23
+ TOP = "top",
24
+ RIGHT = "right",
25
+ LEFT = "left",
26
+ BOTTOM = "bottom"
27
+ }
28
+ export interface Styles {
29
+ [StyleValues.COLOR_PRIMARY]?: string;
30
+ [StyleValues.COLOR_SECONDARY]?: string;
31
+ [StyleValues.COLOR_TERTIARY]?: string;
32
+ [StyleValues.ICON_COLOR]?: string;
33
+ [StyleValues.ICON_BACKGROUND_COLOR]?: string;
34
+ [StyleValues.BACKGROUND_COLOR]?: string;
35
+ [StyleValues.SHADOW_COLOR]?: string;
36
+ [StyleValues.WIDTH]?: string;
37
+ [StyleValues.HEIGHT]?: string;
38
+ [StyleValues.MIN_WIDTH]?: string;
39
+ [StyleValues.MIN_HEIGHT]?: string;
40
+ [StyleValues.MAX_WIDTH]?: string;
41
+ [StyleValues.MAX_HEIGHT]?: string;
42
+ [StyleValues.BORDER_COLOR]?: string;
43
+ [StyleValues.BORDER_WIDTH]?: string;
44
+ [StyleValues.BORDER_RADIUS]?: string;
45
+ [StyleValues.BORDER_STYLE]?: string;
46
+ [StyleValues.OUTLINE_COLOR]?: string;
47
+ [StyleValues.OUTLINE_WIDTH]?: string;
48
+ [StyleValues.OUTLINE_STYLE]?: string;
49
+ [StyleValues.OUTLINE_OFFSET]?: string;
50
+ [StyleValues.TOP]?: string;
51
+ [StyleValues.RIGHT]?: string;
52
+ [StyleValues.LEFT]?: string;
53
+ [StyleValues.BOTTOM]?: string;
54
+ }
@@ -0,0 +1,10 @@
1
+ export declare enum Typography {
2
+ FONTFAMILY_PRIMARY = "fontfamily-primary",
3
+ FONTFAMILY_SECONDARY = "fontfamily-secondary",
4
+ FONTFAMILY_TERTIARY = "fontfamily-tertiary"
5
+ }
6
+ export interface Props {
7
+ [Typography.FONTFAMILY_PRIMARY]?: string;
8
+ [Typography.FONTFAMILY_SECONDARY]?: string;
9
+ [Typography.FONTFAMILY_TERTIARY]?: string;
10
+ }
@@ -0,0 +1,4 @@
1
+ export * from './Components.interface';
2
+ export * from './Events.interface';
3
+ export * from './Styles.interface';
4
+ export * from './Typography.interface';
@@ -0,0 +1,10 @@
1
+ import { Theme, ThemeNames } from './ThemeProvider.interface';
2
+ import { Component } from './interfaces';
3
+ import { createComponentStyles } from './createComponentStyles';
4
+ export { createComponentStyles };
5
+ export declare const useCreateComponentStyles: (components: Array<Component>, events?: object) => {
6
+ componentStyles: {
7
+ [x: string]: string;
8
+ };
9
+ };
10
+ export declare const useCreateThemeStyles: <T extends readonly Theme[]>(themes: T, selectedTheme: ThemeNames<T>) => void;
@@ -0,0 +1,2 @@
1
+ import { ThemeProviderStore } from './ThemeProvider.interface';
2
+ export declare const useThemeProviderStore: import("zustand").UseBoundStore<import("zustand").StoreApi<ThemeProviderStore>>;
@@ -0,0 +1,10 @@
1
+ import { type DependencyList, type RefObject } from 'react';
2
+ interface UseClickOutsideAlerter {
3
+ ref: RefObject<Element | null>;
4
+ isActive: boolean;
5
+ onAction: () => void;
6
+ exceptRef?: RefObject<Element | null>;
7
+ dependencies?: DependencyList;
8
+ }
9
+ export declare const useOnClickOutside: ({ ref, onAction, isActive, exceptRef, dependencies, }: UseClickOutsideAlerter) => void;
10
+ export {};
@@ -0,0 +1 @@
1
+ export declare const useStateCallback: <T>(initialState: T) => [T, (state: T, cb?: (state: T) => void) => void];
@@ -0,0 +1,27 @@
1
+ export { default as Button } from './components/atoms/Button';
2
+ export { default as Checkbox } from './components/atoms/Checkbox';
3
+ export { default as DatePicker } from './components/atoms/DatePicker';
4
+ export { default as IconButton } from './components/atoms/IconButton';
5
+ export { default as Input } from './components/atoms/Input';
6
+ export { default as Radio } from './components/atoms/Radio';
7
+ export { default as Select } from './components/atoms/Select';
8
+ export { default as Slider } from './components/atoms/Slider';
9
+ export { default as Switch } from './components/atoms/Switch';
10
+ export { default as CheckboxGroup } from './components/molecules/CheckboxGroup';
11
+ export { default as CheckboxTree } from './components/molecules/CheckboxTree';
12
+ export { default as RadioGroup } from './components/molecules/RadioGroup';
13
+ export { default as ThemeProvider } from './hocs/ThemeProvider';
14
+ export type { Theme } from './hocs/ThemeProvider/ThemeProvider.interface';
15
+ export { darkTheme } from './theme';
16
+ export type { ButtonStyleProps } from './components/atoms/Button/Button.interface';
17
+ export type { CheckboxStyleProps } from './components/atoms/Checkbox/Checkbox.interface';
18
+ export type { DatePickerStyleProps } from './components/atoms/DatePicker/DatePicker.interface';
19
+ export type { IconButtonStyleProps } from './components/atoms/IconButton/IconButton.interface';
20
+ export type { InputStyleProps } from './components/atoms/Input/Input.interface';
21
+ export type { RadioStyleProps } from './components/atoms/Radio/Radio.interface';
22
+ export type { SelectStyleProps } from './components/atoms/Select/Select.interface';
23
+ export type { SliderStyleProps } from './components/atoms/Slider/Slider.interface';
24
+ export type { SwitchStyleProps } from './components/atoms/Switch/Switch.interface';
25
+ export type { CheckboxGroupStyleProps } from './components/molecules/CheckboxGroup/CheckboxGroup.interface';
26
+ export type { CheckboxTreeStyleProps } from './components/molecules/CheckboxTree/CheckboxTree.interface';
27
+ export type { RadioGroupStyleProps } from './components/molecules/RadioGroup/RadioGroup.interface';
@@ -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;