@dxc-technology/halstack-react 11.0.0 → 12.0.0
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 +3 -8
- package/HalstackContext.d.ts +32 -142
- package/HalstackContext.js +2 -2
- package/accordion/Accordion.accessibility.test.js +71 -0
- package/accordion/Accordion.js +13 -27
- package/accordion/Accordion.stories.tsx +7 -49
- package/accordion/types.d.ts +1 -1
- package/accordion-group/AccordionGroup.accessibility.test.js +88 -0
- package/accordion-group/AccordionGroup.d.ts +2 -3
- package/accordion-group/AccordionGroup.js +4 -4
- package/accordion-group/AccordionGroup.stories.tsx +23 -23
- package/accordion-group/AccordionGroupAccordion.js +3 -3
- package/accordion-group/AccordionGroupContext.d.ts +3 -0
- package/accordion-group/AccordionGroupContext.js +8 -0
- package/accordion-group/types.d.ts +1 -1
- 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/action-icon/types.js +5 -0
- package/alert/Alert.accessibility.test.js +95 -0
- package/alert/Alert.js +21 -75
- package/badge/Badge.accessibility.test.js +129 -0
- package/badge/Badge.d.ts +1 -1
- package/badge/Badge.js +141 -28
- package/badge/Badge.stories.tsx +210 -0
- package/badge/Badge.test.js +30 -0
- package/badge/types.d.ts +52 -3
- package/box/Box.accessibility.test.js +33 -0
- package/box/Box.js +2 -5
- 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/breadcrumbs/types.js +5 -0
- package/bulleted-list/BulletedList.accessibility.test.js +119 -0
- package/bulleted-list/BulletedList.js +16 -23
- package/bulleted-list/BulletedList.stories.tsx +1 -2
- package/button/Button.accessibility.test.js +127 -0
- package/button/Button.js +16 -16
- package/button/Button.stories.tsx +34 -53
- package/button/Button.test.js +3 -1
- package/button/types.d.ts +1 -1
- package/card/Card.accessibility.test.js +36 -0
- package/card/Card.js +3 -2
- package/checkbox/Checkbox.accessibility.test.js +87 -0
- package/checkbox/Checkbox.js +31 -36
- package/chip/Chip.accessibility.test.js +67 -0
- package/chip/Chip.js +11 -6
- package/chip/Chip.stories.tsx +10 -25
- package/chip/Chip.test.js +4 -4
- package/common/coreTokens.d.ts +105 -14
- package/common/coreTokens.js +40 -22
- package/common/variables.d.ts +31 -138
- package/common/variables.js +103 -210
- 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/container/types.js +5 -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/contextual-menu/types.js +5 -0
- package/date-input/Calendar.js +1 -1
- package/date-input/DateInput.accessibility.test.js +228 -0
- package/date-input/DateInput.js +4 -5
- package/date-input/DateInput.stories.tsx +15 -8
- package/date-input/DatePicker.js +13 -7
- package/date-input/YearPicker.js +1 -1
- package/date-input/types.d.ts +2 -2
- package/dialog/Dialog.accessibility.test.js +69 -0
- package/dialog/Dialog.js +11 -25
- package/dialog/Dialog.stories.tsx +176 -0
- package/dialog/Dialog.test.js +1 -1
- 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/divider/types.js +5 -0
- package/dropdown/Dropdown.accessibility.test.js +180 -0
- package/dropdown/Dropdown.js +26 -39
- package/dropdown/Dropdown.stories.tsx +15 -26
- package/dropdown/Dropdown.test.js +18 -18
- package/dropdown/DropdownMenu.js +4 -4
- package/dropdown/DropdownMenuItem.js +8 -4
- package/dropdown/types.d.ts +3 -5
- package/file-input/FileInput.accessibility.test.js +160 -0
- package/file-input/FileInput.js +126 -141
- package/file-input/FileInput.test.js +84 -110
- package/file-input/FileItem.js +18 -28
- package/file-input/types.d.ts +1 -1
- package/footer/Footer.accessibility.test.js +125 -0
- package/footer/Footer.d.ts +1 -1
- package/footer/Footer.js +36 -31
- package/footer/Footer.stories.tsx +58 -2
- package/footer/Icons.d.ts +1 -0
- package/footer/Icons.js +52 -16
- package/footer/types.d.ts +8 -8
- package/header/Header.accessibility.test.js +93 -0
- package/header/Header.js +20 -41
- package/header/Header.stories.tsx +16 -0
- package/header/Icons.js +1 -6
- package/header/types.d.ts +4 -3
- package/heading/Heading.accessibility.test.js +33 -0
- package/heading/Heading.js +1 -1
- 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.js +1 -1
- package/image/Image.stories.tsx +3 -1
- package/layout/ApplicationLayout.d.ts +1 -1
- package/layout/ApplicationLayout.js +10 -7
- package/layout/Icons.d.ts +0 -1
- package/layout/Icons.js +1 -11
- package/link/Link.accessibility.test.js +108 -0
- package/link/Link.js +8 -6
- package/link/Link.stories.tsx +4 -4
- package/link/types.d.ts +1 -1
- package/main.d.ts +7 -3
- package/main.js +37 -9
- package/nav-tabs/NavTabs.accessibility.test.js +44 -0
- package/nav-tabs/NavTabs.d.ts +1 -2
- package/nav-tabs/NavTabs.js +10 -7
- package/nav-tabs/NavTabs.stories.tsx +29 -24
- package/nav-tabs/NavTabs.test.js +11 -9
- package/nav-tabs/NavTabsContext.d.ts +3 -0
- package/nav-tabs/NavTabsContext.js +8 -0
- package/nav-tabs/Tab.js +23 -23
- package/nav-tabs/types.d.ts +1 -1
- package/number-input/NumberInput.accessibility.test.js +228 -0
- package/number-input/NumberInput.d.ts +0 -7
- package/number-input/NumberInput.js +24 -5
- package/number-input/NumberInput.test.js +165 -6
- package/number-input/NumberInputContext.d.ts +3 -0
- package/number-input/NumberInputContext.js +8 -0
- package/number-input/types.d.ts +6 -0
- package/package.json +16 -14
- package/paginator/Paginator.accessibility.test.js +79 -0
- package/paginator/Paginator.js +14 -14
- package/paragraph/Paragraph.accessibility.test.js +28 -0
- package/paragraph/Paragraph.js +2 -7
- package/password-input/PasswordInput.accessibility.test.js +153 -0
- package/password-input/PasswordInput.js +7 -7
- package/password-input/PasswordInput.stories.tsx +0 -1
- package/password-input/PasswordInput.test.js +4 -4
- package/progress-bar/ProgressBar.accessibility.test.js +35 -0
- package/progress-bar/ProgressBar.js +11 -15
- package/quick-nav/QuickNav.accessibility.test.js +57 -0
- package/quick-nav/QuickNav.js +1 -1
- package/radio-group/Radio.js +1 -1
- package/radio-group/RadioGroup.accessibility.test.js +97 -0
- package/radio-group/RadioGroup.js +3 -2
- package/resultset-table/ResultsetTable.accessibility.test.js +285 -0
- package/resultset-table/ResultsetTable.d.ts +4 -1
- package/resultset-table/ResultsetTable.js +25 -13
- package/resultset-table/ResultsetTable.stories.tsx +118 -5
- package/resultset-table/ResultsetTable.test.js +76 -0
- package/resultset-table/types.d.ts +40 -7
- package/select/Listbox.js +28 -16
- package/select/Option.js +19 -10
- package/select/Select.accessibility.test.js +228 -0
- package/select/Select.js +57 -37
- package/select/Select.stories.tsx +59 -111
- package/select/Select.test.js +387 -456
- package/select/types.d.ts +3 -3
- package/sidenav/Sidenav.accessibility.test.js +59 -0
- package/sidenav/Sidenav.js +21 -19
- package/sidenav/Sidenav.stories.tsx +4 -9
- package/sidenav/types.d.ts +2 -2
- package/slider/Slider.accessibility.test.js +104 -0
- package/slider/Slider.js +40 -48
- package/spinner/Spinner.accessibility.test.js +96 -0
- package/spinner/Spinner.js +12 -16
- 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.js +24 -29
- package/switch/Switch.stories.tsx +12 -0
- 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 +74 -12
- package/table/Table.stories.tsx +309 -2
- package/table/Table.test.js +92 -0
- package/table/types.d.ts +28 -0
- package/tabs/Tab.js +13 -9
- package/tabs/Tabs.accessibility.test.js +56 -0
- package/tabs/Tabs.js +12 -24
- package/tabs/Tabs.stories.tsx +8 -4
- package/tabs/Tabs.test.js +19 -37
- package/tabs/types.d.ts +2 -2
- package/tag/Tag.accessibility.test.js +69 -0
- package/tag/Tag.js +7 -7
- package/tag/Tag.stories.tsx +4 -7
- package/tag/Tag.test.js +4 -12
- package/tag/types.d.ts +2 -2
- package/text-input/Suggestion.js +1 -1
- package/text-input/Suggestions.js +19 -14
- package/text-input/TextInput.accessibility.test.js +321 -0
- package/text-input/TextInput.js +84 -105
- package/text-input/TextInput.stories.tsx +17 -8
- package/text-input/TextInput.test.js +96 -79
- package/textarea/Textarea.accessibility.test.js +155 -0
- package/textarea/Textarea.js +12 -17
- package/textarea/Textarea.stories.tsx +0 -1
- package/toggle-group/ToggleGroup.accessibility.test.js +107 -0
- package/toggle-group/ToggleGroup.js +6 -8
- package/toggle-group/ToggleGroup.stories.tsx +3 -3
- package/toggle-group/types.d.ts +2 -2
- package/typography/Typography.accessibility.test.js +339 -0
- package/useTheme.d.ts +31 -138
- package/utils/BaseTypography.js +1 -1
- package/utils/FocusLock.js +16 -6
- package/wizard/Wizard.accessibility.test.js +55 -0
- package/wizard/Wizard.js +14 -25
- package/wizard/Wizard.stories.tsx +19 -0
- package/wizard/types.d.ts +2 -2
- package/common/OpenSans.css +0 -69
- 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/date-input/Icons.d.ts +0 -6
- package/date-input/Icons.js +0 -58
- package/paginator/Icons.d.ts +0 -5
- package/paginator/Icons.js +0 -40
- package/password-input/Icons.d.ts +0 -6
- package/password-input/Icons.js +0 -35
- package/select/Icons.d.ts +0 -10
- package/select/Icons.js +0 -89
- package/sidenav/Icons.d.ts +0 -7
- package/sidenav/Icons.js +0 -47
- package/text-input/Icons.d.ts +0 -8
- package/text-input/Icons.js +0 -56
- /package/{layout → sidenav}/SidenavContext.d.ts +0 -0
- /package/{layout → sidenav}/SidenavContext.js +0 -0
|
@@ -7,10 +7,22 @@ import Listbox from "./Listbox";
|
|
|
7
7
|
import { ThemeProvider } from "styled-components";
|
|
8
8
|
import useTheme from "../useTheme";
|
|
9
9
|
import { HalstackProvider } from "../HalstackContext";
|
|
10
|
+
import { disabledRules } from "../../test/accessibility/rules/specific/select/disabledRules";
|
|
11
|
+
import preview from "../../.storybook/preview";
|
|
10
12
|
|
|
11
13
|
export default {
|
|
12
14
|
title: "Select",
|
|
13
15
|
component: DxcSelect,
|
|
16
|
+
parameters: {
|
|
17
|
+
a11y: {
|
|
18
|
+
config: {
|
|
19
|
+
rules: [
|
|
20
|
+
...disabledRules.map((ruleId) => ({ id: ruleId, reviewOnFail: true })),
|
|
21
|
+
...preview?.parameters?.a11y?.config?.rules,
|
|
22
|
+
],
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
},
|
|
14
26
|
};
|
|
15
27
|
|
|
16
28
|
const one_option = [{ label: "Option 01", value: "1" }];
|
|
@@ -65,25 +77,14 @@ const group_options = [
|
|
|
65
77
|
},
|
|
66
78
|
];
|
|
67
79
|
|
|
68
|
-
const
|
|
80
|
+
const icon_options_grouped_material = [
|
|
69
81
|
{
|
|
70
82
|
label: "Group 001",
|
|
71
83
|
options: [
|
|
72
84
|
{
|
|
73
85
|
label: "3G Mobile",
|
|
74
86
|
value: "1",
|
|
75
|
-
icon:
|
|
76
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
|
|
77
|
-
<g>
|
|
78
|
-
<path d="M0,0h24v24H0V0z" fill="none" />
|
|
79
|
-
</g>
|
|
80
|
-
<g>
|
|
81
|
-
<g>
|
|
82
|
-
<path d="M3,7v2h5v2H4v2h4v2H3v2h5c1.1,0,2-0.9,2-2v-1.5c0-0.83-0.67-1.5-1.5-1.5c0.83,0,1.5-0.67,1.5-1.5V9c0-1.1-0.9-2-2-2H3z M21,11v4c0,1.1-0.9,2-2,2h-5c-1.1,0-2-0.9-2-2V9c0-1.1,0.9-2,2-2h5c1.1,0,2,0.9,2,2h-7v6h5v-2h-2.5v-2H21z" />
|
|
83
|
-
</g>
|
|
84
|
-
</g>
|
|
85
|
-
</svg>
|
|
86
|
-
),
|
|
87
|
+
icon: "3g_mobiledata",
|
|
87
88
|
},
|
|
88
89
|
],
|
|
89
90
|
},
|
|
@@ -93,12 +94,7 @@ const icon_options_grouped = [
|
|
|
93
94
|
{
|
|
94
95
|
label: "Ethernet",
|
|
95
96
|
value: "2",
|
|
96
|
-
icon:
|
|
97
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
|
|
98
|
-
<path d="M0 0h24v24H0V0z" fill="none" />
|
|
99
|
-
<path d="M7.77 6.76L6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52l-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z" />
|
|
100
|
-
</svg>
|
|
101
|
-
),
|
|
97
|
+
icon: "settings_ethernet",
|
|
102
98
|
},
|
|
103
99
|
],
|
|
104
100
|
},
|
|
@@ -108,22 +104,12 @@ const icon_options_grouped = [
|
|
|
108
104
|
{
|
|
109
105
|
label: "Wi-fi",
|
|
110
106
|
value: "3",
|
|
111
|
-
icon:
|
|
112
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
|
|
113
|
-
<path d="M0 0h24v24H0V0zm0 0h24v24H0V0z" fill="none" />
|
|
114
|
-
<path d="M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z" />
|
|
115
|
-
</svg>
|
|
116
|
-
),
|
|
107
|
+
icon: "wifi",
|
|
117
108
|
},
|
|
118
109
|
{
|
|
119
110
|
label: "Settings backup restore (just for previous configuration)",
|
|
120
111
|
value: "4",
|
|
121
|
-
icon:
|
|
122
|
-
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
|
|
123
|
-
<path d="M0 0h24v24H0V0z" fill="none" />
|
|
124
|
-
<path d="M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z" />
|
|
125
|
-
</svg>
|
|
126
|
-
),
|
|
112
|
+
icon: "settings_backup_restore",
|
|
127
113
|
},
|
|
128
114
|
],
|
|
129
115
|
},
|
|
@@ -178,71 +164,49 @@ const icon_options = [
|
|
|
178
164
|
},
|
|
179
165
|
];
|
|
180
166
|
|
|
181
|
-
const
|
|
167
|
+
const options_material = [
|
|
182
168
|
{
|
|
183
|
-
label: "
|
|
169
|
+
label: "Transport",
|
|
184
170
|
options: [
|
|
185
171
|
{
|
|
186
|
-
label: "
|
|
187
|
-
value: "
|
|
188
|
-
icon: "
|
|
172
|
+
label: "Electric Car",
|
|
173
|
+
value: "car",
|
|
174
|
+
icon: "electric_car",
|
|
189
175
|
},
|
|
190
176
|
{
|
|
191
|
-
label: "
|
|
192
|
-
value: "
|
|
193
|
-
icon: "
|
|
177
|
+
label: "Motorcycle",
|
|
178
|
+
value: "motorcycle",
|
|
179
|
+
icon: "Motorcycle",
|
|
194
180
|
},
|
|
195
181
|
{
|
|
196
|
-
label: "
|
|
197
|
-
value: "
|
|
198
|
-
icon:
|
|
199
|
-
<svg
|
|
200
|
-
version="1.1"
|
|
201
|
-
id="Capa_1"
|
|
202
|
-
x="0px"
|
|
203
|
-
y="0px"
|
|
204
|
-
width="438.536px"
|
|
205
|
-
height="438.536px"
|
|
206
|
-
viewBox="0 0 438.536 438.536"
|
|
207
|
-
fill="#4267B2"
|
|
208
|
-
>
|
|
209
|
-
<g>
|
|
210
|
-
<path
|
|
211
|
-
d="M414.41,24.123C398.333,8.042,378.963,0,356.315,0H82.228C59.58,0,40.21,8.042,24.126,24.123
|
|
212
|
-
C8.045,40.207,0.003,59.576,0.003,82.225v274.084c0,22.647,8.042,42.018,24.123,58.102c16.084,16.084,35.454,24.126,58.102,24.126
|
|
213
|
-
h274.084c22.648,0,42.018-8.042,58.095-24.126c16.084-16.084,24.126-35.454,24.126-58.102V82.225
|
|
214
|
-
C438.532,59.576,430.49,40.204,414.41,24.123z M373.155,225.548h-49.963V406.84h-74.802V225.548H210.99V163.02h37.401v-37.402
|
|
215
|
-
c0-26.838,6.283-47.107,18.843-60.813c12.559-13.706,33.304-20.555,62.242-20.555h49.963v62.526h-31.401
|
|
216
|
-
c-10.663,0-17.467,1.853-20.417,5.568c-2.949,3.711-4.428,10.23-4.428,19.558v31.119h56.534L373.155,225.548z"
|
|
217
|
-
/>
|
|
218
|
-
</g>
|
|
219
|
-
</svg>
|
|
220
|
-
),
|
|
182
|
+
label: "Train",
|
|
183
|
+
value: "train",
|
|
184
|
+
icon: "train",
|
|
221
185
|
},
|
|
222
186
|
{
|
|
223
|
-
label: "
|
|
224
|
-
value: "
|
|
225
|
-
icon: "
|
|
187
|
+
label: "Bike",
|
|
188
|
+
value: "bike",
|
|
189
|
+
icon: "pedal_bike",
|
|
226
190
|
},
|
|
227
191
|
],
|
|
228
192
|
},
|
|
229
193
|
{
|
|
230
|
-
label: "
|
|
194
|
+
label: "Entertainment",
|
|
231
195
|
options: [
|
|
232
196
|
{
|
|
233
|
-
label: "
|
|
234
|
-
value: "
|
|
235
|
-
icon: "
|
|
197
|
+
label: "Movie",
|
|
198
|
+
value: "movie",
|
|
199
|
+
icon: "movie",
|
|
236
200
|
},
|
|
237
201
|
{
|
|
238
|
-
label: "
|
|
239
|
-
value: "
|
|
240
|
-
icon: "
|
|
202
|
+
label: "Music",
|
|
203
|
+
value: "music",
|
|
204
|
+
icon: "music_note",
|
|
241
205
|
},
|
|
242
206
|
{
|
|
243
|
-
label: "
|
|
244
|
-
value: "
|
|
245
|
-
icon: "
|
|
207
|
+
label: "Games",
|
|
208
|
+
value: "games",
|
|
209
|
+
icon: "joystick",
|
|
246
210
|
},
|
|
247
211
|
],
|
|
248
212
|
},
|
|
@@ -474,7 +438,7 @@ const SelectListbox = () => {
|
|
|
474
438
|
<ExampleContainer pseudoState="pseudo-hover">
|
|
475
439
|
<Title title="Hovered option" theme="light" level={4} />
|
|
476
440
|
<Listbox
|
|
477
|
-
id="
|
|
441
|
+
id="x8"
|
|
478
442
|
currentValue=""
|
|
479
443
|
options={one_option}
|
|
480
444
|
visualFocusIndex={-1}
|
|
@@ -490,7 +454,7 @@ const SelectListbox = () => {
|
|
|
490
454
|
<ExampleContainer pseudoState="pseudo-active">
|
|
491
455
|
<Title title="Active option" theme="light" level={4} />
|
|
492
456
|
<Listbox
|
|
493
|
-
id="
|
|
457
|
+
id="x9"
|
|
494
458
|
currentValue=""
|
|
495
459
|
options={one_option}
|
|
496
460
|
visualFocusIndex={-1}
|
|
@@ -506,7 +470,7 @@ const SelectListbox = () => {
|
|
|
506
470
|
<ExampleContainer>
|
|
507
471
|
<Title title="Focused option" theme="light" level={4} />
|
|
508
472
|
<Listbox
|
|
509
|
-
id="
|
|
473
|
+
id="x10"
|
|
510
474
|
currentValue=""
|
|
511
475
|
options={one_option}
|
|
512
476
|
visualFocusIndex={0}
|
|
@@ -522,7 +486,7 @@ const SelectListbox = () => {
|
|
|
522
486
|
<ExampleContainer pseudoState="pseudo-hover">
|
|
523
487
|
<Title title="Hovered selected option" theme="light" level={4} />
|
|
524
488
|
<Listbox
|
|
525
|
-
id="
|
|
489
|
+
id="x11"
|
|
526
490
|
currentValue="1"
|
|
527
491
|
options={single_options}
|
|
528
492
|
visualFocusIndex={-1}
|
|
@@ -538,7 +502,7 @@ const SelectListbox = () => {
|
|
|
538
502
|
<ExampleContainer pseudoState="pseudo-active">
|
|
539
503
|
<Title title="Active selected option" theme="light" level={4} />
|
|
540
504
|
<Listbox
|
|
541
|
-
id="
|
|
505
|
+
id="x12"
|
|
542
506
|
currentValue="2"
|
|
543
507
|
options={single_options}
|
|
544
508
|
visualFocusIndex={0}
|
|
@@ -555,7 +519,7 @@ const SelectListbox = () => {
|
|
|
555
519
|
<ExampleContainer>
|
|
556
520
|
<Title title="Icons (SVGs)" theme="light" level={4} />
|
|
557
521
|
<Listbox
|
|
558
|
-
id="
|
|
522
|
+
id="x13"
|
|
559
523
|
currentValue="3"
|
|
560
524
|
options={icon_options}
|
|
561
525
|
visualFocusIndex={-1}
|
|
@@ -569,27 +533,11 @@ const SelectListbox = () => {
|
|
|
569
533
|
/>
|
|
570
534
|
</ExampleContainer>
|
|
571
535
|
<ExampleContainer>
|
|
572
|
-
<Title title="
|
|
573
|
-
<Listbox
|
|
574
|
-
id="x"
|
|
575
|
-
currentValue="facebook"
|
|
576
|
-
options={url_options}
|
|
577
|
-
visualFocusIndex={-1}
|
|
578
|
-
lastOptionIndex={6}
|
|
579
|
-
multiple={false}
|
|
580
|
-
optional={false}
|
|
581
|
-
optionalItem={{ label: "Empty", value: "" }}
|
|
582
|
-
searchable={false}
|
|
583
|
-
handleOptionOnClick={() => {}}
|
|
584
|
-
styles={{ width: 360 }}
|
|
585
|
-
/>
|
|
586
|
-
</ExampleContainer>
|
|
587
|
-
<ExampleContainer>
|
|
588
|
-
<Title title="Grouped icons (SVGs)" theme="light" level={4} />
|
|
536
|
+
<Title title="Grouped icons (Material Symbols)" theme="light" level={4} />
|
|
589
537
|
<Listbox
|
|
590
|
-
id="
|
|
538
|
+
id="x14"
|
|
591
539
|
currentValue={["0", "3"]}
|
|
592
|
-
options={
|
|
540
|
+
options={icon_options_grouped_material}
|
|
593
541
|
visualFocusIndex={-1}
|
|
594
542
|
lastOptionIndex={3}
|
|
595
543
|
multiple={false}
|
|
@@ -601,11 +549,11 @@ const SelectListbox = () => {
|
|
|
601
549
|
/>
|
|
602
550
|
</ExampleContainer>
|
|
603
551
|
<ExampleContainer>
|
|
604
|
-
<Title title="Grouped icons (
|
|
552
|
+
<Title title="Grouped icons (Material)" theme="light" level={4} />
|
|
605
553
|
<Listbox
|
|
606
|
-
id="
|
|
554
|
+
id="x15"
|
|
607
555
|
currentValue={["facebook", "figma"]}
|
|
608
|
-
options={
|
|
556
|
+
options={options_material}
|
|
609
557
|
visualFocusIndex={-1}
|
|
610
558
|
lastOptionIndex={6}
|
|
611
559
|
multiple={true}
|
|
@@ -623,7 +571,7 @@ const SelectListbox = () => {
|
|
|
623
571
|
<Title title="Hovered option" theme="light" level={4} />
|
|
624
572
|
<HalstackProvider theme={opinionatedTheme}>
|
|
625
573
|
<Listbox
|
|
626
|
-
id="
|
|
574
|
+
id="x16"
|
|
627
575
|
currentValue=""
|
|
628
576
|
options={one_option}
|
|
629
577
|
visualFocusIndex={-1}
|
|
@@ -641,7 +589,7 @@ const SelectListbox = () => {
|
|
|
641
589
|
<Title title="Active option" theme="light" level={4} />{" "}
|
|
642
590
|
<HalstackProvider theme={opinionatedTheme}>
|
|
643
591
|
<Listbox
|
|
644
|
-
id="
|
|
592
|
+
id="x17"
|
|
645
593
|
currentValue=""
|
|
646
594
|
options={one_option}
|
|
647
595
|
visualFocusIndex={-1}
|
|
@@ -659,7 +607,7 @@ const SelectListbox = () => {
|
|
|
659
607
|
<Title title="Focused option" theme="light" level={4} />{" "}
|
|
660
608
|
<HalstackProvider theme={opinionatedTheme}>
|
|
661
609
|
<Listbox
|
|
662
|
-
id="
|
|
610
|
+
id="x18"
|
|
663
611
|
currentValue=""
|
|
664
612
|
options={one_option}
|
|
665
613
|
visualFocusIndex={0}
|
|
@@ -677,7 +625,7 @@ const SelectListbox = () => {
|
|
|
677
625
|
<Title title="Hovered selected option" theme="light" level={4} />{" "}
|
|
678
626
|
<HalstackProvider theme={opinionatedTheme}>
|
|
679
627
|
<Listbox
|
|
680
|
-
id="
|
|
628
|
+
id="x19"
|
|
681
629
|
currentValue="1"
|
|
682
630
|
options={single_options}
|
|
683
631
|
visualFocusIndex={-1}
|
|
@@ -695,7 +643,7 @@ const SelectListbox = () => {
|
|
|
695
643
|
<Title title="Active selected option" theme="light" level={4} />{" "}
|
|
696
644
|
<HalstackProvider theme={opinionatedTheme}>
|
|
697
645
|
<Listbox
|
|
698
|
-
id="
|
|
646
|
+
id="x20"
|
|
699
647
|
currentValue="2"
|
|
700
648
|
options={single_options}
|
|
701
649
|
visualFocusIndex={0}
|
|
@@ -714,7 +662,7 @@ const SelectListbox = () => {
|
|
|
714
662
|
<Title title="Icons (SVGs)" theme="light" level={4} />{" "}
|
|
715
663
|
<HalstackProvider theme={opinionatedTheme}>
|
|
716
664
|
<Listbox
|
|
717
|
-
id="
|
|
665
|
+
id="x21"
|
|
718
666
|
currentValue="3"
|
|
719
667
|
options={icon_options}
|
|
720
668
|
visualFocusIndex={-1}
|