@dxc-technology/halstack-react 0.0.0-ff5083e → 0.0.0-ff6c8bf
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/BackgroundColorContext.d.ts +1 -10
- package/BackgroundColorContext.js +5 -22
- package/HalstackContext.d.ts +1240 -6
- package/HalstackContext.js +126 -111
- package/README.md +47 -0
- package/accordion/Accordion.accessibility.test.js +71 -0
- package/accordion/Accordion.d.ts +1 -1
- package/accordion/Accordion.js +105 -160
- package/accordion/Accordion.stories.tsx +82 -148
- package/accordion/Accordion.test.js +25 -41
- package/accordion/types.d.ts +6 -17
- package/accordion-group/AccordionGroup.accessibility.test.js +88 -0
- package/accordion-group/AccordionGroup.d.ts +2 -2
- package/accordion-group/AccordionGroup.js +31 -98
- package/accordion-group/AccordionGroup.stories.tsx +94 -67
- package/accordion-group/AccordionGroup.test.js +52 -105
- package/accordion-group/AccordionGroupAccordion.d.ts +4 -0
- package/accordion-group/AccordionGroupAccordion.js +31 -0
- package/accordion-group/AccordionGroupContext.d.ts +3 -0
- package/accordion-group/AccordionGroupContext.js +8 -0
- package/accordion-group/types.d.ts +12 -17
- package/action-icon/ActionIcon.accessibility.test.js +63 -0
- package/action-icon/ActionIcon.d.ts +4 -0
- package/action-icon/ActionIcon.js +48 -0
- package/action-icon/ActionIcon.stories.tsx +41 -0
- package/action-icon/ActionIcon.test.js +64 -0
- package/action-icon/types.d.ts +26 -0
- package/alert/Alert.accessibility.test.js +95 -0
- package/alert/Alert.js +37 -127
- package/alert/Alert.stories.tsx +28 -0
- package/alert/Alert.test.js +29 -46
- package/alert/types.d.ts +5 -5
- package/badge/Badge.accessibility.test.js +129 -0
- package/badge/Badge.d.ts +1 -1
- package/badge/Badge.js +142 -42
- package/badge/Badge.stories.tsx +210 -0
- package/badge/Badge.test.js +30 -0
- package/badge/types.d.ts +52 -3
- package/bleed/Bleed.js +13 -21
- package/bleed/Bleed.stories.tsx +64 -63
- package/bleed/types.d.ts +2 -2
- package/box/Box.accessibility.test.js +33 -0
- package/box/Box.d.ts +1 -1
- package/box/Box.js +19 -60
- package/box/Box.stories.tsx +38 -51
- package/box/Box.test.js +2 -7
- package/box/types.d.ts +3 -14
- package/breadcrumbs/Breadcrumbs.accessibility.test.d.ts +1 -0
- package/breadcrumbs/Breadcrumbs.accessibility.test.js +96 -0
- package/breadcrumbs/Breadcrumbs.d.ts +4 -0
- package/breadcrumbs/Breadcrumbs.js +79 -0
- package/breadcrumbs/Breadcrumbs.stories.tsx +194 -0
- package/breadcrumbs/Breadcrumbs.test.d.ts +1 -0
- package/breadcrumbs/Breadcrumbs.test.js +169 -0
- package/breadcrumbs/Item.d.ts +4 -0
- package/breadcrumbs/Item.js +52 -0
- package/breadcrumbs/dropdownTheme.d.ts +53 -0
- package/breadcrumbs/dropdownTheme.js +62 -0
- package/breadcrumbs/types.d.ts +16 -0
- package/bulleted-list/BulletedList.accessibility.test.js +119 -0
- package/bulleted-list/BulletedList.js +35 -63
- package/bulleted-list/BulletedList.stories.tsx +18 -106
- package/bulleted-list/types.d.ts +32 -5
- package/button/Button.accessibility.test.js +127 -0
- package/button/Button.d.ts +1 -1
- package/button/Button.js +64 -117
- package/button/Button.stories.tsx +151 -100
- package/button/Button.test.js +20 -17
- package/button/types.d.ts +12 -8
- package/card/Card.accessibility.test.js +36 -0
- package/card/Card.d.ts +1 -1
- package/card/Card.js +49 -89
- package/card/Card.stories.tsx +12 -42
- package/card/Card.test.js +11 -22
- package/card/types.d.ts +6 -11
- package/checkbox/Checkbox.accessibility.test.js +87 -0
- package/checkbox/Checkbox.d.ts +2 -2
- package/checkbox/Checkbox.js +139 -181
- package/checkbox/Checkbox.stories.tsx +128 -94
- package/checkbox/Checkbox.test.js +160 -39
- package/checkbox/types.d.ts +11 -3
- package/chip/Chip.accessibility.test.js +67 -0
- package/chip/Chip.js +45 -80
- package/chip/Chip.stories.tsx +107 -27
- package/chip/Chip.test.js +18 -33
- package/chip/types.d.ts +4 -4
- package/common/coreTokens.d.ts +237 -0
- package/common/coreTokens.js +184 -0
- package/common/utils.d.ts +1 -0
- package/common/utils.js +6 -12
- package/common/variables.d.ts +1392 -0
- package/common/variables.js +984 -1206
- package/container/Container.d.ts +4 -0
- package/container/Container.js +194 -0
- package/container/Container.stories.tsx +214 -0
- package/container/types.d.ts +74 -0
- package/contextual-menu/ContextualMenu.accessibility.test.js +97 -0
- package/contextual-menu/ContextualMenu.d.ts +5 -0
- package/contextual-menu/ContextualMenu.js +88 -0
- package/contextual-menu/ContextualMenu.stories.tsx +232 -0
- package/contextual-menu/ContextualMenu.test.js +205 -0
- package/contextual-menu/GroupItem.d.ts +4 -0
- package/contextual-menu/GroupItem.js +67 -0
- package/contextual-menu/ItemAction.d.ts +4 -0
- package/contextual-menu/ItemAction.js +51 -0
- package/contextual-menu/MenuItem.d.ts +4 -0
- package/contextual-menu/MenuItem.js +29 -0
- package/contextual-menu/SingleItem.d.ts +4 -0
- package/contextual-menu/SingleItem.js +38 -0
- package/contextual-menu/types.d.ts +58 -0
- package/date-input/Calendar.d.ts +4 -0
- package/date-input/Calendar.js +214 -0
- package/date-input/DateInput.accessibility.test.js +228 -0
- package/date-input/DateInput.js +149 -299
- package/date-input/DateInput.stories.tsx +210 -56
- package/date-input/DateInput.test.js +700 -371
- package/date-input/DatePicker.d.ts +4 -0
- package/date-input/DatePicker.js +121 -0
- package/date-input/YearPicker.d.ts +4 -0
- package/date-input/YearPicker.js +100 -0
- package/date-input/types.d.ts +72 -15
- package/dialog/Dialog.accessibility.test.js +69 -0
- package/dialog/Dialog.d.ts +1 -1
- package/dialog/Dialog.js +61 -106
- package/dialog/Dialog.stories.tsx +326 -167
- package/dialog/Dialog.test.js +287 -20
- package/dialog/types.d.ts +18 -25
- package/divider/Divider.accessibility.test.js +33 -0
- package/divider/Divider.d.ts +4 -0
- package/divider/Divider.js +36 -0
- package/divider/Divider.stories.tsx +223 -0
- package/divider/Divider.test.js +38 -0
- package/divider/types.d.ts +21 -0
- package/dropdown/Dropdown.accessibility.test.js +180 -0
- package/dropdown/Dropdown.d.ts +1 -1
- package/dropdown/Dropdown.js +233 -303
- package/dropdown/Dropdown.stories.tsx +235 -57
- package/dropdown/Dropdown.test.js +575 -165
- package/dropdown/DropdownMenu.d.ts +4 -0
- package/dropdown/DropdownMenu.js +63 -0
- package/dropdown/DropdownMenuItem.d.ts +4 -0
- package/dropdown/DropdownMenuItem.js +71 -0
- package/dropdown/types.d.ts +35 -19
- package/file-input/FileInput.accessibility.test.js +160 -0
- package/file-input/FileInput.d.ts +2 -2
- package/file-input/FileInput.js +241 -391
- package/file-input/FileInput.stories.tsx +123 -12
- package/file-input/FileInput.test.js +306 -367
- package/file-input/FileItem.d.ts +4 -14
- package/file-input/FileItem.js +56 -117
- package/file-input/types.d.ts +25 -8
- package/flex/Flex.d.ts +4 -0
- package/flex/Flex.js +57 -0
- package/flex/Flex.stories.tsx +112 -0
- package/flex/types.d.ts +97 -0
- package/footer/Footer.accessibility.test.js +125 -0
- package/footer/Footer.d.ts +1 -1
- package/footer/Footer.js +73 -118
- package/footer/Footer.stories.tsx +99 -21
- package/footer/Footer.test.js +33 -57
- package/footer/Icons.d.ts +3 -2
- package/footer/Icons.js +54 -23
- package/footer/types.d.ts +26 -27
- package/grid/Grid.d.ts +7 -0
- package/grid/Grid.js +76 -0
- package/grid/Grid.stories.tsx +219 -0
- package/grid/types.d.ts +115 -0
- package/grid/types.js +5 -0
- package/header/Header.accessibility.test.js +93 -0
- package/header/Header.d.ts +4 -3
- package/header/Header.js +90 -183
- package/header/Header.stories.tsx +133 -38
- package/header/Header.test.js +13 -26
- package/header/Icons.d.ts +2 -2
- package/header/Icons.js +5 -15
- package/header/types.d.ts +7 -21
- package/heading/Heading.accessibility.test.js +33 -0
- package/heading/Heading.js +10 -32
- package/heading/Heading.test.js +71 -88
- package/heading/types.d.ts +7 -7
- package/icon/Icon.accessibility.test.js +30 -0
- package/icon/Icon.d.ts +4 -0
- package/icon/Icon.js +33 -0
- package/icon/Icon.stories.tsx +28 -0
- package/icon/types.d.ts +4 -0
- package/icon/types.js +5 -0
- package/image/Image.accessibility.test.js +56 -0
- package/image/Image.d.ts +4 -0
- package/image/Image.js +70 -0
- package/image/Image.stories.tsx +129 -0
- package/image/types.d.ts +72 -0
- package/image/types.js +5 -0
- package/inset/Inset.js +13 -21
- package/inset/Inset.stories.tsx +5 -4
- package/inset/types.d.ts +2 -2
- package/layout/ApplicationLayout.d.ts +15 -6
- package/layout/ApplicationLayout.js +57 -119
- package/layout/ApplicationLayout.stories.tsx +81 -45
- package/layout/Icons.d.ts +7 -5
- package/layout/Icons.js +41 -59
- package/layout/types.d.ts +21 -32
- package/link/Link.accessibility.test.js +108 -0
- package/link/Link.js +32 -51
- package/link/Link.stories.tsx +76 -9
- package/link/Link.test.js +24 -44
- package/link/types.d.ts +14 -14
- package/main.d.ts +14 -12
- package/main.js +51 -88
- package/nav-tabs/NavTabs.accessibility.test.js +44 -0
- package/nav-tabs/NavTabs.d.ts +7 -0
- package/{tabs-nav → nav-tabs}/NavTabs.js +30 -62
- package/nav-tabs/NavTabs.stories.tsx +279 -0
- package/nav-tabs/NavTabs.test.js +77 -0
- package/nav-tabs/NavTabsContext.d.ts +3 -0
- package/nav-tabs/NavTabsContext.js +8 -0
- package/nav-tabs/Tab.js +117 -0
- package/{tabs-nav → nav-tabs}/types.d.ts +15 -16
- package/nav-tabs/types.js +5 -0
- package/number-input/NumberInput.accessibility.test.js +228 -0
- package/number-input/NumberInput.js +46 -36
- package/number-input/NumberInput.stories.tsx +42 -26
- package/number-input/NumberInput.test.js +860 -377
- package/number-input/NumberInputContext.d.ts +3 -4
- package/number-input/NumberInputContext.js +3 -14
- package/number-input/types.d.ts +17 -5
- package/package.json +51 -51
- package/paginator/Paginator.accessibility.test.js +79 -0
- package/paginator/Paginator.js +35 -68
- package/paginator/Paginator.stories.tsx +24 -0
- package/paginator/Paginator.test.js +280 -211
- package/paginator/types.d.ts +3 -3
- package/paragraph/Paragraph.accessibility.test.js +28 -0
- package/paragraph/Paragraph.d.ts +3 -4
- package/paragraph/Paragraph.js +7 -23
- package/paragraph/Paragraph.stories.tsx +1 -18
- package/password-input/PasswordInput.accessibility.test.js +153 -0
- package/password-input/PasswordInput.js +58 -127
- package/password-input/PasswordInput.stories.tsx +1 -33
- package/password-input/PasswordInput.test.js +160 -142
- package/password-input/types.d.ts +8 -7
- package/progress-bar/ProgressBar.accessibility.test.js +35 -0
- package/progress-bar/ProgressBar.js +68 -92
- package/progress-bar/{ProgressBar.stories.jsx → ProgressBar.stories.tsx} +39 -4
- package/progress-bar/ProgressBar.test.js +72 -44
- package/progress-bar/types.d.ts +3 -3
- package/quick-nav/QuickNav.accessibility.test.js +57 -0
- package/quick-nav/QuickNav.js +24 -42
- package/quick-nav/QuickNav.stories.tsx +146 -27
- package/quick-nav/types.d.ts +10 -10
- package/radio-group/Radio.d.ts +1 -1
- package/radio-group/Radio.js +59 -76
- package/radio-group/RadioGroup.accessibility.test.js +97 -0
- package/radio-group/RadioGroup.js +68 -114
- package/radio-group/RadioGroup.stories.tsx +132 -18
- package/radio-group/RadioGroup.test.js +518 -457
- package/radio-group/types.d.ts +10 -10
- package/resultset-table/Icons.d.ts +7 -0
- package/resultset-table/Icons.js +47 -0
- package/resultset-table/ResultsetTable.accessibility.test.js +285 -0
- package/resultset-table/ResultsetTable.d.ts +7 -0
- package/resultset-table/ResultsetTable.js +171 -0
- package/{resultsetTable → resultset-table}/ResultsetTable.stories.tsx +168 -30
- package/resultset-table/ResultsetTable.test.js +381 -0
- package/{resultsetTable → resultset-table}/types.d.ts +44 -11
- package/resultset-table/types.js +5 -0
- package/select/Listbox.d.ts +1 -1
- package/select/Listbox.js +68 -65
- package/select/Option.js +35 -56
- package/select/Select.accessibility.test.js +228 -0
- package/select/Select.js +171 -214
- package/select/Select.stories.tsx +515 -190
- package/select/Select.test.js +1934 -1789
- package/select/types.d.ts +17 -21
- package/sidenav/Sidenav.accessibility.test.js +59 -0
- package/sidenav/Sidenav.d.ts +6 -5
- package/sidenav/Sidenav.js +132 -78
- package/sidenav/Sidenav.stories.tsx +246 -151
- package/sidenav/Sidenav.test.js +26 -45
- package/{layout → sidenav}/SidenavContext.d.ts +1 -1
- package/{layout → sidenav}/SidenavContext.js +3 -9
- package/sidenav/types.d.ts +52 -26
- package/slider/Slider.accessibility.test.js +104 -0
- package/slider/Slider.d.ts +2 -2
- package/slider/Slider.js +149 -181
- package/slider/Slider.stories.tsx +64 -61
- package/slider/Slider.test.js +185 -81
- package/slider/types.d.ts +7 -3
- package/spinner/Spinner.accessibility.test.js +96 -0
- package/spinner/Spinner.js +34 -74
- package/spinner/{Spinner.stories.jsx → Spinner.stories.tsx} +53 -27
- package/spinner/Spinner.test.js +26 -35
- package/spinner/types.d.ts +3 -3
- package/status-light/StatusLight.accessibility.test.js +157 -0
- package/status-light/StatusLight.d.ts +4 -0
- package/status-light/StatusLight.js +51 -0
- package/status-light/StatusLight.stories.tsx +74 -0
- package/status-light/StatusLight.test.js +25 -0
- package/status-light/types.d.ts +17 -0
- package/status-light/types.js +5 -0
- package/switch/Switch.accessibility.test.js +98 -0
- package/switch/Switch.d.ts +2 -2
- package/switch/Switch.js +145 -126
- package/switch/Switch.stories.tsx +49 -60
- package/switch/Switch.test.js +138 -56
- package/switch/types.d.ts +7 -3
- package/table/DropdownTheme.js +62 -0
- package/table/Table.accessibility.test.js +93 -0
- package/table/Table.d.ts +6 -2
- package/table/Table.js +78 -35
- package/table/Table.stories.tsx +663 -0
- package/table/Table.test.js +95 -8
- package/table/types.d.ts +34 -6
- package/tabs/Tab.d.ts +4 -0
- package/tabs/Tab.js +117 -0
- package/tabs/Tabs.accessibility.test.js +56 -0
- package/tabs/Tabs.js +303 -141
- package/tabs/Tabs.stories.tsx +124 -6
- package/tabs/Tabs.test.js +213 -77
- package/tabs/types.d.ts +30 -20
- package/tag/Tag.accessibility.test.js +69 -0
- package/tag/Tag.js +35 -67
- package/tag/Tag.stories.tsx +18 -8
- package/tag/Tag.test.js +18 -37
- package/tag/types.d.ts +9 -9
- package/text-input/Suggestion.js +40 -28
- package/text-input/Suggestions.d.ts +4 -0
- package/text-input/Suggestions.js +94 -0
- package/text-input/TextInput.accessibility.test.js +321 -0
- package/text-input/TextInput.js +316 -515
- package/text-input/TextInput.stories.tsx +276 -276
- package/text-input/TextInput.test.js +1419 -1375
- package/text-input/types.d.ts +43 -16
- package/textarea/Textarea.accessibility.test.js +155 -0
- package/textarea/Textarea.js +71 -113
- package/textarea/Textarea.stories.tsx +174 -0
- package/textarea/Textarea.test.js +152 -183
- package/textarea/types.d.ts +9 -5
- package/toggle-group/ToggleGroup.accessibility.test.js +107 -0
- package/toggle-group/ToggleGroup.d.ts +2 -2
- package/toggle-group/ToggleGroup.js +94 -107
- package/toggle-group/ToggleGroup.stories.tsx +52 -7
- package/toggle-group/ToggleGroup.test.js +69 -88
- package/toggle-group/types.d.ts +28 -19
- package/typography/Typography.accessibility.test.js +339 -0
- package/typography/Typography.d.ts +2 -2
- package/typography/Typography.js +16 -124
- package/typography/Typography.stories.tsx +185 -162
- package/typography/types.d.ts +1 -1
- package/useTheme.d.ts +1144 -1
- package/useTheme.js +2 -9
- package/useTranslatedLabels.d.ts +84 -1
- package/useTranslatedLabels.js +1 -7
- package/utils/BaseTypography.d.ts +21 -0
- package/utils/BaseTypography.js +94 -0
- package/utils/FocusLock.d.ts +13 -0
- package/utils/FocusLock.js +124 -0
- package/wizard/Wizard.accessibility.test.js +55 -0
- package/wizard/Wizard.js +34 -87
- package/wizard/Wizard.stories.tsx +59 -1
- package/wizard/Wizard.test.js +54 -81
- package/wizard/types.d.ts +9 -9
- package/card/ice-cream.jpg +0 -0
- package/common/OpenSans.css +0 -81
- package/common/RequiredComponent.js +0 -32
- package/common/fonts/OpenSans-Bold.ttf +0 -0
- package/common/fonts/OpenSans-BoldItalic.ttf +0 -0
- package/common/fonts/OpenSans-ExtraBold.ttf +0 -0
- package/common/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
- package/common/fonts/OpenSans-Italic.ttf +0 -0
- package/common/fonts/OpenSans-Light.ttf +0 -0
- package/common/fonts/OpenSans-LightItalic.ttf +0 -0
- package/common/fonts/OpenSans-Regular.ttf +0 -0
- package/common/fonts/OpenSans-SemiBold.ttf +0 -0
- package/common/fonts/OpenSans-SemiBoldItalic.ttf +0 -0
- package/number-input/numberInputContextTypes.d.ts +0 -19
- package/paginator/Icons.js +0 -66
- package/resultsetTable/ResultsetTable.d.ts +0 -4
- package/resultsetTable/ResultsetTable.js +0 -254
- package/resultsetTable/ResultsetTable.test.js +0 -306
- package/row/Row.d.ts +0 -3
- package/row/Row.js +0 -127
- package/row/Row.stories.tsx +0 -237
- package/row/types.d.ts +0 -28
- package/select/Icons.d.ts +0 -10
- package/select/Icons.js +0 -93
- package/stack/Stack.d.ts +0 -3
- package/stack/Stack.js +0 -97
- package/stack/Stack.stories.tsx +0 -164
- package/stack/types.d.ts +0 -24
- package/table/Table.stories.jsx +0 -277
- package/tabs-nav/NavTabs.d.ts +0 -8
- package/tabs-nav/NavTabs.stories.tsx +0 -170
- package/tabs-nav/NavTabs.test.js +0 -82
- package/tabs-nav/Tab.js +0 -132
- package/textarea/Textarea.stories.jsx +0 -157
- package/typography/typographyContextTypes.d.ts +0 -16
- /package/{resultsetTable → action-icon}/types.js +0 -0
- /package/{row → breadcrumbs}/types.js +0 -0
- /package/{stack → container}/types.js +0 -0
- /package/{tabs-nav → contextual-menu}/types.js +0 -0
- /package/{number-input/numberInputContextTypes.js → divider/types.js} +0 -0
- /package/{typography/typographyContextTypes.js → flex/types.js} +0 -0
- /package/{tabs-nav → nav-tabs}/Tab.d.ts +0 -0
package/useTheme.d.ts
CHANGED
|
@@ -1,2 +1,1145 @@
|
|
|
1
|
-
declare const useTheme: () =>
|
|
1
|
+
declare const useTheme: () => {
|
|
2
|
+
accordion?: Partial<{
|
|
3
|
+
backgroundColor: string;
|
|
4
|
+
hoverBackgroundColor: string;
|
|
5
|
+
arrowColor: string;
|
|
6
|
+
disabledArrowColor: string;
|
|
7
|
+
assistiveTextFontFamily: string;
|
|
8
|
+
assistiveTextFontSize: string;
|
|
9
|
+
assistiveTextFontWeight: string;
|
|
10
|
+
assistiveTextFontStyle: string;
|
|
11
|
+
assistiveTextLetterSpacing: string;
|
|
12
|
+
assistiveTextFontColor: string;
|
|
13
|
+
disabledAssistiveTextFontColor: string;
|
|
14
|
+
assistiveTextMinWidth: string;
|
|
15
|
+
assistiveTextPaddingRight: string;
|
|
16
|
+
assistiveTextPaddingLeft: string;
|
|
17
|
+
titleLabelFontFamily: string;
|
|
18
|
+
titleLabelFontSize: string;
|
|
19
|
+
titleLabelFontWeight: string;
|
|
20
|
+
titleLabelFontStyle: string;
|
|
21
|
+
titleLabelFontColor: string;
|
|
22
|
+
disabledTitleLabelFontColor: string;
|
|
23
|
+
titleLabelPaddingTop: string;
|
|
24
|
+
titleLabelPaddingBottom: string;
|
|
25
|
+
titleLabelPaddingLeft: string;
|
|
26
|
+
titleLabelPaddingRight: string;
|
|
27
|
+
focusBorderColor: string;
|
|
28
|
+
focusBorderStyle: string;
|
|
29
|
+
focusBorderThickness: string;
|
|
30
|
+
borderRadius: string;
|
|
31
|
+
boxShadowOffsetX: string;
|
|
32
|
+
boxShadowOffsetY: string;
|
|
33
|
+
boxShadowBlur: string;
|
|
34
|
+
boxShadowColor: string;
|
|
35
|
+
iconColor: string;
|
|
36
|
+
disabledIconColor: string;
|
|
37
|
+
iconSize: string;
|
|
38
|
+
iconMarginLeft: string;
|
|
39
|
+
iconMarginRight: string;
|
|
40
|
+
accordionGroupSeparatorBorderColor: string;
|
|
41
|
+
accordionGroupSeparatorBorderThickness: string;
|
|
42
|
+
accordionGroupSeparatorBorderRadius: string;
|
|
43
|
+
accordionGroupSeparatorBorderStyle: string;
|
|
44
|
+
}>;
|
|
45
|
+
alert?: Partial<{
|
|
46
|
+
titleFontFamily: string;
|
|
47
|
+
titleFontColor: string;
|
|
48
|
+
titleFontSize: string;
|
|
49
|
+
titleFontStyle: string;
|
|
50
|
+
titleFontWeight: string;
|
|
51
|
+
titleTextTransform: string;
|
|
52
|
+
titlePaddingRight: string;
|
|
53
|
+
titlePaddingLeft: string;
|
|
54
|
+
inlineTextFontFamily: string;
|
|
55
|
+
inlineTextFontColor: string;
|
|
56
|
+
inlineTextFontSize: string;
|
|
57
|
+
inlineTextFontStyle: string;
|
|
58
|
+
inlineTextFontWeight: string;
|
|
59
|
+
inlineTextPaddingLeft: string;
|
|
60
|
+
inlineTextPaddingRight: string;
|
|
61
|
+
contentPaddingLeft: string;
|
|
62
|
+
contentPaddingRight: string;
|
|
63
|
+
contentPaddingTop: string;
|
|
64
|
+
contentPaddingBottom: string;
|
|
65
|
+
borderRadius: string;
|
|
66
|
+
borderStyle: string;
|
|
67
|
+
borderThickness: string;
|
|
68
|
+
infoBorderColor: string;
|
|
69
|
+
successBorderColor: string;
|
|
70
|
+
warningBorderColor: string;
|
|
71
|
+
errorBorderColor: string;
|
|
72
|
+
iconSize: string;
|
|
73
|
+
iconPaddingLeft: string;
|
|
74
|
+
iconPaddingRight: string;
|
|
75
|
+
infoIconColor: string;
|
|
76
|
+
successIconColor: string;
|
|
77
|
+
warningIconColor: string;
|
|
78
|
+
errorIconColor: string;
|
|
79
|
+
infoBackgroundColor: string;
|
|
80
|
+
successBackgroundColor: string;
|
|
81
|
+
warningBackgroundColor: string;
|
|
82
|
+
errorBackgroundColor: string;
|
|
83
|
+
hoverActionBackgroundColor: string;
|
|
84
|
+
activeActionBackgroundColor: string;
|
|
85
|
+
focusActionBorderColor: string;
|
|
86
|
+
overlayColor: string;
|
|
87
|
+
}>;
|
|
88
|
+
box?: Partial<{
|
|
89
|
+
backgroundColor: string;
|
|
90
|
+
borderRadius: string;
|
|
91
|
+
borderThickness: string;
|
|
92
|
+
borderStyle: string;
|
|
93
|
+
borderColor: string;
|
|
94
|
+
noneShadowDepthShadowOffsetX: string;
|
|
95
|
+
noneShadowDepthShadowOffsetY: string;
|
|
96
|
+
noneShadowDepthShadowBlur: string;
|
|
97
|
+
noneShadowDepthShadowSpread: string;
|
|
98
|
+
noneShadowDepthShadowColor: string;
|
|
99
|
+
oneShadowDepthShadowOffsetX: string;
|
|
100
|
+
oneShadowDepthShadowOffsetY: string;
|
|
101
|
+
oneShadowDepthShadowBlur: string;
|
|
102
|
+
oneShadowDepthShadowSpread: string;
|
|
103
|
+
oneShadowDepthShadowColor: string;
|
|
104
|
+
twoShadowDepthShadowOffsetX: string;
|
|
105
|
+
twoShadowDepthShadowOffsetY: string;
|
|
106
|
+
twoShadowDepthShadowBlur: string;
|
|
107
|
+
twoShadowDepthShadowSpread: string;
|
|
108
|
+
twoShadowDepthShadowColor: string;
|
|
109
|
+
}>;
|
|
110
|
+
bulletedList?: Partial<{
|
|
111
|
+
fontColor: string;
|
|
112
|
+
bulletIconHeight: string;
|
|
113
|
+
bulletIconWidth: string;
|
|
114
|
+
bulletHeight: string;
|
|
115
|
+
bulletWidth: string;
|
|
116
|
+
bulletMarginRight: string;
|
|
117
|
+
}>;
|
|
118
|
+
button?: Partial<{
|
|
119
|
+
labelFontLineHeight: string;
|
|
120
|
+
labelLetterSpacing: string;
|
|
121
|
+
paddingLeft: string;
|
|
122
|
+
paddingRight: string;
|
|
123
|
+
paddingTop: string;
|
|
124
|
+
paddingBottom: string;
|
|
125
|
+
focusBorderColor: string;
|
|
126
|
+
primaryBackgroundColor: string;
|
|
127
|
+
primaryFontColor: string;
|
|
128
|
+
primaryHoverBackgroundColor: string;
|
|
129
|
+
primaryActiveBackgroundColor: string;
|
|
130
|
+
primaryDisabledBackgroundColor: string;
|
|
131
|
+
primaryDisabledFontColor: string;
|
|
132
|
+
primaryBorderThickness: string;
|
|
133
|
+
primaryBorderStyle: string;
|
|
134
|
+
primaryBorderRadius: string;
|
|
135
|
+
primaryFontFamily: string;
|
|
136
|
+
primaryFontSize: string;
|
|
137
|
+
primaryFontWeight: string;
|
|
138
|
+
secondaryBackgroundColor: string;
|
|
139
|
+
secondaryFontColor: string;
|
|
140
|
+
secondaryHoverFontColor: string;
|
|
141
|
+
secondaryBorderColor: string;
|
|
142
|
+
secondaryHoverBackgroundColor: string;
|
|
143
|
+
secondaryActiveBackgroundColor: string;
|
|
144
|
+
secondaryDisabledBackgroundColor: string;
|
|
145
|
+
secondaryDisabledFontColor: string;
|
|
146
|
+
secondaryDisabledBorderColor: string;
|
|
147
|
+
secondaryBorderThickness: string;
|
|
148
|
+
secondaryBorderStyle: string;
|
|
149
|
+
secondaryBorderRadius: string;
|
|
150
|
+
secondaryFontFamily: string;
|
|
151
|
+
secondaryFontSize: string;
|
|
152
|
+
secondaryFontWeight: string;
|
|
153
|
+
textBackgroundColor: string;
|
|
154
|
+
textFontColor: string;
|
|
155
|
+
textHoverBackgroundColor: string;
|
|
156
|
+
textActiveBackgroundColor: string;
|
|
157
|
+
textDisabledBackgroundColor: string;
|
|
158
|
+
textDisabledFontColor: string;
|
|
159
|
+
textBorderThickness: string;
|
|
160
|
+
textBorderStyle: string;
|
|
161
|
+
textBorderRadius: string;
|
|
162
|
+
textFontFamily: string;
|
|
163
|
+
textFontSize: string;
|
|
164
|
+
textFontWeight: string;
|
|
165
|
+
}>;
|
|
166
|
+
card?: Partial<{
|
|
167
|
+
height: string;
|
|
168
|
+
width: string;
|
|
169
|
+
}>;
|
|
170
|
+
checkbox?: Partial<{
|
|
171
|
+
backgroundColorChecked: string;
|
|
172
|
+
hoverBackgroundColorChecked: string;
|
|
173
|
+
disabledBackgroundColorChecked: string;
|
|
174
|
+
readOnlyBackgroundColorChecked: string;
|
|
175
|
+
hoverReadOnlyBackgroundColorChecked: string;
|
|
176
|
+
borderColor: string;
|
|
177
|
+
hoverBorderColor: string;
|
|
178
|
+
disabledBorderColor: string;
|
|
179
|
+
readOnlyBorderColor: string;
|
|
180
|
+
hoverReadOnlyBorderColor: string;
|
|
181
|
+
checkColor: string;
|
|
182
|
+
disabledCheckColor: string;
|
|
183
|
+
readOnlyCheckColor: string;
|
|
184
|
+
fontFamily: string;
|
|
185
|
+
fontSize: string;
|
|
186
|
+
fontWeight: string;
|
|
187
|
+
fontColor: string;
|
|
188
|
+
disabledFontColor: string;
|
|
189
|
+
focusColor: string;
|
|
190
|
+
checkLabelSpacing: string;
|
|
191
|
+
}>;
|
|
192
|
+
chip?: Partial<{
|
|
193
|
+
backgroundColor: string;
|
|
194
|
+
disabledBackgroundColor: string;
|
|
195
|
+
fontFamily: string;
|
|
196
|
+
fontSize: string;
|
|
197
|
+
fontStyle: string;
|
|
198
|
+
fontWeight: string;
|
|
199
|
+
fontColor: string;
|
|
200
|
+
disabledFontColor: string;
|
|
201
|
+
borderColor: string;
|
|
202
|
+
borderRadius: string;
|
|
203
|
+
borderThickness: string;
|
|
204
|
+
borderStyle: string;
|
|
205
|
+
contentPaddingLeft: string;
|
|
206
|
+
contentPaddingRight: string;
|
|
207
|
+
contentPaddingTop: string;
|
|
208
|
+
contentPaddingBottom: string;
|
|
209
|
+
iconSize: string;
|
|
210
|
+
iconSpacing: string;
|
|
211
|
+
iconColor: string;
|
|
212
|
+
hoverIconColor: string;
|
|
213
|
+
activeIconColor: string;
|
|
214
|
+
disabledIconColor: string;
|
|
215
|
+
focusColor: string;
|
|
216
|
+
focusBorderStyle: string;
|
|
217
|
+
focusBorderThickness: string;
|
|
218
|
+
focusBorderRadius: string;
|
|
219
|
+
}>;
|
|
220
|
+
dateInput?: Partial<{
|
|
221
|
+
pickerBackgroundColor: string;
|
|
222
|
+
pickerFontColor: string;
|
|
223
|
+
pickerBorderColor: string;
|
|
224
|
+
pickerSelectedBackgroundColor: string;
|
|
225
|
+
pickerSelectedFontColor: string;
|
|
226
|
+
pickerHoverBackgroundColor: string;
|
|
227
|
+
pickerHoverFontColor: string;
|
|
228
|
+
pickerActiveBackgroundColor: string;
|
|
229
|
+
pickerActiveFontColor: string;
|
|
230
|
+
pickerNonCurrentMonthFontColor: string;
|
|
231
|
+
pickerCurrentDateBorderColor: string;
|
|
232
|
+
pickerCurrentDateFontColor: string;
|
|
233
|
+
pickerCurrentYearFontColor: string;
|
|
234
|
+
pickerHeaderBackgroundColor: string;
|
|
235
|
+
pickerHeaderFontColor: string;
|
|
236
|
+
pickerHeaderHoverBackgroundColor: string;
|
|
237
|
+
pickerHeaderHoverFontColor: string;
|
|
238
|
+
pickerHeaderActiveBackgroundColor: string;
|
|
239
|
+
pickerHeaderActiveFontColor: string;
|
|
240
|
+
pickerFocusColor: string;
|
|
241
|
+
pickerBorderWidth: string;
|
|
242
|
+
pickerBorderStyle: string;
|
|
243
|
+
pickerFocusWidth: string;
|
|
244
|
+
pickerCurrentDateBorderWidth: string;
|
|
245
|
+
pickerFontFamily: string;
|
|
246
|
+
pickerFontSize: string;
|
|
247
|
+
pickerFontWeight: string;
|
|
248
|
+
pickerInteractedYearFontSize: string;
|
|
249
|
+
pickerHeaderFontSize: string;
|
|
250
|
+
}>;
|
|
251
|
+
dialog?: Partial<{
|
|
252
|
+
overlayColor: string;
|
|
253
|
+
backgroundColor: string;
|
|
254
|
+
closeIconSize: string;
|
|
255
|
+
closeIconTopPosition: string;
|
|
256
|
+
closeIconRightPosition: string;
|
|
257
|
+
closeIconBackgroundColor: string;
|
|
258
|
+
closeIconBorderColor: string;
|
|
259
|
+
closeIconColor: string;
|
|
260
|
+
closeIconBorderThickness: string;
|
|
261
|
+
closeIconBorderStyle: string;
|
|
262
|
+
closeIconBorderRadius: string;
|
|
263
|
+
boxShadowOffsetX: string;
|
|
264
|
+
boxShadowOffsetY: string;
|
|
265
|
+
boxShadowBlur: string;
|
|
266
|
+
boxShadowColor: string;
|
|
267
|
+
}>;
|
|
268
|
+
dropdown?: Partial<{
|
|
269
|
+
buttonBackgroundColor: string;
|
|
270
|
+
hoverButtonBackgroundColor: string;
|
|
271
|
+
activeButtonBackgroundColor: string;
|
|
272
|
+
buttonFontFamily: string;
|
|
273
|
+
buttonFontSize: string;
|
|
274
|
+
buttonFontStyle: string;
|
|
275
|
+
buttonFontWeight: string;
|
|
276
|
+
buttonFontColor: string;
|
|
277
|
+
buttonIconSize: string;
|
|
278
|
+
buttonIconSpacing: string;
|
|
279
|
+
buttonIconColor: string;
|
|
280
|
+
buttonPaddingTop: string;
|
|
281
|
+
buttonPaddingBottom: string;
|
|
282
|
+
buttonPaddingLeft: string;
|
|
283
|
+
buttonPaddingRight: string;
|
|
284
|
+
buttonHeight: string;
|
|
285
|
+
buttonBorderRadius: string;
|
|
286
|
+
buttonBorderStyle: string;
|
|
287
|
+
buttonBorderThickness: string;
|
|
288
|
+
buttonBorderColor: string;
|
|
289
|
+
disabledColor: string;
|
|
290
|
+
disabledButtonBackgroundColor: string;
|
|
291
|
+
disabledButtonBorderColor: string;
|
|
292
|
+
optionBackgroundColor: string;
|
|
293
|
+
hoverOptionBackgroundColor: string;
|
|
294
|
+
activeOptionBackgroundColor: string;
|
|
295
|
+
optionFontFamily: string;
|
|
296
|
+
optionFontSize: string;
|
|
297
|
+
optionFontStyle: string;
|
|
298
|
+
optionFontWeight: string;
|
|
299
|
+
optionFontColor: string;
|
|
300
|
+
optionIconSize: string;
|
|
301
|
+
optionIconSpacing: string;
|
|
302
|
+
optionIconColor: string;
|
|
303
|
+
optionPaddingTop: string;
|
|
304
|
+
optionPaddingBottom: string;
|
|
305
|
+
optionPaddingLeft: string;
|
|
306
|
+
optionPaddingRight: string;
|
|
307
|
+
caretIconSize: string;
|
|
308
|
+
caretIconColor: string;
|
|
309
|
+
caretIconSpacing: string;
|
|
310
|
+
borderRadius: string;
|
|
311
|
+
borderStyle: string;
|
|
312
|
+
borderThickness: string;
|
|
313
|
+
borderColor: string;
|
|
314
|
+
scrollBarThumbColor: string;
|
|
315
|
+
scrollBarTrackColor: string;
|
|
316
|
+
focusColor: string;
|
|
317
|
+
}>;
|
|
318
|
+
fileInput?: Partial<{
|
|
319
|
+
dropBorderColor: string;
|
|
320
|
+
fileItemBorderColor: string;
|
|
321
|
+
fileNameFontColor: string;
|
|
322
|
+
labelFontColor: string;
|
|
323
|
+
helperTextFontColor: string;
|
|
324
|
+
dropLabelFontColor: string;
|
|
325
|
+
disabledLabelFontColor: string;
|
|
326
|
+
disabledHelperTextFontcolor: string;
|
|
327
|
+
disabledDropLabelFontColor: string;
|
|
328
|
+
focusDropBorderColor: string;
|
|
329
|
+
disabledDropBorderColor: string;
|
|
330
|
+
dragoverDropBackgroundColor: string;
|
|
331
|
+
errorFileItemBorderColor: string;
|
|
332
|
+
errorFileItemBackgroundColor: string;
|
|
333
|
+
errorFilePreviewBackgroundColor: string;
|
|
334
|
+
errorFileItemIconColor: string;
|
|
335
|
+
fileItemIconBackgroundColor: string;
|
|
336
|
+
deleteFileItemColor: string;
|
|
337
|
+
errorMessageFontColor: string;
|
|
338
|
+
labelFontFamily: string;
|
|
339
|
+
labelFontSize: string;
|
|
340
|
+
labelFontWeight: string;
|
|
341
|
+
labelLineHeight: string;
|
|
342
|
+
fileItemFontFamily: string;
|
|
343
|
+
fileItemFontSize: string;
|
|
344
|
+
fileItemFontWeight: string;
|
|
345
|
+
fileItemLineHeight: string;
|
|
346
|
+
helperTextFontFamily: string;
|
|
347
|
+
helperTextFontSize: string;
|
|
348
|
+
helperTextFontWeight: string;
|
|
349
|
+
helperTextLineHeight: string;
|
|
350
|
+
dropLabelFontFamily: string;
|
|
351
|
+
dropLabelFontSize: string;
|
|
352
|
+
dropLabelFontWeight: string;
|
|
353
|
+
errorMessageFontFamily: string;
|
|
354
|
+
errorMessageFontSize: string;
|
|
355
|
+
errorMessageFontWeight: string;
|
|
356
|
+
errorMessageLineHeight: string;
|
|
357
|
+
dropBorderThickness: string;
|
|
358
|
+
dropBorderStyle: string;
|
|
359
|
+
dropBorderRadius: string;
|
|
360
|
+
fileItemBorderThickness: string;
|
|
361
|
+
fileItemBorderStyle: string;
|
|
362
|
+
fileItemBorderRadius: string;
|
|
363
|
+
hoverDeleteFileItemBackgroundColor: string;
|
|
364
|
+
activeDeleteFileItemBackgroundColor: string;
|
|
365
|
+
focusDeleteFileItemBorderColor: string;
|
|
366
|
+
filePreviewBackgroundColor: string;
|
|
367
|
+
filePreviewIconColor: string;
|
|
368
|
+
errorFilePreviewIconColor: string;
|
|
369
|
+
}>;
|
|
370
|
+
footer?: Partial<{
|
|
371
|
+
height: string;
|
|
372
|
+
backgroundColor: string;
|
|
373
|
+
bottomLinksDividerColor: string;
|
|
374
|
+
bottomLinksDividerThickness: string;
|
|
375
|
+
bottomLinksDividerStyle: string;
|
|
376
|
+
bottomLinksDividerSpacing: string;
|
|
377
|
+
bottomLinksFontFamily: string;
|
|
378
|
+
bottomLinksFontSize: string;
|
|
379
|
+
bottomLinksFontStyle: string;
|
|
380
|
+
bottomLinksFontWeight: string;
|
|
381
|
+
bottomLinksFontColor: string;
|
|
382
|
+
bottomLinksTextDecoration: string;
|
|
383
|
+
copyrightFontFamily: string;
|
|
384
|
+
copyrightFontSize: string;
|
|
385
|
+
copyrightFontStyle: string;
|
|
386
|
+
copyrightFontWeight: string;
|
|
387
|
+
copyrightFontColor: string;
|
|
388
|
+
logo: string;
|
|
389
|
+
logoHeight: string;
|
|
390
|
+
logoWidth: string;
|
|
391
|
+
socialLinksSize: string;
|
|
392
|
+
socialLinksGutter: string;
|
|
393
|
+
socialLinksColor: string;
|
|
394
|
+
}>;
|
|
395
|
+
header?: Partial<{
|
|
396
|
+
backgroundColor: string;
|
|
397
|
+
hamburguerFocusColor: string;
|
|
398
|
+
hamburguerFontFamily: string;
|
|
399
|
+
hamburguerFontStyle: string;
|
|
400
|
+
hamburguerFontColor: string;
|
|
401
|
+
hamburguerFontSize: string;
|
|
402
|
+
hamburguerFontWeight: string;
|
|
403
|
+
hamburguerTextTransform: string;
|
|
404
|
+
hamburguerIconColor: string;
|
|
405
|
+
hamburguerHoverColor: string;
|
|
406
|
+
logo: string;
|
|
407
|
+
logoResponsive: string;
|
|
408
|
+
logoHeight: string;
|
|
409
|
+
logoWidth: string;
|
|
410
|
+
menuBackgroundColor: string;
|
|
411
|
+
menuZindex: string;
|
|
412
|
+
menuTabletWidth: string;
|
|
413
|
+
menuMobileWidth: string;
|
|
414
|
+
minHeight: string;
|
|
415
|
+
overlayColor: string;
|
|
416
|
+
overlayOpacity: string;
|
|
417
|
+
overlayZindex: string;
|
|
418
|
+
paddingTop: string;
|
|
419
|
+
paddingBottom: string;
|
|
420
|
+
paddingRight: string;
|
|
421
|
+
paddingLeft: string;
|
|
422
|
+
underlinedColor: string;
|
|
423
|
+
underlinedThickness: string;
|
|
424
|
+
underlinedStyle: string;
|
|
425
|
+
contentColor: string;
|
|
426
|
+
}>;
|
|
427
|
+
heading?: Partial<{
|
|
428
|
+
level1FontColor: string;
|
|
429
|
+
level1FontFamily: string;
|
|
430
|
+
level1FontSize: string;
|
|
431
|
+
level1FontStyle: string;
|
|
432
|
+
level1FontWeight: string;
|
|
433
|
+
level1LineHeight: string;
|
|
434
|
+
level1LetterSpacing: string;
|
|
435
|
+
level2FontColor: string;
|
|
436
|
+
level2FontFamily: string;
|
|
437
|
+
level2FontSize: string;
|
|
438
|
+
level2FontStyle: string;
|
|
439
|
+
level2FontWeight: string;
|
|
440
|
+
level2LineHeight: string;
|
|
441
|
+
level2LetterSpacing: string;
|
|
442
|
+
level3FontColor: string;
|
|
443
|
+
level3FontFamily: string;
|
|
444
|
+
level3FontSize: string;
|
|
445
|
+
level3FontStyle: string;
|
|
446
|
+
level3FontWeight: string;
|
|
447
|
+
level3LineHeight: string;
|
|
448
|
+
level3LetterSpacing: string;
|
|
449
|
+
level4FontColor: string;
|
|
450
|
+
level4FontFamily: string;
|
|
451
|
+
level4FontSize: string;
|
|
452
|
+
level4FontStyle: string;
|
|
453
|
+
level4FontWeight: string;
|
|
454
|
+
level4LineHeight: string;
|
|
455
|
+
level4LetterSpacing: string;
|
|
456
|
+
level5FontColor: string;
|
|
457
|
+
level5FontFamily: string;
|
|
458
|
+
level5FontSize: string;
|
|
459
|
+
level5FontStyle: string;
|
|
460
|
+
level5FontWeight: string;
|
|
461
|
+
level5LineHeight: string;
|
|
462
|
+
level5LetterSpacing: string;
|
|
463
|
+
}>;
|
|
464
|
+
image?: Partial<{
|
|
465
|
+
captionFontColor: string;
|
|
466
|
+
captionFontFamily: string;
|
|
467
|
+
captionFontSize: string;
|
|
468
|
+
captionFontStyle: string;
|
|
469
|
+
captionFontWeight: string;
|
|
470
|
+
captionLineHeight: string;
|
|
471
|
+
}>;
|
|
472
|
+
link?: Partial<{
|
|
473
|
+
fontColor: string;
|
|
474
|
+
fontFamily: string;
|
|
475
|
+
fontSize: string;
|
|
476
|
+
fontStyle: string;
|
|
477
|
+
fontWeight: string;
|
|
478
|
+
iconSize: string;
|
|
479
|
+
iconSpacing: string;
|
|
480
|
+
underlineSpacing: string;
|
|
481
|
+
underlineStyle: string;
|
|
482
|
+
underlineThickness: string;
|
|
483
|
+
disabledFontColor: string;
|
|
484
|
+
hoverFontColor: string;
|
|
485
|
+
hoverUnderlineColor: string;
|
|
486
|
+
visitedFontColor: string;
|
|
487
|
+
visitedUnderlineColor: string;
|
|
488
|
+
activeFontColor: string;
|
|
489
|
+
activeUnderlineColor: string;
|
|
490
|
+
focusColor: string;
|
|
491
|
+
}>;
|
|
492
|
+
navTabs?: Partial<{
|
|
493
|
+
selectedBackgroundColor: string;
|
|
494
|
+
unselectedBackgroundColor: string;
|
|
495
|
+
hoverBackgroundColor: string;
|
|
496
|
+
pressedBackgroundColor: string;
|
|
497
|
+
selectedFontColor: string;
|
|
498
|
+
unselectedFontColor: string;
|
|
499
|
+
disabledFontColor: string;
|
|
500
|
+
focusOutline: string;
|
|
501
|
+
selectedUnderlineColor: string;
|
|
502
|
+
dividerColor: string;
|
|
503
|
+
fontFamily: string;
|
|
504
|
+
fontSize: string;
|
|
505
|
+
fontStyle: string;
|
|
506
|
+
fontWeight: string;
|
|
507
|
+
selectedIconColor: string;
|
|
508
|
+
unselectedIconColor: string;
|
|
509
|
+
disabledIconColor: string;
|
|
510
|
+
}>;
|
|
511
|
+
paginator?: Partial<{
|
|
512
|
+
backgroundColor: string;
|
|
513
|
+
fontColor: string;
|
|
514
|
+
fontFamily: string;
|
|
515
|
+
fontSize: string;
|
|
516
|
+
fontStyle: string;
|
|
517
|
+
fontWeight: string;
|
|
518
|
+
fontTextTransform: string;
|
|
519
|
+
verticalPadding: string;
|
|
520
|
+
horizontalPadding: string;
|
|
521
|
+
marginRight: string;
|
|
522
|
+
marginLeft: string;
|
|
523
|
+
itemsPerPageSelectorMarginLeft: string;
|
|
524
|
+
itemsPerPageSelectorMarginRight: string;
|
|
525
|
+
pageSelectorMarginRight: string;
|
|
526
|
+
pageSelectorMarginLeft: string;
|
|
527
|
+
totalItemsContainerMarginRight: string;
|
|
528
|
+
totalItemsContainerMarginLeft: string;
|
|
529
|
+
}>;
|
|
530
|
+
paragraph?: Partial<{
|
|
531
|
+
display: string;
|
|
532
|
+
fontColor: string;
|
|
533
|
+
fontSize: string;
|
|
534
|
+
fontWeight: string;
|
|
535
|
+
}>;
|
|
536
|
+
progressBar?: Partial<{
|
|
537
|
+
trackLineColor: string;
|
|
538
|
+
totalLineColor: string;
|
|
539
|
+
labelFontFamily: string;
|
|
540
|
+
labelFontSize: string;
|
|
541
|
+
labelFontStyle: string;
|
|
542
|
+
labelFontWeight: string;
|
|
543
|
+
labelFontColor: string;
|
|
544
|
+
labelFontTextTransform: string;
|
|
545
|
+
valueFontFamily: string;
|
|
546
|
+
valueFontSize: string;
|
|
547
|
+
valueFontStyle: string;
|
|
548
|
+
valueFontWeight: string;
|
|
549
|
+
valueFontColor: string;
|
|
550
|
+
valueFontTextTransform: string;
|
|
551
|
+
helperTextFontColor: string;
|
|
552
|
+
helperTextFontSize: string;
|
|
553
|
+
helperTextFontStyle: string;
|
|
554
|
+
helperTextFontWeight: string;
|
|
555
|
+
helperTextFontFamily: string;
|
|
556
|
+
thickness: string;
|
|
557
|
+
borderRadius: string;
|
|
558
|
+
overlayColor: string;
|
|
559
|
+
overlayFontColor: string;
|
|
560
|
+
}>;
|
|
561
|
+
quickNav?: Partial<{
|
|
562
|
+
fontColor: string;
|
|
563
|
+
hoverFontColor: string;
|
|
564
|
+
dividerBorderColor: string;
|
|
565
|
+
focusBorderColor: string;
|
|
566
|
+
focusBorderStyle: string;
|
|
567
|
+
focusBorderThickness: string;
|
|
568
|
+
focusBorderRadius: string;
|
|
569
|
+
paddingTop: string;
|
|
570
|
+
paddingBottom: string;
|
|
571
|
+
paddingLeft: string;
|
|
572
|
+
paddingRight: string;
|
|
573
|
+
fontFamily: string;
|
|
574
|
+
fontSize: string;
|
|
575
|
+
fontStyle: string;
|
|
576
|
+
fontWeight: string;
|
|
577
|
+
}>;
|
|
578
|
+
radioGroup?: Partial<{
|
|
579
|
+
fontFamily: string;
|
|
580
|
+
radioInputColor: string;
|
|
581
|
+
hoverRadioInputColor: string;
|
|
582
|
+
focusBorderColor: string;
|
|
583
|
+
activeRadioInputColor: string;
|
|
584
|
+
errorRadioInputColor: string;
|
|
585
|
+
hoverErrorRadioInputColor: string;
|
|
586
|
+
activeErrorRadioInputColor: string;
|
|
587
|
+
readOnlyRadioInputColor: string;
|
|
588
|
+
hoverReadOnlyRadioInputColor: string;
|
|
589
|
+
activeReadOnlyRadioInputColor: string;
|
|
590
|
+
disabledRadioInputColor: string;
|
|
591
|
+
disabledLabelFontColor: string;
|
|
592
|
+
disabledHelperTextFontColor: string;
|
|
593
|
+
disabledRadioInputLabelFontColor: string;
|
|
594
|
+
errorMessageColor: string;
|
|
595
|
+
labelFontColor: string;
|
|
596
|
+
labelFontSize: string;
|
|
597
|
+
labelFontStyle: string;
|
|
598
|
+
labelFontWeight: string;
|
|
599
|
+
labelLineHeight: string;
|
|
600
|
+
optionalLabelFontWeight: string;
|
|
601
|
+
helperTextFontColor: string;
|
|
602
|
+
helperTextFontSize: string;
|
|
603
|
+
helperTextFontStyle: string;
|
|
604
|
+
helperTextFontWeight: string;
|
|
605
|
+
helperTextLineHeight: string;
|
|
606
|
+
radioInputLabelFontColor: string;
|
|
607
|
+
radioInputLabelFontSize: string;
|
|
608
|
+
radioInputLabelFontStyle: string;
|
|
609
|
+
radioInputLabelFontWeight: string;
|
|
610
|
+
radioInputLabelLineHeight: string;
|
|
611
|
+
groupLabelMargin: string;
|
|
612
|
+
radioInputLabelMargin: string;
|
|
613
|
+
groupVerticalGutter: string;
|
|
614
|
+
groupHorizontalGutter: string;
|
|
615
|
+
}>;
|
|
616
|
+
select?: Partial<{
|
|
617
|
+
fontFamily: string;
|
|
618
|
+
disabledColor: string;
|
|
619
|
+
enabledInputBorderColor: string;
|
|
620
|
+
hoverInputBorderColor: string;
|
|
621
|
+
focusInputBorderColor: string;
|
|
622
|
+
errorInputBorderColor: string;
|
|
623
|
+
hoverInputErrorBorderColor: string;
|
|
624
|
+
disabledInputBorderColor: string;
|
|
625
|
+
disabledInputBackgroundColor: string;
|
|
626
|
+
inputMarginTop: string;
|
|
627
|
+
inputMarginBottom: string;
|
|
628
|
+
errorMessageColor: string;
|
|
629
|
+
errorIconColor: string;
|
|
630
|
+
labelFontColor: string;
|
|
631
|
+
labelFontSize: string;
|
|
632
|
+
labelFontStyle: string;
|
|
633
|
+
labelFontWeight: string;
|
|
634
|
+
labelLineHeight: string;
|
|
635
|
+
optionalLabelFontWeight: string;
|
|
636
|
+
helperTextFontColor: string;
|
|
637
|
+
helperTextFontSize: string;
|
|
638
|
+
helperTextFontStyle: string;
|
|
639
|
+
helperTextFontWeight: string;
|
|
640
|
+
helperTextLineHeight: string;
|
|
641
|
+
placeholderFontColor: string;
|
|
642
|
+
valueFontColor: string;
|
|
643
|
+
valueFontSize: string;
|
|
644
|
+
valueFontStyle: string;
|
|
645
|
+
valueFontWeight: string;
|
|
646
|
+
actionIconColor: string;
|
|
647
|
+
hoverActionIconColor: string;
|
|
648
|
+
activeActionIconColor: string;
|
|
649
|
+
actionBackgroundColor: string;
|
|
650
|
+
hoverActionBackgroundColor: string;
|
|
651
|
+
activeActionBackgroundColor: string;
|
|
652
|
+
listOptionFontColor: string;
|
|
653
|
+
listOptionFontSize: string;
|
|
654
|
+
listOptionFontStyle: string;
|
|
655
|
+
listOptionFontWeight: string;
|
|
656
|
+
listOptionIconColor: string;
|
|
657
|
+
listOptionDividerColor: string;
|
|
658
|
+
listGroupLabelFontWeight: string;
|
|
659
|
+
focusListOptionBorderColor: string;
|
|
660
|
+
systemMessageFontColor: string;
|
|
661
|
+
collapseIndicatorColor: string;
|
|
662
|
+
listDialogBackgroundColor: string;
|
|
663
|
+
listDialogBorderColor: string;
|
|
664
|
+
selectedListOptionBackgroundColor: string;
|
|
665
|
+
selectedHoverListOptionBackgroundColor: string;
|
|
666
|
+
selectedActiveListOptionBackgroundColor: string;
|
|
667
|
+
selectedListOptionIconColor: string;
|
|
668
|
+
unselectedHoverListOptionBackgroundColor: string;
|
|
669
|
+
unselectedActiveListOptionBackgroundColor: string;
|
|
670
|
+
selectionIndicatorFontColor: string;
|
|
671
|
+
selectionIndicatorFontSize: string;
|
|
672
|
+
selectionIndicatorFontStyle: string;
|
|
673
|
+
selectionIndicatorFontWeight: string;
|
|
674
|
+
selectionIndicatorBorderColor: string;
|
|
675
|
+
selectionIndicatorBackgroundColor: string;
|
|
676
|
+
enabledSelectionIndicatorActionBackgroundColor: string;
|
|
677
|
+
enabledSelectionIndicatorActionIconColor: string;
|
|
678
|
+
hoverSelectionIndicatorActionBackgroundColor: string;
|
|
679
|
+
hoverSelectionIndicatorActionIconColor: string;
|
|
680
|
+
activeSelectionIndicatorActionBackgroundColor: string;
|
|
681
|
+
activeSelectionIndicatorActionIconColor: string;
|
|
682
|
+
}>;
|
|
683
|
+
sidenav?: Partial<{
|
|
684
|
+
backgroundColor: string;
|
|
685
|
+
titleFontFamily: string;
|
|
686
|
+
titleFontSize: string;
|
|
687
|
+
titleFontStyle: string;
|
|
688
|
+
titleFontWeight: string;
|
|
689
|
+
titleFontColor: string;
|
|
690
|
+
titleFontTextTransform: string;
|
|
691
|
+
titleFontLetterSpacing: string;
|
|
692
|
+
groupTitleFontFamily: string;
|
|
693
|
+
groupTitleFontSize: string;
|
|
694
|
+
groupTitleFontStyle: string;
|
|
695
|
+
groupTitleFontWeight: string;
|
|
696
|
+
groupTitleFontColor: string;
|
|
697
|
+
groupTitleHoverBackgroundColor: string;
|
|
698
|
+
groupTitleActiveBackgroundColor: string;
|
|
699
|
+
groupTitleSelectedFontColor: string;
|
|
700
|
+
groupTitleSelectedBackgroundColor: string;
|
|
701
|
+
groupTitleSelectedHoverFontColor: string;
|
|
702
|
+
groupTitleSelectedHoverBackgroundColor: string;
|
|
703
|
+
groupTitleFontTextTransform: string;
|
|
704
|
+
groupTitleFontLetterSpacing: string;
|
|
705
|
+
linkFontFamily: string;
|
|
706
|
+
linkFontSize: string;
|
|
707
|
+
linkFontStyle: string;
|
|
708
|
+
linkFontWeight: string;
|
|
709
|
+
linkFontColor: string;
|
|
710
|
+
linkHoverBackgroundColor: string;
|
|
711
|
+
linkSelectedFontColor: string;
|
|
712
|
+
linkSelectedBackgroundColor: string;
|
|
713
|
+
linkSelectedHoverFontColor: string;
|
|
714
|
+
linkSelectedHoverBackgroundColor: string;
|
|
715
|
+
linkFontTextTransform: string;
|
|
716
|
+
linkFontLetterSpacing: string;
|
|
717
|
+
linkTextDecoration: string;
|
|
718
|
+
linkMarginTop: string;
|
|
719
|
+
linkMarginBottom: string;
|
|
720
|
+
linkMarginRight: string;
|
|
721
|
+
linkMarginLeft: string;
|
|
722
|
+
linkFocusColor: string;
|
|
723
|
+
scrollBarThumbColor: string;
|
|
724
|
+
scrollBarTrackColor: string;
|
|
725
|
+
}>;
|
|
726
|
+
slider?: Partial<{
|
|
727
|
+
fontFamily: string;
|
|
728
|
+
limitValuesFontColor: string;
|
|
729
|
+
limitValuesFontSize: string;
|
|
730
|
+
limitValuesFontStyle: string;
|
|
731
|
+
limitValuesFontWeight: string;
|
|
732
|
+
limitValuesFontLetterSpacing: string;
|
|
733
|
+
disabledLimitValuesFontColor: string;
|
|
734
|
+
labelFontFamily: string;
|
|
735
|
+
labelFontSize: string;
|
|
736
|
+
labelFontStyle: string;
|
|
737
|
+
labelFontWeight: string;
|
|
738
|
+
labelLineHeight: string;
|
|
739
|
+
helperTextFontFamily: string;
|
|
740
|
+
helperTextFontSize: string;
|
|
741
|
+
helperTextFontStyle: string;
|
|
742
|
+
helperTextFontWeight: string;
|
|
743
|
+
helperTextLineHeight: string;
|
|
744
|
+
fontColor: string;
|
|
745
|
+
labelFontColor: string;
|
|
746
|
+
helperTextFontColor: string;
|
|
747
|
+
disabledLabelFontColor: string;
|
|
748
|
+
disabledHelperTextFontColor: string;
|
|
749
|
+
thumbHeight: string;
|
|
750
|
+
thumbWidth: string;
|
|
751
|
+
hoverThumbHeight: string;
|
|
752
|
+
hoverThumbWidth: string;
|
|
753
|
+
thumbVerticalPosition: string;
|
|
754
|
+
hoverThumbVerticalPosition: string;
|
|
755
|
+
thumbBackgroundColor: string;
|
|
756
|
+
hoverThumbScale: string;
|
|
757
|
+
hoverThumbBackgroundColor: string;
|
|
758
|
+
activeThumbScale: string;
|
|
759
|
+
activeThumbBackgroundColor: string;
|
|
760
|
+
focusThumbBackgroundColor: string;
|
|
761
|
+
tickHeight: string;
|
|
762
|
+
tickWidth: string;
|
|
763
|
+
tickVerticalPosition: string;
|
|
764
|
+
tickBackgroundColor: string;
|
|
765
|
+
trackLineThickness: string;
|
|
766
|
+
trackLineVerticalPosition: string;
|
|
767
|
+
trackLineColor: string;
|
|
768
|
+
totalLineThickness: string;
|
|
769
|
+
totalLineVerticalPosition: string;
|
|
770
|
+
totalLineColor: string;
|
|
771
|
+
disabledThumbVerticalPosition: string;
|
|
772
|
+
disabledThumbBackgroundColor: string;
|
|
773
|
+
disabledTickVerticalPosition: string;
|
|
774
|
+
disabledTickBackgroundColor: string;
|
|
775
|
+
disabledTrackLineColor: string;
|
|
776
|
+
disabledTotalLineColor: string;
|
|
777
|
+
focusColor: string;
|
|
778
|
+
floorLabelMarginRight: string;
|
|
779
|
+
ceilLabelMarginLeft: string;
|
|
780
|
+
inputMarginLeft: string;
|
|
781
|
+
}>;
|
|
782
|
+
spinner?: Partial<{
|
|
783
|
+
trackCircleColor: string;
|
|
784
|
+
trackCircleColorOverlay: string;
|
|
785
|
+
totalCircleColor: string;
|
|
786
|
+
labelFontFamily: string;
|
|
787
|
+
labelFontSize: string;
|
|
788
|
+
labelFontStyle: string;
|
|
789
|
+
labelFontWeight: string;
|
|
790
|
+
labelFontColor: string;
|
|
791
|
+
labelTextAlign: string;
|
|
792
|
+
progressValueFontFamily: string;
|
|
793
|
+
progressValueFontSize: string;
|
|
794
|
+
progressValueFontStyle: string;
|
|
795
|
+
progressValueFontWeight: string;
|
|
796
|
+
progressValueFontColor: string;
|
|
797
|
+
progressValueTextAlign: string;
|
|
798
|
+
overlayBackgroundColor: string;
|
|
799
|
+
overlayOpacity: string;
|
|
800
|
+
overlayLabelFontFamily: string;
|
|
801
|
+
overlayLabelFontSize: string;
|
|
802
|
+
overlayLabelFontStyle: string;
|
|
803
|
+
overlayLabelFontWeight: string;
|
|
804
|
+
overlayLabelFontColor: string;
|
|
805
|
+
overlayLabelTextAlign: string;
|
|
806
|
+
overlayProgressValueFontFamily: string;
|
|
807
|
+
overlayProgressValueFontSize: string;
|
|
808
|
+
overlayProgressValueFontStyle: string;
|
|
809
|
+
overlayProgressValueFontWeight: string;
|
|
810
|
+
overlayProgressValueFontColor: string;
|
|
811
|
+
overlayProgressValueTextAlign: string;
|
|
812
|
+
}>;
|
|
813
|
+
switch?: Partial<{
|
|
814
|
+
checkedTrackBackgroundColor: string;
|
|
815
|
+
checkedThumbBackgroundColor: string;
|
|
816
|
+
uncheckedTrackBackgroundColor: string;
|
|
817
|
+
uncheckedThumbBackgroundColor: string;
|
|
818
|
+
disabledCheckedTrackBackgroundColor: string;
|
|
819
|
+
disabledCheckedThumbBackgroundColor: string;
|
|
820
|
+
disabledUncheckedTrackBackgroundColor: string;
|
|
821
|
+
disabledUncheckedThumbBackgroundColor: string;
|
|
822
|
+
disabledLabelFontColor: string;
|
|
823
|
+
disabledLabelFontStyle: string;
|
|
824
|
+
labelFontFamily: string;
|
|
825
|
+
labelFontSize: string;
|
|
826
|
+
labelFontStyle: string;
|
|
827
|
+
labelFontWeight: string;
|
|
828
|
+
labelFontColor: string;
|
|
829
|
+
thumbFocusColor: string;
|
|
830
|
+
thumbHeight: string;
|
|
831
|
+
thumbWidth: string;
|
|
832
|
+
thumbShift: string;
|
|
833
|
+
trackHeight: string;
|
|
834
|
+
trackWidth: string;
|
|
835
|
+
spaceBetweenLabelSwitch: string;
|
|
836
|
+
}>;
|
|
837
|
+
table?: Partial<{
|
|
838
|
+
rowSeparatorThickness: string;
|
|
839
|
+
rowSeparatorStyle: string;
|
|
840
|
+
rowSeparatorColor: string;
|
|
841
|
+
dataBackgroundColor: string;
|
|
842
|
+
dataFontFamily: string;
|
|
843
|
+
dataFontSize: string;
|
|
844
|
+
dataFontStyle: string;
|
|
845
|
+
dataFontWeight: string;
|
|
846
|
+
dataFontColor: string;
|
|
847
|
+
dataFontTextTransform: string;
|
|
848
|
+
dataPaddingTop: string;
|
|
849
|
+
dataPaddingBottom: string;
|
|
850
|
+
dataPaddingRight: string;
|
|
851
|
+
dataPaddingLeft: string;
|
|
852
|
+
dataPaddingTopReduced: string;
|
|
853
|
+
dataPaddingBottomReduced: string;
|
|
854
|
+
dataPaddingRightReduced: string;
|
|
855
|
+
dataPaddingLeftReduced: string;
|
|
856
|
+
dataTextAlign: string;
|
|
857
|
+
dataTextLineHeight: string;
|
|
858
|
+
firstChildPaddingLeft: string;
|
|
859
|
+
lastChildPaddingRight: string;
|
|
860
|
+
firstChildPaddingLeftReduced: string;
|
|
861
|
+
lastChildPaddingRightReduced: string;
|
|
862
|
+
headerBackgroundColor: string;
|
|
863
|
+
headerBorderRadius: string;
|
|
864
|
+
headerFontFamily: string;
|
|
865
|
+
headerFontSize: string;
|
|
866
|
+
headerFontStyle: string;
|
|
867
|
+
headerFontWeight: string;
|
|
868
|
+
headerFontColor: string;
|
|
869
|
+
headerFontTextTransform: string;
|
|
870
|
+
headerPaddingTop: string;
|
|
871
|
+
headerPaddingBottom: string;
|
|
872
|
+
headerPaddingRight: string;
|
|
873
|
+
headerPaddingLeft: string;
|
|
874
|
+
headerPaddingTopReduced: string;
|
|
875
|
+
headerPaddingBottomReduced: string;
|
|
876
|
+
headerPaddingRightReduced: string;
|
|
877
|
+
headerPaddingLeftReduced: string;
|
|
878
|
+
headerTextAlign: string;
|
|
879
|
+
headerTextLineHeight: string;
|
|
880
|
+
scrollBarThumbColor: string;
|
|
881
|
+
scrollBarTrackColor: string;
|
|
882
|
+
sortIconColor: string;
|
|
883
|
+
actionIconColor: string;
|
|
884
|
+
disabledActionIconColor: string;
|
|
885
|
+
hoverActionIconColor: string;
|
|
886
|
+
focusActionIconColor: string;
|
|
887
|
+
activeActionIconColor: string;
|
|
888
|
+
actionBackgroundColor: string;
|
|
889
|
+
disabledActionBackgroundColor: string;
|
|
890
|
+
hoverActionBackgroundColor: string;
|
|
891
|
+
focusActionBorderColor: string;
|
|
892
|
+
activeActionBackgroundColor: string;
|
|
893
|
+
}>;
|
|
894
|
+
tabs?: Partial<{
|
|
895
|
+
fontFamily: string;
|
|
896
|
+
fontSize: string;
|
|
897
|
+
fontStyle: string;
|
|
898
|
+
fontWeight: string;
|
|
899
|
+
fontTextTransform: string;
|
|
900
|
+
selectedBackgroundColor: string;
|
|
901
|
+
selectedFontColor: string;
|
|
902
|
+
selectedIconColor: string;
|
|
903
|
+
selectedUnderlineColor: string;
|
|
904
|
+
selectedUnderlineThickness: string;
|
|
905
|
+
unselectedBackgroundColor: string;
|
|
906
|
+
unselectedFontColor: string;
|
|
907
|
+
unselectedIconColor: string;
|
|
908
|
+
disabledFontColor: string;
|
|
909
|
+
disabledIconColor: string;
|
|
910
|
+
disabledFontStyle: string;
|
|
911
|
+
hoverBackgroundColor: string;
|
|
912
|
+
pressedBackgroundColor: string;
|
|
913
|
+
pressedFontWeight: string;
|
|
914
|
+
dividerColor: string;
|
|
915
|
+
dividerThickness: string;
|
|
916
|
+
focusOutline: string;
|
|
917
|
+
scrollButtonsWidth: string;
|
|
918
|
+
}>;
|
|
919
|
+
tag?: Partial<{
|
|
920
|
+
fontFamily: string;
|
|
921
|
+
fontColor: string;
|
|
922
|
+
fontSize: string;
|
|
923
|
+
fontStyle: string;
|
|
924
|
+
fontWeight: string;
|
|
925
|
+
labelPaddingTop: string;
|
|
926
|
+
labelPaddingBottom: string;
|
|
927
|
+
labelPaddingLeft: string;
|
|
928
|
+
labelPaddingRight: string;
|
|
929
|
+
height: string;
|
|
930
|
+
iconColor: string;
|
|
931
|
+
iconSectionWidth: string;
|
|
932
|
+
iconHeight: string;
|
|
933
|
+
iconWidth: string;
|
|
934
|
+
focusColor: string;
|
|
935
|
+
}>;
|
|
936
|
+
textarea?: Partial<{
|
|
937
|
+
fontFamily: string;
|
|
938
|
+
enabledBorderColor: string;
|
|
939
|
+
hoverBorderColor: string;
|
|
940
|
+
focusBorderColor: string;
|
|
941
|
+
disabledBorderColor: string;
|
|
942
|
+
disabledContainerFillColor: string;
|
|
943
|
+
readOnlyBorderColor: string;
|
|
944
|
+
hoverReadOnlyBorderColor: string;
|
|
945
|
+
errorBorderColor: string;
|
|
946
|
+
hoverErrorBorderColor: string;
|
|
947
|
+
inputMarginTop: string;
|
|
948
|
+
inputMarginBottom: string;
|
|
949
|
+
errorMessageColor: string;
|
|
950
|
+
labelFontColor: string;
|
|
951
|
+
labelFontSize: string;
|
|
952
|
+
labelFontStyle: string;
|
|
953
|
+
labelFontWeight: string;
|
|
954
|
+
labelLineHeight: string;
|
|
955
|
+
disabledLabelFontColor: string;
|
|
956
|
+
optionalLabelFontWeight: string;
|
|
957
|
+
helperTextFontColor: string;
|
|
958
|
+
helperTextFontSize: string;
|
|
959
|
+
helperTextFontStyle: string;
|
|
960
|
+
helperTextFontWeight: string;
|
|
961
|
+
helperTextLineHeight: string;
|
|
962
|
+
disabledHelperTextFontColor: string;
|
|
963
|
+
placeholderFontColor: string;
|
|
964
|
+
disabledPlaceholderFontColor: string;
|
|
965
|
+
valueFontColor: string;
|
|
966
|
+
valueFontSize: string;
|
|
967
|
+
valueFontStyle: string;
|
|
968
|
+
valueFontWeight: string;
|
|
969
|
+
disabledValueFontColor: string;
|
|
970
|
+
}>;
|
|
971
|
+
textInput?: Partial<{
|
|
972
|
+
fontFamily: string;
|
|
973
|
+
enabledBorderColor: string;
|
|
974
|
+
hoverBorderColor: string;
|
|
975
|
+
focusBorderColor: string;
|
|
976
|
+
disabledBorderColor: string;
|
|
977
|
+
disabledContainerFillColor: string;
|
|
978
|
+
readOnlyBorderColor: string;
|
|
979
|
+
hoverReadOnlyBorderColor: string;
|
|
980
|
+
errorBorderColor: string;
|
|
981
|
+
hoverErrorBorderColor: string;
|
|
982
|
+
inputMarginTop: string;
|
|
983
|
+
inputMarginBottom: string;
|
|
984
|
+
errorMessageColor: string;
|
|
985
|
+
errorIconColor: string;
|
|
986
|
+
labelFontColor: string;
|
|
987
|
+
labelFontSize: string;
|
|
988
|
+
labelFontStyle: string;
|
|
989
|
+
labelFontWeight: string;
|
|
990
|
+
labelLineHeight: string;
|
|
991
|
+
disabledLabelFontColor: string;
|
|
992
|
+
optionalLabelFontWeight: string;
|
|
993
|
+
helperTextFontColor: string;
|
|
994
|
+
helperTextFontSize: string;
|
|
995
|
+
helperTextFontStyle: string;
|
|
996
|
+
helperTextFontWeight: string;
|
|
997
|
+
helperTextLineHeight: string;
|
|
998
|
+
disabledHelperTextFontColor: string;
|
|
999
|
+
prefixColor: string;
|
|
1000
|
+
suffixColor: string;
|
|
1001
|
+
disabledPrefixColor: string;
|
|
1002
|
+
disabledSuffixColor: string;
|
|
1003
|
+
placeholderFontColor: string;
|
|
1004
|
+
disabledPlaceholderFontColor: string;
|
|
1005
|
+
valueFontColor: string;
|
|
1006
|
+
valueFontSize: string;
|
|
1007
|
+
valueFontStyle: string;
|
|
1008
|
+
valueFontWeight: string;
|
|
1009
|
+
disabledValueFontColor: string;
|
|
1010
|
+
actionIconColor: string;
|
|
1011
|
+
disabledActionIconColor: string;
|
|
1012
|
+
hoverActionIconColor: string;
|
|
1013
|
+
focusActionIconColor: string;
|
|
1014
|
+
activeActionIconColor: string;
|
|
1015
|
+
actionBackgroundColor: string;
|
|
1016
|
+
disabledActionBackgroundColor: string;
|
|
1017
|
+
hoverActionBackgroundColor: string;
|
|
1018
|
+
focusActionBorderColor: string;
|
|
1019
|
+
activeActionBackgroundColor: string;
|
|
1020
|
+
listDialogBackgroundColor: string;
|
|
1021
|
+
listDialogBorderColor: string;
|
|
1022
|
+
listOptionDividerColor: string;
|
|
1023
|
+
listOptionFontColor: string;
|
|
1024
|
+
listOptionFontSize: string;
|
|
1025
|
+
listOptionFontStyle: string;
|
|
1026
|
+
listOptionFontWeight: string;
|
|
1027
|
+
systemMessageFontColor: string;
|
|
1028
|
+
errorListDialogFontColor: string;
|
|
1029
|
+
errorListDialogBackgroundColor: string;
|
|
1030
|
+
errorListDialogBorderColor: string;
|
|
1031
|
+
hoverListOptionBackgroundColor: string;
|
|
1032
|
+
activeListOptionBackgroundColor: string;
|
|
1033
|
+
focusListOptionBorderColor: string;
|
|
1034
|
+
}>;
|
|
1035
|
+
toggleGroup?: Partial<{
|
|
1036
|
+
containerBackgroundColor: string;
|
|
1037
|
+
containerBorderColor: string;
|
|
1038
|
+
labelFontColor: string;
|
|
1039
|
+
disabledLabelFontColor: string;
|
|
1040
|
+
helperTextFontColor: string;
|
|
1041
|
+
disabledHelperTextFontcolor: string;
|
|
1042
|
+
unselectedBackgroundColor: string;
|
|
1043
|
+
unselectedHoverBackgroundColor: string;
|
|
1044
|
+
unselectedActiveBackgroundColor: string;
|
|
1045
|
+
unselectedDisabledBackgroundColor: string;
|
|
1046
|
+
unselectedFontColor: string;
|
|
1047
|
+
unselectedDisabledFontColor: string;
|
|
1048
|
+
selectedBackgroundColor: string;
|
|
1049
|
+
selectedHoverBackgroundColor: string;
|
|
1050
|
+
selectedActiveBackgroundColor: string;
|
|
1051
|
+
selectedDisabledBackgroundColor: string;
|
|
1052
|
+
selectedFontColor: string;
|
|
1053
|
+
selectedDisabledFontColor: string;
|
|
1054
|
+
focusColor: string;
|
|
1055
|
+
labelFontFamily: string;
|
|
1056
|
+
labelFontSize: string;
|
|
1057
|
+
labelFontStyle: string;
|
|
1058
|
+
labelFontWeight: string;
|
|
1059
|
+
labelLineHeight: string;
|
|
1060
|
+
helperTextFontFamily: string;
|
|
1061
|
+
helperTextFontSize: string;
|
|
1062
|
+
helperTextFontStyle: string;
|
|
1063
|
+
helperTextFontWeight: string;
|
|
1064
|
+
helperTextLineHeight: string;
|
|
1065
|
+
optionLabelFontFamily: string;
|
|
1066
|
+
optionLabelFontSize: string;
|
|
1067
|
+
optionLabelFontStyle: string;
|
|
1068
|
+
optionLabelFontWeight: string;
|
|
1069
|
+
iconPaddingRight: string;
|
|
1070
|
+
iconPaddingLeft: string;
|
|
1071
|
+
labelPaddingLeft: string;
|
|
1072
|
+
labelPaddingRight: string;
|
|
1073
|
+
iconMarginRight: string;
|
|
1074
|
+
containerMarginTop: string;
|
|
1075
|
+
optionBorderThickness: string;
|
|
1076
|
+
optionBorderStyle: string;
|
|
1077
|
+
optionBorderRadius: string;
|
|
1078
|
+
containerBorderThickness: string;
|
|
1079
|
+
containerBorderStyle: string;
|
|
1080
|
+
containerBorderRadius: string;
|
|
1081
|
+
optionFocusBorderThickness: string;
|
|
1082
|
+
}>;
|
|
1083
|
+
wizard?: Partial<{
|
|
1084
|
+
visitedStepFontColor: string;
|
|
1085
|
+
visitedStepBackgroundColor: string;
|
|
1086
|
+
visitedStepBorderColor: string;
|
|
1087
|
+
unvisitedStepFontColor: string;
|
|
1088
|
+
unvisitedLabelFontColor: string;
|
|
1089
|
+
unvisitedHelperTextFontColor: string;
|
|
1090
|
+
unvisitedStepBackgroundColor: string;
|
|
1091
|
+
unvisitedStepBorderColor: string;
|
|
1092
|
+
selectedStepFontColor: string;
|
|
1093
|
+
selectedStepBackgroundColor: string;
|
|
1094
|
+
selectedStepBorderColor: string;
|
|
1095
|
+
selectedLabelFontColor: string;
|
|
1096
|
+
selectedHelperTextFontColor: string;
|
|
1097
|
+
selectedStepWidth: string;
|
|
1098
|
+
selectedStepHeight: string;
|
|
1099
|
+
selectedStepBorderThickness: string;
|
|
1100
|
+
selectedStepBorderStyle: string;
|
|
1101
|
+
selectedStepBorderRadius: string;
|
|
1102
|
+
stepFontSize: string;
|
|
1103
|
+
stepFontFamily: string;
|
|
1104
|
+
stepFontStyle: string;
|
|
1105
|
+
stepFontWeight: string;
|
|
1106
|
+
stepFontTracking: string;
|
|
1107
|
+
stepIconSize: string;
|
|
1108
|
+
stepWidth: string;
|
|
1109
|
+
stepHeight: string;
|
|
1110
|
+
stepBorderThickness: string;
|
|
1111
|
+
stepBorderStyle: string;
|
|
1112
|
+
stepBorderRadius: string;
|
|
1113
|
+
visitedLabelFontColor: string;
|
|
1114
|
+
labelFontSize: string;
|
|
1115
|
+
labelFontFamily: string;
|
|
1116
|
+
labelFontStyle: string;
|
|
1117
|
+
labelFontWeight: string;
|
|
1118
|
+
labelFontTracking: string;
|
|
1119
|
+
labelFontTextTransform: string;
|
|
1120
|
+
labelTextAlign: string;
|
|
1121
|
+
helperTextFontSize: string;
|
|
1122
|
+
helperTextFontFamily: string;
|
|
1123
|
+
helperTextFontStyle: string;
|
|
1124
|
+
helperTextFontWeight: string;
|
|
1125
|
+
helperTextFontTracking: string;
|
|
1126
|
+
helperTextFontTextTransform: string;
|
|
1127
|
+
visitedHelperTextFontColor: string;
|
|
1128
|
+
helperTextTextAlign: string;
|
|
1129
|
+
disabledStepBackgroundColor: string;
|
|
1130
|
+
disabledStepFontColor: string;
|
|
1131
|
+
disabledLabelFontColor: string;
|
|
1132
|
+
disabledHelperTextFontColor: string;
|
|
1133
|
+
disabledStepBorderColor: string;
|
|
1134
|
+
disabledStepWidth: string;
|
|
1135
|
+
disabledStepHeight: string;
|
|
1136
|
+
disabledStepBorderThickness: string;
|
|
1137
|
+
disabledStepBorderStyle: string;
|
|
1138
|
+
disabledStepBorderRadius: string;
|
|
1139
|
+
separatorBorderThickness: string;
|
|
1140
|
+
separatorBorderStyle: string;
|
|
1141
|
+
separatorColor: string;
|
|
1142
|
+
focusColor: string;
|
|
1143
|
+
}>;
|
|
1144
|
+
};
|
|
2
1145
|
export default useTheme;
|