@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/common/variables.js
CHANGED
|
@@ -1,1405 +1,1172 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
3
4
|
Object.defineProperty(exports, "__esModule", {
|
|
4
5
|
value: true
|
|
5
6
|
});
|
|
6
|
-
exports.
|
|
7
|
-
var
|
|
8
|
-
|
|
9
|
-
inherit: "inherit",
|
|
10
|
-
transparent: "transparent",
|
|
11
|
-
hal_white: "#ffffff",
|
|
12
|
-
hal_grey_l_95: "#f2f2f2",
|
|
13
|
-
hal_grey_l_90: "#e6e6e6",
|
|
14
|
-
hal_grey_l_80: "#cccccc",
|
|
15
|
-
hal_grey_l_75: "#bfbfbf",
|
|
16
|
-
hal_grey_l_60: "#999999",
|
|
17
|
-
hal_grey_s_40: "#666666",
|
|
18
|
-
hal_black: "#000000",
|
|
19
|
-
color_grey_800: "#4d4d4d",
|
|
20
|
-
color_grey_600: "#808080",
|
|
21
|
-
color_grey_50: "#fafafa",
|
|
22
|
-
color_grey_a_100: "#0000000d",
|
|
23
|
-
color_grey_a_300: "#00000033",
|
|
24
|
-
hal_purple_l_95: "#f2eafa",
|
|
25
|
-
hal_purple_l_90: "#e5d5f6",
|
|
26
|
-
hal_purple_l_65: "#a46ede",
|
|
27
|
-
hal_purple_s_38: "#5f249f",
|
|
28
|
-
hal_purple_d_30: "#4b1c7d",
|
|
29
|
-
hal_purple_d_20: "#321353",
|
|
30
|
-
hal_purple_d_70: "#9A6BB2",
|
|
31
|
-
color_purple_600: "#7D2FD0",
|
|
32
|
-
color_purple_300: "#cbacec",
|
|
33
|
-
hal_blue_l_95: "#e6f4ff",
|
|
34
|
-
hal_blue_l_80: "#99d5ff",
|
|
35
|
-
hal_blue_l_50: "#0095ff",
|
|
36
|
-
hal_blue_l_45: "#0086e6",
|
|
37
|
-
hal_blue_s_35: "#0067b3",
|
|
38
|
-
hal_blue_d_20: "#003c66",
|
|
39
|
-
color_blue_200: "#cceaff",
|
|
40
|
-
color_blue_500: "#33AAFF",
|
|
41
|
-
color_blue_50: "#f5fbff",
|
|
42
|
-
hal_red_l_95: "#ffe6e9",
|
|
43
|
-
hal_red_l_80: "#fe9aa7",
|
|
44
|
-
hal_red_l_60: "#fe344f",
|
|
45
|
-
hal_red_s_41: "#d0011b",
|
|
46
|
-
hal_red_d_30: "#980115",
|
|
47
|
-
hal_red_d_20: "#65010e",
|
|
48
|
-
color_red_700: "#ffccd3",
|
|
49
|
-
color_red_50: "#FFF5F6",
|
|
50
|
-
color_red_600: "#fe0123",
|
|
51
|
-
hal_green_l_95: "#eafaef",
|
|
52
|
-
hal_green_l_80: "#acecbe",
|
|
53
|
-
hal_green_s_39: "#24a148",
|
|
54
|
-
hal_green_d_30: "#1c7d38",
|
|
55
|
-
hal_green_d_20: "#135325",
|
|
56
|
-
hal_yellow_l_95: "#fef9e6",
|
|
57
|
-
hal_yellow_l_80: "#fbe89d",
|
|
58
|
-
hal_yellow_s_57: "#f7cf2b",
|
|
59
|
-
hal_yellow_d_40: "#c59f07",
|
|
60
|
-
hal_yellow_d_30: "#947705",
|
|
61
|
-
hal_orange_s_54: "#f38f20",
|
|
62
|
-
black: "#000000",
|
|
63
|
-
lightBlack: "#212121",
|
|
64
|
-
yellow: "#FFED00",
|
|
65
|
-
lightGrey: "#D9D9D9",
|
|
66
|
-
darkRed: "#D0011B",
|
|
67
|
-
lightRed: "#FF6161",
|
|
68
|
-
lightBlue: "#CEE0F5",
|
|
69
|
-
lightYellow: "#FCF2BD",
|
|
70
|
-
lightPink: "#F9CFCF",
|
|
71
|
-
lightGreen: "#DBF1C4",
|
|
72
|
-
blue: "#005FCC",
|
|
73
|
-
lighterGrey: "#F8F8F8",
|
|
74
|
-
red: "#D0011B",
|
|
75
|
-
violet: "#8800F6",
|
|
76
|
-
darkBlue: "#006BF6",
|
|
77
|
-
purple: "#6f2c91",
|
|
78
|
-
mediumPurple: "#ead8f3",
|
|
79
|
-
lightPurple: "#f5ebf9",
|
|
80
|
-
lighterPurple: "#d0bddb",
|
|
81
|
-
white: "#ffffff",
|
|
82
|
-
darkGrey: "#666666",
|
|
83
|
-
mediumGrey: "#bfbfbf",
|
|
84
|
-
mediumWhite: "#f9f9f9",
|
|
85
|
-
mediumBlue: "#0067b3",
|
|
86
|
-
softBlue: "#b1cee6",
|
|
87
|
-
darkWhite: "#eeeeee",
|
|
88
|
-
lighterBlack: "#b1b1b1",
|
|
89
|
-
mediumBlack: "#676767",
|
|
90
|
-
mediumGreyBlack: "#dbdbdb",
|
|
91
|
-
lightWhite: "#f2f2f2",
|
|
92
|
-
softGrey: "#cecece",
|
|
93
|
-
softBlack: "#565656",
|
|
94
|
-
// Typography
|
|
95
|
-
type_sans: "Open Sans, sans-serif",
|
|
96
|
-
type_scale_root: "16px",
|
|
97
|
-
type_scale_08: "3.75rem",
|
|
98
|
-
type_scale_07: "2.5rem",
|
|
99
|
-
type_scale_06: "2rem",
|
|
100
|
-
type_scale_05: "1.5rem",
|
|
101
|
-
type_scale_04: "1.25rem",
|
|
102
|
-
type_scale_03: "1rem",
|
|
103
|
-
type_scale_02: "0.875rem",
|
|
104
|
-
type_scale_01: "0.75rem",
|
|
105
|
-
type_light: "300",
|
|
106
|
-
type_regular: "400",
|
|
107
|
-
type_semibold: "600",
|
|
108
|
-
type_bold: "bold",
|
|
109
|
-
type_italic: "italic",
|
|
110
|
-
type_normal: "normal",
|
|
111
|
-
type_spacing_tight_02: "-0.05em",
|
|
112
|
-
type_spacing_tight_01: "-0.025em",
|
|
113
|
-
type_spacing_normal: "0em",
|
|
114
|
-
type_spacing_wide_01: "0.025em",
|
|
115
|
-
type_spacing_wide_02: "0.05em",
|
|
116
|
-
type_spacing_wide_03: "0.1em",
|
|
117
|
-
type_initial: "initial",
|
|
118
|
-
type_uppercase: "uppercase",
|
|
119
|
-
type_no_line: "none",
|
|
120
|
-
type_underline: "underline",
|
|
121
|
-
type_line_through: "line-through",
|
|
122
|
-
type_leading_compact_03: "1em",
|
|
123
|
-
type_leading_compact_02: "1.25em",
|
|
124
|
-
type_leading_compact_01: "1.365em",
|
|
125
|
-
type_leading_normal: "1.5em",
|
|
126
|
-
type_leading_loose_01: "1.715em",
|
|
127
|
-
type_leading_loose_02: "2em",
|
|
128
|
-
fontSize10: "10px",
|
|
129
|
-
// Spacing
|
|
130
|
-
spacing_00: "0rem",
|
|
131
|
-
spacing_01: "0.125rem",
|
|
132
|
-
spacing_02: "0.25rem",
|
|
133
|
-
spacing_03: "0.5rem",
|
|
134
|
-
spacing_04: "0.75rem",
|
|
135
|
-
spacing_05: "1rem",
|
|
136
|
-
spacing_06: "1.5rem",
|
|
137
|
-
spacing_07: "2rem",
|
|
138
|
-
spacing_08: "2.5rem",
|
|
139
|
-
spacing_09: "3rem",
|
|
140
|
-
spacing_10: "3.5rem",
|
|
141
|
-
spacing_11: "4rem",
|
|
142
|
-
spacing_12: "5rem",
|
|
143
|
-
spacing_13: "6rem",
|
|
144
|
-
spacing_14: "7rem",
|
|
145
|
-
// Border
|
|
146
|
-
border_width_0: "0px",
|
|
147
|
-
border_width_1: "1px",
|
|
148
|
-
border_width_2: "2px",
|
|
149
|
-
border_width_4: "4px",
|
|
150
|
-
border_radius_none: "0rem",
|
|
151
|
-
border_radius_small: "0.125rem",
|
|
152
|
-
border_radius_medium: "0.25rem",
|
|
153
|
-
border_radius_large: "0.375rem",
|
|
154
|
-
border_radius_full: "9999px",
|
|
155
|
-
border_solid: "solid",
|
|
156
|
-
border_dashed: "dashed",
|
|
157
|
-
border_none: "none"
|
|
158
|
-
};
|
|
159
|
-
exports.globalTokens = globalTokens;
|
|
160
|
-
var componentTokens = {
|
|
7
|
+
exports.spaces = exports.responsiveSizes = exports.defaultTranslatedComponentLabels = exports.componentTokens = void 0;
|
|
8
|
+
var _coreTokens = _interopRequireDefault(require("./coreTokens"));
|
|
9
|
+
var componentTokens = exports.componentTokens = {
|
|
161
10
|
accordion: {
|
|
162
|
-
backgroundColor:
|
|
163
|
-
hoverBackgroundColor:
|
|
164
|
-
arrowColor:
|
|
165
|
-
disabledArrowColor:
|
|
166
|
-
assistiveTextFontFamily:
|
|
167
|
-
assistiveTextFontSize:
|
|
168
|
-
assistiveTextFontWeight:
|
|
169
|
-
assistiveTextFontStyle:
|
|
170
|
-
assistiveTextLetterSpacing:
|
|
171
|
-
assistiveTextFontColor:
|
|
172
|
-
disabledAssistiveTextFontColor:
|
|
11
|
+
backgroundColor: _coreTokens["default"].color_white,
|
|
12
|
+
hoverBackgroundColor: _coreTokens["default"].color_purple_100,
|
|
13
|
+
arrowColor: _coreTokens["default"].color_purple_700,
|
|
14
|
+
disabledArrowColor: _coreTokens["default"].color_grey_500,
|
|
15
|
+
assistiveTextFontFamily: _coreTokens["default"].type_sans,
|
|
16
|
+
assistiveTextFontSize: _coreTokens["default"].type_scale_03,
|
|
17
|
+
assistiveTextFontWeight: _coreTokens["default"].type_light,
|
|
18
|
+
assistiveTextFontStyle: _coreTokens["default"].type_italic,
|
|
19
|
+
assistiveTextLetterSpacing: _coreTokens["default"].type_spacing_wide_01,
|
|
20
|
+
assistiveTextFontColor: _coreTokens["default"].color_grey_700,
|
|
21
|
+
disabledAssistiveTextFontColor: _coreTokens["default"].color_grey_500,
|
|
173
22
|
assistiveTextMinWidth: "100px",
|
|
174
|
-
assistiveTextPaddingRight: "
|
|
175
|
-
assistiveTextPaddingLeft: "
|
|
176
|
-
titleLabelFontFamily:
|
|
177
|
-
titleLabelFontSize:
|
|
178
|
-
titleLabelFontWeight:
|
|
179
|
-
titleLabelFontStyle:
|
|
180
|
-
titleLabelFontColor:
|
|
181
|
-
disabledTitleLabelFontColor:
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
23
|
+
assistiveTextPaddingRight: _coreTokens["default"].spacing_24,
|
|
24
|
+
assistiveTextPaddingLeft: _coreTokens["default"].spacing_0,
|
|
25
|
+
titleLabelFontFamily: _coreTokens["default"].type_sans,
|
|
26
|
+
titleLabelFontSize: _coreTokens["default"].type_scale_03,
|
|
27
|
+
titleLabelFontWeight: _coreTokens["default"].type_regular,
|
|
28
|
+
titleLabelFontStyle: _coreTokens["default"].type_normal,
|
|
29
|
+
titleLabelFontColor: _coreTokens["default"].color_black,
|
|
30
|
+
disabledTitleLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
31
|
+
titleLabelPaddingTop: _coreTokens["default"].spacing_0,
|
|
32
|
+
titleLabelPaddingBottom: _coreTokens["default"].spacing_0,
|
|
33
|
+
titleLabelPaddingLeft: _coreTokens["default"].spacing_0,
|
|
34
|
+
titleLabelPaddingRight: _coreTokens["default"].spacing_16,
|
|
35
|
+
focusBorderColor: _coreTokens["default"].color_blue_600,
|
|
36
|
+
focusBorderStyle: _coreTokens["default"].border_solid,
|
|
187
37
|
focusBorderThickness: "2px",
|
|
188
|
-
focusBorderColor: globalTokens.hal_blue_l_50,
|
|
189
38
|
borderRadius: "4px",
|
|
190
39
|
boxShadowOffsetX: "0px",
|
|
191
40
|
boxShadowOffsetY: "6px",
|
|
192
41
|
boxShadowBlur: "10px",
|
|
193
|
-
boxShadowColor: "
|
|
194
|
-
iconColor:
|
|
195
|
-
disabledIconColor:
|
|
42
|
+
boxShadowColor: _coreTokens["default"].color_grey_200_a,
|
|
43
|
+
iconColor: _coreTokens["default"].color_purple_700,
|
|
44
|
+
disabledIconColor: _coreTokens["default"].color_grey_500,
|
|
196
45
|
iconSize: "24px",
|
|
197
|
-
iconMarginLeft: "
|
|
198
|
-
|
|
199
|
-
accordionGroupSeparatorBorderColor: "
|
|
46
|
+
iconMarginLeft: _coreTokens["default"].spacing_0,
|
|
47
|
+
iconMarginRight: _coreTokens["default"].spacing_12,
|
|
48
|
+
accordionGroupSeparatorBorderColor: _coreTokens["default"].color_grey_200_a,
|
|
200
49
|
accordionGroupSeparatorBorderThickness: "1px",
|
|
201
50
|
accordionGroupSeparatorBorderRadius: "0px",
|
|
202
|
-
accordionGroupSeparatorBorderStyle: "
|
|
51
|
+
accordionGroupSeparatorBorderStyle: _coreTokens["default"].border_solid
|
|
203
52
|
},
|
|
204
53
|
alert: {
|
|
205
|
-
titleFontFamily:
|
|
206
|
-
titleFontColor:
|
|
207
|
-
titleFontSize:
|
|
208
|
-
titleFontStyle:
|
|
209
|
-
titleFontWeight:
|
|
210
|
-
titleTextTransform:
|
|
211
|
-
titlePaddingRight: "
|
|
212
|
-
titlePaddingLeft: "
|
|
213
|
-
inlineTextFontFamily:
|
|
214
|
-
inlineTextFontColor:
|
|
215
|
-
inlineTextFontSize:
|
|
216
|
-
inlineTextFontStyle:
|
|
217
|
-
inlineTextFontWeight:
|
|
218
|
-
inlineTextPaddingLeft: "
|
|
219
|
-
inlineTextPaddingRight: "
|
|
220
|
-
contentPaddingLeft: "
|
|
221
|
-
contentPaddingRight: "
|
|
54
|
+
titleFontFamily: _coreTokens["default"].type_sans,
|
|
55
|
+
titleFontColor: _coreTokens["default"].color_black,
|
|
56
|
+
titleFontSize: _coreTokens["default"].type_scale_01,
|
|
57
|
+
titleFontStyle: _coreTokens["default"].type_normal,
|
|
58
|
+
titleFontWeight: _coreTokens["default"].type_bold,
|
|
59
|
+
titleTextTransform: _coreTokens["default"].type_uppercase,
|
|
60
|
+
titlePaddingRight: _coreTokens["default"].spacing_0,
|
|
61
|
+
titlePaddingLeft: _coreTokens["default"].spacing_0,
|
|
62
|
+
inlineTextFontFamily: _coreTokens["default"].type_sans,
|
|
63
|
+
inlineTextFontColor: _coreTokens["default"].color_black,
|
|
64
|
+
inlineTextFontSize: _coreTokens["default"].type_scale_01,
|
|
65
|
+
inlineTextFontStyle: _coreTokens["default"].type_normal,
|
|
66
|
+
inlineTextFontWeight: _coreTokens["default"].type_regular,
|
|
67
|
+
inlineTextPaddingLeft: _coreTokens["default"].spacing_0,
|
|
68
|
+
inlineTextPaddingRight: _coreTokens["default"].spacing_0,
|
|
69
|
+
contentPaddingLeft: _coreTokens["default"].spacing_0,
|
|
70
|
+
contentPaddingRight: _coreTokens["default"].spacing_0,
|
|
222
71
|
contentPaddingTop: "20px",
|
|
223
72
|
contentPaddingBottom: "30px",
|
|
224
73
|
borderRadius: "4px",
|
|
225
|
-
borderStyle: "
|
|
74
|
+
borderStyle: _coreTokens["default"].border_solid,
|
|
226
75
|
borderThickness: "1px",
|
|
227
|
-
infoBorderColor:
|
|
228
|
-
successBorderColor:
|
|
229
|
-
warningBorderColor:
|
|
230
|
-
errorBorderColor:
|
|
76
|
+
infoBorderColor: _coreTokens["default"].color_blue_800,
|
|
77
|
+
successBorderColor: _coreTokens["default"].color_green_700,
|
|
78
|
+
warningBorderColor: _coreTokens["default"].color_yellow_700,
|
|
79
|
+
errorBorderColor: _coreTokens["default"].color_red_700,
|
|
231
80
|
iconSize: "24px",
|
|
232
|
-
iconPaddingLeft: "
|
|
233
|
-
iconPaddingRight: "
|
|
234
|
-
infoIconColor:
|
|
235
|
-
successIconColor:
|
|
236
|
-
warningIconColor:
|
|
237
|
-
errorIconColor:
|
|
238
|
-
infoBackgroundColor:
|
|
239
|
-
successBackgroundColor:
|
|
240
|
-
warningBackgroundColor:
|
|
241
|
-
errorBackgroundColor:
|
|
242
|
-
hoverActionBackgroundColor:
|
|
243
|
-
activeActionBackgroundColor: "
|
|
244
|
-
focusActionBorderColor:
|
|
245
|
-
overlayColor: "
|
|
81
|
+
iconPaddingLeft: _coreTokens["default"].spacing_0,
|
|
82
|
+
iconPaddingRight: _coreTokens["default"].spacing_0,
|
|
83
|
+
infoIconColor: _coreTokens["default"].color_blue_800,
|
|
84
|
+
successIconColor: _coreTokens["default"].color_green_700,
|
|
85
|
+
warningIconColor: _coreTokens["default"].color_yellow_700,
|
|
86
|
+
errorIconColor: _coreTokens["default"].color_red_700,
|
|
87
|
+
infoBackgroundColor: _coreTokens["default"].color_blue_100,
|
|
88
|
+
successBackgroundColor: _coreTokens["default"].color_green_100,
|
|
89
|
+
warningBackgroundColor: _coreTokens["default"].color_yellow_100,
|
|
90
|
+
errorBackgroundColor: _coreTokens["default"].color_red_100,
|
|
91
|
+
hoverActionBackgroundColor: _coreTokens["default"].color_grey_100_a,
|
|
92
|
+
activeActionBackgroundColor: _coreTokens["default"].color_grey_200_a,
|
|
93
|
+
focusActionBorderColor: _coreTokens["default"].color_blue_600,
|
|
94
|
+
overlayColor: _coreTokens["default"].color_grey_800_a
|
|
246
95
|
},
|
|
247
96
|
box: {
|
|
248
|
-
backgroundColor:
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
borderColor: globalTokens.transparent,
|
|
97
|
+
backgroundColor: _coreTokens["default"].color_white,
|
|
98
|
+
borderRadius: _coreTokens["default"].border_radius_medium,
|
|
99
|
+
borderThickness: _coreTokens["default"].border_width_0,
|
|
100
|
+
borderStyle: _coreTokens["default"].border_none,
|
|
101
|
+
borderColor: _coreTokens["default"].color_transparent,
|
|
254
102
|
noneShadowDepthShadowOffsetX: "none",
|
|
255
103
|
noneShadowDepthShadowOffsetY: "none",
|
|
256
104
|
noneShadowDepthShadowBlur: "none",
|
|
257
105
|
noneShadowDepthShadowSpread: "none",
|
|
258
|
-
noneShadowDepthShadowColor:
|
|
106
|
+
noneShadowDepthShadowColor: _coreTokens["default"].color_transparent,
|
|
259
107
|
oneShadowDepthShadowOffsetX: "0px",
|
|
260
108
|
oneShadowDepthShadowOffsetY: "3px",
|
|
261
109
|
oneShadowDepthShadowBlur: "6px",
|
|
262
110
|
oneShadowDepthShadowSpread: "0px",
|
|
263
|
-
oneShadowDepthShadowColor:
|
|
111
|
+
oneShadowDepthShadowColor: _coreTokens["default"].color_grey_300_a,
|
|
264
112
|
twoShadowDepthShadowOffsetX: "0px",
|
|
265
113
|
twoShadowDepthShadowOffsetY: "3px",
|
|
266
114
|
twoShadowDepthShadowBlur: "10px",
|
|
267
115
|
twoShadowDepthShadowSpread: "0px",
|
|
268
|
-
twoShadowDepthShadowColor:
|
|
116
|
+
twoShadowDepthShadowColor: _coreTokens["default"].color_grey_300_a
|
|
269
117
|
},
|
|
270
118
|
bulletedList: {
|
|
271
|
-
fontColor:
|
|
272
|
-
fontColorOnDark: globalTokens.hal_white,
|
|
119
|
+
fontColor: _coreTokens["default"].color_black,
|
|
273
120
|
bulletIconHeight: "1.5rem",
|
|
274
121
|
bulletIconWidth: "1.5rem",
|
|
275
122
|
bulletHeight: "5px",
|
|
276
123
|
bulletWidth: "5px",
|
|
277
|
-
bulletMarginRight: "
|
|
124
|
+
bulletMarginRight: _coreTokens["default"].spacing_8
|
|
278
125
|
},
|
|
279
126
|
button: {
|
|
280
|
-
labelFontLineHeight:
|
|
281
|
-
labelLetterSpacing:
|
|
282
|
-
paddingLeft:
|
|
283
|
-
paddingRight:
|
|
284
|
-
paddingTop:
|
|
285
|
-
paddingBottom:
|
|
286
|
-
focusBorderColor:
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
secondaryBorderRadius: globalTokens.border_radius_medium,
|
|
327
|
-
secondaryFontFamily: globalTokens.type_sans,
|
|
328
|
-
secondaryFontSize: globalTokens.type_scale_03,
|
|
329
|
-
secondaryFontWeight: globalTokens.type_regular,
|
|
330
|
-
textBackgroundColor: globalTokens.transparent,
|
|
331
|
-
textBackgroundColorOnDark: globalTokens.transparent,
|
|
332
|
-
textFontColor: globalTokens.hal_purple_s_38,
|
|
333
|
-
textFontColorOnDark: globalTokens.hal_white,
|
|
334
|
-
textHoverBackgroundColor: globalTokens.hal_purple_l_95,
|
|
335
|
-
textHoverBackgroundColorOnDark: globalTokens.color_grey_800,
|
|
336
|
-
textActiveBackgroundColor: globalTokens.hal_purple_l_90,
|
|
337
|
-
textActiveBackgroundColorOnDark: globalTokens.hal_grey_s_40,
|
|
338
|
-
textDisabledBackgroundColor: globalTokens.transparent,
|
|
339
|
-
textDisabledBackgroundColorOnDark: globalTokens.transparent,
|
|
340
|
-
textDisabledFontColor: globalTokens.hal_grey_l_60,
|
|
341
|
-
textDisabledFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
342
|
-
textBorderThickness: globalTokens.border_width_0,
|
|
343
|
-
textBorderStyle: globalTokens.border_none,
|
|
344
|
-
textBorderRadius: globalTokens.border_radius_medium,
|
|
345
|
-
textFontFamily: globalTokens.type_sans,
|
|
346
|
-
textFontSize: globalTokens.type_scale_03,
|
|
347
|
-
textFontWeight: globalTokens.type_regular
|
|
127
|
+
labelFontLineHeight: _coreTokens["default"].type_leading_normal,
|
|
128
|
+
labelLetterSpacing: _coreTokens["default"].type_spacing_wide_01,
|
|
129
|
+
paddingLeft: _coreTokens["default"].spacing_8,
|
|
130
|
+
paddingRight: _coreTokens["default"].spacing_8,
|
|
131
|
+
paddingTop: _coreTokens["default"].spacing_8,
|
|
132
|
+
paddingBottom: _coreTokens["default"].spacing_8,
|
|
133
|
+
focusBorderColor: _coreTokens["default"].color_blue_600,
|
|
134
|
+
primaryBackgroundColor: _coreTokens["default"].color_purple_700,
|
|
135
|
+
primaryFontColor: _coreTokens["default"].color_white,
|
|
136
|
+
primaryHoverBackgroundColor: _coreTokens["default"].color_purple_800,
|
|
137
|
+
primaryActiveBackgroundColor: _coreTokens["default"].color_purple_900,
|
|
138
|
+
primaryDisabledBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
139
|
+
primaryDisabledFontColor: _coreTokens["default"].color_grey_500,
|
|
140
|
+
primaryBorderThickness: _coreTokens["default"].border_width_0,
|
|
141
|
+
primaryBorderStyle: _coreTokens["default"].border_none,
|
|
142
|
+
primaryBorderRadius: _coreTokens["default"].border_radius_medium,
|
|
143
|
+
primaryFontFamily: _coreTokens["default"].type_sans,
|
|
144
|
+
primaryFontSize: _coreTokens["default"].type_scale_03,
|
|
145
|
+
primaryFontWeight: _coreTokens["default"].type_regular,
|
|
146
|
+
secondaryBackgroundColor: _coreTokens["default"].color_transparent,
|
|
147
|
+
secondaryFontColor: _coreTokens["default"].color_purple_700,
|
|
148
|
+
secondaryHoverFontColor: _coreTokens["default"].color_white,
|
|
149
|
+
secondaryBorderColor: _coreTokens["default"].color_purple_700,
|
|
150
|
+
secondaryHoverBackgroundColor: _coreTokens["default"].color_purple_700,
|
|
151
|
+
secondaryActiveBackgroundColor: _coreTokens["default"].color_purple_900,
|
|
152
|
+
secondaryDisabledBackgroundColor: _coreTokens["default"].color_transparent,
|
|
153
|
+
secondaryDisabledFontColor: _coreTokens["default"].color_grey_500,
|
|
154
|
+
secondaryDisabledBorderColor: _coreTokens["default"].color_grey_500,
|
|
155
|
+
secondaryBorderThickness: _coreTokens["default"].border_width_1,
|
|
156
|
+
secondaryBorderStyle: _coreTokens["default"].border_solid,
|
|
157
|
+
secondaryBorderRadius: _coreTokens["default"].border_radius_medium,
|
|
158
|
+
secondaryFontFamily: _coreTokens["default"].type_sans,
|
|
159
|
+
secondaryFontSize: _coreTokens["default"].type_scale_03,
|
|
160
|
+
secondaryFontWeight: _coreTokens["default"].type_regular,
|
|
161
|
+
textBackgroundColor: _coreTokens["default"].color_transparent,
|
|
162
|
+
textFontColor: _coreTokens["default"].color_purple_700,
|
|
163
|
+
textHoverBackgroundColor: _coreTokens["default"].color_purple_100,
|
|
164
|
+
textActiveBackgroundColor: _coreTokens["default"].color_purple_200,
|
|
165
|
+
textDisabledBackgroundColor: _coreTokens["default"].color_transparent,
|
|
166
|
+
textDisabledFontColor: _coreTokens["default"].color_grey_500,
|
|
167
|
+
textBorderThickness: _coreTokens["default"].border_width_0,
|
|
168
|
+
textBorderStyle: _coreTokens["default"].border_none,
|
|
169
|
+
textBorderRadius: _coreTokens["default"].border_radius_medium,
|
|
170
|
+
textFontFamily: _coreTokens["default"].type_sans,
|
|
171
|
+
textFontSize: _coreTokens["default"].type_scale_03,
|
|
172
|
+
textFontWeight: _coreTokens["default"].type_regular
|
|
348
173
|
},
|
|
349
174
|
card: {
|
|
350
175
|
height: "220px",
|
|
351
176
|
width: "400px"
|
|
352
177
|
},
|
|
353
178
|
checkbox: {
|
|
354
|
-
backgroundColorChecked:
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
fontColorOnDark: globalTokens.hal_white,
|
|
375
|
-
disabledFontColor: globalTokens.hal_grey_l_60,
|
|
376
|
-
disabledFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
377
|
-
focusColor: globalTokens.hal_blue_l_50,
|
|
378
|
-
focusColorOnDark: globalTokens.hal_blue_l_50,
|
|
379
|
-
checkLabelSpacing: "8px"
|
|
179
|
+
backgroundColorChecked: _coreTokens["default"].color_blue_800,
|
|
180
|
+
hoverBackgroundColorChecked: _coreTokens["default"].color_blue_900,
|
|
181
|
+
disabledBackgroundColorChecked: _coreTokens["default"].color_grey_500,
|
|
182
|
+
readOnlyBackgroundColorChecked: _coreTokens["default"].color_grey_500,
|
|
183
|
+
hoverReadOnlyBackgroundColorChecked: _coreTokens["default"].color_grey_600,
|
|
184
|
+
borderColor: _coreTokens["default"].color_blue_800,
|
|
185
|
+
hoverBorderColor: _coreTokens["default"].color_blue_900,
|
|
186
|
+
disabledBorderColor: _coreTokens["default"].color_grey_500,
|
|
187
|
+
readOnlyBorderColor: _coreTokens["default"].color_grey_500,
|
|
188
|
+
hoverReadOnlyBorderColor: _coreTokens["default"].color_grey_600,
|
|
189
|
+
checkColor: _coreTokens["default"].color_white,
|
|
190
|
+
disabledCheckColor: _coreTokens["default"].color_white,
|
|
191
|
+
readOnlyCheckColor: _coreTokens["default"].color_white,
|
|
192
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
193
|
+
fontSize: _coreTokens["default"].type_scale_02,
|
|
194
|
+
fontWeight: _coreTokens["default"].type_regular,
|
|
195
|
+
fontColor: _coreTokens["default"].color_black,
|
|
196
|
+
disabledFontColor: _coreTokens["default"].color_grey_500,
|
|
197
|
+
focusColor: _coreTokens["default"].color_blue_600,
|
|
198
|
+
checkLabelSpacing: _coreTokens["default"].spacing_8
|
|
380
199
|
},
|
|
381
200
|
chip: {
|
|
382
|
-
backgroundColor:
|
|
383
|
-
disabledBackgroundColor:
|
|
384
|
-
fontFamily:
|
|
385
|
-
fontSize:
|
|
386
|
-
fontStyle:
|
|
387
|
-
fontWeight:
|
|
388
|
-
fontColor:
|
|
389
|
-
disabledFontColor:
|
|
390
|
-
borderColor:
|
|
201
|
+
backgroundColor: _coreTokens["default"].color_grey_200,
|
|
202
|
+
disabledBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
203
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
204
|
+
fontSize: _coreTokens["default"].type_scale_03,
|
|
205
|
+
fontStyle: _coreTokens["default"].type_normal,
|
|
206
|
+
fontWeight: _coreTokens["default"].type_regular,
|
|
207
|
+
fontColor: _coreTokens["default"].color_black,
|
|
208
|
+
disabledFontColor: _coreTokens["default"].color_grey_500,
|
|
209
|
+
borderColor: _coreTokens["default"].color_transparent,
|
|
391
210
|
borderRadius: "80px",
|
|
392
|
-
borderThickness: "
|
|
393
|
-
borderStyle: "
|
|
394
|
-
contentPaddingLeft: "
|
|
395
|
-
contentPaddingRight: "
|
|
396
|
-
contentPaddingTop: "
|
|
397
|
-
contentPaddingBottom: "
|
|
211
|
+
borderThickness: _coreTokens["default"].border_width_0,
|
|
212
|
+
borderStyle: _coreTokens["default"].border_solid,
|
|
213
|
+
contentPaddingLeft: _coreTokens["default"].spacing_16,
|
|
214
|
+
contentPaddingRight: _coreTokens["default"].spacing_16,
|
|
215
|
+
contentPaddingTop: _coreTokens["default"].spacing_0,
|
|
216
|
+
contentPaddingBottom: _coreTokens["default"].spacing_0,
|
|
398
217
|
iconSize: "24px",
|
|
399
|
-
iconSpacing: "
|
|
400
|
-
iconColor:
|
|
401
|
-
|
|
402
|
-
|
|
218
|
+
iconSpacing: _coreTokens["default"].spacing_8,
|
|
219
|
+
iconColor: _coreTokens["default"].color_grey_800,
|
|
220
|
+
hoverIconColor: _coreTokens["default"].color_grey_900,
|
|
221
|
+
activeIconColor: _coreTokens["default"].color_black,
|
|
222
|
+
disabledIconColor: _coreTokens["default"].color_grey_500,
|
|
223
|
+
focusColor: _coreTokens["default"].color_blue_600,
|
|
224
|
+
focusBorderStyle: _coreTokens["default"].border_solid,
|
|
225
|
+
focusBorderThickness: _coreTokens["default"].border_width_2,
|
|
226
|
+
focusBorderRadius: _coreTokens["default"].border_radius_medium
|
|
403
227
|
},
|
|
404
228
|
dateInput: {
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
229
|
+
pickerBackgroundColor: _coreTokens["default"].color_white,
|
|
230
|
+
pickerFontColor: _coreTokens["default"].color_black,
|
|
231
|
+
pickerBorderColor: _coreTokens["default"].color_grey_400,
|
|
232
|
+
pickerSelectedBackgroundColor: _coreTokens["default"].color_purple_700,
|
|
233
|
+
pickerSelectedFontColor: _coreTokens["default"].color_white,
|
|
234
|
+
pickerHoverBackgroundColor: _coreTokens["default"].color_purple_200,
|
|
235
|
+
pickerHoverFontColor: _coreTokens["default"].color_black,
|
|
236
|
+
pickerActiveBackgroundColor: _coreTokens["default"].color_purple_800,
|
|
237
|
+
pickerActiveFontColor: _coreTokens["default"].color_white,
|
|
238
|
+
pickerNonCurrentMonthFontColor: _coreTokens["default"].color_grey_500,
|
|
239
|
+
pickerCurrentDateBorderColor: _coreTokens["default"].color_purple_300,
|
|
240
|
+
pickerCurrentDateFontColor: _coreTokens["default"].color_black,
|
|
241
|
+
pickerCurrentYearFontColor: _coreTokens["default"].color_purple_700,
|
|
242
|
+
pickerHeaderBackgroundColor: _coreTokens["default"].color_transparent,
|
|
243
|
+
pickerHeaderFontColor: _coreTokens["default"].color_black,
|
|
244
|
+
pickerHeaderHoverBackgroundColor: _coreTokens["default"].color_purple_200,
|
|
245
|
+
pickerHeaderHoverFontColor: _coreTokens["default"].color_black,
|
|
246
|
+
pickerHeaderActiveBackgroundColor: _coreTokens["default"].color_purple_800,
|
|
247
|
+
pickerHeaderActiveFontColor: _coreTokens["default"].color_white,
|
|
248
|
+
pickerFocusColor: _coreTokens["default"].color_blue_600,
|
|
249
|
+
pickerBorderWidth: _coreTokens["default"].border_width_1,
|
|
250
|
+
pickerBorderStyle: _coreTokens["default"].border_solid,
|
|
251
|
+
pickerFocusWidth: _coreTokens["default"].border_width_2,
|
|
252
|
+
pickerCurrentDateBorderWidth: _coreTokens["default"].border_width_1,
|
|
253
|
+
pickerFontFamily: _coreTokens["default"].type_sans,
|
|
254
|
+
pickerFontSize: _coreTokens["default"].type_scale_02,
|
|
255
|
+
pickerFontWeight: _coreTokens["default"].type_regular,
|
|
256
|
+
pickerInteractedYearFontSize: _coreTokens["default"].type_scale_05,
|
|
257
|
+
pickerHeaderFontSize: _coreTokens["default"].type_scale_02
|
|
420
258
|
},
|
|
421
259
|
dialog: {
|
|
422
|
-
overlayColor:
|
|
423
|
-
backgroundColor:
|
|
424
|
-
|
|
425
|
-
closeIconHeight: "24px",
|
|
260
|
+
overlayColor: _coreTokens["default"].color_grey_800_a,
|
|
261
|
+
backgroundColor: _coreTokens["default"].color_white,
|
|
262
|
+
closeIconSize: "24px",
|
|
426
263
|
closeIconTopPosition: "20px",
|
|
427
264
|
closeIconRightPosition: "20px",
|
|
428
|
-
closeIconBackgroundColor: "
|
|
429
|
-
closeIconBorderColor: "
|
|
430
|
-
closeIconColor:
|
|
431
|
-
closeIconBorderThickness: "
|
|
432
|
-
closeIconBorderStyle: "
|
|
433
|
-
closeIconBorderRadius: "
|
|
265
|
+
closeIconBackgroundColor: _coreTokens["default"].color_transparent,
|
|
266
|
+
closeIconBorderColor: _coreTokens["default"].border_none,
|
|
267
|
+
closeIconColor: _coreTokens["default"].color_black,
|
|
268
|
+
closeIconBorderThickness: _coreTokens["default"].border_width_0,
|
|
269
|
+
closeIconBorderStyle: _coreTokens["default"].border_solid,
|
|
270
|
+
closeIconBorderRadius: "2px",
|
|
434
271
|
boxShadowOffsetX: "0px",
|
|
435
272
|
boxShadowOffsetY: "1px",
|
|
436
273
|
boxShadowBlur: "3px",
|
|
437
|
-
boxShadowColor: "
|
|
438
|
-
overlayOpacity: "0.7"
|
|
274
|
+
boxShadowColor: _coreTokens["default"].color_grey_300_a
|
|
439
275
|
},
|
|
440
276
|
dropdown: {
|
|
441
|
-
buttonBackgroundColor:
|
|
442
|
-
hoverButtonBackgroundColor:
|
|
443
|
-
activeButtonBackgroundColor:
|
|
444
|
-
buttonFontFamily:
|
|
445
|
-
buttonFontSize:
|
|
446
|
-
buttonFontStyle:
|
|
447
|
-
buttonFontWeight:
|
|
448
|
-
buttonFontColor:
|
|
277
|
+
buttonBackgroundColor: _coreTokens["default"].color_white,
|
|
278
|
+
hoverButtonBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
279
|
+
activeButtonBackgroundColor: _coreTokens["default"].color_grey_300,
|
|
280
|
+
buttonFontFamily: _coreTokens["default"].type_sans,
|
|
281
|
+
buttonFontSize: _coreTokens["default"].type_scale_03,
|
|
282
|
+
buttonFontStyle: _coreTokens["default"].type_normal,
|
|
283
|
+
buttonFontWeight: _coreTokens["default"].type_regular,
|
|
284
|
+
buttonFontColor: _coreTokens["default"].color_black,
|
|
449
285
|
buttonIconSize: "20px",
|
|
450
286
|
buttonIconSpacing: "10px",
|
|
451
|
-
buttonIconColor:
|
|
452
|
-
buttonPaddingTop: "
|
|
453
|
-
buttonPaddingBottom: "
|
|
454
|
-
buttonPaddingLeft: "
|
|
455
|
-
buttonPaddingRight: "
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
287
|
+
buttonIconColor: _coreTokens["default"].color_black,
|
|
288
|
+
buttonPaddingTop: _coreTokens["default"].spacing_0,
|
|
289
|
+
buttonPaddingBottom: _coreTokens["default"].spacing_0,
|
|
290
|
+
buttonPaddingLeft: _coreTokens["default"].spacing_16,
|
|
291
|
+
buttonPaddingRight: _coreTokens["default"].spacing_16,
|
|
292
|
+
buttonHeight: "40px",
|
|
293
|
+
buttonBorderRadius: "4px",
|
|
294
|
+
buttonBorderStyle: _coreTokens["default"].border_none,
|
|
295
|
+
buttonBorderThickness: _coreTokens["default"].border_width_0,
|
|
296
|
+
buttonBorderColor: _coreTokens["default"].color_transparent,
|
|
297
|
+
disabledColor: _coreTokens["default"].color_grey_500,
|
|
298
|
+
disabledButtonBackgroundColor: _coreTokens["default"].color_transparent,
|
|
299
|
+
disabledButtonBorderColor: _coreTokens["default"].color_transparent,
|
|
300
|
+
optionBackgroundColor: _coreTokens["default"].color_white,
|
|
301
|
+
hoverOptionBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
302
|
+
activeOptionBackgroundColor: _coreTokens["default"].color_grey_300,
|
|
303
|
+
optionFontFamily: _coreTokens["default"].type_sans,
|
|
304
|
+
optionFontSize: _coreTokens["default"].type_scale_root,
|
|
305
|
+
optionFontStyle: _coreTokens["default"].type_normal,
|
|
306
|
+
optionFontWeight: _coreTokens["default"].type_regular,
|
|
307
|
+
optionFontColor: _coreTokens["default"].color_black,
|
|
467
308
|
optionIconSize: "20px",
|
|
468
309
|
optionIconSpacing: "10px",
|
|
469
|
-
optionIconColor:
|
|
310
|
+
optionIconColor: _coreTokens["default"].color_black,
|
|
470
311
|
optionPaddingTop: "6px",
|
|
471
312
|
optionPaddingBottom: "6px",
|
|
472
|
-
optionPaddingLeft: "
|
|
473
|
-
optionPaddingRight: "
|
|
313
|
+
optionPaddingLeft: _coreTokens["default"].spacing_16,
|
|
314
|
+
optionPaddingRight: _coreTokens["default"].spacing_16,
|
|
474
315
|
caretIconSize: "24px",
|
|
475
|
-
caretIconColor:
|
|
476
|
-
caretIconSpacing: "
|
|
316
|
+
caretIconColor: _coreTokens["default"].color_black,
|
|
317
|
+
caretIconSpacing: _coreTokens["default"].spacing_12,
|
|
477
318
|
borderRadius: "4px",
|
|
478
|
-
borderStyle: "
|
|
479
|
-
borderThickness: "
|
|
480
|
-
borderColor:
|
|
481
|
-
scrollBarThumbColor:
|
|
482
|
-
scrollBarTrackColor:
|
|
483
|
-
focusColor:
|
|
319
|
+
borderStyle: _coreTokens["default"].border_none,
|
|
320
|
+
borderThickness: _coreTokens["default"].border_width_0,
|
|
321
|
+
borderColor: _coreTokens["default"].color_transparent,
|
|
322
|
+
scrollBarThumbColor: _coreTokens["default"].color_grey_700,
|
|
323
|
+
scrollBarTrackColor: _coreTokens["default"].color_grey_300,
|
|
324
|
+
focusColor: _coreTokens["default"].color_blue_600
|
|
484
325
|
},
|
|
485
326
|
fileInput: {
|
|
486
|
-
dropBorderColor:
|
|
487
|
-
fileItemBorderColor:
|
|
488
|
-
fileNameFontColor:
|
|
489
|
-
labelFontColor:
|
|
490
|
-
helperTextFontColor:
|
|
491
|
-
dropLabelFontColor:
|
|
492
|
-
disabledLabelFontColor:
|
|
493
|
-
disabledHelperTextFontcolor:
|
|
494
|
-
disabledDropLabelFontColor:
|
|
495
|
-
focusDropBorderColor:
|
|
496
|
-
disabledDropBorderColor:
|
|
497
|
-
dragoverDropBackgroundColor:
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
errorFilePreviewIconColor: globalTokens.hal_red_s_41
|
|
327
|
+
dropBorderColor: _coreTokens["default"].color_black,
|
|
328
|
+
fileItemBorderColor: _coreTokens["default"].color_grey_300,
|
|
329
|
+
fileNameFontColor: _coreTokens["default"].color_black,
|
|
330
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
331
|
+
helperTextFontColor: _coreTokens["default"].color_black,
|
|
332
|
+
dropLabelFontColor: _coreTokens["default"].color_black,
|
|
333
|
+
disabledLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
334
|
+
disabledHelperTextFontcolor: _coreTokens["default"].color_grey_500,
|
|
335
|
+
disabledDropLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
336
|
+
focusDropBorderColor: _coreTokens["default"].color_blue_600,
|
|
337
|
+
disabledDropBorderColor: _coreTokens["default"].color_grey_500,
|
|
338
|
+
dragoverDropBackgroundColor: _coreTokens["default"].color_blue_50,
|
|
339
|
+
errorFileItemBorderColor: _coreTokens["default"].color_red_700,
|
|
340
|
+
errorFileItemBackgroundColor: _coreTokens["default"].color_red_50,
|
|
341
|
+
errorFilePreviewBackgroundColor: _coreTokens["default"].color_red_200,
|
|
342
|
+
errorFileItemIconColor: _coreTokens["default"].color_red_700,
|
|
343
|
+
fileItemIconBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
344
|
+
deleteFileItemColor: _coreTokens["default"].color_black,
|
|
345
|
+
errorMessageFontColor: _coreTokens["default"].color_red_700,
|
|
346
|
+
labelFontFamily: _coreTokens["default"].type_sans,
|
|
347
|
+
labelFontSize: _coreTokens["default"].type_scale_02,
|
|
348
|
+
labelFontWeight: _coreTokens["default"].type_semibold,
|
|
349
|
+
labelLineHeight: _coreTokens["default"].type_leading_loose_01,
|
|
350
|
+
fileItemFontFamily: _coreTokens["default"].type_sans,
|
|
351
|
+
fileItemFontSize: _coreTokens["default"].type_scale_02,
|
|
352
|
+
fileItemFontWeight: _coreTokens["default"].type_regular,
|
|
353
|
+
fileItemLineHeight: _coreTokens["default"].type_leading_normal,
|
|
354
|
+
helperTextFontFamily: _coreTokens["default"].type_sans,
|
|
355
|
+
helperTextFontSize: _coreTokens["default"].type_scale_01,
|
|
356
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
357
|
+
helperTextLineHeight: _coreTokens["default"].type_leading_normal,
|
|
358
|
+
dropLabelFontFamily: _coreTokens["default"].type_sans,
|
|
359
|
+
dropLabelFontSize: _coreTokens["default"].type_scale_03,
|
|
360
|
+
dropLabelFontWeight: _coreTokens["default"].type_regular,
|
|
361
|
+
errorMessageFontFamily: _coreTokens["default"].type_sans,
|
|
362
|
+
errorMessageFontSize: _coreTokens["default"].type_scale_01,
|
|
363
|
+
errorMessageFontWeight: _coreTokens["default"].type_regular,
|
|
364
|
+
errorMessageLineHeight: _coreTokens["default"].type_leading_normal,
|
|
365
|
+
dropBorderThickness: _coreTokens["default"].border_width_1,
|
|
366
|
+
dropBorderStyle: _coreTokens["default"].border_dashed,
|
|
367
|
+
dropBorderRadius: _coreTokens["default"].border_radius_large,
|
|
368
|
+
fileItemBorderThickness: _coreTokens["default"].border_width_1,
|
|
369
|
+
fileItemBorderStyle: _coreTokens["default"].border_solid,
|
|
370
|
+
fileItemBorderRadius: _coreTokens["default"].border_radius_medium,
|
|
371
|
+
hoverDeleteFileItemBackgroundColor: _coreTokens["default"].color_grey_100_a,
|
|
372
|
+
activeDeleteFileItemBackgroundColor: _coreTokens["default"].color_grey_300_a,
|
|
373
|
+
focusDeleteFileItemBorderColor: _coreTokens["default"].color_blue_600,
|
|
374
|
+
filePreviewBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
375
|
+
filePreviewIconColor: _coreTokens["default"].color_grey_600,
|
|
376
|
+
errorFilePreviewIconColor: _coreTokens["default"].color_red_700
|
|
537
377
|
},
|
|
538
378
|
footer: {
|
|
539
379
|
height: "124px",
|
|
540
|
-
backgroundColor:
|
|
541
|
-
bottomLinksDividerColor:
|
|
380
|
+
backgroundColor: _coreTokens["default"].color_black,
|
|
381
|
+
bottomLinksDividerColor: _coreTokens["default"].color_blue_600,
|
|
542
382
|
bottomLinksDividerThickness: "1px",
|
|
543
|
-
bottomLinksDividerStyle: "
|
|
544
|
-
bottomLinksDividerSpacing: "
|
|
545
|
-
bottomLinksFontFamily:
|
|
546
|
-
bottomLinksFontSize:
|
|
547
|
-
bottomLinksFontStyle:
|
|
548
|
-
bottomLinksFontWeight:
|
|
549
|
-
bottomLinksFontColor:
|
|
550
|
-
bottomLinksTextDecoration:
|
|
551
|
-
copyrightFontFamily:
|
|
552
|
-
copyrightFontSize:
|
|
553
|
-
copyrightFontStyle:
|
|
554
|
-
copyrightFontWeight:
|
|
555
|
-
copyrightFontColor:
|
|
383
|
+
bottomLinksDividerStyle: _coreTokens["default"].border_solid,
|
|
384
|
+
bottomLinksDividerSpacing: _coreTokens["default"].spacing_8,
|
|
385
|
+
bottomLinksFontFamily: _coreTokens["default"].type_sans,
|
|
386
|
+
bottomLinksFontSize: _coreTokens["default"].type_scale_01,
|
|
387
|
+
bottomLinksFontStyle: _coreTokens["default"].type_normal,
|
|
388
|
+
bottomLinksFontWeight: _coreTokens["default"].type_regular,
|
|
389
|
+
bottomLinksFontColor: _coreTokens["default"].color_white,
|
|
390
|
+
bottomLinksTextDecoration: _coreTokens["default"].type_no_line,
|
|
391
|
+
copyrightFontFamily: _coreTokens["default"].type_sans,
|
|
392
|
+
copyrightFontSize: _coreTokens["default"].type_scale_01,
|
|
393
|
+
copyrightFontStyle: _coreTokens["default"].type_normal,
|
|
394
|
+
copyrightFontWeight: _coreTokens["default"].type_regular,
|
|
395
|
+
copyrightFontColor: _coreTokens["default"].color_white,
|
|
556
396
|
logo: "",
|
|
557
397
|
logoHeight: "32px",
|
|
558
398
|
logoWidth: "auto",
|
|
559
399
|
socialLinksSize: "24px",
|
|
560
|
-
socialLinksGutter: "
|
|
561
|
-
socialLinksColor:
|
|
400
|
+
socialLinksGutter: _coreTokens["default"].spacing_16,
|
|
401
|
+
socialLinksColor: _coreTokens["default"].color_white
|
|
562
402
|
},
|
|
563
403
|
header: {
|
|
564
|
-
backgroundColor:
|
|
565
|
-
hamburguerFocusColor:
|
|
566
|
-
hamburguerFontFamily:
|
|
567
|
-
hamburguerFontStyle:
|
|
568
|
-
hamburguerFontColor:
|
|
404
|
+
backgroundColor: _coreTokens["default"].color_white,
|
|
405
|
+
hamburguerFocusColor: _coreTokens["default"].color_blue_600,
|
|
406
|
+
hamburguerFontFamily: _coreTokens["default"].type_sans,
|
|
407
|
+
hamburguerFontStyle: _coreTokens["default"].type_normal,
|
|
408
|
+
hamburguerFontColor: _coreTokens["default"].color_black,
|
|
569
409
|
hamburguerFontSize: "10px",
|
|
570
|
-
hamburguerFontWeight:
|
|
571
|
-
hamburguerTextTransform:
|
|
572
|
-
hamburguerIconColor:
|
|
573
|
-
hamburguerHoverColor:
|
|
410
|
+
hamburguerFontWeight: _coreTokens["default"].type_semibold,
|
|
411
|
+
hamburguerTextTransform: _coreTokens["default"].type_uppercase,
|
|
412
|
+
hamburguerIconColor: _coreTokens["default"].color_black,
|
|
413
|
+
hamburguerHoverColor: _coreTokens["default"].color_grey_200,
|
|
574
414
|
logo: "",
|
|
575
415
|
logoResponsive: "",
|
|
576
416
|
logoHeight: "40px",
|
|
577
417
|
logoWidth: "auto",
|
|
578
|
-
menuBackgroundColor:
|
|
418
|
+
menuBackgroundColor: _coreTokens["default"].color_white,
|
|
579
419
|
menuZindex: "2000",
|
|
580
420
|
menuTabletWidth: "60vw",
|
|
581
421
|
menuMobileWidth: "100vw",
|
|
582
422
|
minHeight: "64px",
|
|
583
|
-
overlayColor:
|
|
423
|
+
overlayColor: _coreTokens["default"].color_grey_800_a,
|
|
584
424
|
overlayOpacity: "0.7",
|
|
585
425
|
overlayZindex: "1600",
|
|
586
|
-
paddingTop: "
|
|
587
|
-
paddingBottom: "
|
|
588
|
-
paddingRight: "
|
|
589
|
-
paddingLeft: "
|
|
590
|
-
underlinedColor:
|
|
426
|
+
paddingTop: _coreTokens["default"].spacing_0,
|
|
427
|
+
paddingBottom: _coreTokens["default"].spacing_0,
|
|
428
|
+
paddingRight: _coreTokens["default"].spacing_24,
|
|
429
|
+
paddingLeft: _coreTokens["default"].spacing_24,
|
|
430
|
+
underlinedColor: _coreTokens["default"].color_black,
|
|
591
431
|
underlinedThickness: "2px",
|
|
592
|
-
underlinedStyle: "
|
|
593
|
-
contentColor:
|
|
594
|
-
contentColorOnDark: globalTokens.hal_white
|
|
432
|
+
underlinedStyle: _coreTokens["default"].border_solid,
|
|
433
|
+
contentColor: _coreTokens["default"].color_black
|
|
595
434
|
},
|
|
596
435
|
heading: {
|
|
597
|
-
level1FontColor:
|
|
598
|
-
level1FontFamily:
|
|
599
|
-
level1FontSize:
|
|
600
|
-
level1FontStyle:
|
|
601
|
-
level1FontWeight:
|
|
602
|
-
level1LineHeight:
|
|
603
|
-
level1LetterSpacing:
|
|
604
|
-
level2FontColor:
|
|
605
|
-
level2FontFamily:
|
|
606
|
-
level2FontSize:
|
|
607
|
-
level2FontStyle:
|
|
608
|
-
level2FontWeight:
|
|
609
|
-
level2LineHeight:
|
|
610
|
-
level2LetterSpacing:
|
|
611
|
-
level3FontColor:
|
|
612
|
-
level3FontFamily:
|
|
613
|
-
level3FontSize:
|
|
614
|
-
level3FontStyle:
|
|
615
|
-
level3FontWeight:
|
|
616
|
-
level3LineHeight:
|
|
617
|
-
level3LetterSpacing:
|
|
618
|
-
level4FontColor:
|
|
619
|
-
level4FontFamily:
|
|
620
|
-
level4FontSize:
|
|
621
|
-
level4FontStyle:
|
|
622
|
-
level4FontWeight:
|
|
623
|
-
level4LineHeight:
|
|
624
|
-
level4LetterSpacing:
|
|
625
|
-
level5FontColor:
|
|
626
|
-
level5FontFamily:
|
|
627
|
-
level5FontSize:
|
|
628
|
-
level5FontStyle:
|
|
629
|
-
level5FontWeight:
|
|
630
|
-
level5LineHeight:
|
|
631
|
-
level5LetterSpacing:
|
|
436
|
+
level1FontColor: _coreTokens["default"].inherit,
|
|
437
|
+
level1FontFamily: _coreTokens["default"].type_sans,
|
|
438
|
+
level1FontSize: _coreTokens["default"].type_scale_07,
|
|
439
|
+
level1FontStyle: _coreTokens["default"].type_normal,
|
|
440
|
+
level1FontWeight: _coreTokens["default"].type_semibold,
|
|
441
|
+
level1LineHeight: _coreTokens["default"].type_leading_compact_01,
|
|
442
|
+
level1LetterSpacing: _coreTokens["default"].type_spacing_tight_01,
|
|
443
|
+
level2FontColor: _coreTokens["default"].inherit,
|
|
444
|
+
level2FontFamily: _coreTokens["default"].type_sans,
|
|
445
|
+
level2FontSize: _coreTokens["default"].type_scale_05,
|
|
446
|
+
level2FontStyle: _coreTokens["default"].type_normal,
|
|
447
|
+
level2FontWeight: _coreTokens["default"].type_semibold,
|
|
448
|
+
level2LineHeight: _coreTokens["default"].type_leading_normal,
|
|
449
|
+
level2LetterSpacing: _coreTokens["default"].type_spacing_normal,
|
|
450
|
+
level3FontColor: _coreTokens["default"].inherit,
|
|
451
|
+
level3FontFamily: _coreTokens["default"].type_sans,
|
|
452
|
+
level3FontSize: _coreTokens["default"].type_scale_04,
|
|
453
|
+
level3FontStyle: _coreTokens["default"].type_normal,
|
|
454
|
+
level3FontWeight: _coreTokens["default"].type_semibold,
|
|
455
|
+
level3LineHeight: _coreTokens["default"].type_leading_compact_01,
|
|
456
|
+
level3LetterSpacing: _coreTokens["default"].type_spacing_wide_01,
|
|
457
|
+
level4FontColor: _coreTokens["default"].inherit,
|
|
458
|
+
level4FontFamily: _coreTokens["default"].type_sans,
|
|
459
|
+
level4FontSize: _coreTokens["default"].type_scale_03,
|
|
460
|
+
level4FontStyle: _coreTokens["default"].type_normal,
|
|
461
|
+
level4FontWeight: _coreTokens["default"].type_semibold,
|
|
462
|
+
level4LineHeight: _coreTokens["default"].type_leading_normal,
|
|
463
|
+
level4LetterSpacing: _coreTokens["default"].type_spacing_normal,
|
|
464
|
+
level5FontColor: _coreTokens["default"].inherit,
|
|
465
|
+
level5FontFamily: _coreTokens["default"].type_sans,
|
|
466
|
+
level5FontSize: _coreTokens["default"].type_scale_02,
|
|
467
|
+
level5FontStyle: _coreTokens["default"].type_normal,
|
|
468
|
+
level5FontWeight: _coreTokens["default"].type_semibold,
|
|
469
|
+
level5LineHeight: _coreTokens["default"].type_leading_normal,
|
|
470
|
+
level5LetterSpacing: _coreTokens["default"].type_spacing_wide_01
|
|
632
471
|
},
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
focusBorderColorOnDark: globalTokens.hal_blue_l_50,
|
|
641
|
-
disabledBorderColor: globalTokens.hal_grey_l_60,
|
|
642
|
-
disabledBorderColorOnDark: globalTokens.hal_grey_l_60,
|
|
643
|
-
disabledContainerFillColor: globalTokens.hal_grey_l_95,
|
|
644
|
-
disabledContainerFillColorOnDark: globalTokens.hal_grey_s_40,
|
|
645
|
-
errorBorderColor: globalTokens.hal_red_s_41,
|
|
646
|
-
errorBorderColorOnDark: globalTokens.hal_red_l_60,
|
|
647
|
-
hoverErrorBorderColor: globalTokens.color_red_600,
|
|
648
|
-
hoverErrorBorderColorOnDark: "#fe677b",
|
|
649
|
-
inputMarginTop: globalTokens.spacing_02,
|
|
650
|
-
inputMarginBottom: globalTokens.spacing_02,
|
|
651
|
-
errorMessageColor: globalTokens.hal_red_s_41,
|
|
652
|
-
errorMessageColorOnDark: globalTokens.hal_red_l_60,
|
|
653
|
-
errorIconColor: globalTokens.hal_red_s_41,
|
|
654
|
-
errorIconColorOnDark: globalTokens.hal_red_l_60,
|
|
655
|
-
labelFontColor: globalTokens.hal_black,
|
|
656
|
-
labelFontColorOnDark: globalTokens.hal_white,
|
|
657
|
-
labelFontSize: globalTokens.type_scale_02,
|
|
658
|
-
labelFontStyle: globalTokens.type_normal,
|
|
659
|
-
labelFontWeight: globalTokens.type_semibold,
|
|
660
|
-
labelLineHeight: globalTokens.type_leading_loose_01,
|
|
661
|
-
disabledLabelFontColor: globalTokens.hal_grey_l_60,
|
|
662
|
-
disabledLabelFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
663
|
-
optionalLabelFontWeight: globalTokens.type_regular,
|
|
664
|
-
helperTextFontColor: globalTokens.hal_black,
|
|
665
|
-
helperTextFontColorOnDark: globalTokens.hal_white,
|
|
666
|
-
helperTextFontSize: globalTokens.type_scale_01,
|
|
667
|
-
helperTextFontStyle: globalTokens.type_normal,
|
|
668
|
-
helperTextFontWeight: globalTokens.type_regular,
|
|
669
|
-
helperTextLineHeight: globalTokens.type_leading_normal,
|
|
670
|
-
disabledHelperTextFontColor: globalTokens.hal_grey_l_60,
|
|
671
|
-
disabledHelperTextFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
672
|
-
prefixColor: globalTokens.hal_grey_s_40,
|
|
673
|
-
prefixColorOnDark: globalTokens.hal_white,
|
|
674
|
-
suffixColor: globalTokens.hal_grey_s_40,
|
|
675
|
-
suffixColorOnDark: globalTokens.hal_white,
|
|
676
|
-
disabledPrefixColor: globalTokens.hal_grey_l_75,
|
|
677
|
-
disabledSuffixColor: globalTokens.hal_grey_l_75,
|
|
678
|
-
disabledPrefixColorOnDark: globalTokens.hal_grey_l_60,
|
|
679
|
-
disabledSuffixColorOnDark: globalTokens.hal_grey_l_60,
|
|
680
|
-
placeholderFontColor: "#000000b3",
|
|
681
|
-
placeholderFontColorOnDark: globalTokens.hal_grey_l_95,
|
|
682
|
-
disabledPlaceholderFontColor: globalTokens.hal_grey_l_60,
|
|
683
|
-
disabledPlaceholderFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
684
|
-
valueFontColor: globalTokens.hal_black,
|
|
685
|
-
valueFontColorOnDark: globalTokens.hal_white,
|
|
686
|
-
valueFontSize: globalTokens.type_scale_03,
|
|
687
|
-
valueFontStyle: globalTokens.type_normal,
|
|
688
|
-
valueFontWeight: globalTokens.type_regular,
|
|
689
|
-
disabledValueFontColor: globalTokens.hal_grey_l_60,
|
|
690
|
-
disabledValueFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
691
|
-
actionIconColor: globalTokens.hal_black,
|
|
692
|
-
actionIconColorOnDark: globalTokens.hal_white,
|
|
693
|
-
disabledActionIconColor: globalTokens.hal_grey_l_60,
|
|
694
|
-
disabledActionIconColorOnDark: globalTokens.hal_grey_l_60,
|
|
695
|
-
hoverActionIconColor: globalTokens.hal_black,
|
|
696
|
-
hoverActionIconColorOnDark: globalTokens.hal_white,
|
|
697
|
-
focusActionIconColor: globalTokens.hal_black,
|
|
698
|
-
focusActionIconColorOnDark: globalTokens.hal_white,
|
|
699
|
-
activeActionIconColor: globalTokens.hal_black,
|
|
700
|
-
activeActionIconColorOnDark: globalTokens.hal_black,
|
|
701
|
-
actionBackgroundColor: globalTokens.transparent,
|
|
702
|
-
actionBackgroundColorOnDark: globalTokens.transparent,
|
|
703
|
-
disabledActionBackgroundColor: globalTokens.transparent,
|
|
704
|
-
disabledActionBackgroundColorOnDark: globalTokens.transparent,
|
|
705
|
-
hoverActionBackgroundColor: globalTokens.hal_grey_l_95,
|
|
706
|
-
hoverActionBackgroundColorOnDark: globalTokens.hal_grey_s_40,
|
|
707
|
-
focusActionBorderColor: globalTokens.hal_blue_l_50,
|
|
708
|
-
focusActionBorderColorOnDark: globalTokens.hal_blue_l_50,
|
|
709
|
-
activeActionBackgroundColor: globalTokens.hal_grey_l_80,
|
|
710
|
-
activeActionBackgroundColorOnDark: globalTokens.hal_grey_l_60,
|
|
711
|
-
listDialogBackgroundColor: globalTokens.hal_white,
|
|
712
|
-
listDialogBorderColor: globalTokens.hal_grey_l_75,
|
|
713
|
-
listOptionDividerColor: globalTokens.hal_grey_l_90,
|
|
714
|
-
listOptionFontColor: globalTokens.hal_black,
|
|
715
|
-
listOptionFontSize: globalTokens.type_scale_02,
|
|
716
|
-
listOptionFontStyle: globalTokens.type_normal,
|
|
717
|
-
listOptionFontWeight: globalTokens.type_regular,
|
|
718
|
-
systemMessageFontColor: globalTokens.hal_grey_s_40,
|
|
719
|
-
errorListDialogFontColor: globalTokens.hal_black,
|
|
720
|
-
errorListDialogBackgroundColor: globalTokens.color_red_50,
|
|
721
|
-
errorListDialogBorderColor: globalTokens.hal_red_s_41,
|
|
722
|
-
hoverListOptionBackgroundColor: globalTokens.hal_grey_l_95,
|
|
723
|
-
activeListOptionBackgroundColor: globalTokens.hal_grey_l_80,
|
|
724
|
-
focusListOptionBorderColor: globalTokens.hal_blue_l_50
|
|
472
|
+
image: {
|
|
473
|
+
captionFontColor: _coreTokens["default"].color_grey_900,
|
|
474
|
+
captionFontFamily: _coreTokens["default"].type_sans,
|
|
475
|
+
captionFontSize: _coreTokens["default"].type_scale_02,
|
|
476
|
+
captionFontStyle: _coreTokens["default"].type_normal,
|
|
477
|
+
captionFontWeight: _coreTokens["default"].type_regular,
|
|
478
|
+
captionLineHeight: _coreTokens["default"].type_leading_normal
|
|
725
479
|
},
|
|
726
480
|
link: {
|
|
727
|
-
fontColor:
|
|
728
|
-
fontFamily:
|
|
729
|
-
fontSize:
|
|
730
|
-
fontStyle:
|
|
731
|
-
fontWeight:
|
|
481
|
+
fontColor: _coreTokens["default"].color_blue_800,
|
|
482
|
+
fontFamily: _coreTokens["default"].inherit,
|
|
483
|
+
fontSize: _coreTokens["default"].inherit,
|
|
484
|
+
fontStyle: _coreTokens["default"].type_normal,
|
|
485
|
+
fontWeight: _coreTokens["default"].type_regular,
|
|
732
486
|
iconSize: "16px",
|
|
733
|
-
iconSpacing: "
|
|
734
|
-
underlineSpacing: "
|
|
735
|
-
underlineStyle: "
|
|
487
|
+
iconSpacing: _coreTokens["default"].spacing_4,
|
|
488
|
+
underlineSpacing: _coreTokens["default"].spacing_0,
|
|
489
|
+
underlineStyle: _coreTokens["default"].border_solid,
|
|
736
490
|
underlineThickness: "1px",
|
|
737
|
-
|
|
738
|
-
hoverFontColor:
|
|
739
|
-
hoverUnderlineColor:
|
|
740
|
-
visitedFontColor:
|
|
741
|
-
visitedUnderlineColor:
|
|
742
|
-
activeFontColor:
|
|
743
|
-
activeUnderlineColor:
|
|
744
|
-
focusColor:
|
|
491
|
+
disabledFontColor: _coreTokens["default"].color_grey_500,
|
|
492
|
+
hoverFontColor: _coreTokens["default"].color_blue_800,
|
|
493
|
+
hoverUnderlineColor: _coreTokens["default"].color_blue_800,
|
|
494
|
+
visitedFontColor: _coreTokens["default"].color_purple_700,
|
|
495
|
+
visitedUnderlineColor: _coreTokens["default"].color_purple_700,
|
|
496
|
+
activeFontColor: _coreTokens["default"].color_black,
|
|
497
|
+
activeUnderlineColor: _coreTokens["default"].color_black,
|
|
498
|
+
focusColor: _coreTokens["default"].color_blue_600
|
|
499
|
+
},
|
|
500
|
+
navTabs: {
|
|
501
|
+
selectedBackgroundColor: _coreTokens["default"].color_white,
|
|
502
|
+
unselectedBackgroundColor: _coreTokens["default"].color_white,
|
|
503
|
+
hoverBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
504
|
+
pressedBackgroundColor: _coreTokens["default"].color_grey_200,
|
|
505
|
+
selectedFontColor: _coreTokens["default"].color_grey_700,
|
|
506
|
+
unselectedFontColor: _coreTokens["default"].color_grey_700,
|
|
507
|
+
disabledFontColor: _coreTokens["default"].color_grey_500,
|
|
508
|
+
focusOutline: _coreTokens["default"].color_blue_600,
|
|
509
|
+
selectedUnderlineColor: _coreTokens["default"].color_purple_700,
|
|
510
|
+
dividerColor: _coreTokens["default"].color_grey_400,
|
|
511
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
512
|
+
fontSize: _coreTokens["default"].type_scale_03,
|
|
513
|
+
fontStyle: _coreTokens["default"].type_normal,
|
|
514
|
+
fontWeight: _coreTokens["default"].type_regular,
|
|
515
|
+
selectedIconColor: _coreTokens["default"].color_grey_700,
|
|
516
|
+
unselectedIconColor: _coreTokens["default"].color_grey_700,
|
|
517
|
+
disabledIconColor: _coreTokens["default"].color_grey_500
|
|
745
518
|
},
|
|
746
519
|
paginator: {
|
|
747
|
-
backgroundColor:
|
|
748
|
-
fontColor:
|
|
749
|
-
fontFamily:
|
|
750
|
-
fontSize:
|
|
751
|
-
fontStyle:
|
|
752
|
-
fontWeight:
|
|
520
|
+
backgroundColor: _coreTokens["default"].color_grey_100,
|
|
521
|
+
fontColor: _coreTokens["default"].color_black,
|
|
522
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
523
|
+
fontSize: _coreTokens["default"].type_scale_02,
|
|
524
|
+
fontStyle: _coreTokens["default"].type_normal,
|
|
525
|
+
fontWeight: _coreTokens["default"].type_regular,
|
|
753
526
|
fontTextTransform: "none",
|
|
754
|
-
verticalPadding: "
|
|
755
|
-
horizontalPadding: "
|
|
756
|
-
marginRight: "
|
|
757
|
-
marginLeft: "
|
|
758
|
-
itemsPerPageSelectorMarginLeft: "
|
|
759
|
-
itemsPerPageSelectorMarginRight: "
|
|
527
|
+
verticalPadding: _coreTokens["default"].spacing_12,
|
|
528
|
+
horizontalPadding: _coreTokens["default"].spacing_32,
|
|
529
|
+
marginRight: _coreTokens["default"].spacing_40,
|
|
530
|
+
marginLeft: "20px",
|
|
531
|
+
itemsPerPageSelectorMarginLeft: _coreTokens["default"].spacing_0,
|
|
532
|
+
itemsPerPageSelectorMarginRight: _coreTokens["default"].spacing_8,
|
|
760
533
|
pageSelectorMarginRight: "30px",
|
|
761
|
-
pageSelectorMarginLeft: "
|
|
762
|
-
totalItemsContainerMarginRight: "
|
|
763
|
-
totalItemsContainerMarginLeft: "
|
|
534
|
+
pageSelectorMarginLeft: _coreTokens["default"].spacing_0,
|
|
535
|
+
totalItemsContainerMarginRight: _coreTokens["default"].spacing_40,
|
|
536
|
+
totalItemsContainerMarginLeft: _coreTokens["default"].spacing_0
|
|
764
537
|
},
|
|
765
538
|
paragraph: {
|
|
766
|
-
fontColor: globalTokens.hal_black,
|
|
767
|
-
fontColorOnDark: globalTokens.hal_white,
|
|
768
539
|
display: "block",
|
|
769
|
-
|
|
770
|
-
|
|
540
|
+
fontColor: _coreTokens["default"].color_black,
|
|
541
|
+
fontSize: _coreTokens["default"].type_scale_03,
|
|
542
|
+
fontWeight: _coreTokens["default"].type_regular
|
|
771
543
|
},
|
|
772
544
|
progressBar: {
|
|
773
|
-
trackLineColor:
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
helperTextFontSize: globalTokens.type_scale_01,
|
|
793
|
-
helperTextFontStyle: globalTokens.type_normal,
|
|
794
|
-
helperTextFontWeight: globalTokens.type_regular,
|
|
795
|
-
helperTextFontFamily: globalTokens.type_sans,
|
|
545
|
+
trackLineColor: _coreTokens["default"].color_purple_700,
|
|
546
|
+
totalLineColor: _coreTokens["default"].color_grey_200,
|
|
547
|
+
labelFontFamily: _coreTokens["default"].type_sans,
|
|
548
|
+
labelFontSize: _coreTokens["default"].type_scale_01,
|
|
549
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
550
|
+
labelFontWeight: _coreTokens["default"].type_regular,
|
|
551
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
552
|
+
labelFontTextTransform: _coreTokens["default"].type_uppercase,
|
|
553
|
+
valueFontFamily: _coreTokens["default"].type_sans,
|
|
554
|
+
valueFontSize: _coreTokens["default"].type_scale_01,
|
|
555
|
+
valueFontStyle: _coreTokens["default"].type_normal,
|
|
556
|
+
valueFontWeight: _coreTokens["default"].type_regular,
|
|
557
|
+
valueFontColor: _coreTokens["default"].color_black,
|
|
558
|
+
valueFontTextTransform: _coreTokens["default"].type_uppercase,
|
|
559
|
+
helperTextFontColor: _coreTokens["default"].color_black,
|
|
560
|
+
helperTextFontSize: _coreTokens["default"].type_scale_01,
|
|
561
|
+
helperTextFontStyle: _coreTokens["default"].type_normal,
|
|
562
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
563
|
+
helperTextFontFamily: _coreTokens["default"].type_sans,
|
|
796
564
|
thickness: "9px",
|
|
797
565
|
borderRadius: "5px",
|
|
798
|
-
overlayColor:
|
|
799
|
-
|
|
566
|
+
overlayColor: _coreTokens["default"].color_grey_800_a,
|
|
567
|
+
overlayFontColor: _coreTokens["default"].color_white
|
|
800
568
|
},
|
|
801
569
|
quickNav: {
|
|
802
|
-
fontColor:
|
|
803
|
-
hoverFontColor:
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
fontWeight: globalTokens.type_regular
|
|
570
|
+
fontColor: _coreTokens["default"].color_grey_700,
|
|
571
|
+
hoverFontColor: _coreTokens["default"].color_purple_600,
|
|
572
|
+
dividerBorderColor: _coreTokens["default"].color_grey_400,
|
|
573
|
+
focusBorderColor: _coreTokens["default"].color_blue_600,
|
|
574
|
+
focusBorderStyle: _coreTokens["default"].border_solid,
|
|
575
|
+
focusBorderThickness: _coreTokens["default"].border_width_2,
|
|
576
|
+
focusBorderRadius: _coreTokens["default"].border_width_2,
|
|
577
|
+
paddingTop: _coreTokens["default"].spacing_8,
|
|
578
|
+
paddingBottom: _coreTokens["default"].spacing_8,
|
|
579
|
+
paddingLeft: _coreTokens["default"].spacing_16,
|
|
580
|
+
paddingRight: _coreTokens["default"].spacing_16,
|
|
581
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
582
|
+
fontSize: _coreTokens["default"].type_scale_02,
|
|
583
|
+
fontStyle: _coreTokens["default"].type_normal,
|
|
584
|
+
fontWeight: _coreTokens["default"].type_regular
|
|
818
585
|
},
|
|
819
586
|
radioGroup: {
|
|
820
|
-
fontFamily:
|
|
821
|
-
radioInputColor:
|
|
822
|
-
hoverRadioInputColor:
|
|
823
|
-
focusBorderColor:
|
|
824
|
-
activeRadioInputColor:
|
|
825
|
-
errorRadioInputColor:
|
|
826
|
-
hoverErrorRadioInputColor:
|
|
827
|
-
activeErrorRadioInputColor:
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
disabledRadioInputColor:
|
|
832
|
-
disabledLabelFontColor:
|
|
833
|
-
disabledHelperTextFontColor:
|
|
834
|
-
disabledRadioInputLabelFontColor:
|
|
835
|
-
errorMessageColor:
|
|
836
|
-
labelFontColor:
|
|
837
|
-
labelFontSize:
|
|
838
|
-
labelFontStyle:
|
|
839
|
-
labelFontWeight:
|
|
840
|
-
labelLineHeight:
|
|
841
|
-
optionalLabelFontWeight:
|
|
842
|
-
helperTextFontColor:
|
|
843
|
-
helperTextFontSize:
|
|
844
|
-
helperTextFontStyle:
|
|
845
|
-
helperTextFontWeight:
|
|
846
|
-
helperTextLineHeight:
|
|
847
|
-
radioInputLabelFontColor:
|
|
848
|
-
radioInputLabelFontSize:
|
|
849
|
-
radioInputLabelFontStyle:
|
|
850
|
-
radioInputLabelFontWeight:
|
|
851
|
-
radioInputLabelLineHeight:
|
|
852
|
-
groupLabelMargin:
|
|
853
|
-
radioInputLabelMargin:
|
|
854
|
-
groupVerticalGutter:
|
|
855
|
-
groupHorizontalGutter:
|
|
587
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
588
|
+
radioInputColor: _coreTokens["default"].color_blue_700,
|
|
589
|
+
hoverRadioInputColor: _coreTokens["default"].color_blue_800,
|
|
590
|
+
focusBorderColor: _coreTokens["default"].color_blue_600,
|
|
591
|
+
activeRadioInputColor: _coreTokens["default"].color_blue_900,
|
|
592
|
+
errorRadioInputColor: _coreTokens["default"].color_red_700,
|
|
593
|
+
hoverErrorRadioInputColor: _coreTokens["default"].color_red_800,
|
|
594
|
+
activeErrorRadioInputColor: _coreTokens["default"].color_red_900,
|
|
595
|
+
readOnlyRadioInputColor: _coreTokens["default"].color_grey_500,
|
|
596
|
+
hoverReadOnlyRadioInputColor: _coreTokens["default"].color_grey_600,
|
|
597
|
+
activeReadOnlyRadioInputColor: _coreTokens["default"].color_grey_700,
|
|
598
|
+
disabledRadioInputColor: _coreTokens["default"].color_grey_500,
|
|
599
|
+
disabledLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
600
|
+
disabledHelperTextFontColor: _coreTokens["default"].color_grey_500,
|
|
601
|
+
disabledRadioInputLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
602
|
+
errorMessageColor: _coreTokens["default"].color_red_700,
|
|
603
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
604
|
+
labelFontSize: _coreTokens["default"].type_scale_02,
|
|
605
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
606
|
+
labelFontWeight: _coreTokens["default"].type_semibold,
|
|
607
|
+
labelLineHeight: _coreTokens["default"].type_leading_loose_01,
|
|
608
|
+
optionalLabelFontWeight: _coreTokens["default"].type_regular,
|
|
609
|
+
helperTextFontColor: _coreTokens["default"].color_black,
|
|
610
|
+
helperTextFontSize: _coreTokens["default"].type_scale_01,
|
|
611
|
+
helperTextFontStyle: _coreTokens["default"].type_normal,
|
|
612
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
613
|
+
helperTextLineHeight: _coreTokens["default"].type_leading_normal,
|
|
614
|
+
radioInputLabelFontColor: _coreTokens["default"].color_black,
|
|
615
|
+
radioInputLabelFontSize: _coreTokens["default"].type_scale_02,
|
|
616
|
+
radioInputLabelFontStyle: _coreTokens["default"].type_normal,
|
|
617
|
+
radioInputLabelFontWeight: _coreTokens["default"].type_regular,
|
|
618
|
+
radioInputLabelLineHeight: _coreTokens["default"].type_leading_loose_01,
|
|
619
|
+
groupLabelMargin: _coreTokens["default"].spacing_8,
|
|
620
|
+
radioInputLabelMargin: _coreTokens["default"].spacing_8,
|
|
621
|
+
groupVerticalGutter: _coreTokens["default"].spacing_4,
|
|
622
|
+
groupHorizontalGutter: _coreTokens["default"].spacing_32
|
|
856
623
|
},
|
|
857
624
|
select: {
|
|
858
|
-
fontFamily:
|
|
859
|
-
disabledColor:
|
|
860
|
-
enabledInputBorderColor:
|
|
861
|
-
hoverInputBorderColor:
|
|
862
|
-
focusInputBorderColor:
|
|
863
|
-
errorInputBorderColor:
|
|
864
|
-
hoverInputErrorBorderColor:
|
|
865
|
-
disabledInputBorderColor:
|
|
866
|
-
disabledInputBackgroundColor:
|
|
867
|
-
inputMarginTop:
|
|
868
|
-
inputMarginBottom:
|
|
869
|
-
errorMessageColor:
|
|
870
|
-
errorIconColor:
|
|
871
|
-
labelFontColor:
|
|
872
|
-
labelFontSize:
|
|
873
|
-
labelFontStyle:
|
|
874
|
-
labelFontWeight:
|
|
875
|
-
labelLineHeight:
|
|
876
|
-
optionalLabelFontWeight:
|
|
877
|
-
helperTextFontColor:
|
|
878
|
-
helperTextFontSize:
|
|
879
|
-
helperTextFontStyle:
|
|
880
|
-
helperTextFontWeight:
|
|
881
|
-
helperTextLineHeight:
|
|
882
|
-
placeholderFontColor: "
|
|
883
|
-
valueFontColor:
|
|
884
|
-
valueFontSize:
|
|
885
|
-
valueFontStyle:
|
|
886
|
-
valueFontWeight:
|
|
887
|
-
actionIconColor:
|
|
888
|
-
hoverActionIconColor:
|
|
889
|
-
activeActionIconColor:
|
|
890
|
-
actionBackgroundColor:
|
|
891
|
-
hoverActionBackgroundColor:
|
|
892
|
-
activeActionBackgroundColor:
|
|
893
|
-
listOptionFontColor:
|
|
894
|
-
listOptionFontSize:
|
|
895
|
-
listOptionFontStyle:
|
|
896
|
-
listOptionFontWeight:
|
|
897
|
-
listOptionIconColor:
|
|
898
|
-
listOptionDividerColor:
|
|
899
|
-
listGroupLabelFontWeight:
|
|
900
|
-
focusListOptionBorderColor:
|
|
901
|
-
systemMessageFontColor:
|
|
902
|
-
collapseIndicatorColor:
|
|
903
|
-
listDialogBackgroundColor:
|
|
904
|
-
listDialogBorderColor:
|
|
905
|
-
selectedListOptionBackgroundColor:
|
|
906
|
-
selectedHoverListOptionBackgroundColor:
|
|
907
|
-
selectedActiveListOptionBackgroundColor:
|
|
908
|
-
selectedListOptionIconColor:
|
|
909
|
-
unselectedHoverListOptionBackgroundColor:
|
|
910
|
-
unselectedActiveListOptionBackgroundColor:
|
|
911
|
-
selectionIndicatorFontColor:
|
|
912
|
-
selectionIndicatorFontSize:
|
|
913
|
-
selectionIndicatorFontStyle:
|
|
914
|
-
selectionIndicatorFontWeight:
|
|
915
|
-
selectionIndicatorBorderColor:
|
|
916
|
-
selectionIndicatorBackgroundColor:
|
|
917
|
-
enabledSelectionIndicatorActionBackgroundColor:
|
|
918
|
-
enabledSelectionIndicatorActionIconColor:
|
|
919
|
-
hoverSelectionIndicatorActionBackgroundColor:
|
|
920
|
-
hoverSelectionIndicatorActionIconColor:
|
|
921
|
-
activeSelectionIndicatorActionBackgroundColor:
|
|
922
|
-
activeSelectionIndicatorActionIconColor:
|
|
625
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
626
|
+
disabledColor: _coreTokens["default"].color_grey_500,
|
|
627
|
+
enabledInputBorderColor: _coreTokens["default"].color_black,
|
|
628
|
+
hoverInputBorderColor: _coreTokens["default"].color_purple_500,
|
|
629
|
+
focusInputBorderColor: _coreTokens["default"].color_blue_600,
|
|
630
|
+
errorInputBorderColor: _coreTokens["default"].color_red_700,
|
|
631
|
+
hoverInputErrorBorderColor: _coreTokens["default"].color_red_600,
|
|
632
|
+
disabledInputBorderColor: _coreTokens["default"].color_grey_500,
|
|
633
|
+
disabledInputBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
634
|
+
inputMarginTop: _coreTokens["default"].spacing_4,
|
|
635
|
+
inputMarginBottom: _coreTokens["default"].spacing_4,
|
|
636
|
+
errorMessageColor: _coreTokens["default"].color_red_700,
|
|
637
|
+
errorIconColor: _coreTokens["default"].color_red_700,
|
|
638
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
639
|
+
labelFontSize: _coreTokens["default"].type_scale_02,
|
|
640
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
641
|
+
labelFontWeight: _coreTokens["default"].type_semibold,
|
|
642
|
+
labelLineHeight: _coreTokens["default"].type_leading_loose_01,
|
|
643
|
+
optionalLabelFontWeight: _coreTokens["default"].type_regular,
|
|
644
|
+
helperTextFontColor: _coreTokens["default"].color_black,
|
|
645
|
+
helperTextFontSize: _coreTokens["default"].type_scale_01,
|
|
646
|
+
helperTextFontStyle: _coreTokens["default"].type_normal,
|
|
647
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
648
|
+
helperTextLineHeight: _coreTokens["default"].type_leading_normal,
|
|
649
|
+
placeholderFontColor: _coreTokens["default"].color_grey_800_a,
|
|
650
|
+
valueFontColor: _coreTokens["default"].color_black,
|
|
651
|
+
valueFontSize: _coreTokens["default"].type_scale_03,
|
|
652
|
+
valueFontStyle: _coreTokens["default"].type_normal,
|
|
653
|
+
valueFontWeight: _coreTokens["default"].type_regular,
|
|
654
|
+
actionIconColor: _coreTokens["default"].color_black,
|
|
655
|
+
hoverActionIconColor: _coreTokens["default"].color_black,
|
|
656
|
+
activeActionIconColor: _coreTokens["default"].color_black,
|
|
657
|
+
actionBackgroundColor: _coreTokens["default"].color_transparent,
|
|
658
|
+
hoverActionBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
659
|
+
activeActionBackgroundColor: _coreTokens["default"].color_grey_300,
|
|
660
|
+
listOptionFontColor: _coreTokens["default"].color_black,
|
|
661
|
+
listOptionFontSize: _coreTokens["default"].type_scale_02,
|
|
662
|
+
listOptionFontStyle: _coreTokens["default"].type_normal,
|
|
663
|
+
listOptionFontWeight: _coreTokens["default"].type_regular,
|
|
664
|
+
listOptionIconColor: _coreTokens["default"].color_black,
|
|
665
|
+
listOptionDividerColor: _coreTokens["default"].color_grey_200,
|
|
666
|
+
listGroupLabelFontWeight: _coreTokens["default"].type_semibold,
|
|
667
|
+
focusListOptionBorderColor: _coreTokens["default"].color_blue_600,
|
|
668
|
+
systemMessageFontColor: _coreTokens["default"].color_grey_700,
|
|
669
|
+
collapseIndicatorColor: _coreTokens["default"].color_black,
|
|
670
|
+
listDialogBackgroundColor: _coreTokens["default"].color_white,
|
|
671
|
+
listDialogBorderColor: _coreTokens["default"].color_grey_400,
|
|
672
|
+
selectedListOptionBackgroundColor: _coreTokens["default"].color_blue_100,
|
|
673
|
+
selectedHoverListOptionBackgroundColor: _coreTokens["default"].color_blue_200,
|
|
674
|
+
selectedActiveListOptionBackgroundColor: _coreTokens["default"].color_blue_300,
|
|
675
|
+
selectedListOptionIconColor: _coreTokens["default"].color_blue_900,
|
|
676
|
+
unselectedHoverListOptionBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
677
|
+
unselectedActiveListOptionBackgroundColor: _coreTokens["default"].color_grey_200,
|
|
678
|
+
selectionIndicatorFontColor: _coreTokens["default"].color_black,
|
|
679
|
+
selectionIndicatorFontSize: _coreTokens["default"].type_scale_01,
|
|
680
|
+
selectionIndicatorFontStyle: _coreTokens["default"].type_regular,
|
|
681
|
+
selectionIndicatorFontWeight: _coreTokens["default"].type_normal,
|
|
682
|
+
selectionIndicatorBorderColor: _coreTokens["default"].color_grey_400,
|
|
683
|
+
selectionIndicatorBackgroundColor: _coreTokens["default"].color_grey_50,
|
|
684
|
+
enabledSelectionIndicatorActionBackgroundColor: _coreTokens["default"].color_transparent,
|
|
685
|
+
enabledSelectionIndicatorActionIconColor: _coreTokens["default"].color_black,
|
|
686
|
+
hoverSelectionIndicatorActionBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
687
|
+
hoverSelectionIndicatorActionIconColor: _coreTokens["default"].color_black,
|
|
688
|
+
activeSelectionIndicatorActionBackgroundColor: _coreTokens["default"].color_grey_300,
|
|
689
|
+
activeSelectionIndicatorActionIconColor: _coreTokens["default"].color_black
|
|
923
690
|
},
|
|
924
691
|
sidenav: {
|
|
925
|
-
backgroundColor:
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
titleFontWeight: globalTokens.type_regular,
|
|
932
|
-
titleFontColor: globalTokens.hal_black,
|
|
692
|
+
backgroundColor: _coreTokens["default"].color_grey_100,
|
|
693
|
+
titleFontFamily: _coreTokens["default"].type_sans,
|
|
694
|
+
titleFontSize: _coreTokens["default"].type_scale_04,
|
|
695
|
+
titleFontStyle: _coreTokens["default"].type_normal,
|
|
696
|
+
titleFontWeight: _coreTokens["default"].type_semibold,
|
|
697
|
+
titleFontColor: _coreTokens["default"].color_grey_800,
|
|
933
698
|
titleFontTextTransform: "none",
|
|
934
|
-
titleFontLetterSpacing:
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
699
|
+
titleFontLetterSpacing: _coreTokens["default"].type_spacing_normal,
|
|
700
|
+
groupTitleFontFamily: _coreTokens["default"].type_sans,
|
|
701
|
+
groupTitleFontSize: _coreTokens["default"].type_scale_02,
|
|
702
|
+
groupTitleFontStyle: _coreTokens["default"].type_normal,
|
|
703
|
+
groupTitleFontWeight: _coreTokens["default"].type_semibold,
|
|
704
|
+
groupTitleFontColor: _coreTokens["default"].color_black,
|
|
705
|
+
groupTitleHoverBackgroundColor: _coreTokens["default"].color_grey_200,
|
|
706
|
+
groupTitleActiveBackgroundColor: _coreTokens["default"].color_grey_800,
|
|
707
|
+
groupTitleSelectedFontColor: _coreTokens["default"].color_white,
|
|
708
|
+
groupTitleSelectedBackgroundColor: _coreTokens["default"].color_grey_800,
|
|
709
|
+
groupTitleSelectedHoverFontColor: _coreTokens["default"].color_white,
|
|
710
|
+
groupTitleSelectedHoverBackgroundColor: _coreTokens["default"].color_grey_900,
|
|
711
|
+
groupTitleFontTextTransform: _coreTokens["default"].type_uppercase,
|
|
712
|
+
groupTitleFontLetterSpacing: _coreTokens["default"].type_spacing_wide_02,
|
|
713
|
+
linkFontFamily: _coreTokens["default"].type_sans,
|
|
714
|
+
linkFontSize: _coreTokens["default"].type_scale_02,
|
|
715
|
+
linkFontStyle: _coreTokens["default"].type_normal,
|
|
716
|
+
linkFontWeight: _coreTokens["default"].type_regular,
|
|
717
|
+
linkFontColor: _coreTokens["default"].color_grey_800,
|
|
718
|
+
linkHoverBackgroundColor: _coreTokens["default"].color_grey_200,
|
|
719
|
+
linkSelectedFontColor: _coreTokens["default"].color_white,
|
|
720
|
+
linkSelectedBackgroundColor: _coreTokens["default"].color_grey_800,
|
|
721
|
+
linkSelectedHoverFontColor: _coreTokens["default"].color_white,
|
|
722
|
+
linkSelectedHoverBackgroundColor: _coreTokens["default"].color_grey_900,
|
|
947
723
|
linkFontTextTransform: "none",
|
|
948
|
-
linkFontLetterSpacing:
|
|
949
|
-
linkTextDecoration:
|
|
950
|
-
linkMarginTop: "
|
|
951
|
-
linkMarginBottom: "
|
|
952
|
-
linkMarginRight: "
|
|
953
|
-
linkMarginLeft: "
|
|
954
|
-
linkFocusColor:
|
|
955
|
-
scrollBarThumbColor: "
|
|
956
|
-
scrollBarTrackColor:
|
|
724
|
+
linkFontLetterSpacing: _coreTokens["default"].type_spacing_wide_01,
|
|
725
|
+
linkTextDecoration: _coreTokens["default"].type_no_line,
|
|
726
|
+
linkMarginTop: _coreTokens["default"].spacing_4,
|
|
727
|
+
linkMarginBottom: _coreTokens["default"].spacing_4,
|
|
728
|
+
linkMarginRight: _coreTokens["default"].spacing_16,
|
|
729
|
+
linkMarginLeft: _coreTokens["default"].spacing_16,
|
|
730
|
+
linkFocusColor: _coreTokens["default"].color_blue_600,
|
|
731
|
+
scrollBarThumbColor: _coreTokens["default"].color_grey_200_a,
|
|
732
|
+
scrollBarTrackColor: _coreTokens["default"].color_transparent
|
|
957
733
|
},
|
|
958
734
|
slider: {
|
|
959
|
-
fontFamily:
|
|
960
|
-
limitValuesFontColor:
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
helperTextFontColor: globalTokens.hal_black,
|
|
982
|
-
helperTextFontColorOnDark: globalTokens.hal_white,
|
|
983
|
-
disabledLabelFontColor: globalTokens.hal_grey_l_60,
|
|
984
|
-
disabledLabelFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
985
|
-
disabledHelperTextFontColor: globalTokens.hal_grey_l_60,
|
|
986
|
-
disabledHelperTextFontColorOnDark: globalTokens.hal_grey_l_60,
|
|
735
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
736
|
+
limitValuesFontColor: _coreTokens["default"].color_black,
|
|
737
|
+
limitValuesFontSize: _coreTokens["default"].type_scale_03,
|
|
738
|
+
limitValuesFontStyle: _coreTokens["default"].type_normal,
|
|
739
|
+
limitValuesFontWeight: _coreTokens["default"].type_regular,
|
|
740
|
+
limitValuesFontLetterSpacing: _coreTokens["default"].type_spacing_normal,
|
|
741
|
+
disabledLimitValuesFontColor: _coreTokens["default"].color_grey_500,
|
|
742
|
+
labelFontFamily: _coreTokens["default"].type_sans,
|
|
743
|
+
labelFontSize: _coreTokens["default"].type_scale_02,
|
|
744
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
745
|
+
labelFontWeight: _coreTokens["default"].type_semibold,
|
|
746
|
+
labelLineHeight: _coreTokens["default"].type_leading_loose_01,
|
|
747
|
+
helperTextFontFamily: _coreTokens["default"].type_sans,
|
|
748
|
+
helperTextFontSize: _coreTokens["default"].type_scale_01,
|
|
749
|
+
helperTextFontStyle: _coreTokens["default"].type_normal,
|
|
750
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
751
|
+
helperTextLineHeight: _coreTokens["default"].type_leading_normal,
|
|
752
|
+
fontColor: _coreTokens["default"].color_black,
|
|
753
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
754
|
+
helperTextFontColor: _coreTokens["default"].color_black,
|
|
755
|
+
disabledLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
756
|
+
disabledHelperTextFontColor: _coreTokens["default"].color_grey_500,
|
|
987
757
|
thumbHeight: "12px",
|
|
988
758
|
thumbWidth: "12px",
|
|
989
759
|
hoverThumbHeight: "14px",
|
|
990
760
|
hoverThumbWidth: "14px",
|
|
991
761
|
thumbVerticalPosition: "12px",
|
|
992
762
|
hoverThumbVerticalPosition: "11px",
|
|
993
|
-
thumbBackgroundColor:
|
|
994
|
-
thumbBackgroundColorOnDark: globalTokens.hal_blue_l_50,
|
|
763
|
+
thumbBackgroundColor: _coreTokens["default"].color_blue_800,
|
|
995
764
|
hoverThumbScale: "1.166666",
|
|
996
|
-
hoverThumbBackgroundColor:
|
|
997
|
-
hoverThumbBackgroundColorOnDark: globalTokens.hal_blue_d_20,
|
|
765
|
+
hoverThumbBackgroundColor: _coreTokens["default"].color_blue_900,
|
|
998
766
|
activeThumbScale: "1.166666",
|
|
999
|
-
activeThumbBackgroundColor:
|
|
1000
|
-
|
|
1001
|
-
focusThumbBackgroundColor: globalTokens.hal_blue_s_35,
|
|
1002
|
-
focusThumbBackgroundColorOnDark: globalTokens.hal_blue_l_50,
|
|
767
|
+
activeThumbBackgroundColor: _coreTokens["default"].color_blue_900,
|
|
768
|
+
focusThumbBackgroundColor: _coreTokens["default"].color_blue_800,
|
|
1003
769
|
tickHeight: "4px",
|
|
1004
770
|
tickWidth: "4px",
|
|
1005
771
|
tickVerticalPosition: "11px",
|
|
1006
|
-
tickBackgroundColor:
|
|
1007
|
-
tickBackgroundColorOnDark: globalTokens.hal_blue_l_50,
|
|
772
|
+
tickBackgroundColor: _coreTokens["default"].color_blue_800,
|
|
1008
773
|
trackLineThickness: "2px",
|
|
1009
774
|
trackLineVerticalPosition: "50%",
|
|
1010
|
-
trackLineColor:
|
|
1011
|
-
trackLineColorOnDark: globalTokens.hal_blue_l_50,
|
|
775
|
+
trackLineColor: _coreTokens["default"].color_blue_800,
|
|
1012
776
|
totalLineThickness: "2px",
|
|
1013
777
|
totalLineVerticalPosition: "50%",
|
|
1014
|
-
totalLineColor:
|
|
1015
|
-
totalLineColorOnDark: globalTokens.hal_grey_l_75,
|
|
778
|
+
totalLineColor: _coreTokens["default"].color_grey_200_a,
|
|
1016
779
|
disabledThumbVerticalPosition: "10px",
|
|
1017
|
-
disabledThumbBackgroundColor:
|
|
1018
|
-
disabledThumbBackgroundColorOnDark: "#575757",
|
|
780
|
+
disabledThumbBackgroundColor: _coreTokens["default"].color_grey_500,
|
|
1019
781
|
disabledTickVerticalPosition: "11px",
|
|
1020
|
-
disabledTickBackgroundColor:
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
focusColorOnDark: globalTokens.hal_blue_l_50,
|
|
1028
|
-
floorLabelMarginRight: globalTokens.type_scale_03,
|
|
1029
|
-
ceilLabelMarginLeft: globalTokens.type_scale_03,
|
|
1030
|
-
inputMarginLeft: globalTokens.type_scale_06
|
|
782
|
+
disabledTickBackgroundColor: _coreTokens["default"].color_grey_500,
|
|
783
|
+
disabledTrackLineColor: _coreTokens["default"].color_grey_500,
|
|
784
|
+
disabledTotalLineColor: _coreTokens["default"].color_grey_100,
|
|
785
|
+
focusColor: _coreTokens["default"].color_blue_600,
|
|
786
|
+
floorLabelMarginRight: _coreTokens["default"].type_scale_03,
|
|
787
|
+
ceilLabelMarginLeft: _coreTokens["default"].type_scale_03,
|
|
788
|
+
inputMarginLeft: _coreTokens["default"].type_scale_06
|
|
1031
789
|
},
|
|
1032
790
|
spinner: {
|
|
1033
|
-
trackCircleColor: "
|
|
1034
|
-
trackCircleColorOverlay: "
|
|
1035
|
-
totalCircleColor:
|
|
1036
|
-
labelFontFamily:
|
|
1037
|
-
labelFontSize:
|
|
1038
|
-
labelFontStyle:
|
|
1039
|
-
labelFontWeight:
|
|
1040
|
-
labelFontColor:
|
|
1041
|
-
labelFontColorOnDark: globalTokens.white,
|
|
791
|
+
trackCircleColor: _coreTokens["default"].color_purple_700,
|
|
792
|
+
trackCircleColorOverlay: _coreTokens["default"].color_purple_500,
|
|
793
|
+
totalCircleColor: _coreTokens["default"].color_white,
|
|
794
|
+
labelFontFamily: _coreTokens["default"].type_sans,
|
|
795
|
+
labelFontSize: _coreTokens["default"].type_scale_02,
|
|
796
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
797
|
+
labelFontWeight: _coreTokens["default"].type_regular,
|
|
798
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
1042
799
|
labelTextAlign: "center",
|
|
1043
|
-
progressValueFontFamily:
|
|
1044
|
-
progressValueFontSize:
|
|
1045
|
-
progressValueFontStyle:
|
|
1046
|
-
progressValueFontWeight:
|
|
1047
|
-
progressValueFontColor:
|
|
1048
|
-
progressValueFontColorOnDark: globalTokens.white,
|
|
800
|
+
progressValueFontFamily: _coreTokens["default"].type_sans,
|
|
801
|
+
progressValueFontSize: _coreTokens["default"].type_scale_02,
|
|
802
|
+
progressValueFontStyle: _coreTokens["default"].type_normal,
|
|
803
|
+
progressValueFontWeight: _coreTokens["default"].type_bold,
|
|
804
|
+
progressValueFontColor: _coreTokens["default"].inherit,
|
|
1049
805
|
progressValueTextAlign: "center",
|
|
1050
|
-
overlayBackgroundColor:
|
|
806
|
+
overlayBackgroundColor: _coreTokens["default"].color_black,
|
|
1051
807
|
overlayOpacity: "0.8",
|
|
1052
|
-
overlayLabelFontFamily:
|
|
1053
|
-
overlayLabelFontSize:
|
|
1054
|
-
overlayLabelFontStyle:
|
|
1055
|
-
overlayLabelFontWeight:
|
|
1056
|
-
overlayLabelFontColor:
|
|
808
|
+
overlayLabelFontFamily: _coreTokens["default"].type_sans,
|
|
809
|
+
overlayLabelFontSize: _coreTokens["default"].type_scale_02,
|
|
810
|
+
overlayLabelFontStyle: _coreTokens["default"].type_normal,
|
|
811
|
+
overlayLabelFontWeight: _coreTokens["default"].type_regular,
|
|
812
|
+
overlayLabelFontColor: _coreTokens["default"].color_white,
|
|
1057
813
|
overlayLabelTextAlign: "center",
|
|
1058
|
-
overlayProgressValueFontFamily:
|
|
1059
|
-
overlayProgressValueFontSize:
|
|
1060
|
-
overlayProgressValueFontStyle:
|
|
1061
|
-
overlayProgressValueFontWeight:
|
|
1062
|
-
overlayProgressValueFontColor:
|
|
814
|
+
overlayProgressValueFontFamily: _coreTokens["default"].type_sans,
|
|
815
|
+
overlayProgressValueFontSize: _coreTokens["default"].type_scale_02,
|
|
816
|
+
overlayProgressValueFontStyle: _coreTokens["default"].type_normal,
|
|
817
|
+
overlayProgressValueFontWeight: _coreTokens["default"].type_bold,
|
|
818
|
+
overlayProgressValueFontColor: _coreTokens["default"].color_white,
|
|
1063
819
|
overlayProgressValueTextAlign: "center"
|
|
1064
820
|
},
|
|
1065
821
|
"switch": {
|
|
1066
|
-
checkedTrackBackgroundColor:
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
disabledLabelFontColor: globalTokens.hal_grey_l_60,
|
|
1083
|
-
disabledLabelFontColorOnDark: "#575757",
|
|
1084
|
-
disabledLabelFontStyle: globalTokens.type_normal,
|
|
1085
|
-
labelFontFamily: globalTokens.type_sans,
|
|
1086
|
-
labelFontSize: globalTokens.type_scale_root,
|
|
1087
|
-
labelFontStyle: globalTokens.type_normal,
|
|
1088
|
-
labelFontWeight: globalTokens.type_regular,
|
|
1089
|
-
labelFontColor: globalTokens.hal_black,
|
|
1090
|
-
labelFontColorOnDark: globalTokens.hal_white,
|
|
1091
|
-
thumbFocusColor: globalTokens.hal_blue_l_50,
|
|
1092
|
-
thumbFocusColorOnDark: "#1682FF",
|
|
822
|
+
checkedTrackBackgroundColor: _coreTokens["default"].color_purple_700,
|
|
823
|
+
checkedThumbBackgroundColor: _coreTokens["default"].color_white,
|
|
824
|
+
uncheckedTrackBackgroundColor: _coreTokens["default"].color_grey_400,
|
|
825
|
+
uncheckedThumbBackgroundColor: _coreTokens["default"].color_white,
|
|
826
|
+
disabledCheckedTrackBackgroundColor: _coreTokens["default"].color_purple_100,
|
|
827
|
+
disabledCheckedThumbBackgroundColor: _coreTokens["default"].color_white,
|
|
828
|
+
disabledUncheckedTrackBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
829
|
+
disabledUncheckedThumbBackgroundColor: _coreTokens["default"].color_white,
|
|
830
|
+
disabledLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
831
|
+
disabledLabelFontStyle: _coreTokens["default"].type_normal,
|
|
832
|
+
labelFontFamily: _coreTokens["default"].type_sans,
|
|
833
|
+
labelFontSize: _coreTokens["default"].type_scale_root,
|
|
834
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
835
|
+
labelFontWeight: _coreTokens["default"].type_regular,
|
|
836
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
837
|
+
thumbFocusColor: _coreTokens["default"].color_blue_600,
|
|
1093
838
|
thumbHeight: "24px",
|
|
1094
839
|
thumbWidth: "24px",
|
|
1095
|
-
thumbShift: "
|
|
840
|
+
thumbShift: "1.25rem",
|
|
1096
841
|
trackHeight: "12px",
|
|
1097
|
-
trackWidth: "
|
|
1098
|
-
spaceBetweenLabelSwitch: "
|
|
1099
|
-
},
|
|
1100
|
-
tag: {
|
|
1101
|
-
fontFamily: globalTokens.type_sans,
|
|
1102
|
-
fontColor: globalTokens.hal_black,
|
|
1103
|
-
fontSize: globalTokens.type_scale_02,
|
|
1104
|
-
fontStyle: globalTokens.type_normal,
|
|
1105
|
-
fontWeight: globalTokens.type_regular,
|
|
1106
|
-
labelPaddingTop: "0px",
|
|
1107
|
-
labelPaddingBottom: "0px",
|
|
1108
|
-
labelPaddingLeft: "16px",
|
|
1109
|
-
labelPaddingRight: "16px",
|
|
1110
|
-
height: "40px",
|
|
1111
|
-
iconColor: globalTokens.hal_white,
|
|
1112
|
-
iconSectionWidth: "40px",
|
|
1113
|
-
iconHeight: "24px",
|
|
1114
|
-
iconWidth: "auto",
|
|
1115
|
-
focusColor: globalTokens.hal_blue_l_50
|
|
842
|
+
trackWidth: "36px",
|
|
843
|
+
spaceBetweenLabelSwitch: _coreTokens["default"].spacing_8
|
|
1116
844
|
},
|
|
1117
845
|
table: {
|
|
1118
846
|
rowSeparatorThickness: "1px",
|
|
1119
|
-
rowSeparatorStyle: "
|
|
1120
|
-
rowSeparatorColor:
|
|
1121
|
-
dataBackgroundColor:
|
|
1122
|
-
dataFontFamily:
|
|
1123
|
-
dataFontSize:
|
|
1124
|
-
dataFontStyle:
|
|
1125
|
-
dataFontWeight:
|
|
1126
|
-
dataFontColor:
|
|
847
|
+
rowSeparatorStyle: _coreTokens["default"].border_solid,
|
|
848
|
+
rowSeparatorColor: _coreTokens["default"].color_grey_300,
|
|
849
|
+
dataBackgroundColor: _coreTokens["default"].color_white,
|
|
850
|
+
dataFontFamily: _coreTokens["default"].type_sans,
|
|
851
|
+
dataFontSize: _coreTokens["default"].type_scale_02,
|
|
852
|
+
dataFontStyle: _coreTokens["default"].type_normal,
|
|
853
|
+
dataFontWeight: _coreTokens["default"].type_regular,
|
|
854
|
+
dataFontColor: _coreTokens["default"].color_black,
|
|
1127
855
|
dataFontTextTransform: "none",
|
|
1128
|
-
dataPaddingTop: "
|
|
1129
|
-
dataPaddingBottom: "
|
|
856
|
+
dataPaddingTop: _coreTokens["default"].spacing_16,
|
|
857
|
+
dataPaddingBottom: _coreTokens["default"].spacing_16,
|
|
1130
858
|
dataPaddingRight: "20px",
|
|
1131
|
-
dataPaddingLeft: "
|
|
859
|
+
dataPaddingLeft: "20px",
|
|
860
|
+
dataPaddingTopReduced: _coreTokens["default"].spacing_8,
|
|
861
|
+
dataPaddingBottomReduced: _coreTokens["default"].spacing_8,
|
|
862
|
+
dataPaddingRightReduced: _coreTokens["default"].spacing_16,
|
|
863
|
+
dataPaddingLeftReduced: _coreTokens["default"].spacing_16,
|
|
1132
864
|
dataTextAlign: "left",
|
|
1133
865
|
dataTextLineHeight: "normal",
|
|
1134
|
-
|
|
866
|
+
firstChildPaddingLeft: _coreTokens["default"].spacing_24,
|
|
867
|
+
lastChildPaddingRight: _coreTokens["default"].spacing_24,
|
|
868
|
+
firstChildPaddingLeftReduced: "20px",
|
|
869
|
+
lastChildPaddingRightReduced: "20px",
|
|
870
|
+
headerBackgroundColor: _coreTokens["default"].color_purple_700,
|
|
1135
871
|
headerBorderRadius: "4px",
|
|
1136
|
-
headerFontFamily:
|
|
1137
|
-
headerFontSize:
|
|
1138
|
-
headerFontStyle:
|
|
1139
|
-
headerFontWeight:
|
|
1140
|
-
headerFontColor:
|
|
872
|
+
headerFontFamily: _coreTokens["default"].type_sans,
|
|
873
|
+
headerFontSize: _coreTokens["default"].type_scale_02,
|
|
874
|
+
headerFontStyle: _coreTokens["default"].type_normal,
|
|
875
|
+
headerFontWeight: _coreTokens["default"].type_regular,
|
|
876
|
+
headerFontColor: _coreTokens["default"].color_white,
|
|
1141
877
|
headerFontTextTransform: "none",
|
|
1142
|
-
headerPaddingTop: "
|
|
1143
|
-
headerPaddingBottom: "
|
|
878
|
+
headerPaddingTop: _coreTokens["default"].spacing_16,
|
|
879
|
+
headerPaddingBottom: _coreTokens["default"].spacing_16,
|
|
1144
880
|
headerPaddingRight: "20px",
|
|
1145
|
-
headerPaddingLeft: "
|
|
881
|
+
headerPaddingLeft: "20px",
|
|
882
|
+
headerPaddingTopReduced: _coreTokens["default"].spacing_8,
|
|
883
|
+
headerPaddingBottomReduced: _coreTokens["default"].spacing_8,
|
|
884
|
+
headerPaddingRightReduced: _coreTokens["default"].spacing_16,
|
|
885
|
+
headerPaddingLeftReduced: _coreTokens["default"].spacing_16,
|
|
1146
886
|
headerTextAlign: "left",
|
|
1147
887
|
headerTextLineHeight: "normal",
|
|
1148
|
-
scrollBarThumbColor:
|
|
1149
|
-
scrollBarTrackColor:
|
|
1150
|
-
sortIconColor:
|
|
888
|
+
scrollBarThumbColor: _coreTokens["default"].color_grey_700,
|
|
889
|
+
scrollBarTrackColor: _coreTokens["default"].color_grey_300,
|
|
890
|
+
sortIconColor: _coreTokens["default"].color_white,
|
|
891
|
+
actionIconColor: _coreTokens["default"].color_purple_700,
|
|
892
|
+
disabledActionIconColor: _coreTokens["default"].color_grey_500,
|
|
893
|
+
hoverActionIconColor: _coreTokens["default"].color_purple_700,
|
|
894
|
+
focusActionIconColor: _coreTokens["default"].color_purple_700,
|
|
895
|
+
activeActionIconColor: _coreTokens["default"].color_purple_700,
|
|
896
|
+
actionBackgroundColor: _coreTokens["default"].color_transparent,
|
|
897
|
+
disabledActionBackgroundColor: _coreTokens["default"].color_transparent,
|
|
898
|
+
hoverActionBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
899
|
+
focusActionBorderColor: _coreTokens["default"].color_blue_600,
|
|
900
|
+
activeActionBackgroundColor: _coreTokens["default"].color_grey_300
|
|
1151
901
|
},
|
|
1152
902
|
tabs: {
|
|
1153
|
-
fontFamily:
|
|
1154
|
-
fontSize:
|
|
1155
|
-
fontStyle:
|
|
1156
|
-
fontWeight:
|
|
903
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
904
|
+
fontSize: _coreTokens["default"].type_scale_03,
|
|
905
|
+
fontStyle: _coreTokens["default"].type_normal,
|
|
906
|
+
fontWeight: _coreTokens["default"].type_semibold,
|
|
1157
907
|
fontTextTransform: "none",
|
|
1158
|
-
selectedBackgroundColor:
|
|
1159
|
-
selectedFontColor: "
|
|
1160
|
-
selectedIconColor: "
|
|
1161
|
-
selectedUnderlineColor: "
|
|
908
|
+
selectedBackgroundColor: _coreTokens["default"].color_white,
|
|
909
|
+
selectedFontColor: _coreTokens["default"].color_purple_700,
|
|
910
|
+
selectedIconColor: _coreTokens["default"].color_purple_700,
|
|
911
|
+
selectedUnderlineColor: _coreTokens["default"].color_purple_700,
|
|
1162
912
|
selectedUnderlineThickness: "2px",
|
|
1163
|
-
unselectedBackgroundColor:
|
|
1164
|
-
unselectedFontColor:
|
|
1165
|
-
unselectedIconColor:
|
|
1166
|
-
disabledFontColor: "
|
|
1167
|
-
disabledIconColor: "
|
|
1168
|
-
disabledFontStyle:
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
dividerColor: globalTokens.mediumGrey,
|
|
913
|
+
unselectedBackgroundColor: _coreTokens["default"].color_white,
|
|
914
|
+
unselectedFontColor: _coreTokens["default"].color_grey_700,
|
|
915
|
+
unselectedIconColor: _coreTokens["default"].color_grey_700,
|
|
916
|
+
disabledFontColor: _coreTokens["default"].color_grey_500,
|
|
917
|
+
disabledIconColor: _coreTokens["default"].color_grey_500,
|
|
918
|
+
disabledFontStyle: _coreTokens["default"].type_normal,
|
|
919
|
+
hoverBackgroundColor: _coreTokens["default"].color_purple_100,
|
|
920
|
+
pressedBackgroundColor: _coreTokens["default"].color_purple_200,
|
|
921
|
+
pressedFontWeight: _coreTokens["default"].type_semibold,
|
|
922
|
+
dividerColor: _coreTokens["default"].color_grey_400,
|
|
1174
923
|
dividerThickness: "1px",
|
|
1175
|
-
focusOutline: "
|
|
1176
|
-
scrollButtonsWidth: "48px"
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
924
|
+
focusOutline: _coreTokens["default"].color_purple_700,
|
|
925
|
+
scrollButtonsWidth: "48px"
|
|
926
|
+
},
|
|
927
|
+
tag: {
|
|
928
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
929
|
+
fontColor: _coreTokens["default"].color_black,
|
|
930
|
+
fontSize: _coreTokens["default"].type_scale_02,
|
|
931
|
+
fontStyle: _coreTokens["default"].type_normal,
|
|
932
|
+
fontWeight: _coreTokens["default"].type_regular,
|
|
933
|
+
labelPaddingTop: _coreTokens["default"].spacing_0,
|
|
934
|
+
labelPaddingBottom: _coreTokens["default"].spacing_0,
|
|
935
|
+
labelPaddingLeft: _coreTokens["default"].spacing_16,
|
|
936
|
+
labelPaddingRight: _coreTokens["default"].spacing_16,
|
|
937
|
+
height: "40px",
|
|
938
|
+
iconColor: _coreTokens["default"].color_white,
|
|
939
|
+
iconSectionWidth: "40px",
|
|
940
|
+
iconHeight: "24px",
|
|
941
|
+
iconWidth: "auto",
|
|
942
|
+
focusColor: _coreTokens["default"].color_blue_600
|
|
1190
943
|
},
|
|
1191
944
|
textarea: {
|
|
1192
|
-
fontFamily:
|
|
1193
|
-
enabledBorderColor:
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
945
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
946
|
+
enabledBorderColor: _coreTokens["default"].color_black,
|
|
947
|
+
hoverBorderColor: _coreTokens["default"].color_purple_500,
|
|
948
|
+
focusBorderColor: _coreTokens["default"].color_blue_600,
|
|
949
|
+
disabledBorderColor: _coreTokens["default"].color_grey_500,
|
|
950
|
+
disabledContainerFillColor: _coreTokens["default"].color_grey_100,
|
|
951
|
+
readOnlyBorderColor: _coreTokens["default"].color_grey_500,
|
|
952
|
+
hoverReadOnlyBorderColor: _coreTokens["default"].color_grey_600,
|
|
953
|
+
errorBorderColor: _coreTokens["default"].color_red_700,
|
|
954
|
+
hoverErrorBorderColor: _coreTokens["default"].color_red_600,
|
|
955
|
+
inputMarginTop: _coreTokens["default"].spacing_4,
|
|
956
|
+
inputMarginBottom: _coreTokens["default"].spacing_4,
|
|
957
|
+
errorMessageColor: _coreTokens["default"].color_red_700,
|
|
958
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
959
|
+
labelFontSize: _coreTokens["default"].type_scale_02,
|
|
960
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
961
|
+
labelFontWeight: _coreTokens["default"].type_semibold,
|
|
962
|
+
labelLineHeight: _coreTokens["default"].type_leading_loose_01,
|
|
963
|
+
disabledLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
964
|
+
optionalLabelFontWeight: _coreTokens["default"].type_regular,
|
|
965
|
+
helperTextFontColor: _coreTokens["default"].color_black,
|
|
966
|
+
helperTextFontSize: _coreTokens["default"].type_scale_01,
|
|
967
|
+
helperTextFontStyle: _coreTokens["default"].type_normal,
|
|
968
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
969
|
+
helperTextLineHeight: _coreTokens["default"].type_leading_normal,
|
|
970
|
+
disabledHelperTextFontColor: _coreTokens["default"].color_grey_500,
|
|
971
|
+
placeholderFontColor: _coreTokens["default"].color_grey_800_a,
|
|
972
|
+
disabledPlaceholderFontColor: _coreTokens["default"].color_grey_500,
|
|
973
|
+
valueFontColor: _coreTokens["default"].color_black,
|
|
974
|
+
valueFontSize: _coreTokens["default"].type_scale_03,
|
|
975
|
+
valueFontStyle: _coreTokens["default"].type_normal,
|
|
976
|
+
valueFontWeight: _coreTokens["default"].type_regular,
|
|
977
|
+
disabledValueFontColor: _coreTokens["default"].color_grey_500
|
|
978
|
+
},
|
|
979
|
+
textInput: {
|
|
980
|
+
fontFamily: _coreTokens["default"].type_sans,
|
|
981
|
+
enabledBorderColor: _coreTokens["default"].color_black,
|
|
982
|
+
hoverBorderColor: _coreTokens["default"].color_purple_500,
|
|
983
|
+
focusBorderColor: _coreTokens["default"].color_blue_600,
|
|
984
|
+
disabledBorderColor: _coreTokens["default"].color_grey_500,
|
|
985
|
+
disabledContainerFillColor: _coreTokens["default"].color_grey_100,
|
|
986
|
+
readOnlyBorderColor: _coreTokens["default"].color_grey_500,
|
|
987
|
+
hoverReadOnlyBorderColor: _coreTokens["default"].color_grey_600,
|
|
988
|
+
errorBorderColor: _coreTokens["default"].color_red_700,
|
|
989
|
+
hoverErrorBorderColor: _coreTokens["default"].color_red_600,
|
|
990
|
+
inputMarginTop: _coreTokens["default"].spacing_4,
|
|
991
|
+
inputMarginBottom: _coreTokens["default"].spacing_4,
|
|
992
|
+
errorMessageColor: _coreTokens["default"].color_red_700,
|
|
993
|
+
errorIconColor: _coreTokens["default"].color_red_700,
|
|
994
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
995
|
+
labelFontSize: _coreTokens["default"].type_scale_02,
|
|
996
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
997
|
+
labelFontWeight: _coreTokens["default"].type_semibold,
|
|
998
|
+
labelLineHeight: _coreTokens["default"].type_leading_loose_01,
|
|
999
|
+
disabledLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
1000
|
+
optionalLabelFontWeight: _coreTokens["default"].type_regular,
|
|
1001
|
+
helperTextFontColor: _coreTokens["default"].color_black,
|
|
1002
|
+
helperTextFontSize: _coreTokens["default"].type_scale_01,
|
|
1003
|
+
helperTextFontStyle: _coreTokens["default"].type_normal,
|
|
1004
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
1005
|
+
helperTextLineHeight: _coreTokens["default"].type_leading_normal,
|
|
1006
|
+
disabledHelperTextFontColor: _coreTokens["default"].color_grey_500,
|
|
1007
|
+
prefixColor: _coreTokens["default"].color_grey_700,
|
|
1008
|
+
suffixColor: _coreTokens["default"].color_grey_700,
|
|
1009
|
+
disabledPrefixColor: _coreTokens["default"].color_grey_400,
|
|
1010
|
+
disabledSuffixColor: _coreTokens["default"].color_grey_400,
|
|
1011
|
+
placeholderFontColor: _coreTokens["default"].color_grey_800_a,
|
|
1012
|
+
disabledPlaceholderFontColor: _coreTokens["default"].color_grey_500,
|
|
1013
|
+
valueFontColor: _coreTokens["default"].color_black,
|
|
1014
|
+
valueFontSize: _coreTokens["default"].type_scale_03,
|
|
1015
|
+
valueFontStyle: _coreTokens["default"].type_normal,
|
|
1016
|
+
valueFontWeight: _coreTokens["default"].type_regular,
|
|
1017
|
+
disabledValueFontColor: _coreTokens["default"].color_grey_500,
|
|
1018
|
+
actionIconColor: _coreTokens["default"].color_black,
|
|
1019
|
+
disabledActionIconColor: _coreTokens["default"].color_grey_500,
|
|
1020
|
+
hoverActionIconColor: _coreTokens["default"].color_black,
|
|
1021
|
+
focusActionIconColor: _coreTokens["default"].color_black,
|
|
1022
|
+
activeActionIconColor: _coreTokens["default"].color_black,
|
|
1023
|
+
actionBackgroundColor: _coreTokens["default"].color_transparent,
|
|
1024
|
+
disabledActionBackgroundColor: _coreTokens["default"].color_transparent,
|
|
1025
|
+
hoverActionBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
1026
|
+
focusActionBorderColor: _coreTokens["default"].color_blue_600,
|
|
1027
|
+
activeActionBackgroundColor: _coreTokens["default"].color_grey_300,
|
|
1028
|
+
listDialogBackgroundColor: _coreTokens["default"].color_white,
|
|
1029
|
+
listDialogBorderColor: _coreTokens["default"].color_grey_400,
|
|
1030
|
+
listOptionDividerColor: _coreTokens["default"].color_grey_200,
|
|
1031
|
+
listOptionFontColor: _coreTokens["default"].color_black,
|
|
1032
|
+
listOptionFontSize: _coreTokens["default"].type_scale_02,
|
|
1033
|
+
listOptionFontStyle: _coreTokens["default"].type_normal,
|
|
1034
|
+
listOptionFontWeight: _coreTokens["default"].type_regular,
|
|
1035
|
+
systemMessageFontColor: _coreTokens["default"].color_grey_700,
|
|
1036
|
+
errorListDialogFontColor: _coreTokens["default"].color_black,
|
|
1037
|
+
errorListDialogBackgroundColor: _coreTokens["default"].color_red_50,
|
|
1038
|
+
errorListDialogBorderColor: _coreTokens["default"].color_red_700,
|
|
1039
|
+
hoverListOptionBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
1040
|
+
activeListOptionBackgroundColor: _coreTokens["default"].color_grey_200,
|
|
1041
|
+
focusListOptionBorderColor: _coreTokens["default"].color_blue_600
|
|
1239
1042
|
},
|
|
1240
1043
|
toggleGroup: {
|
|
1241
|
-
containerBackgroundColor:
|
|
1242
|
-
containerBorderColor:
|
|
1243
|
-
labelFontColor:
|
|
1244
|
-
disabledLabelFontColor:
|
|
1245
|
-
helperTextFontColor:
|
|
1246
|
-
disabledHelperTextFontcolor:
|
|
1247
|
-
unselectedBackgroundColor:
|
|
1248
|
-
unselectedHoverBackgroundColor:
|
|
1249
|
-
unselectedActiveBackgroundColor:
|
|
1250
|
-
unselectedDisabledBackgroundColor:
|
|
1251
|
-
unselectedFontColor:
|
|
1252
|
-
unselectedDisabledFontColor:
|
|
1253
|
-
selectedBackgroundColor:
|
|
1254
|
-
selectedHoverBackgroundColor:
|
|
1255
|
-
selectedActiveBackgroundColor:
|
|
1256
|
-
selectedDisabledBackgroundColor:
|
|
1257
|
-
selectedFontColor:
|
|
1258
|
-
selectedDisabledFontColor:
|
|
1259
|
-
focusColor:
|
|
1260
|
-
labelFontFamily:
|
|
1261
|
-
labelFontSize:
|
|
1262
|
-
labelFontStyle:
|
|
1263
|
-
labelFontWeight:
|
|
1264
|
-
labelLineHeight:
|
|
1265
|
-
helperTextFontFamily:
|
|
1266
|
-
helperTextFontSize:
|
|
1267
|
-
helperTextFontStyle:
|
|
1268
|
-
helperTextFontWeight:
|
|
1269
|
-
helperTextLineHeight:
|
|
1270
|
-
optionLabelFontFamily:
|
|
1271
|
-
optionLabelFontSize:
|
|
1272
|
-
optionLabelFontStyle:
|
|
1273
|
-
optionLabelFontWeight:
|
|
1274
|
-
iconPaddingRight:
|
|
1275
|
-
iconPaddingLeft:
|
|
1276
|
-
labelPaddingLeft:
|
|
1277
|
-
labelPaddingRight:
|
|
1278
|
-
iconMarginRight:
|
|
1279
|
-
containerMarginTop:
|
|
1280
|
-
optionBorderThickness:
|
|
1281
|
-
optionBorderStyle:
|
|
1282
|
-
optionBorderRadius:
|
|
1283
|
-
containerBorderThickness:
|
|
1284
|
-
containerBorderStyle:
|
|
1285
|
-
containerBorderRadius:
|
|
1286
|
-
optionFocusBorderThickness:
|
|
1044
|
+
containerBackgroundColor: _coreTokens["default"].color_grey_50,
|
|
1045
|
+
containerBorderColor: _coreTokens["default"].color_grey_500,
|
|
1046
|
+
labelFontColor: _coreTokens["default"].color_black,
|
|
1047
|
+
disabledLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
1048
|
+
helperTextFontColor: _coreTokens["default"].color_black,
|
|
1049
|
+
disabledHelperTextFontcolor: _coreTokens["default"].color_grey_500,
|
|
1050
|
+
unselectedBackgroundColor: _coreTokens["default"].color_grey_200,
|
|
1051
|
+
unselectedHoverBackgroundColor: _coreTokens["default"].color_grey_300,
|
|
1052
|
+
unselectedActiveBackgroundColor: _coreTokens["default"].color_purple_700,
|
|
1053
|
+
unselectedDisabledBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
1054
|
+
unselectedFontColor: _coreTokens["default"].color_black,
|
|
1055
|
+
unselectedDisabledFontColor: _coreTokens["default"].color_grey_500,
|
|
1056
|
+
selectedBackgroundColor: _coreTokens["default"].color_purple_700,
|
|
1057
|
+
selectedHoverBackgroundColor: _coreTokens["default"].color_purple_800,
|
|
1058
|
+
selectedActiveBackgroundColor: _coreTokens["default"].color_purple_900,
|
|
1059
|
+
selectedDisabledBackgroundColor: _coreTokens["default"].color_purple_100,
|
|
1060
|
+
selectedFontColor: _coreTokens["default"].color_white,
|
|
1061
|
+
selectedDisabledFontColor: _coreTokens["default"].color_purple_300,
|
|
1062
|
+
focusColor: _coreTokens["default"].color_blue_600,
|
|
1063
|
+
labelFontFamily: _coreTokens["default"].type_sans,
|
|
1064
|
+
labelFontSize: _coreTokens["default"].type_scale_02,
|
|
1065
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
1066
|
+
labelFontWeight: _coreTokens["default"].type_semibold,
|
|
1067
|
+
labelLineHeight: _coreTokens["default"].type_leading_loose_01,
|
|
1068
|
+
helperTextFontFamily: _coreTokens["default"].type_sans,
|
|
1069
|
+
helperTextFontSize: _coreTokens["default"].type_scale_01,
|
|
1070
|
+
helperTextFontStyle: _coreTokens["default"].type_normal,
|
|
1071
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
1072
|
+
helperTextLineHeight: _coreTokens["default"].type_leading_normal,
|
|
1073
|
+
optionLabelFontFamily: _coreTokens["default"].type_sans,
|
|
1074
|
+
optionLabelFontSize: _coreTokens["default"].type_scale_03,
|
|
1075
|
+
optionLabelFontStyle: _coreTokens["default"].type_normal,
|
|
1076
|
+
optionLabelFontWeight: _coreTokens["default"].type_regular,
|
|
1077
|
+
iconPaddingRight: _coreTokens["default"].spacing_8,
|
|
1078
|
+
iconPaddingLeft: _coreTokens["default"].spacing_8,
|
|
1079
|
+
labelPaddingLeft: _coreTokens["default"].spacing_24,
|
|
1080
|
+
labelPaddingRight: _coreTokens["default"].spacing_24,
|
|
1081
|
+
iconMarginRight: _coreTokens["default"].spacing_8,
|
|
1082
|
+
containerMarginTop: _coreTokens["default"].spacing_4,
|
|
1083
|
+
optionBorderThickness: _coreTokens["default"].border_width_0,
|
|
1084
|
+
optionBorderStyle: _coreTokens["default"].border_none,
|
|
1085
|
+
optionBorderRadius: _coreTokens["default"].border_radius_medium,
|
|
1086
|
+
containerBorderThickness: _coreTokens["default"].border_width_1,
|
|
1087
|
+
containerBorderStyle: _coreTokens["default"].border_solid,
|
|
1088
|
+
containerBorderRadius: _coreTokens["default"].border_radius_large,
|
|
1089
|
+
optionFocusBorderThickness: _coreTokens["default"].border_width_2
|
|
1287
1090
|
},
|
|
1288
1091
|
wizard: {
|
|
1289
|
-
visitedStepFontColor:
|
|
1290
|
-
visitedStepBackgroundColor:
|
|
1291
|
-
visitedStepBorderColor:
|
|
1292
|
-
unvisitedStepFontColor:
|
|
1293
|
-
unvisitedLabelFontColor:
|
|
1294
|
-
unvisitedHelperTextFontColor:
|
|
1295
|
-
unvisitedStepBackgroundColor:
|
|
1296
|
-
unvisitedStepBorderColor:
|
|
1297
|
-
selectedStepFontColor:
|
|
1298
|
-
selectedStepBackgroundColor:
|
|
1299
|
-
selectedStepBorderColor:
|
|
1300
|
-
selectedLabelFontColor:
|
|
1301
|
-
selectedHelperTextFontColor:
|
|
1092
|
+
visitedStepFontColor: _coreTokens["default"].color_black,
|
|
1093
|
+
visitedStepBackgroundColor: _coreTokens["default"].color_white,
|
|
1094
|
+
visitedStepBorderColor: _coreTokens["default"].color_black,
|
|
1095
|
+
unvisitedStepFontColor: _coreTokens["default"].color_grey_700,
|
|
1096
|
+
unvisitedLabelFontColor: _coreTokens["default"].color_grey_700,
|
|
1097
|
+
unvisitedHelperTextFontColor: _coreTokens["default"].color_grey_700,
|
|
1098
|
+
unvisitedStepBackgroundColor: _coreTokens["default"].color_transparent,
|
|
1099
|
+
unvisitedStepBorderColor: _coreTokens["default"].color_grey_700,
|
|
1100
|
+
selectedStepFontColor: _coreTokens["default"].color_white,
|
|
1101
|
+
selectedStepBackgroundColor: _coreTokens["default"].color_purple_700,
|
|
1102
|
+
selectedStepBorderColor: _coreTokens["default"].color_purple_700,
|
|
1103
|
+
selectedLabelFontColor: _coreTokens["default"].color_black,
|
|
1104
|
+
selectedHelperTextFontColor: _coreTokens["default"].color_black,
|
|
1302
1105
|
selectedStepWidth: "32px",
|
|
1303
1106
|
selectedStepHeight: "32px",
|
|
1304
1107
|
selectedStepBorderThickness: "2px",
|
|
1305
|
-
selectedStepBorderStyle: "
|
|
1108
|
+
selectedStepBorderStyle: _coreTokens["default"].border_solid,
|
|
1306
1109
|
selectedStepBorderRadius: "45px",
|
|
1307
|
-
stepFontSize:
|
|
1308
|
-
stepFontFamily:
|
|
1309
|
-
stepFontStyle:
|
|
1310
|
-
stepFontWeight:
|
|
1311
|
-
stepFontTracking:
|
|
1110
|
+
stepFontSize: _coreTokens["default"].type_scale_03,
|
|
1111
|
+
stepFontFamily: _coreTokens["default"].type_sans,
|
|
1112
|
+
stepFontStyle: _coreTokens["default"].type_normal,
|
|
1113
|
+
stepFontWeight: _coreTokens["default"].type_regular,
|
|
1114
|
+
stepFontTracking: _coreTokens["default"].type_spacing_wide_02,
|
|
1312
1115
|
stepIconSize: "20px",
|
|
1313
1116
|
stepWidth: "32px",
|
|
1314
1117
|
stepHeight: "32px",
|
|
1315
1118
|
stepBorderThickness: "2px",
|
|
1316
|
-
stepBorderStyle: "
|
|
1119
|
+
stepBorderStyle: _coreTokens["default"].border_solid,
|
|
1317
1120
|
stepBorderRadius: "45px",
|
|
1318
|
-
visitedLabelFontColor:
|
|
1319
|
-
labelFontSize:
|
|
1320
|
-
labelFontFamily:
|
|
1321
|
-
labelFontStyle:
|
|
1322
|
-
labelFontWeight:
|
|
1323
|
-
labelFontTracking:
|
|
1121
|
+
visitedLabelFontColor: _coreTokens["default"].color_black,
|
|
1122
|
+
labelFontSize: _coreTokens["default"].type_scale_03,
|
|
1123
|
+
labelFontFamily: _coreTokens["default"].type_sans,
|
|
1124
|
+
labelFontStyle: _coreTokens["default"].type_normal,
|
|
1125
|
+
labelFontWeight: _coreTokens["default"].type_regular,
|
|
1126
|
+
labelFontTracking: _coreTokens["default"].type_spacing_normal,
|
|
1324
1127
|
labelFontTextTransform: "none",
|
|
1325
1128
|
labelTextAlign: "left",
|
|
1326
|
-
helperTextFontSize:
|
|
1327
|
-
helperTextFontFamily:
|
|
1328
|
-
helperTextFontStyle:
|
|
1329
|
-
helperTextFontWeight:
|
|
1330
|
-
helperTextFontTracking:
|
|
1129
|
+
helperTextFontSize: _coreTokens["default"].type_scale_02,
|
|
1130
|
+
helperTextFontFamily: _coreTokens["default"].type_sans,
|
|
1131
|
+
helperTextFontStyle: _coreTokens["default"].type_normal,
|
|
1132
|
+
helperTextFontWeight: _coreTokens["default"].type_regular,
|
|
1133
|
+
helperTextFontTracking: _coreTokens["default"].type_spacing_normal,
|
|
1331
1134
|
helperTextFontTextTransform: "none",
|
|
1332
|
-
visitedHelperTextFontColor:
|
|
1135
|
+
visitedHelperTextFontColor: _coreTokens["default"].color_black,
|
|
1333
1136
|
helperTextTextAlign: "left",
|
|
1334
|
-
disabledStepBackgroundColor:
|
|
1335
|
-
disabledStepFontColor:
|
|
1336
|
-
disabledLabelFontColor:
|
|
1337
|
-
disabledHelperTextFontColor:
|
|
1338
|
-
disabledStepBorderColor:
|
|
1137
|
+
disabledStepBackgroundColor: _coreTokens["default"].color_grey_100,
|
|
1138
|
+
disabledStepFontColor: _coreTokens["default"].color_grey_500,
|
|
1139
|
+
disabledLabelFontColor: _coreTokens["default"].color_grey_500,
|
|
1140
|
+
disabledHelperTextFontColor: _coreTokens["default"].color_grey_500,
|
|
1141
|
+
disabledStepBorderColor: _coreTokens["default"].color_grey_100,
|
|
1339
1142
|
disabledStepWidth: "32px",
|
|
1340
1143
|
disabledStepHeight: "32px",
|
|
1341
1144
|
disabledStepBorderThickness: "2px",
|
|
1342
|
-
disabledStepBorderStyle: "
|
|
1145
|
+
disabledStepBorderStyle: _coreTokens["default"].border_solid,
|
|
1343
1146
|
disabledStepBorderRadius: "45px",
|
|
1344
1147
|
separatorBorderThickness: "1px",
|
|
1345
|
-
separatorBorderStyle: "
|
|
1346
|
-
separatorColor:
|
|
1347
|
-
focusColor:
|
|
1148
|
+
separatorBorderStyle: _coreTokens["default"].border_solid,
|
|
1149
|
+
separatorColor: _coreTokens["default"].color_grey_700,
|
|
1150
|
+
focusColor: _coreTokens["default"].color_blue_600
|
|
1348
1151
|
}
|
|
1349
1152
|
};
|
|
1350
|
-
exports.
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
xxlarge: "100px"
|
|
1153
|
+
var spaces = exports.spaces = {
|
|
1154
|
+
xxsmall: _coreTokens["default"].spacing_4,
|
|
1155
|
+
xsmall: _coreTokens["default"].spacing_8,
|
|
1156
|
+
small: _coreTokens["default"].spacing_12,
|
|
1157
|
+
medium: _coreTokens["default"].spacing_16,
|
|
1158
|
+
large: _coreTokens["default"].spacing_24,
|
|
1159
|
+
xlarge: _coreTokens["default"].spacing_32,
|
|
1160
|
+
xxlarge: _coreTokens["default"].spacing_48
|
|
1359
1161
|
};
|
|
1360
|
-
exports.
|
|
1361
|
-
var responsiveSizes = {
|
|
1162
|
+
var responsiveSizes = exports.responsiveSizes = {
|
|
1362
1163
|
xsmall: "20",
|
|
1363
1164
|
small: "30",
|
|
1364
1165
|
medium: "45",
|
|
1365
1166
|
large: "66",
|
|
1366
1167
|
xlarge: "90"
|
|
1367
1168
|
};
|
|
1368
|
-
exports.
|
|
1369
|
-
var typeface = {
|
|
1370
|
-
body: {
|
|
1371
|
-
fontSize: "16px",
|
|
1372
|
-
letterSpacing: "0.5",
|
|
1373
|
-
textTransform: "initial"
|
|
1374
|
-
},
|
|
1375
|
-
altBody: {
|
|
1376
|
-
fontSize: "14px",
|
|
1377
|
-
letterSpacing: "0.25",
|
|
1378
|
-
textTransform: "initial"
|
|
1379
|
-
},
|
|
1380
|
-
subtitle: {
|
|
1381
|
-
fontSize: "16px",
|
|
1382
|
-
letterSpacing: "0.15",
|
|
1383
|
-
textTransform: "initial"
|
|
1384
|
-
},
|
|
1385
|
-
altSubtitle: {
|
|
1386
|
-
fontSize: "14px",
|
|
1387
|
-
letterSpacing: "0.1",
|
|
1388
|
-
textTransform: "initial"
|
|
1389
|
-
},
|
|
1390
|
-
caption: {
|
|
1391
|
-
fontSize: "12px",
|
|
1392
|
-
letterSpacing: "0.4",
|
|
1393
|
-
textTransform: "initial"
|
|
1394
|
-
},
|
|
1395
|
-
overline: {
|
|
1396
|
-
fontSize: "12px",
|
|
1397
|
-
letterSpacing: "2",
|
|
1398
|
-
textTransform: "uppercase"
|
|
1399
|
-
}
|
|
1400
|
-
};
|
|
1401
|
-
exports.typeface = typeface;
|
|
1402
|
-
var defaultTranslatedComponentLabels = {
|
|
1169
|
+
var defaultTranslatedComponentLabels = exports.defaultTranslatedComponentLabels = {
|
|
1403
1170
|
formFields: {
|
|
1404
1171
|
optionalLabel: "(Optional)",
|
|
1405
1172
|
requiredSelectionErrorMessage: "This field is required. Please, choose an option.",
|
|
@@ -1410,6 +1177,9 @@ var defaultTranslatedComponentLabels = {
|
|
|
1410
1177
|
},
|
|
1411
1178
|
logoAlternativeText: "Logo"
|
|
1412
1179
|
},
|
|
1180
|
+
applicationLayout: {
|
|
1181
|
+
visibilityToggleTitle: "Toggle visibility sidenav"
|
|
1182
|
+
},
|
|
1413
1183
|
alert: {
|
|
1414
1184
|
infoTitleText: "information",
|
|
1415
1185
|
successTitleText: "success",
|
|
@@ -1419,6 +1189,9 @@ var defaultTranslatedComponentLabels = {
|
|
|
1419
1189
|
dateInput: {
|
|
1420
1190
|
invalidDateErrorMessage: "Invalid date."
|
|
1421
1191
|
},
|
|
1192
|
+
dialog: {
|
|
1193
|
+
closeIconAriaLabel: "Close dialog"
|
|
1194
|
+
},
|
|
1422
1195
|
fileInput: {
|
|
1423
1196
|
fileSizeGreaterThanErrorMessage: "File size must be greater than min size.",
|
|
1424
1197
|
fileSizeLessThanErrorMessage: "File size must be less than max size.",
|
|
@@ -1426,13 +1199,18 @@ var defaultTranslatedComponentLabels = {
|
|
|
1426
1199
|
singleButtonLabelDefault: "Select file",
|
|
1427
1200
|
dropAreaButtonLabelDefault: "Select",
|
|
1428
1201
|
multipleDropAreaLabelDefault: "or drop files",
|
|
1429
|
-
singleDropAreaLabelDefault: "or drop a file"
|
|
1202
|
+
singleDropAreaLabelDefault: "or drop a file",
|
|
1203
|
+
deleteFileActionTitle: "Remove file"
|
|
1430
1204
|
},
|
|
1431
1205
|
footer: {
|
|
1432
1206
|
copyrightText: function copyrightText(year) {
|
|
1433
1207
|
return "\xA9 DXC Technology ".concat(year, ". All rights reserved.");
|
|
1434
1208
|
}
|
|
1435
1209
|
},
|
|
1210
|
+
header: {
|
|
1211
|
+
closeIcon: "Close menu",
|
|
1212
|
+
hamburguerTitle: "Menu"
|
|
1213
|
+
},
|
|
1436
1214
|
numberInput: {
|
|
1437
1215
|
valueGreaterThanOrEqualToErrorMessage: function valueGreaterThanOrEqualToErrorMessage(value) {
|
|
1438
1216
|
return "Value must be greater than or equal to ".concat(value, ".");
|
|
@@ -1444,7 +1222,7 @@ var defaultTranslatedComponentLabels = {
|
|
|
1444
1222
|
incrementValueTitle: "Increment value"
|
|
1445
1223
|
},
|
|
1446
1224
|
paginator: {
|
|
1447
|
-
itemsPerPageText: "Items per page ",
|
|
1225
|
+
itemsPerPageText: "Items per page: ",
|
|
1448
1226
|
minToMaxOfText: function minToMaxOfText(minNumberOfItems, maxNumberOfItems, totalItems) {
|
|
1449
1227
|
return "".concat(minNumberOfItems, " to ").concat(maxNumberOfItems, " of ").concat(totalItems);
|
|
1450
1228
|
},
|
|
@@ -1468,19 +1246,19 @@ var defaultTranslatedComponentLabels = {
|
|
|
1468
1246
|
actionClearSelectionTitle: "Clear selection",
|
|
1469
1247
|
actionClearSearchTitle: "Clear search"
|
|
1470
1248
|
},
|
|
1249
|
+
tabs: {
|
|
1250
|
+
scrollLeft: "Scroll left",
|
|
1251
|
+
scrollRight: "Scroll right"
|
|
1252
|
+
},
|
|
1471
1253
|
textInput: {
|
|
1472
1254
|
clearFieldActionTitle: "Clear field",
|
|
1473
1255
|
searchingMessage: "Searching...",
|
|
1474
1256
|
fetchingDataErrorMessage: "Error fetching data"
|
|
1475
1257
|
},
|
|
1476
1258
|
calendar: {
|
|
1477
|
-
|
|
1478
|
-
daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
|
|
1259
|
+
daysShort: ["Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"],
|
|
1479
1260
|
months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
applicationLayout: {
|
|
1483
|
-
visibilityToggleTitle: "Toggle visibility sidenav"
|
|
1261
|
+
previousMonthTitle: "Previous month",
|
|
1262
|
+
nextMonthTitle: "Next month"
|
|
1484
1263
|
}
|
|
1485
|
-
};
|
|
1486
|
-
exports.defaultTranslatedComponentLabels = defaultTranslatedComponentLabels;
|
|
1264
|
+
};
|