@pingux/astro 2.143.0-alpha.0 → 2.143.0-alpha.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/lib/cjs/components/AccordionGridGroup/AccordionGrid.styles.js +1 -2
- package/lib/cjs/components/AccordionGridGroup/AccordionGridGroup.stories.js +86 -5
- package/lib/cjs/components/AccordionGridItem/AccordionGridItemHeader.js +7 -5
- package/lib/cjs/components/AccordionGroup/AccordionGroup.js +5 -3
- package/lib/cjs/components/AccordionGroup/AccordionGroup.stories.js +3 -6
- package/lib/cjs/components/AccordionItem/AccordionItem.js +8 -4
- package/lib/cjs/components/AstroProvider/AstroProvider.js +3 -3
- package/lib/cjs/components/Breadcrumbs/Breadcrumbs.js +6 -2
- package/lib/cjs/components/Button/Button.stories.js +6 -3
- package/lib/cjs/components/Button/Buttons.styles.d.ts +40 -0
- package/lib/cjs/components/Button/Buttons.styles.js +2 -0
- package/lib/cjs/components/CollapsiblePanel/CollapsiblePanel.stories.js +5 -1
- package/lib/cjs/components/CopyText/CopyButton.js +4 -1
- package/lib/cjs/components/CopyText/CopyText.js +2 -1
- package/lib/cjs/components/GridList/GridList.stories.js +0 -1
- package/lib/cjs/components/Icon/Icon.js +2 -1
- package/lib/cjs/components/Icon/Icon.stories.js +1 -1
- package/lib/cjs/components/IconBadge/IconBadge.js +4 -4
- package/lib/cjs/components/IconBadge/IconBadge.stories.js +2 -2
- package/lib/cjs/components/Input/Input.styles.js +3 -0
- package/lib/cjs/components/ListBox/ListBox.js +4 -2
- package/lib/cjs/components/ListBox/Option.js +8 -4
- package/lib/cjs/components/ListView/ListView.stories.js +27 -10
- package/lib/cjs/components/ListView/ListViewItem.js +1 -1
- package/lib/cjs/components/Loader/Loader.js +71 -5
- package/lib/cjs/components/Loader/Loader.stories.js +17 -2
- package/lib/cjs/components/Loader/Loader.styles.d.ts +7 -0
- package/lib/cjs/components/Loader/Loader.styles.js +11 -1
- package/lib/cjs/components/MultivaluesField/CondensedMultivaluesField.js +6 -4
- package/lib/cjs/components/MultivaluesField/DefaultMultivaluesField.js +26 -15
- package/lib/cjs/components/PageHeader/PageHeader.js +5 -2
- package/lib/cjs/components/PanelHeader/PanelHeader.js +43 -10
- package/lib/cjs/components/PanelHeader/PanelHeader.stories.js +9 -4
- package/lib/cjs/components/PanelHeader/PanelHeader.styles.js +5 -0
- package/lib/cjs/components/PanelHeader/PanelHeader.test.js +22 -0
- package/lib/cjs/components/RequirementsList/RequirementsList.js +11 -8
- package/lib/cjs/components/SearchField/SearchAutoComplete.d.ts +3 -0
- package/lib/cjs/components/SearchField/SearchAutoComplete.js +168 -0
- package/lib/cjs/components/SearchField/SearchField.d.ts +2 -2
- package/lib/cjs/components/SearchField/SearchField.js +20 -78
- package/lib/cjs/components/SearchField/SearchField.stories.d.ts +8 -7
- package/lib/cjs/components/SearchField/SearchField.stories.js +43 -3
- package/lib/cjs/components/SearchField/SearchField.test.js +132 -0
- package/lib/cjs/components/SearchField/SearchFieldBase.d.ts +3 -0
- package/lib/cjs/components/SearchField/SearchFieldBase.js +91 -0
- package/lib/cjs/components/Stepper/Step.js +1 -1
- package/lib/cjs/components/Stepper/Stepper.styles.js +1 -0
- package/lib/cjs/components/Switch/Switch.js +12 -2
- package/lib/cjs/components/Switch/Switch.styles.js +1 -1
- package/lib/cjs/components/SwitchField/SwitchField.js +7 -2
- package/lib/cjs/components/Tabs/Tabs.stories.js +23 -7
- package/lib/cjs/components/Text/Text.stories.d.ts +1 -0
- package/lib/cjs/components/Text/Text.stories.js +354 -1
- package/lib/cjs/components/Text/Text.styles.d.ts +10 -0
- package/lib/cjs/components/Text/Text.styles.js +5 -0
- package/lib/cjs/components/TextField/TextField.stories.js +12 -2
- package/lib/cjs/hooks/useCircularLoader/useCircularLoader.d.ts +23 -0
- package/lib/cjs/hooks/useCircularLoader/useCircularLoader.js +80 -0
- package/lib/cjs/hooks/useCircularLoader/useCircularLoader.test.d.ts +1 -0
- package/lib/cjs/hooks/useCircularLoader/useCircularLoader.test.js +136 -0
- package/lib/cjs/hooks/useField/useField.d.ts +6 -6
- package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +75 -0
- package/lib/cjs/hooks/usePagination/usePagination.d.ts +4 -4
- package/lib/cjs/styles/colors.d.ts +6 -0
- package/lib/cjs/styles/colors.js +4 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.d.ts +36 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.js +23 -2
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/icons.d.ts +5 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +17 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.js +7 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/buttons.d.ts +66 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/buttons.js +18 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/forms.d.ts +15 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/forms.js +18 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/input.d.ts +0 -8
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/input.js +9 -9
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/links.d.ts +14 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/links.js +15 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.d.ts +5 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.js +5 -0
- package/lib/cjs/styles/themes/astro/customProperties/icons.d.ts +5 -0
- package/lib/cjs/styles/themes/astro/customProperties/icons.js +11 -4
- package/lib/cjs/styles/themes/astro/customProperties/index.d.ts +18 -0
- package/lib/cjs/styles/themes/astro/customProperties/index.js +26 -1
- package/lib/cjs/styles/themes/next-gen/codeView/codeView.d.ts +2 -0
- package/lib/cjs/styles/themes/next-gen/codeView/codeView.js +4 -2
- package/lib/cjs/styles/themes/next-gen/colors/colors.d.ts +37 -0
- package/lib/cjs/styles/themes/next-gen/colors/colors.js +5 -2
- package/lib/cjs/styles/themes/next-gen/colors/iconWrapper.js +14 -35
- package/lib/cjs/styles/themes/next-gen/colors/twoTone.d.ts +37 -0
- package/lib/cjs/styles/themes/next-gen/colors/twoTone.js +46 -0
- package/lib/cjs/styles/themes/next-gen/convertedComponentList.d.ts +4 -1
- package/lib/cjs/styles/themes/next-gen/convertedComponentList.js +6 -3
- package/lib/cjs/styles/themes/next-gen/customProperties/customSizes.d.ts +10 -0
- package/lib/cjs/styles/themes/next-gen/customProperties/customSizes.js +22 -0
- package/lib/cjs/styles/themes/next-gen/customProperties/icons.d.ts +5 -0
- package/lib/cjs/styles/themes/next-gen/customProperties/icons.js +10 -3
- package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +17 -0
- package/lib/cjs/styles/themes/next-gen/customProperties/index.js +26 -4
- package/lib/cjs/styles/themes/next-gen/customProperties/tShirtSizes.js +4 -4
- package/lib/cjs/styles/themes/next-gen/forms.d.ts +42 -0
- package/lib/cjs/styles/themes/next-gen/forms.js +5 -0
- package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +1151 -857
- package/lib/cjs/styles/themes/next-gen/next-gen.js +1 -1
- package/lib/cjs/styles/themes/next-gen/text.js +2 -2
- package/lib/cjs/styles/themes/next-gen/variants/accordion.d.ts +16 -0
- package/lib/cjs/styles/themes/next-gen/variants/accordion.js +26 -0
- package/lib/cjs/styles/themes/next-gen/variants/badges.d.ts +0 -17
- package/lib/cjs/styles/themes/next-gen/variants/badges.js +1 -3
- package/lib/cjs/styles/themes/next-gen/variants/button.d.ts +151 -105
- package/lib/cjs/styles/themes/next-gen/variants/button.js +38 -7
- package/lib/cjs/styles/themes/next-gen/variants/cards.js +1 -1
- package/lib/cjs/styles/themes/next-gen/variants/input.js +16 -5
- package/lib/cjs/styles/themes/next-gen/variants/label.js +5 -3
- package/lib/cjs/styles/themes/next-gen/variants/links.d.ts +4 -2
- package/lib/cjs/styles/themes/next-gen/variants/listview.js +1 -1
- package/lib/cjs/styles/themes/next-gen/variants/panelHeader.d.ts +16 -0
- package/lib/cjs/styles/themes/next-gen/variants/panelHeader.js +26 -0
- package/lib/cjs/styles/themes/next-gen/variants/stepper.d.ts +66 -0
- package/lib/cjs/styles/themes/next-gen/variants/stepper.js +74 -0
- package/lib/cjs/styles/themes/next-gen/variants/switch.d.ts +36 -0
- package/lib/cjs/styles/themes/next-gen/variants/switch.js +44 -0
- package/lib/cjs/styles/themes/next-gen/variants/text.d.ts +62 -0
- package/lib/cjs/styles/themes/next-gen/variants/text.js +67 -7
- package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +900 -743
- package/lib/cjs/styles/themes/next-gen/variants/variants.js +88 -38
- package/lib/cjs/types/listBox.d.ts +2 -0
- package/lib/cjs/types/loader.d.ts +5 -2
- package/lib/cjs/types/searchField.d.ts +11 -1
- package/lib/cjs/types/shared/style.d.ts +2 -0
- package/lib/components/AccordionGridGroup/AccordionGrid.styles.js +1 -2
- package/lib/components/AccordionGridGroup/AccordionGridGroup.stories.js +86 -5
- package/lib/components/AccordionGridItem/AccordionGridItemHeader.js +6 -4
- package/lib/components/AccordionGroup/AccordionGroup.js +5 -3
- package/lib/components/AccordionGroup/AccordionGroup.stories.js +3 -6
- package/lib/components/AccordionItem/AccordionItem.js +8 -4
- package/lib/components/AstroProvider/AstroProvider.js +3 -3
- package/lib/components/Breadcrumbs/Breadcrumbs.js +7 -3
- package/lib/components/Button/Button.stories.js +4 -1
- package/lib/components/Button/Buttons.styles.js +2 -0
- package/lib/components/CollapsiblePanel/CollapsiblePanel.stories.js +5 -1
- package/lib/components/CopyText/CopyButton.js +4 -1
- package/lib/components/CopyText/CopyText.js +2 -1
- package/lib/components/GridList/GridList.stories.js +0 -1
- package/lib/components/Icon/Icon.js +2 -1
- package/lib/components/Icon/Icon.stories.js +1 -1
- package/lib/components/IconBadge/IconBadge.js +4 -4
- package/lib/components/IconBadge/IconBadge.stories.js +2 -2
- package/lib/components/Input/Input.styles.js +3 -0
- package/lib/components/ListBox/ListBox.js +4 -2
- package/lib/components/ListBox/Option.js +8 -4
- package/lib/components/ListView/ListView.stories.js +28 -11
- package/lib/components/ListView/ListViewItem.js +1 -1
- package/lib/components/Loader/Loader.js +71 -3
- package/lib/components/Loader/Loader.stories.js +13 -0
- package/lib/components/Loader/Loader.styles.js +11 -1
- package/lib/components/MultivaluesField/CondensedMultivaluesField.js +6 -4
- package/lib/components/MultivaluesField/DefaultMultivaluesField.js +27 -16
- package/lib/components/PageHeader/PageHeader.js +5 -2
- package/lib/components/PanelHeader/PanelHeader.js +44 -11
- package/lib/components/PanelHeader/PanelHeader.stories.js +9 -4
- package/lib/components/PanelHeader/PanelHeader.styles.js +5 -0
- package/lib/components/PanelHeader/PanelHeader.test.js +23 -1
- package/lib/components/RequirementsList/RequirementsList.js +7 -4
- package/lib/components/SearchField/SearchAutoComplete.js +156 -0
- package/lib/components/SearchField/SearchField.js +18 -78
- package/lib/components/SearchField/SearchField.stories.js +41 -3
- package/lib/components/SearchField/SearchField.test.js +132 -0
- package/lib/components/SearchField/SearchFieldBase.js +79 -0
- package/lib/components/Stepper/Step.js +1 -1
- package/lib/components/Stepper/Stepper.styles.js +1 -0
- package/lib/components/Switch/Switch.js +12 -2
- package/lib/components/Switch/Switch.styles.js +1 -1
- package/lib/components/SwitchField/SwitchField.js +7 -2
- package/lib/components/Tabs/Tabs.stories.js +23 -7
- package/lib/components/Text/Text.stories.js +352 -0
- package/lib/components/Text/Text.styles.js +5 -0
- package/lib/components/TextField/TextField.stories.js +12 -2
- package/lib/hooks/useCircularLoader/useCircularLoader.js +71 -0
- package/lib/hooks/useCircularLoader/useCircularLoader.test.js +129 -0
- package/lib/styles/colors.js +4 -1
- package/lib/styles/themeOverrides/nextGenDarkMode/colors.js +23 -2
- package/lib/styles/themeOverrides/nextGenDarkMode/customProperties/index.js +7 -1
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/buttons.js +18 -0
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/forms.js +18 -1
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/input.js +9 -9
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/links.js +15 -0
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/variants.js +5 -0
- package/lib/styles/themes/astro/customProperties/icons.js +12 -5
- package/lib/styles/themes/astro/customProperties/index.js +26 -1
- package/lib/styles/themes/next-gen/codeView/codeView.js +4 -2
- package/lib/styles/themes/next-gen/colors/colors.js +5 -2
- package/lib/styles/themes/next-gen/colors/iconWrapper.js +14 -35
- package/lib/styles/themes/next-gen/colors/twoTone.js +38 -0
- package/lib/styles/themes/next-gen/convertedComponentList.js +6 -3
- package/lib/styles/themes/next-gen/customProperties/customSizes.js +14 -0
- package/lib/styles/themes/next-gen/customProperties/icons.js +10 -3
- package/lib/styles/themes/next-gen/customProperties/index.js +26 -2
- package/lib/styles/themes/next-gen/customProperties/tShirtSizes.js +4 -4
- package/lib/styles/themes/next-gen/forms.js +5 -0
- package/lib/styles/themes/next-gen/next-gen.js +1 -1
- package/lib/styles/themes/next-gen/text.js +2 -2
- package/lib/styles/themes/next-gen/variants/accordion.js +18 -0
- package/lib/styles/themes/next-gen/variants/badges.js +1 -3
- package/lib/styles/themes/next-gen/variants/button.js +38 -7
- package/lib/styles/themes/next-gen/variants/cards.js +1 -1
- package/lib/styles/themes/next-gen/variants/input.js +16 -5
- package/lib/styles/themes/next-gen/variants/label.js +5 -3
- package/lib/styles/themes/next-gen/variants/listview.js +1 -1
- package/lib/styles/themes/next-gen/variants/panelHeader.js +18 -0
- package/lib/styles/themes/next-gen/variants/stepper.js +66 -0
- package/lib/styles/themes/next-gen/variants/switch.js +36 -0
- package/lib/styles/themes/next-gen/variants/text.js +67 -7
- package/lib/styles/themes/next-gen/variants/variants.js +82 -37
- package/package.json +2 -1
@@ -1,4 +1,51 @@
|
|
1
|
+
export declare const badgeDeleteButton: {
|
2
|
+
borderRadius: string;
|
3
|
+
cursor: string;
|
4
|
+
height: number;
|
5
|
+
p: number;
|
6
|
+
width: number;
|
7
|
+
transition: string;
|
8
|
+
outline: string;
|
9
|
+
border: string;
|
10
|
+
borderColor: string;
|
11
|
+
path: {
|
12
|
+
fill: string;
|
13
|
+
};
|
14
|
+
'&.is-focused': {
|
15
|
+
outline: string;
|
16
|
+
outlineColor: string;
|
17
|
+
outlineOffset: string;
|
18
|
+
};
|
19
|
+
'&.is-hovered': {
|
20
|
+
backgroundColor: string;
|
21
|
+
path: {
|
22
|
+
fill: string;
|
23
|
+
};
|
24
|
+
};
|
25
|
+
'&.is-pressed': {
|
26
|
+
backgroundColor: string;
|
27
|
+
borderColor: string;
|
28
|
+
path: {
|
29
|
+
fill: string;
|
30
|
+
};
|
31
|
+
};
|
32
|
+
};
|
1
33
|
declare const _default: {
|
34
|
+
accordion: {
|
35
|
+
accordion: {
|
36
|
+
'&:not(:last-of-type)': {
|
37
|
+
borderBottom: string;
|
38
|
+
borderBottomColor: string;
|
39
|
+
};
|
40
|
+
pb: string;
|
41
|
+
};
|
42
|
+
body: {
|
43
|
+
py: string;
|
44
|
+
};
|
45
|
+
header: {
|
46
|
+
p: string;
|
47
|
+
};
|
48
|
+
};
|
2
49
|
attachment: {
|
3
50
|
container: {
|
4
51
|
backgroundColor: string;
|
@@ -20,279 +67,384 @@ declare const _default: {
|
|
20
67
|
right: string;
|
21
68
|
};
|
22
69
|
};
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
70
|
+
avatar: {
|
71
|
+
backgroundColor: string;
|
72
|
+
color: string;
|
73
|
+
cursor: string;
|
74
|
+
'&.is-orange': {
|
28
75
|
backgroundColor: string;
|
29
|
-
|
76
|
+
color: string;
|
30
77
|
};
|
31
|
-
|
32
|
-
|
78
|
+
'&.is-green': {
|
79
|
+
backgroundColor: string;
|
80
|
+
color: string;
|
33
81
|
};
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
backgroundColor: string;
|
38
|
-
};
|
39
|
-
'&.is-pressed': {
|
40
|
-
backgroundColor: string;
|
41
|
-
};
|
42
|
-
'&.is-focused': {
|
43
|
-
outline: string;
|
44
|
-
outlineColor: string;
|
45
|
-
outlineOffset: string;
|
46
|
-
};
|
82
|
+
'&.is-purple': {
|
83
|
+
backgroundColor: string;
|
84
|
+
color: string;
|
47
85
|
};
|
48
|
-
|
49
|
-
|
50
|
-
paddingLeft: string;
|
86
|
+
'&.is-pink': {
|
87
|
+
backgroundColor: string;
|
51
88
|
color: string;
|
52
|
-
borderRadius: string;
|
53
|
-
'&.is-focused': {
|
54
|
-
outline: string;
|
55
|
-
outlineColor: string;
|
56
|
-
outlineOffset: string;
|
57
|
-
};
|
58
|
-
'&.is-hovered': {
|
59
|
-
backgroundColor: string;
|
60
|
-
};
|
61
|
-
'&.is-pressed': {
|
62
|
-
backgroundColor: string;
|
63
|
-
color: string;
|
64
|
-
};
|
65
|
-
'&.is-selected': {
|
66
|
-
bg: string;
|
67
|
-
boxShadow: string;
|
68
|
-
color: string;
|
69
|
-
};
|
70
89
|
};
|
71
|
-
|
90
|
+
'&.is-red': {
|
91
|
+
backgroundColor: string;
|
72
92
|
color: string;
|
73
93
|
};
|
74
|
-
|
94
|
+
'&.is-yellow': {
|
95
|
+
backgroundColor: string;
|
75
96
|
color: string;
|
76
|
-
ml: string;
|
77
|
-
'.is-selected &': {
|
78
|
-
color: string;
|
79
|
-
};
|
80
97
|
};
|
81
|
-
|
82
|
-
|
98
|
+
'&.is-cyan': {
|
99
|
+
backgroundColor: string;
|
83
100
|
color: string;
|
84
|
-
'&.is-hovered': {
|
85
|
-
backgroundColor: string;
|
86
|
-
};
|
87
|
-
'&.is-focused': {
|
88
|
-
boxShadow: string;
|
89
|
-
WebkitBoxShadow: string;
|
90
|
-
MozBoxShadow: string;
|
91
|
-
};
|
92
101
|
};
|
93
|
-
|
94
|
-
|
95
|
-
py: string;
|
102
|
+
'&.is-teal': {
|
103
|
+
backgroundColor: string;
|
96
104
|
color: string;
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
105
|
+
};
|
106
|
+
display: string;
|
107
|
+
borderRadius: string;
|
108
|
+
textAlign: string;
|
109
|
+
alignItems: string;
|
110
|
+
justifyContent: string;
|
111
|
+
fontFamily: string;
|
112
|
+
};
|
113
|
+
breadcrumb: {
|
114
|
+
link: {
|
115
|
+
fontWeight: number;
|
116
|
+
fontSize: string;
|
117
|
+
};
|
118
|
+
};
|
119
|
+
box: {
|
120
|
+
indeterminateCheckboxIcon: {
|
121
|
+
height: string;
|
122
|
+
width: string;
|
123
|
+
'&.is-disabled': {
|
124
|
+
'& rect[id="indeterminate-checkbox-icon-wrapper"]': {
|
109
125
|
fill: string;
|
126
|
+
stroke: string;
|
110
127
|
};
|
111
|
-
backgroundColor: string;
|
112
|
-
boxShadow: string;
|
113
128
|
};
|
114
129
|
'&.is-focused': {
|
115
|
-
outline: string;
|
116
|
-
outlineColor: string;
|
117
|
-
outlineOffset: string;
|
118
|
-
boxShadow: string;
|
119
|
-
WebkitBoxShadow: string;
|
120
|
-
MozBoxShadow: string;
|
121
|
-
};
|
122
|
-
};
|
123
|
-
itemHeaderContainer: {
|
124
|
-
boxShadow: string;
|
125
|
-
maxWidth: string;
|
126
|
-
px: string;
|
127
|
-
py: string;
|
128
|
-
'&.is-selected': {
|
129
|
-
backgroundColor: string;
|
130
130
|
boxShadow: string;
|
131
131
|
};
|
132
|
-
backgroundColor: string;
|
133
|
-
'> svg': {
|
134
|
-
fill: string;
|
135
|
-
};
|
136
|
-
'> div > svg': {
|
137
|
-
fill: string;
|
138
|
-
};
|
139
|
-
};
|
140
|
-
navBarItemBody: {
|
141
|
-
mb: string;
|
142
132
|
};
|
143
133
|
};
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
mt: string;
|
149
|
-
'&.is-default': {
|
150
|
-
color: string;
|
151
|
-
};
|
152
|
-
'&.is-error': {
|
153
|
-
color: string;
|
154
|
-
};
|
155
|
-
'&.is-warning': {
|
156
|
-
color: string;
|
157
|
-
};
|
158
|
-
'&.is-success': {
|
159
|
-
color: string;
|
160
|
-
};
|
134
|
+
buttonBar: {
|
135
|
+
container: {
|
136
|
+
gap: string;
|
137
|
+
backgroundColor: string;
|
161
138
|
};
|
162
|
-
|
163
|
-
message: {
|
164
|
-
wrapper: {
|
139
|
+
justifyRightContainer: {
|
165
140
|
gap: string;
|
166
|
-
|
141
|
+
backgroundColor: string;
|
167
142
|
};
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
p: string;
|
173
|
-
wordBreak: string;
|
174
|
-
alignItems: string;
|
143
|
+
};
|
144
|
+
callout: {
|
145
|
+
base: {
|
146
|
+
width: string;
|
175
147
|
backgroundColor: string;
|
176
|
-
|
177
|
-
|
148
|
+
lineHeight: string;
|
149
|
+
p: string;
|
150
|
+
border: string;
|
151
|
+
borderLeft: string;
|
178
152
|
borderLeftColor: string;
|
153
|
+
borderRadius: string;
|
154
|
+
alignItems: string;
|
179
155
|
color: string;
|
180
|
-
|
181
|
-
|
182
|
-
borderRadius: number;
|
183
|
-
'& > svg': {
|
184
|
-
minWidth: string;
|
185
|
-
width: string;
|
186
|
-
height: string;
|
187
|
-
color: string;
|
188
|
-
path: {
|
189
|
-
fill: string;
|
190
|
-
transform: string;
|
191
|
-
transformOrigin: string;
|
192
|
-
};
|
193
|
-
alignSelf: string;
|
194
|
-
};
|
195
|
-
'&.is-success': {
|
196
|
-
bg: string;
|
156
|
+
'&.is-success, > .is-success': {
|
157
|
+
borderColor: string;
|
197
158
|
borderLeftColor: string;
|
198
|
-
color: string;
|
199
159
|
};
|
200
|
-
'&.is-warning': {
|
201
|
-
|
160
|
+
'&.is-warning, > .is-warning': {
|
161
|
+
borderColor: string;
|
202
162
|
borderLeftColor: string;
|
203
|
-
color: string;
|
204
163
|
};
|
205
164
|
'&.is-error, > .is-error': {
|
206
|
-
|
207
|
-
};
|
208
|
-
'&.is-error, > button > svg': {
|
209
|
-
color: string;
|
210
|
-
path: {
|
211
|
-
fill: string;
|
212
|
-
};
|
213
|
-
};
|
214
|
-
'&.is-error': {
|
165
|
+
borderColor: string;
|
215
166
|
borderLeftColor: string;
|
216
167
|
};
|
217
168
|
};
|
169
|
+
icon: {
|
170
|
+
ml: string;
|
171
|
+
mr: string;
|
172
|
+
minWidth: string;
|
173
|
+
width: string;
|
174
|
+
height: string;
|
175
|
+
};
|
218
176
|
};
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
pt: number;
|
225
|
-
borderRadius: string;
|
226
|
-
opacity: number;
|
227
|
-
top: string;
|
228
|
-
transform: string;
|
229
|
-
transition: string;
|
230
|
-
m: string[];
|
231
|
-
maxHeight: string;
|
232
|
-
overflowY: string;
|
233
|
-
'&.is-open-no-transition': {
|
234
|
-
opacity: string;
|
235
|
-
transform: string;
|
177
|
+
codeView: {
|
178
|
+
theme: {
|
179
|
+
plain: {
|
180
|
+
color: string;
|
181
|
+
backgroundColor: string;
|
236
182
|
};
|
237
|
-
|
238
|
-
|
239
|
-
|
183
|
+
styles: ({
|
184
|
+
types: string[];
|
185
|
+
style: {
|
186
|
+
color: string;
|
187
|
+
background?: undefined;
|
188
|
+
fontWeight?: undefined;
|
189
|
+
cursor?: undefined;
|
190
|
+
};
|
191
|
+
} | {
|
192
|
+
types: string[];
|
193
|
+
style: {
|
194
|
+
color: string;
|
195
|
+
background: string;
|
196
|
+
fontWeight?: undefined;
|
197
|
+
cursor?: undefined;
|
198
|
+
};
|
199
|
+
} | {
|
200
|
+
types: string[];
|
201
|
+
style: {
|
202
|
+
fontWeight: string;
|
203
|
+
color?: undefined;
|
204
|
+
background?: undefined;
|
205
|
+
cursor?: undefined;
|
206
|
+
};
|
207
|
+
} | {
|
208
|
+
types: string[];
|
209
|
+
style: {
|
210
|
+
cursor: string;
|
211
|
+
color?: undefined;
|
212
|
+
background?: undefined;
|
213
|
+
fontWeight?: undefined;
|
214
|
+
};
|
215
|
+
})[];
|
216
|
+
};
|
217
|
+
wrapper: {
|
218
|
+
backgroundColor: string;
|
219
|
+
border: string;
|
220
|
+
borderColor: string;
|
221
|
+
borderRadius: string;
|
222
|
+
width: number;
|
223
|
+
height: number;
|
224
|
+
my: string;
|
225
|
+
overflow: string;
|
226
|
+
alignItems: string;
|
227
|
+
'&.is-focused, &:focus': {
|
228
|
+
boxShadow: string;
|
229
|
+
outline: string;
|
240
230
|
};
|
241
|
-
|
231
|
+
pre: {
|
232
|
+
backgroundColor: string;
|
233
|
+
padding: string;
|
234
|
+
height: string;
|
242
235
|
width: string;
|
243
|
-
|
236
|
+
overflowX: string;
|
237
|
+
overflowY: string;
|
238
|
+
fontSize: string;
|
239
|
+
'& .token-line': {
|
240
|
+
display: string;
|
241
|
+
alignItems: string;
|
242
|
+
'& .token': {
|
243
|
+
whiteSpace: string;
|
244
|
+
wordBreak: string;
|
245
|
+
};
|
246
|
+
};
|
247
|
+
fontFamily: string;
|
248
|
+
lineHeight: string;
|
244
249
|
};
|
245
|
-
'&.
|
246
|
-
|
247
|
-
|
250
|
+
'&.has-no-copy-button': {
|
251
|
+
pre: {
|
252
|
+
p: string;
|
253
|
+
};
|
248
254
|
};
|
249
|
-
'&.
|
250
|
-
|
251
|
-
|
255
|
+
'&.has-line-numbers': {
|
256
|
+
pre: {
|
257
|
+
p: string;
|
258
|
+
overflow: string;
|
259
|
+
'& .token-line:first-of-type *': {
|
260
|
+
pt: string;
|
261
|
+
};
|
262
|
+
'& .token-line': {
|
263
|
+
display: string;
|
264
|
+
'& .token': {
|
265
|
+
whiteSpace: string;
|
266
|
+
};
|
267
|
+
};
|
268
|
+
};
|
252
269
|
};
|
253
|
-
|
254
|
-
|
255
|
-
|
270
|
+
};
|
271
|
+
lineNo: {
|
272
|
+
display: string;
|
273
|
+
userSelect: string;
|
274
|
+
px: string;
|
275
|
+
m: string;
|
276
|
+
bg: string;
|
277
|
+
minWidth: number;
|
278
|
+
color: string;
|
279
|
+
lineHeight: string;
|
280
|
+
};
|
281
|
+
header: {
|
282
|
+
color: string;
|
283
|
+
px: string;
|
284
|
+
width: string;
|
285
|
+
border: string;
|
286
|
+
borderColor: string;
|
287
|
+
lineHeight: string;
|
288
|
+
};
|
289
|
+
};
|
290
|
+
dataTable: {
|
291
|
+
container: {
|
292
|
+
border: string;
|
293
|
+
borderColor: string;
|
294
|
+
borderRadius: string;
|
295
|
+
};
|
296
|
+
tableRow: {
|
297
|
+
borderTop: string;
|
298
|
+
borderTopColor: string;
|
299
|
+
borderBottom: string;
|
300
|
+
pl: string;
|
301
|
+
'&:last-of-type': {
|
302
|
+
borderBottomLeftRadius: string;
|
303
|
+
borderBottomRightRadius: string;
|
256
304
|
};
|
257
|
-
|
258
|
-
|
259
|
-
|
305
|
+
};
|
306
|
+
selectableTableRow: {
|
307
|
+
bg: string;
|
308
|
+
'&.is-hovered': {
|
309
|
+
bg: string;
|
260
310
|
};
|
311
|
+
'&.is-selected': {
|
312
|
+
bg: string;
|
313
|
+
};
|
314
|
+
'&.is-focused': {
|
315
|
+
boxShadow: string;
|
316
|
+
bg: string;
|
317
|
+
};
|
318
|
+
'&.is-disabled': {
|
319
|
+
opacity: string;
|
320
|
+
};
|
321
|
+
borderTop: string;
|
322
|
+
borderTopColor: string;
|
323
|
+
borderBottom: string;
|
324
|
+
pl: string;
|
325
|
+
'&:last-of-type': {
|
326
|
+
borderBottomLeftRadius: string;
|
327
|
+
borderBottomRightRadius: string;
|
328
|
+
};
|
329
|
+
};
|
330
|
+
tableHeadWrapper: {
|
331
|
+
borderBottom: string;
|
261
332
|
};
|
333
|
+
tableHeadCell: {
|
334
|
+
px: string;
|
335
|
+
fontWeight: string;
|
336
|
+
fontSize: string;
|
337
|
+
'&.is-column-sortable': {
|
338
|
+
svg: {
|
339
|
+
fill: string;
|
340
|
+
};
|
341
|
+
};
|
342
|
+
'&.is-first-column': {
|
343
|
+
borderTopLeftRadius: string;
|
344
|
+
};
|
345
|
+
'&.is-last-column': {
|
346
|
+
borderTopRightRadius: string;
|
347
|
+
};
|
348
|
+
'&.is-key-focused': {
|
349
|
+
outline: string;
|
350
|
+
outlineStyle: string;
|
351
|
+
outlineColor: string;
|
352
|
+
outlineOffset: string;
|
353
|
+
};
|
354
|
+
};
|
355
|
+
rowHeader: {
|
356
|
+
py: string;
|
357
|
+
};
|
358
|
+
tableCell: {
|
359
|
+
fontSize: string;
|
360
|
+
px: string;
|
361
|
+
};
|
362
|
+
};
|
363
|
+
fieldHelperText: {
|
364
|
+
title: {
|
365
|
+
fontSize: string;
|
366
|
+
pt: string;
|
367
|
+
mt: string;
|
368
|
+
'&.is-default': {
|
369
|
+
color: string;
|
370
|
+
};
|
371
|
+
'&.is-error': {
|
372
|
+
color: string;
|
373
|
+
};
|
374
|
+
'&.is-warning': {
|
375
|
+
color: string;
|
376
|
+
};
|
377
|
+
'&.is-success': {
|
378
|
+
color: string;
|
379
|
+
};
|
380
|
+
};
|
381
|
+
};
|
382
|
+
footer: {
|
262
383
|
container: {
|
384
|
+
fontFamily: string;
|
263
385
|
justifyContent: string;
|
386
|
+
backgroundColor: string;
|
264
387
|
};
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
388
|
+
wrapper: {
|
389
|
+
px: string[];
|
390
|
+
py: string;
|
391
|
+
maxWidth: string;
|
392
|
+
mx: string;
|
393
|
+
width: string;
|
394
|
+
flexDirection: string[];
|
395
|
+
justifyContent: string;
|
396
|
+
alignItems: string;
|
397
|
+
};
|
398
|
+
footerLeftSection: {
|
399
|
+
columnGap: string;
|
400
|
+
flexDirection: string[];
|
401
|
+
};
|
402
|
+
footerNav: {
|
403
|
+
listStyle: string;
|
404
|
+
margin: string;
|
405
|
+
padding: string;
|
406
|
+
alignItems: string;
|
407
|
+
justifyContent: string[];
|
408
|
+
gap: string;
|
409
|
+
flexWrap: string;
|
410
|
+
my: string;
|
269
411
|
};
|
270
412
|
};
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
413
|
+
iconWrapper: {
|
414
|
+
sm: {
|
415
|
+
'&.is-circle': {
|
416
|
+
borderRadius: string;
|
417
|
+
};
|
418
|
+
borderRadius: string;
|
419
|
+
minHeight: string;
|
420
|
+
minWidth: string;
|
421
|
+
height: string;
|
422
|
+
width: string;
|
423
|
+
p: string;
|
277
424
|
};
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
outlineColor: string;
|
282
|
-
outlineOffset: string;
|
283
|
-
'& > span': {
|
284
|
-
outline: string;
|
425
|
+
md: {
|
426
|
+
'&.is-circle': {
|
427
|
+
borderRadius: string;
|
285
428
|
};
|
429
|
+
borderRadius: string;
|
430
|
+
minHeight: string;
|
431
|
+
minWidth: string;
|
432
|
+
height: string;
|
433
|
+
width: string;
|
434
|
+
p: string;
|
286
435
|
};
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
436
|
+
lg: {
|
437
|
+
'&.is-circle': {
|
438
|
+
borderRadius: string;
|
439
|
+
};
|
440
|
+
borderRadius: string;
|
441
|
+
minHeight: string;
|
442
|
+
minWidth: string;
|
443
|
+
height: string;
|
444
|
+
width: string;
|
445
|
+
p: string;
|
291
446
|
};
|
292
447
|
};
|
293
|
-
menuTab: {
|
294
|
-
ml: string;
|
295
|
-
};
|
296
448
|
listBox: {
|
297
449
|
container: {
|
298
450
|
px: string;
|
@@ -319,90 +471,24 @@ declare const _default: {
|
|
319
471
|
color: string;
|
320
472
|
bg: string;
|
321
473
|
};
|
322
|
-
|
323
|
-
|
324
|
-
separator: {
|
325
|
-
base: {
|
326
|
-
bg: string;
|
327
|
-
'&.is-vertical': {
|
328
|
-
m: string;
|
329
|
-
};
|
330
|
-
};
|
331
|
-
navBarSeparator: {
|
332
|
-
my: string;
|
333
|
-
mx: string;
|
334
|
-
maxWidth: string;
|
335
|
-
backgroundColor: string;
|
336
|
-
};
|
337
|
-
navBarSubtitleSeparator: {
|
338
|
-
backgroundColor: string;
|
339
|
-
};
|
340
|
-
};
|
341
|
-
menuItem: {
|
342
|
-
item: {
|
343
|
-
bg: string;
|
344
|
-
padding: string;
|
345
|
-
outline: string;
|
346
|
-
color: string;
|
347
|
-
cursor: string;
|
348
|
-
'&.is-focused, &.is-selected, &.is-pressed': {
|
474
|
+
'&.is-condensed': {
|
475
|
+
pl: string;
|
349
476
|
bg: string;
|
350
|
-
|
351
|
-
|
352
|
-
|
477
|
+
'&.is-selected': {
|
478
|
+
bg: string;
|
479
|
+
};
|
480
|
+
'&.is-focused': {
|
481
|
+
bg: string;
|
353
482
|
};
|
354
|
-
};
|
355
|
-
'&.is-pressed': {
|
356
|
-
color: string;
|
357
|
-
bg: string;
|
358
483
|
};
|
359
484
|
};
|
360
|
-
separator: {
|
361
|
-
my: string;
|
362
|
-
};
|
363
485
|
};
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
backgroundColor: string;
|
370
|
-
color: string;
|
371
|
-
};
|
372
|
-
'&.is-green': {
|
373
|
-
backgroundColor: string;
|
374
|
-
color: string;
|
375
|
-
};
|
376
|
-
'&.is-purple': {
|
377
|
-
backgroundColor: string;
|
378
|
-
color: string;
|
379
|
-
};
|
380
|
-
'&.is-pink': {
|
381
|
-
backgroundColor: string;
|
382
|
-
color: string;
|
383
|
-
};
|
384
|
-
'&.is-red': {
|
385
|
-
backgroundColor: string;
|
386
|
-
color: string;
|
387
|
-
};
|
388
|
-
'&.is-yellow': {
|
389
|
-
backgroundColor: string;
|
390
|
-
color: string;
|
391
|
-
};
|
392
|
-
'&.is-cyan': {
|
393
|
-
backgroundColor: string;
|
394
|
-
color: string;
|
395
|
-
};
|
396
|
-
'&.is-teal': {
|
397
|
-
backgroundColor: string;
|
398
|
-
color: string;
|
486
|
+
listView: {
|
487
|
+
container: {
|
488
|
+
borderRadius: string;
|
489
|
+
border: string;
|
490
|
+
borderColor: string;
|
399
491
|
};
|
400
|
-
display: string;
|
401
|
-
borderRadius: string;
|
402
|
-
textAlign: string;
|
403
|
-
alignItems: string;
|
404
|
-
justifyContent: string;
|
405
|
-
fontFamily: string;
|
406
492
|
};
|
407
493
|
listViewItem: {
|
408
494
|
rightOfData: {
|
@@ -505,26 +591,6 @@ declare const _default: {
|
|
505
591
|
height: string;
|
506
592
|
};
|
507
593
|
};
|
508
|
-
progressBar: {
|
509
|
-
transition: string;
|
510
|
-
container: {
|
511
|
-
backgroundColor: string;
|
512
|
-
borderRadius: string;
|
513
|
-
height: string;
|
514
|
-
};
|
515
|
-
percentageBar: {
|
516
|
-
backgroundColor: string;
|
517
|
-
borderRadius: string;
|
518
|
-
height: string;
|
519
|
-
};
|
520
|
-
};
|
521
|
-
listView: {
|
522
|
-
container: {
|
523
|
-
borderRadius: string;
|
524
|
-
border: string;
|
525
|
-
borderColor: string;
|
526
|
-
};
|
527
|
-
};
|
528
594
|
lisViewItemChart: {
|
529
595
|
title: {
|
530
596
|
color: string;
|
@@ -538,278 +604,286 @@ declare const _default: {
|
|
538
604
|
chartLabel: {
|
539
605
|
color: string;
|
540
606
|
};
|
541
|
-
trend: {
|
542
|
-
color: string;
|
607
|
+
trend: {
|
608
|
+
color: string;
|
609
|
+
};
|
610
|
+
chartButton: {
|
611
|
+
color: string;
|
612
|
+
};
|
613
|
+
};
|
614
|
+
loader: {
|
615
|
+
withinListView: {
|
616
|
+
color: string;
|
617
|
+
py: string;
|
618
|
+
};
|
619
|
+
circleSpinner: {
|
620
|
+
borderColor: string;
|
621
|
+
};
|
622
|
+
};
|
623
|
+
menu: {
|
624
|
+
p: string;
|
625
|
+
border: string;
|
626
|
+
borderColor: string;
|
627
|
+
};
|
628
|
+
menuItem: {
|
629
|
+
item: {
|
630
|
+
bg: string;
|
631
|
+
padding: string;
|
632
|
+
outline: string;
|
633
|
+
color: string;
|
634
|
+
cursor: string;
|
635
|
+
'&.is-focused, &.is-selected, &.is-pressed': {
|
636
|
+
bg: string;
|
637
|
+
color: string;
|
638
|
+
'> *': {
|
639
|
+
color: string;
|
640
|
+
};
|
641
|
+
};
|
642
|
+
'&.is-pressed': {
|
643
|
+
color: string;
|
644
|
+
bg: string;
|
645
|
+
};
|
646
|
+
};
|
647
|
+
separator: {
|
648
|
+
my: string;
|
649
|
+
};
|
650
|
+
};
|
651
|
+
menuTab: {
|
652
|
+
ml: string;
|
653
|
+
};
|
654
|
+
message: {
|
655
|
+
wrapper: {
|
656
|
+
gap: string;
|
657
|
+
right: string;
|
658
|
+
};
|
659
|
+
item: {
|
660
|
+
maxWidth: number;
|
661
|
+
pointerEvents: string;
|
662
|
+
mb: string;
|
663
|
+
p: string;
|
664
|
+
wordBreak: string;
|
665
|
+
alignItems: string;
|
666
|
+
backgroundColor: string;
|
667
|
+
borderLeftWidth: string;
|
668
|
+
borderLeftStyle: string;
|
669
|
+
borderLeftColor: string;
|
670
|
+
color: string;
|
671
|
+
fontSize: string;
|
672
|
+
lineHeight: string;
|
673
|
+
borderRadius: number;
|
674
|
+
'& > svg': {
|
675
|
+
minWidth: string;
|
676
|
+
width: string;
|
677
|
+
height: string;
|
678
|
+
color: string;
|
679
|
+
path: {
|
680
|
+
fill: string;
|
681
|
+
transform: string;
|
682
|
+
transformOrigin: string;
|
683
|
+
};
|
684
|
+
alignSelf: string;
|
685
|
+
};
|
686
|
+
'&.is-success': {
|
687
|
+
bg: string;
|
688
|
+
borderLeftColor: string;
|
689
|
+
color: string;
|
690
|
+
};
|
691
|
+
'&.is-warning': {
|
692
|
+
bg: string;
|
693
|
+
borderLeftColor: string;
|
694
|
+
color: string;
|
695
|
+
};
|
696
|
+
'&.is-error, > .is-error': {
|
697
|
+
bg: string;
|
698
|
+
};
|
699
|
+
'&.is-error, > button > svg': {
|
700
|
+
color: string;
|
701
|
+
path: {
|
702
|
+
fill: string;
|
703
|
+
};
|
704
|
+
};
|
705
|
+
'&.is-error': {
|
706
|
+
borderLeftColor: string;
|
707
|
+
};
|
708
|
+
};
|
709
|
+
};
|
710
|
+
modal: {
|
711
|
+
content: {
|
712
|
+
boxShadow: string;
|
713
|
+
px: string;
|
714
|
+
pb: string;
|
715
|
+
pt: number;
|
716
|
+
borderRadius: string;
|
717
|
+
opacity: number;
|
718
|
+
top: string;
|
719
|
+
transform: string;
|
720
|
+
transition: string;
|
721
|
+
m: string[];
|
722
|
+
maxHeight: string;
|
723
|
+
overflowY: string;
|
724
|
+
'&.is-open-no-transition': {
|
725
|
+
opacity: string;
|
726
|
+
transform: string;
|
727
|
+
};
|
728
|
+
'&.is-open.is-transitioning': {
|
729
|
+
opacity: string;
|
730
|
+
transform: string;
|
731
|
+
};
|
732
|
+
'&.is-extra-small': {
|
733
|
+
width: string;
|
734
|
+
maxWidth: string[];
|
735
|
+
};
|
736
|
+
'&.is-small': {
|
737
|
+
width: string;
|
738
|
+
maxWidth: string[];
|
739
|
+
};
|
740
|
+
'&.is-medium': {
|
741
|
+
width: string;
|
742
|
+
maxWidth: string[];
|
743
|
+
};
|
744
|
+
'&.is-large': {
|
745
|
+
width: string;
|
746
|
+
maxWidth: string[];
|
747
|
+
};
|
748
|
+
'&.is-full': {
|
749
|
+
width: string;
|
750
|
+
maxWidth: string[];
|
751
|
+
};
|
752
|
+
};
|
753
|
+
container: {
|
754
|
+
justifyContent: string;
|
543
755
|
};
|
544
|
-
|
545
|
-
|
756
|
+
header: {
|
757
|
+
pt: string;
|
758
|
+
bg: string;
|
759
|
+
mb: string;
|
546
760
|
};
|
547
761
|
};
|
548
|
-
|
762
|
+
navBar: {
|
549
763
|
container: {
|
550
|
-
|
551
|
-
|
552
|
-
|
764
|
+
fontFamily: string;
|
765
|
+
width: string;
|
766
|
+
p: string;
|
767
|
+
backgroundColor: string;
|
768
|
+
boxShadow: string;
|
553
769
|
};
|
554
|
-
|
555
|
-
|
556
|
-
borderTopColor: string;
|
557
|
-
borderBottom: string;
|
558
|
-
pl: string;
|
559
|
-
'&:last-of-type': {
|
560
|
-
borderBottomLeftRadius: string;
|
561
|
-
borderBottomRightRadius: string;
|
562
|
-
};
|
770
|
+
sectionContainer: {
|
771
|
+
pt: string;
|
563
772
|
};
|
564
|
-
|
565
|
-
|
773
|
+
sectionButton: {
|
774
|
+
borderRadius: string;
|
566
775
|
'&.is-hovered': {
|
567
|
-
|
776
|
+
backgroundColor: string;
|
568
777
|
};
|
569
|
-
'&.is-
|
570
|
-
|
778
|
+
'&.is-pressed': {
|
779
|
+
backgroundColor: string;
|
571
780
|
};
|
572
781
|
'&.is-focused': {
|
573
|
-
boxShadow: string;
|
574
|
-
bg: string;
|
575
|
-
};
|
576
|
-
'&.is-disabled': {
|
577
|
-
opacity: string;
|
578
|
-
};
|
579
|
-
borderTop: string;
|
580
|
-
borderTopColor: string;
|
581
|
-
borderBottom: string;
|
582
|
-
pl: string;
|
583
|
-
'&:last-of-type': {
|
584
|
-
borderBottomLeftRadius: string;
|
585
|
-
borderBottomRightRadius: string;
|
586
|
-
};
|
587
|
-
};
|
588
|
-
tableHeadWrapper: {
|
589
|
-
borderBottom: string;
|
590
|
-
};
|
591
|
-
tableHeadCell: {
|
592
|
-
px: string;
|
593
|
-
fontWeight: string;
|
594
|
-
fontSize: string;
|
595
|
-
'&.is-column-sortable': {
|
596
|
-
svg: {
|
597
|
-
fill: string;
|
598
|
-
};
|
599
|
-
};
|
600
|
-
'&.is-first-column': {
|
601
|
-
borderTopLeftRadius: string;
|
602
|
-
};
|
603
|
-
'&.is-last-column': {
|
604
|
-
borderTopRightRadius: string;
|
605
|
-
};
|
606
|
-
'&.is-key-focused': {
|
607
782
|
outline: string;
|
608
|
-
outlineStyle: string;
|
609
783
|
outlineColor: string;
|
610
784
|
outlineOffset: string;
|
611
785
|
};
|
612
786
|
};
|
613
|
-
|
787
|
+
itemButton: {
|
614
788
|
py: string;
|
615
|
-
|
616
|
-
|
617
|
-
fontSize: string;
|
618
|
-
px: string;
|
619
|
-
};
|
620
|
-
};
|
621
|
-
codeView: {
|
622
|
-
theme: {
|
623
|
-
plain: {
|
624
|
-
color: string;
|
625
|
-
backgroundColor: string;
|
626
|
-
};
|
627
|
-
styles: ({
|
628
|
-
types: string[];
|
629
|
-
style: {
|
630
|
-
color: string;
|
631
|
-
background?: undefined;
|
632
|
-
fontWeight?: undefined;
|
633
|
-
cursor?: undefined;
|
634
|
-
};
|
635
|
-
} | {
|
636
|
-
types: string[];
|
637
|
-
style: {
|
638
|
-
color: string;
|
639
|
-
background: string;
|
640
|
-
fontWeight?: undefined;
|
641
|
-
cursor?: undefined;
|
642
|
-
};
|
643
|
-
} | {
|
644
|
-
types: string[];
|
645
|
-
style: {
|
646
|
-
fontWeight: string;
|
647
|
-
color?: undefined;
|
648
|
-
background?: undefined;
|
649
|
-
cursor?: undefined;
|
650
|
-
};
|
651
|
-
} | {
|
652
|
-
types: string[];
|
653
|
-
style: {
|
654
|
-
cursor: string;
|
655
|
-
color?: undefined;
|
656
|
-
background?: undefined;
|
657
|
-
fontWeight?: undefined;
|
658
|
-
};
|
659
|
-
})[];
|
660
|
-
};
|
661
|
-
wrapper: {
|
662
|
-
backgroundColor: string;
|
663
|
-
border: string;
|
664
|
-
borderColor: string;
|
789
|
+
paddingLeft: string;
|
790
|
+
color: string;
|
665
791
|
borderRadius: string;
|
666
|
-
|
667
|
-
height: number;
|
668
|
-
my: string;
|
669
|
-
overflow: string;
|
670
|
-
alignItems: string;
|
671
|
-
'&.is-focused, &:focus': {
|
672
|
-
boxShadow: string;
|
792
|
+
'&.is-focused': {
|
673
793
|
outline: string;
|
794
|
+
outlineColor: string;
|
795
|
+
outlineOffset: string;
|
674
796
|
};
|
675
|
-
|
797
|
+
'&.is-hovered': {
|
676
798
|
backgroundColor: string;
|
677
|
-
padding: string;
|
678
|
-
height: string;
|
679
|
-
width: string;
|
680
|
-
overflowX: string;
|
681
|
-
overflowY: string;
|
682
|
-
fontSize: string;
|
683
|
-
'& .token-line': {
|
684
|
-
display: string;
|
685
|
-
alignItems: string;
|
686
|
-
'& .token': {
|
687
|
-
whiteSpace: string;
|
688
|
-
wordBreak: string;
|
689
|
-
};
|
690
|
-
};
|
691
|
-
fontFamily: string;
|
692
|
-
lineHeight: string;
|
693
799
|
};
|
694
|
-
'&.
|
695
|
-
|
696
|
-
|
697
|
-
};
|
800
|
+
'&.is-pressed': {
|
801
|
+
backgroundColor: string;
|
802
|
+
color: string;
|
698
803
|
};
|
699
|
-
'&.
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
'& .token-line:first-of-type *': {
|
704
|
-
pt: string;
|
705
|
-
};
|
706
|
-
'& .token-line': {
|
707
|
-
display: string;
|
708
|
-
'& .token': {
|
709
|
-
whiteSpace: string;
|
710
|
-
};
|
711
|
-
};
|
712
|
-
};
|
804
|
+
'&.is-selected': {
|
805
|
+
bg: string;
|
806
|
+
boxShadow: string;
|
807
|
+
color: string;
|
713
808
|
};
|
714
809
|
};
|
715
|
-
|
716
|
-
display: string;
|
717
|
-
userSelect: string;
|
718
|
-
px: string;
|
719
|
-
m: string;
|
720
|
-
bg: string;
|
721
|
-
minWidth: number;
|
810
|
+
subtitle: {
|
722
811
|
color: string;
|
723
|
-
lineHeight: string;
|
724
812
|
};
|
725
|
-
|
813
|
+
headerText: {
|
726
814
|
color: string;
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
lineHeight: string;
|
815
|
+
ml: string;
|
816
|
+
'.is-selected &': {
|
817
|
+
color: string;
|
818
|
+
};
|
732
819
|
};
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
opacity: number;
|
820
|
+
headerNav: {
|
821
|
+
borderRadius: string;
|
822
|
+
color: string;
|
823
|
+
'&.is-hovered': {
|
824
|
+
backgroundColor: string;
|
739
825
|
};
|
740
|
-
'&.
|
741
|
-
|
826
|
+
'&.is-focused': {
|
827
|
+
boxShadow: string;
|
828
|
+
WebkitBoxShadow: string;
|
829
|
+
MozBoxShadow: string;
|
830
|
+
};
|
831
|
+
};
|
832
|
+
item: {
|
833
|
+
px: string;
|
834
|
+
py: string;
|
835
|
+
color: string;
|
836
|
+
borderRadius: string;
|
837
|
+
'&.is-hovered': {
|
838
|
+
backgroundColor: string;
|
839
|
+
};
|
840
|
+
'> div > svg': {
|
841
|
+
fill: string;
|
842
|
+
};
|
843
|
+
'&.is-pressed': {
|
844
|
+
backgroundColor: string;
|
845
|
+
};
|
846
|
+
'&.is-selected': {
|
847
|
+
'> div > svg': {
|
848
|
+
fill: string;
|
849
|
+
};
|
850
|
+
backgroundColor: string;
|
851
|
+
boxShadow: string;
|
852
|
+
};
|
853
|
+
'&.is-focused': {
|
854
|
+
outline: string;
|
855
|
+
outlineColor: string;
|
856
|
+
outlineOffset: string;
|
857
|
+
boxShadow: string;
|
858
|
+
WebkitBoxShadow: string;
|
859
|
+
MozBoxShadow: string;
|
742
860
|
};
|
743
861
|
};
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
862
|
+
itemHeaderContainer: {
|
863
|
+
boxShadow: string;
|
864
|
+
maxWidth: string;
|
865
|
+
px: string;
|
866
|
+
py: string;
|
867
|
+
'&.is-selected': {
|
868
|
+
backgroundColor: string;
|
869
|
+
boxShadow: string;
|
751
870
|
};
|
752
|
-
};
|
753
|
-
};
|
754
|
-
prompt: {
|
755
|
-
container: {
|
756
871
|
backgroundColor: string;
|
757
|
-
|
758
|
-
|
759
|
-
p: string;
|
760
|
-
borderRadius: string;
|
761
|
-
marginLeft: string;
|
762
|
-
};
|
763
|
-
};
|
764
|
-
tabs: {
|
765
|
-
'&.is-horizontal': {
|
766
|
-
gap: string;
|
767
|
-
};
|
768
|
-
};
|
769
|
-
menu: {
|
770
|
-
p: string;
|
771
|
-
border: string;
|
772
|
-
borderColor: string;
|
773
|
-
};
|
774
|
-
iconWrapper: {
|
775
|
-
sm: {
|
776
|
-
'&.is-circle': {
|
777
|
-
borderRadius: string;
|
872
|
+
'> svg': {
|
873
|
+
fill: string;
|
778
874
|
};
|
779
|
-
|
780
|
-
|
781
|
-
minWidth: string;
|
782
|
-
height: string;
|
783
|
-
width: string;
|
784
|
-
p: string;
|
785
|
-
};
|
786
|
-
md: {
|
787
|
-
'&.is-circle': {
|
788
|
-
borderRadius: string;
|
875
|
+
'> div > svg': {
|
876
|
+
fill: string;
|
789
877
|
};
|
790
|
-
borderRadius: string;
|
791
|
-
minHeight: string;
|
792
|
-
minWidth: string;
|
793
|
-
height: string;
|
794
|
-
width: string;
|
795
|
-
p: string;
|
796
878
|
};
|
797
|
-
|
798
|
-
|
799
|
-
borderRadius: string;
|
800
|
-
};
|
801
|
-
borderRadius: string;
|
802
|
-
minHeight: string;
|
803
|
-
minWidth: string;
|
804
|
-
height: string;
|
805
|
-
width: string;
|
806
|
-
p: string;
|
879
|
+
navBarItemBody: {
|
880
|
+
mb: string;
|
807
881
|
};
|
808
882
|
};
|
809
883
|
overlayPanel: {
|
810
884
|
container: {
|
811
885
|
backgroundColor: string;
|
812
|
-
|
886
|
+
borderColor: string;
|
813
887
|
};
|
814
888
|
aiPanelContainer: {
|
815
889
|
backgroundColor: string;
|
@@ -849,20 +923,62 @@ declare const _default: {
|
|
849
923
|
backgroundColor: string;
|
850
924
|
};
|
851
925
|
};
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
flexDirection: string;
|
926
|
+
panelHeader: {
|
927
|
+
container: {
|
928
|
+
bg: string;
|
929
|
+
border: string;
|
930
|
+
minHeight: number;
|
931
|
+
maxHeight: number;
|
859
932
|
};
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
933
|
+
controls: {
|
934
|
+
alignSelf: string;
|
935
|
+
pt: string;
|
936
|
+
};
|
937
|
+
wrapper: {
|
864
938
|
mr: string;
|
865
|
-
|
939
|
+
};
|
940
|
+
};
|
941
|
+
popoverMenu: {
|
942
|
+
container: {
|
943
|
+
transition: string;
|
944
|
+
'&.animate': {
|
945
|
+
opacity: number;
|
946
|
+
};
|
947
|
+
'&.animate.is-mounted.is-transitioning': {
|
948
|
+
opacity: string;
|
949
|
+
};
|
950
|
+
};
|
951
|
+
arrow: {
|
952
|
+
color: string;
|
953
|
+
'&:before': {
|
954
|
+
content: string;
|
955
|
+
position: string;
|
956
|
+
borderColor: string;
|
957
|
+
borderStyle: string;
|
958
|
+
};
|
959
|
+
};
|
960
|
+
};
|
961
|
+
progressBar: {
|
962
|
+
transition: string;
|
963
|
+
container: {
|
964
|
+
backgroundColor: string;
|
965
|
+
borderRadius: string;
|
966
|
+
height: string;
|
967
|
+
};
|
968
|
+
percentageBar: {
|
969
|
+
backgroundColor: string;
|
970
|
+
borderRadius: string;
|
971
|
+
height: string;
|
972
|
+
};
|
973
|
+
};
|
974
|
+
prompt: {
|
975
|
+
container: {
|
976
|
+
backgroundColor: string;
|
977
|
+
maxWidth: string;
|
978
|
+
width: string;
|
979
|
+
p: string;
|
980
|
+
borderRadius: string;
|
981
|
+
marginLeft: string;
|
866
982
|
};
|
867
983
|
};
|
868
984
|
response: {
|
@@ -936,6 +1052,82 @@ declare const _default: {
|
|
936
1052
|
flexDirection: string;
|
937
1053
|
};
|
938
1054
|
};
|
1055
|
+
rockerButton: {
|
1056
|
+
innerContainer: {
|
1057
|
+
boxShadow: string;
|
1058
|
+
backgroundColor: string;
|
1059
|
+
borderRadius: string;
|
1060
|
+
padding: number;
|
1061
|
+
border: string;
|
1062
|
+
};
|
1063
|
+
thumbSwitch: {
|
1064
|
+
textTransform: string;
|
1065
|
+
backgroundColor: string;
|
1066
|
+
padding: string;
|
1067
|
+
height: string;
|
1068
|
+
color: string;
|
1069
|
+
border: string;
|
1070
|
+
borderColor: string;
|
1071
|
+
borderRadius: number;
|
1072
|
+
'&:not(:last-of-type)': {
|
1073
|
+
borderRight: string;
|
1074
|
+
};
|
1075
|
+
'&:first-of-type': {
|
1076
|
+
borderTopLeftRadius: string;
|
1077
|
+
borderBottomLeftRadius: string;
|
1078
|
+
};
|
1079
|
+
'&:last-of-type': {
|
1080
|
+
borderTopRightRadius: string;
|
1081
|
+
borderBottomRightRadius: string;
|
1082
|
+
};
|
1083
|
+
'&.is-selected': {
|
1084
|
+
color: string;
|
1085
|
+
backgroundColor: string;
|
1086
|
+
'& > div.status-icon': {
|
1087
|
+
bg: string;
|
1088
|
+
'& > svg': {
|
1089
|
+
path: {
|
1090
|
+
fill: string;
|
1091
|
+
};
|
1092
|
+
};
|
1093
|
+
};
|
1094
|
+
};
|
1095
|
+
'&.is-hovered': {
|
1096
|
+
borderColor: string;
|
1097
|
+
backgroundColor: string;
|
1098
|
+
color: string;
|
1099
|
+
};
|
1100
|
+
'&.is-pressed': {
|
1101
|
+
borderColor: string;
|
1102
|
+
backgroundColor: string;
|
1103
|
+
color: string;
|
1104
|
+
};
|
1105
|
+
'&.is-focused': {
|
1106
|
+
position: string;
|
1107
|
+
zIndex: string;
|
1108
|
+
outline: string;
|
1109
|
+
outlineColor: string;
|
1110
|
+
outlineOffset: string;
|
1111
|
+
};
|
1112
|
+
};
|
1113
|
+
};
|
1114
|
+
separator: {
|
1115
|
+
base: {
|
1116
|
+
bg: string;
|
1117
|
+
'&.is-vertical': {
|
1118
|
+
m: string;
|
1119
|
+
};
|
1120
|
+
};
|
1121
|
+
navBarSeparator: {
|
1122
|
+
my: string;
|
1123
|
+
mx: string;
|
1124
|
+
maxWidth: string;
|
1125
|
+
backgroundColor: string;
|
1126
|
+
};
|
1127
|
+
navBarSubtitleSeparator: {
|
1128
|
+
backgroundColor: string;
|
1129
|
+
};
|
1130
|
+
};
|
939
1131
|
skeleton: {
|
940
1132
|
base: {
|
941
1133
|
backgroundColor: string;
|
@@ -1043,140 +1235,167 @@ declare const _default: {
|
|
1043
1235
|
};
|
1044
1236
|
};
|
1045
1237
|
};
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1051
|
-
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
padding: string;
|
1058
|
-
height: string;
|
1059
|
-
color: string;
|
1060
|
-
border: string;
|
1061
|
-
borderColor: string;
|
1062
|
-
borderRadius: number;
|
1063
|
-
'&:not(:last-of-type)': {
|
1064
|
-
borderRight: string;
|
1065
|
-
};
|
1066
|
-
'&:first-of-type': {
|
1067
|
-
borderTopLeftRadius: string;
|
1068
|
-
borderBottomLeftRadius: string;
|
1069
|
-
};
|
1070
|
-
'&:last-of-type': {
|
1071
|
-
borderTopRightRadius: string;
|
1072
|
-
borderBottomRightRadius: string;
|
1073
|
-
};
|
1074
|
-
'&.is-selected': {
|
1075
|
-
color: string;
|
1076
|
-
backgroundColor: string;
|
1077
|
-
'& > div.status-icon': {
|
1078
|
-
bg: string;
|
1079
|
-
'& > svg': {
|
1080
|
-
path: {
|
1081
|
-
fill: string;
|
1082
|
-
};
|
1083
|
-
};
|
1084
|
-
};
|
1238
|
+
stepper: {
|
1239
|
+
tab: {
|
1240
|
+
mr: string;
|
1241
|
+
};
|
1242
|
+
line: {
|
1243
|
+
mr: string;
|
1244
|
+
borderBottomWidth: string;
|
1245
|
+
borderBottomColor: string;
|
1246
|
+
'&.is-inactive': {
|
1247
|
+
borderBottomStyle: string;
|
1248
|
+
borderBottomColor: string;
|
1085
1249
|
};
|
1086
|
-
|
1087
|
-
|
1250
|
+
};
|
1251
|
+
step: {
|
1252
|
+
active: {
|
1253
|
+
'&:before': {
|
1254
|
+
content: string;
|
1255
|
+
height: string;
|
1256
|
+
width: string;
|
1257
|
+
top: number;
|
1258
|
+
left: number;
|
1259
|
+
position: string;
|
1260
|
+
borderRadius: string;
|
1261
|
+
borderStyle: string;
|
1262
|
+
borderColor: string;
|
1263
|
+
borderWidth: string;
|
1264
|
+
};
|
1265
|
+
borderWidth: string;
|
1266
|
+
width: number;
|
1267
|
+
height: number;
|
1268
|
+
minWidth: number;
|
1269
|
+
minHeight: number;
|
1270
|
+
position: string;
|
1271
|
+
fontWeight: number;
|
1272
|
+
fontSize: string;
|
1088
1273
|
backgroundColor: string;
|
1274
|
+
borderColor: string;
|
1089
1275
|
color: string;
|
1090
1276
|
};
|
1091
|
-
|
1277
|
+
completed: {
|
1092
1278
|
borderColor: string;
|
1093
|
-
|
1094
|
-
|
1279
|
+
borderWidth: string;
|
1280
|
+
width: number;
|
1281
|
+
height: number;
|
1282
|
+
minWidth: number;
|
1283
|
+
minHeight: number;
|
1284
|
+
position: string;
|
1285
|
+
fontWeight: number;
|
1286
|
+
fontSize: string;
|
1095
1287
|
};
|
1096
|
-
|
1288
|
+
inactive: {
|
1289
|
+
borderWidth: string;
|
1290
|
+
width: number;
|
1291
|
+
height: number;
|
1292
|
+
minWidth: number;
|
1293
|
+
minHeight: number;
|
1097
1294
|
position: string;
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1295
|
+
fontWeight: number;
|
1296
|
+
fontSize: string;
|
1297
|
+
backgroundColor: string;
|
1298
|
+
borderColor: string;
|
1299
|
+
color: string;
|
1102
1300
|
};
|
1103
1301
|
};
|
1104
1302
|
};
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1108
|
-
|
1109
|
-
|
1110
|
-
fontFamily: string;
|
1303
|
+
suggestion: {
|
1304
|
+
iconContainer: {
|
1305
|
+
ml: string;
|
1306
|
+
mr: string;
|
1307
|
+
minWidth: string;
|
1111
1308
|
};
|
1112
1309
|
};
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1116
|
-
|
1117
|
-
|
1118
|
-
};
|
1119
|
-
wrapper: {
|
1120
|
-
px: string[];
|
1121
|
-
py: string;
|
1122
|
-
maxWidth: string;
|
1123
|
-
mx: string;
|
1124
|
-
width: string;
|
1125
|
-
flexDirection: string[];
|
1126
|
-
justifyContent: string;
|
1127
|
-
alignItems: string;
|
1128
|
-
};
|
1129
|
-
footerLeftSection: {
|
1130
|
-
columnGap: string;
|
1131
|
-
flexDirection: string[];
|
1132
|
-
};
|
1133
|
-
footerNav: {
|
1134
|
-
listStyle: string;
|
1135
|
-
margin: string;
|
1136
|
-
padding: string;
|
1137
|
-
alignItems: string;
|
1138
|
-
justifyContent: string[];
|
1310
|
+
suggestions: {
|
1311
|
+
justifyContent: string;
|
1312
|
+
gap: string;
|
1313
|
+
flexDirection: string;
|
1314
|
+
'&.is-full-screen': {
|
1139
1315
|
gap: string;
|
1140
|
-
|
1141
|
-
my: string;
|
1142
|
-
};
|
1143
|
-
};
|
1144
|
-
loader: {
|
1145
|
-
withinListView: {
|
1146
|
-
color: string;
|
1316
|
+
flexDirection: string;
|
1147
1317
|
};
|
1148
1318
|
};
|
1149
|
-
|
1319
|
+
statusIcon: {
|
1150
1320
|
base: {
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
borderLeft: string;
|
1157
|
-
borderLeftColor: string;
|
1158
|
-
borderRadius: string;
|
1159
|
-
alignItems: string;
|
1160
|
-
color: string;
|
1161
|
-
'&.is-success, > .is-success': {
|
1162
|
-
borderColor: string;
|
1163
|
-
borderLeftColor: string;
|
1321
|
+
'&.is-default': {
|
1322
|
+
bg: string;
|
1323
|
+
path: {
|
1324
|
+
fill: string;
|
1325
|
+
};
|
1164
1326
|
};
|
1165
|
-
'&.is-
|
1166
|
-
|
1167
|
-
|
1327
|
+
'&.is-critical': {
|
1328
|
+
bg: string;
|
1329
|
+
path: {
|
1330
|
+
fill: string;
|
1331
|
+
};
|
1168
1332
|
};
|
1169
|
-
'&.is-
|
1170
|
-
|
1171
|
-
|
1333
|
+
'&.is-warning': {
|
1334
|
+
bg: string;
|
1335
|
+
path: {
|
1336
|
+
fill: string;
|
1337
|
+
};
|
1338
|
+
};
|
1339
|
+
'&.is-info': {
|
1340
|
+
bg: string;
|
1341
|
+
path: {
|
1342
|
+
fill: string;
|
1343
|
+
};
|
1344
|
+
};
|
1345
|
+
'&.is-major': {
|
1346
|
+
bg: string;
|
1347
|
+
path: {
|
1348
|
+
fill: string;
|
1349
|
+
};
|
1350
|
+
};
|
1351
|
+
'&.is-minor': {
|
1352
|
+
bg: string;
|
1353
|
+
path: {
|
1354
|
+
fill: string;
|
1355
|
+
};
|
1356
|
+
};
|
1357
|
+
'&.is-warning-neutral': {
|
1358
|
+
bg: string;
|
1359
|
+
path: {
|
1360
|
+
fill: string;
|
1361
|
+
};
|
1362
|
+
};
|
1363
|
+
'&.is-fatal': {
|
1364
|
+
bg: string;
|
1365
|
+
path: {
|
1366
|
+
fill: string;
|
1367
|
+
};
|
1368
|
+
};
|
1369
|
+
'&.is-selected.is-selected': {
|
1370
|
+
bg: string;
|
1371
|
+
'& > svg': {
|
1372
|
+
path: {
|
1373
|
+
fill: string;
|
1374
|
+
};
|
1375
|
+
};
|
1172
1376
|
};
|
1173
1377
|
};
|
1174
|
-
|
1378
|
+
};
|
1379
|
+
tab: {
|
1380
|
+
borderRadius: string;
|
1381
|
+
pt: string;
|
1382
|
+
'& > span': {
|
1383
|
+
px: string;
|
1384
|
+
fontSize: string;
|
1385
|
+
};
|
1386
|
+
'&.is-focused': {
|
1387
|
+
boxShadow: string;
|
1388
|
+
outline: string;
|
1389
|
+
outlineColor: string;
|
1390
|
+
outlineOffset: string;
|
1391
|
+
'& > span': {
|
1392
|
+
outline: string;
|
1393
|
+
};
|
1394
|
+
};
|
1395
|
+
'& > div': {
|
1396
|
+
borderBottom: string;
|
1397
|
+
borderBottomColor: string;
|
1175
1398
|
ml: string;
|
1176
|
-
mr: string;
|
1177
|
-
minWidth: string;
|
1178
|
-
width: string;
|
1179
|
-
height: string;
|
1180
1399
|
};
|
1181
1400
|
};
|
1182
1401
|
table: {
|
@@ -1323,79 +1542,17 @@ declare const _default: {
|
|
1323
1542
|
};
|
1324
1543
|
};
|
1325
1544
|
};
|
1326
|
-
|
1327
|
-
|
1328
|
-
|
1329
|
-
bg: string;
|
1330
|
-
path: {
|
1331
|
-
fill: string;
|
1332
|
-
};
|
1333
|
-
};
|
1334
|
-
'&.is-critical': {
|
1335
|
-
bg: string;
|
1336
|
-
path: {
|
1337
|
-
fill: string;
|
1338
|
-
};
|
1339
|
-
};
|
1340
|
-
'&.is-warning': {
|
1341
|
-
bg: string;
|
1342
|
-
path: {
|
1343
|
-
fill: string;
|
1344
|
-
};
|
1345
|
-
};
|
1346
|
-
'&.is-info': {
|
1347
|
-
bg: string;
|
1348
|
-
path: {
|
1349
|
-
fill: string;
|
1350
|
-
};
|
1351
|
-
};
|
1352
|
-
'&.is-major': {
|
1353
|
-
bg: string;
|
1354
|
-
path: {
|
1355
|
-
fill: string;
|
1356
|
-
};
|
1357
|
-
};
|
1358
|
-
'&.is-minor': {
|
1359
|
-
bg: string;
|
1360
|
-
path: {
|
1361
|
-
fill: string;
|
1362
|
-
};
|
1363
|
-
};
|
1364
|
-
'&.is-warning-neutral': {
|
1365
|
-
bg: string;
|
1366
|
-
path: {
|
1367
|
-
fill: string;
|
1368
|
-
};
|
1369
|
-
};
|
1370
|
-
'&.is-fatal': {
|
1371
|
-
bg: string;
|
1372
|
-
path: {
|
1373
|
-
fill: string;
|
1374
|
-
};
|
1375
|
-
};
|
1376
|
-
'&.is-selected.is-selected': {
|
1377
|
-
bg: string;
|
1378
|
-
'& > svg': {
|
1379
|
-
path: {
|
1380
|
-
fill: string;
|
1381
|
-
};
|
1382
|
-
};
|
1383
|
-
};
|
1545
|
+
tabs: {
|
1546
|
+
'&.is-horizontal': {
|
1547
|
+
gap: string;
|
1384
1548
|
};
|
1385
1549
|
};
|
1386
|
-
|
1387
|
-
|
1388
|
-
|
1389
|
-
|
1390
|
-
|
1391
|
-
|
1392
|
-
fill: string;
|
1393
|
-
stroke: string;
|
1394
|
-
};
|
1395
|
-
};
|
1396
|
-
'&.is-focused': {
|
1397
|
-
boxShadow: string;
|
1398
|
-
};
|
1550
|
+
tooltip: {
|
1551
|
+
container: {
|
1552
|
+
backgroundColor: string;
|
1553
|
+
borderRadius: string;
|
1554
|
+
fontSize: string;
|
1555
|
+
fontFamily: string;
|
1399
1556
|
};
|
1400
1557
|
};
|
1401
1558
|
};
|