@dxc-technology/halstack-react 0.0.0-eca8a89 → 0.0.0-ecc45e2
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.js +0 -1
- package/HalstackContext.d.ts +12 -0
- package/HalstackContext.js +295 -0
- package/accordion/Accordion.d.ts +1 -1
- package/accordion/Accordion.js +13 -45
- package/accordion/Accordion.stories.tsx +20 -13
- package/accordion/Accordion.test.js +72 -0
- package/accordion/types.d.ts +7 -7
- package/accordion-group/AccordionGroup.d.ts +1 -1
- package/accordion-group/AccordionGroup.js +14 -15
- package/accordion-group/AccordionGroup.stories.tsx +1 -1
- package/accordion-group/AccordionGroup.test.js +151 -0
- package/accordion-group/types.d.ts +7 -7
- package/alert/Alert.js +4 -1
- package/alert/Alert.test.js +92 -0
- package/badge/Badge.d.ts +4 -0
- package/badge/Badge.js +5 -3
- package/badge/types.d.ts +5 -0
- package/{radio → badge}/types.js +0 -0
- package/bleed/Bleed.d.ts +3 -0
- package/bleed/Bleed.js +51 -0
- package/bleed/Bleed.stories.tsx +341 -0
- package/bleed/types.d.ts +37 -0
- package/bleed/types.js +5 -0
- package/box/Box.js +22 -32
- package/box/Box.test.js +18 -0
- package/bulleted-list/BulletedList.d.ts +7 -0
- package/bulleted-list/BulletedList.js +123 -0
- package/bulleted-list/BulletedList.stories.tsx +200 -0
- package/bulleted-list/types.d.ts +11 -0
- package/bulleted-list/types.js +5 -0
- package/button/Button.d.ts +1 -1
- package/button/Button.js +57 -80
- package/button/Button.stories.tsx +15 -8
- package/button/Button.test.js +35 -0
- package/button/types.d.ts +8 -12
- package/card/Card.js +24 -27
- package/card/Card.stories.tsx +1 -1
- package/card/Card.test.js +50 -0
- package/checkbox/Checkbox.d.ts +1 -1
- package/checkbox/Checkbox.js +43 -39
- package/checkbox/Checkbox.stories.tsx +124 -128
- package/checkbox/Checkbox.test.js +78 -0
- package/checkbox/types.d.ts +8 -4
- package/chip/Chip.d.ts +1 -1
- package/chip/Chip.js +16 -54
- package/chip/Chip.stories.tsx +6 -8
- package/chip/Chip.test.js +56 -0
- package/chip/types.d.ts +7 -15
- package/common/variables.js +267 -337
- package/date-input/DateInput.js +62 -48
- package/date-input/DateInput.stories.tsx +7 -7
- package/date-input/DateInput.test.js +479 -0
- package/date-input/types.d.ts +16 -9
- package/dialog/Dialog.js +48 -51
- package/dialog/Dialog.stories.tsx +1 -2
- package/dialog/Dialog.test.js +70 -0
- package/dialog/types.d.ts +2 -2
- package/dropdown/Dropdown.d.ts +1 -1
- package/dropdown/Dropdown.js +242 -272
- package/dropdown/Dropdown.stories.tsx +312 -0
- package/dropdown/Dropdown.test.js +591 -0
- package/dropdown/DropdownMenu.d.ts +4 -0
- package/dropdown/DropdownMenu.js +80 -0
- package/dropdown/DropdownMenuItem.d.ts +4 -0
- package/dropdown/DropdownMenuItem.js +92 -0
- package/dropdown/types.d.ts +29 -18
- package/file-input/FileInput.js +111 -39
- package/file-input/FileInput.stories.tsx +507 -0
- package/file-input/FileInput.test.js +457 -0
- package/file-input/FileItem.js +7 -5
- package/flex/Flex.d.ts +4 -0
- package/flex/Flex.js +57 -0
- package/flex/Flex.stories.tsx +103 -0
- package/flex/types.d.ts +21 -0
- package/flex/types.js +5 -0
- package/footer/Footer.js +24 -99
- package/footer/Footer.test.js +109 -0
- package/footer/Icons.js +1 -1
- package/footer/types.d.ts +1 -1
- package/header/Header.js +95 -114
- package/header/Header.stories.tsx +46 -36
- package/header/Header.test.js +79 -0
- package/header/Icons.js +2 -2
- package/header/types.d.ts +2 -2
- package/heading/Heading.stories.tsx +3 -2
- package/heading/Heading.test.js +186 -0
- package/inset/Inset.d.ts +3 -0
- package/inset/Inset.js +51 -0
- package/inset/Inset.stories.tsx +229 -0
- package/inset/types.d.ts +37 -0
- package/inset/types.js +5 -0
- package/layout/ApplicationLayout.d.ts +16 -6
- package/layout/ApplicationLayout.js +71 -125
- package/layout/ApplicationLayout.stories.tsx +83 -93
- package/layout/Icons.d.ts +5 -0
- package/layout/Icons.js +13 -2
- package/layout/SidenavContext.d.ts +5 -0
- package/layout/SidenavContext.js +19 -0
- package/layout/types.d.ts +18 -33
- package/link/Link.d.ts +3 -2
- package/link/Link.js +60 -85
- package/link/Link.stories.tsx +99 -52
- package/link/Link.test.js +83 -0
- package/link/types.d.ts +9 -29
- package/main.d.ts +11 -15
- package/main.js +53 -79
- package/number-input/NumberInput.js +11 -18
- package/number-input/NumberInput.stories.tsx +5 -5
- package/number-input/NumberInput.test.js +506 -0
- package/number-input/types.d.ts +17 -10
- package/package.json +14 -10
- package/paginator/Paginator.js +17 -38
- package/paginator/Paginator.test.js +308 -0
- package/paragraph/Paragraph.d.ts +6 -0
- package/paragraph/Paragraph.js +38 -0
- package/paragraph/Paragraph.stories.tsx +44 -0
- package/password-input/PasswordInput.js +7 -4
- package/password-input/PasswordInput.stories.tsx +3 -3
- package/password-input/PasswordInput.test.js +180 -0
- package/password-input/types.d.ts +14 -11
- package/progress-bar/ProgressBar.d.ts +2 -2
- package/progress-bar/ProgressBar.js +57 -51
- package/progress-bar/ProgressBar.stories.jsx +13 -11
- package/progress-bar/ProgressBar.test.js +110 -0
- package/progress-bar/types.d.ts +3 -4
- package/quick-nav/QuickNav.d.ts +4 -0
- package/quick-nav/QuickNav.js +118 -0
- package/quick-nav/QuickNav.stories.tsx +264 -0
- package/quick-nav/types.d.ts +21 -0
- package/quick-nav/types.js +5 -0
- package/radio-group/Radio.d.ts +4 -0
- package/radio-group/Radio.js +141 -0
- package/radio-group/RadioGroup.d.ts +4 -0
- package/radio-group/RadioGroup.js +281 -0
- package/radio-group/RadioGroup.stories.tsx +100 -0
- package/radio-group/RadioGroup.test.js +695 -0
- package/radio-group/types.d.ts +114 -0
- package/radio-group/types.js +5 -0
- package/resultsetTable/ResultsetTable.js +5 -2
- package/resultsetTable/ResultsetTable.stories.tsx +7 -8
- package/resultsetTable/ResultsetTable.test.js +348 -0
- package/select/Icons.d.ts +10 -0
- package/select/Icons.js +93 -0
- package/select/Listbox.d.ts +4 -0
- package/select/Listbox.js +199 -0
- package/select/Option.d.ts +4 -0
- package/select/Option.js +110 -0
- package/select/Select.d.ts +4 -0
- package/select/Select.js +146 -366
- package/select/Select.stories.tsx +231 -176
- package/select/Select.test.js +2175 -0
- package/select/types.d.ts +210 -0
- package/select/types.js +5 -0
- package/sidenav/Sidenav.d.ts +6 -5
- package/sidenav/Sidenav.js +184 -52
- package/sidenav/Sidenav.stories.tsx +154 -139
- package/sidenav/Sidenav.test.js +44 -0
- package/sidenav/types.d.ts +50 -27
- package/slider/Slider.d.ts +1 -1
- package/slider/Slider.js +5 -4
- package/slider/Slider.stories.tsx +8 -8
- package/slider/Slider.test.js +187 -0
- package/slider/types.d.ts +4 -0
- package/spinner/Spinner.js +1 -1
- package/spinner/Spinner.stories.jsx +1 -0
- package/spinner/Spinner.test.js +64 -0
- package/switch/Switch.d.ts +2 -2
- package/switch/Switch.js +127 -55
- package/switch/Switch.stories.tsx +21 -43
- package/switch/Switch.test.js +212 -0
- package/switch/types.d.ts +9 -6
- package/table/Table.stories.jsx +2 -1
- package/table/Table.test.js +26 -0
- package/tabs/Tabs.d.ts +1 -1
- package/tabs/Tabs.js +16 -18
- package/tabs/Tabs.stories.tsx +7 -16
- package/tabs/Tabs.test.js +140 -0
- package/tabs/types.d.ts +27 -15
- package/tabs-nav/NavTabs.d.ts +8 -0
- package/tabs-nav/NavTabs.js +125 -0
- package/tabs-nav/NavTabs.stories.tsx +170 -0
- package/tabs-nav/NavTabs.test.js +82 -0
- package/tabs-nav/Tab.d.ts +4 -0
- package/tabs-nav/Tab.js +130 -0
- package/tabs-nav/types.d.ts +53 -0
- package/tabs-nav/types.js +5 -0
- package/tag/Tag.d.ts +1 -1
- package/tag/Tag.js +17 -27
- package/tag/Tag.stories.tsx +26 -29
- package/tag/Tag.test.js +60 -0
- package/tag/types.d.ts +23 -14
- package/text-input/Suggestion.d.ts +4 -0
- package/text-input/Suggestion.js +55 -0
- package/text-input/TextInput.js +80 -105
- package/text-input/TextInput.stories.tsx +35 -18
- package/text-input/TextInput.test.js +1712 -0
- package/text-input/types.d.ts +32 -13
- package/textarea/Textarea.d.ts +4 -0
- package/textarea/Textarea.js +19 -56
- package/textarea/Textarea.stories.jsx +37 -15
- package/textarea/Textarea.test.js +437 -0
- package/textarea/types.d.ts +137 -0
- package/textarea/types.js +5 -0
- package/toggle-group/ToggleGroup.d.ts +1 -1
- package/toggle-group/ToggleGroup.js +12 -14
- package/toggle-group/ToggleGroup.stories.tsx +27 -32
- package/toggle-group/ToggleGroup.test.js +156 -0
- package/toggle-group/types.d.ts +46 -25
- package/typography/Typography.d.ts +4 -0
- package/typography/Typography.js +131 -0
- package/typography/Typography.stories.tsx +198 -0
- package/typography/types.d.ts +18 -0
- package/typography/types.js +5 -0
- package/useTheme.js +2 -2
- package/useTranslatedLabels.d.ts +2 -0
- package/useTranslatedLabels.js +20 -0
- package/wizard/Wizard.d.ts +1 -1
- package/wizard/Wizard.js +111 -57
- package/wizard/{Wizard.stories.jsx → Wizard.stories.tsx} +33 -24
- package/wizard/Wizard.test.js +141 -0
- package/wizard/types.d.ts +12 -11
- package/ThemeContext.d.ts +0 -15
- package/ThemeContext.js +0 -243
- package/V3Select/V3Select.js +0 -455
- package/V3Select/index.d.ts +0 -27
- package/V3Textarea/V3Textarea.js +0 -260
- package/V3Textarea/index.d.ts +0 -27
- package/date/Date.js +0 -373
- package/date/index.d.ts +0 -27
- package/input-text/Icons.js +0 -22
- package/input-text/InputText.js +0 -611
- package/input-text/index.d.ts +0 -36
- package/list/List.d.ts +0 -7
- package/list/List.js +0 -37
- package/list/List.stories.tsx +0 -70
- package/radio/Radio.d.ts +0 -4
- package/radio/Radio.js +0 -174
- package/radio/Radio.stories.tsx +0 -192
- package/radio/types.d.ts +0 -54
- package/row/Row.d.ts +0 -11
- package/row/Row.js +0 -124
- package/row/Row.stories.tsx +0 -223
- package/select/index.d.ts +0 -131
- package/stack/Stack.d.ts +0 -10
- package/stack/Stack.js +0 -94
- package/stack/Stack.stories.tsx +0 -150
- package/text/Text.d.ts +0 -7
- package/text/Text.js +0 -30
- package/text/Text.stories.tsx +0 -19
- package/textarea/index.d.ts +0 -127
- package/toggle/Toggle.js +0 -186
- package/toggle/index.d.ts +0 -21
- package/upload/Upload.js +0 -201
- package/upload/buttons-upload/ButtonsUpload.js +0 -111
- package/upload/buttons-upload/Icons.js +0 -40
- package/upload/dragAndDropArea/DragAndDropArea.js +0 -225
- package/upload/dragAndDropArea/Icons.js +0 -39
- package/upload/file-upload/FileToUpload.js +0 -115
- package/upload/file-upload/Icons.js +0 -66
- package/upload/files-upload/FilesToUpload.js +0 -109
- package/upload/index.d.ts +0 -15
- package/upload/transaction/Icons.js +0 -160
- package/upload/transaction/Transaction.js +0 -104
- package/upload/transactions/Transactions.js +0 -94
- package/wizard/Icons.js +0 -65
|
@@ -9,36 +9,31 @@ export default {
|
|
|
9
9
|
component: DxcToggleGroup,
|
|
10
10
|
};
|
|
11
11
|
|
|
12
|
-
const ethernetSVG = (
|
|
13
|
-
|
|
14
|
-
<
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
<path d="M0,0h24v24H0V0z" fill="none" />
|
|
25
|
-
</g>
|
|
12
|
+
const ethernetSVG = (
|
|
13
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
|
|
14
|
+
<path d="M0 0h24v24H0V0z" fill="none" />
|
|
15
|
+
<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" />
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
18
|
+
const gMobileSVG = (
|
|
19
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
|
|
20
|
+
<g>
|
|
21
|
+
<path d="M0,0h24v24H0V0z" fill="none" />
|
|
22
|
+
</g>
|
|
23
|
+
<g>
|
|
26
24
|
<g>
|
|
27
|
-
<
|
|
28
|
-
<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" />
|
|
29
|
-
</g>
|
|
25
|
+
<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" />
|
|
30
26
|
</g>
|
|
31
|
-
</
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
const wifiSVG = (
|
|
35
|
-
|
|
36
|
-
<
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
};
|
|
27
|
+
</g>
|
|
28
|
+
</svg>
|
|
29
|
+
);
|
|
30
|
+
const wifiSVG = (
|
|
31
|
+
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
|
|
32
|
+
<path d="M0 0h24v24H0V0zm0 0h24v24H0V0z" fill="none" />
|
|
33
|
+
<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" />
|
|
34
|
+
</svg>
|
|
35
|
+
);
|
|
36
|
+
|
|
42
37
|
const options = [
|
|
43
38
|
{
|
|
44
39
|
value: 1,
|
|
@@ -102,7 +97,7 @@ export const Chromatic = () => (
|
|
|
102
97
|
</ExampleContainer>
|
|
103
98
|
<ExampleContainer>
|
|
104
99
|
<Title title="Selected" theme="light" level={4} />
|
|
105
|
-
<DxcToggleGroup label="Selected" helperText="HelperText"
|
|
100
|
+
<DxcToggleGroup label="Selected" helperText="HelperText" defaultValue={2} options={options} />
|
|
106
101
|
</ExampleContainer>
|
|
107
102
|
<ExampleContainer>
|
|
108
103
|
<Title title="Icons toggle group" theme="light" level={4} />
|
|
@@ -114,11 +109,11 @@ export const Chromatic = () => (
|
|
|
114
109
|
</ExampleContainer>
|
|
115
110
|
<ExampleContainer>
|
|
116
111
|
<Title title="Disabled" theme="light" level={4} />
|
|
117
|
-
<DxcToggleGroup label="Disabled"
|
|
112
|
+
<DxcToggleGroup label="Disabled" defaultValue={2} options={options} disabled />
|
|
118
113
|
</ExampleContainer>
|
|
119
114
|
<ExampleContainer pseudoState="pseudo-hover">
|
|
120
115
|
<Title title="Hovered" theme="light" level={4} />
|
|
121
|
-
<DxcToggleGroup label="Hovered" options={twoOptions}
|
|
116
|
+
<DxcToggleGroup label="Hovered" options={twoOptions} defaultValue={2} />
|
|
122
117
|
</ExampleContainer>
|
|
123
118
|
<ExampleContainer>
|
|
124
119
|
<Title title="Multiple toggleGroup" theme="light" level={4} />
|
|
@@ -126,7 +121,7 @@ export const Chromatic = () => (
|
|
|
126
121
|
label="Toggle group"
|
|
127
122
|
helperText="Please select one or more"
|
|
128
123
|
options={options}
|
|
129
|
-
|
|
124
|
+
defaultValue={[1, 3]}
|
|
130
125
|
multiple
|
|
131
126
|
></DxcToggleGroup>
|
|
132
127
|
</ExampleContainer>
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
var _react = _interopRequireDefault(require("react"));
|
|
6
|
+
|
|
7
|
+
var _react2 = require("@testing-library/react");
|
|
8
|
+
|
|
9
|
+
var _ToggleGroup = _interopRequireDefault(require("./ToggleGroup"));
|
|
10
|
+
|
|
11
|
+
var options = [{
|
|
12
|
+
value: 1,
|
|
13
|
+
label: "Amazon"
|
|
14
|
+
}, {
|
|
15
|
+
value: 2,
|
|
16
|
+
label: "Ebay"
|
|
17
|
+
}, {
|
|
18
|
+
value: 3,
|
|
19
|
+
label: "Apple"
|
|
20
|
+
}, {
|
|
21
|
+
value: 4,
|
|
22
|
+
label: "Google"
|
|
23
|
+
}];
|
|
24
|
+
describe("Toggle group component tests", function () {
|
|
25
|
+
test("Toggle group renders with correct labels", function () {
|
|
26
|
+
var _render = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
|
|
27
|
+
label: "Toggle group label",
|
|
28
|
+
helperText: "Toggle group helper text",
|
|
29
|
+
options: options
|
|
30
|
+
})),
|
|
31
|
+
getByText = _render.getByText;
|
|
32
|
+
|
|
33
|
+
expect(getByText("Toggle group label")).toBeTruthy();
|
|
34
|
+
expect(getByText("Toggle group helper text")).toBeTruthy();
|
|
35
|
+
expect(getByText("Amazon")).toBeTruthy();
|
|
36
|
+
expect(getByText("Ebay")).toBeTruthy();
|
|
37
|
+
expect(getByText("Apple")).toBeTruthy();
|
|
38
|
+
expect(getByText("Google")).toBeTruthy();
|
|
39
|
+
});
|
|
40
|
+
test("Uncontrolled toggle group calls correct function on change with value", function () {
|
|
41
|
+
var onChange = jest.fn();
|
|
42
|
+
|
|
43
|
+
var _render2 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
|
|
44
|
+
options: options,
|
|
45
|
+
onChange: onChange
|
|
46
|
+
})),
|
|
47
|
+
getByText = _render2.getByText;
|
|
48
|
+
|
|
49
|
+
var option = getByText("Ebay");
|
|
50
|
+
|
|
51
|
+
_react2.fireEvent.click(option);
|
|
52
|
+
|
|
53
|
+
expect(onChange).toHaveBeenCalledWith(2);
|
|
54
|
+
});
|
|
55
|
+
test("Controlled toggle group calls correct function on change with value", function () {
|
|
56
|
+
var onChange = jest.fn();
|
|
57
|
+
|
|
58
|
+
var _render3 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
|
|
59
|
+
options: options,
|
|
60
|
+
onChange: onChange,
|
|
61
|
+
value: 1
|
|
62
|
+
})),
|
|
63
|
+
getByText = _render3.getByText;
|
|
64
|
+
|
|
65
|
+
var option = getByText("Ebay");
|
|
66
|
+
|
|
67
|
+
_react2.fireEvent.click(option);
|
|
68
|
+
|
|
69
|
+
expect(onChange).toHaveBeenCalledWith(2);
|
|
70
|
+
});
|
|
71
|
+
test("Function on change is not called when disable", function () {
|
|
72
|
+
var onChange = jest.fn();
|
|
73
|
+
|
|
74
|
+
var _render4 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
|
|
75
|
+
options: options,
|
|
76
|
+
onChange: onChange,
|
|
77
|
+
disabled: true
|
|
78
|
+
})),
|
|
79
|
+
getByText = _render4.getByText;
|
|
80
|
+
|
|
81
|
+
var option = getByText("Ebay");
|
|
82
|
+
|
|
83
|
+
_react2.fireEvent.click(option);
|
|
84
|
+
|
|
85
|
+
expect(onChange).toHaveBeenCalledTimes(0);
|
|
86
|
+
});
|
|
87
|
+
test("Uncontrolled multiple toggle group calls correct function on change with value when is multiple", function () {
|
|
88
|
+
var onChange = jest.fn();
|
|
89
|
+
|
|
90
|
+
var _render5 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
|
|
91
|
+
options: options,
|
|
92
|
+
onChange: onChange,
|
|
93
|
+
multiple: true
|
|
94
|
+
})),
|
|
95
|
+
getAllByRole = _render5.getAllByRole;
|
|
96
|
+
|
|
97
|
+
var toggleOptions = getAllByRole("switch");
|
|
98
|
+
|
|
99
|
+
_react2.fireEvent.click(toggleOptions[0]);
|
|
100
|
+
|
|
101
|
+
expect(onChange).toHaveBeenCalledWith([1]);
|
|
102
|
+
|
|
103
|
+
_react2.fireEvent.click(toggleOptions[1]);
|
|
104
|
+
|
|
105
|
+
_react2.fireEvent.click(toggleOptions[3]);
|
|
106
|
+
|
|
107
|
+
expect(onChange).toHaveBeenCalledWith([1, 2, 4]);
|
|
108
|
+
expect(toggleOptions[0].getAttribute("aria-checked")).toBe("true");
|
|
109
|
+
expect(toggleOptions[1].getAttribute("aria-checked")).toBe("true");
|
|
110
|
+
expect(toggleOptions[3].getAttribute("aria-checked")).toBe("true");
|
|
111
|
+
});
|
|
112
|
+
test("Controlled multiple toggle returns always same values", function () {
|
|
113
|
+
var onChange = jest.fn();
|
|
114
|
+
|
|
115
|
+
var _render6 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
|
|
116
|
+
options: options,
|
|
117
|
+
onChange: onChange,
|
|
118
|
+
value: [1],
|
|
119
|
+
multiple: true
|
|
120
|
+
})),
|
|
121
|
+
getByText = _render6.getByText;
|
|
122
|
+
|
|
123
|
+
var option = getByText("Ebay");
|
|
124
|
+
|
|
125
|
+
_react2.fireEvent.click(option);
|
|
126
|
+
|
|
127
|
+
expect(onChange).toHaveBeenCalledWith([1, 2]);
|
|
128
|
+
var option2 = getByText("Google");
|
|
129
|
+
|
|
130
|
+
_react2.fireEvent.click(option2);
|
|
131
|
+
|
|
132
|
+
expect(onChange).toHaveBeenNthCalledWith(2, [1, 4]);
|
|
133
|
+
});
|
|
134
|
+
test("Single selection: Renders with correct default value", function () {
|
|
135
|
+
var _render7 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
|
|
136
|
+
options: options,
|
|
137
|
+
defaultValue: 2
|
|
138
|
+
})),
|
|
139
|
+
getAllByRole = _render7.getAllByRole;
|
|
140
|
+
|
|
141
|
+
var toggleOptions = getAllByRole("radio");
|
|
142
|
+
expect(toggleOptions[1].getAttribute("aria-checked")).toBe("true");
|
|
143
|
+
});
|
|
144
|
+
test("Multiple selection: Renders with correct default value", function () {
|
|
145
|
+
var _render8 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
|
|
146
|
+
options: options,
|
|
147
|
+
defaultValue: [2, 4],
|
|
148
|
+
multiple: true
|
|
149
|
+
})),
|
|
150
|
+
getAllByRole = _render8.getAllByRole;
|
|
151
|
+
|
|
152
|
+
var toggleOptions = getAllByRole("switch");
|
|
153
|
+
expect(toggleOptions[1].getAttribute("aria-checked")).toBe("true");
|
|
154
|
+
expect(toggleOptions[3].getAttribute("aria-checked")).toBe("true");
|
|
155
|
+
});
|
|
156
|
+
});
|
package/toggle-group/types.d.ts
CHANGED
|
@@ -6,16 +6,12 @@ declare type Margin = {
|
|
|
6
6
|
left?: Space;
|
|
7
7
|
right?: Space;
|
|
8
8
|
};
|
|
9
|
-
declare type SVG = React.
|
|
9
|
+
declare type SVG = React.ReactNode & React.SVGProps<SVGSVGElement>;
|
|
10
10
|
declare type OptionCommons = {
|
|
11
11
|
/**
|
|
12
12
|
* Number with the option inner value.
|
|
13
13
|
*/
|
|
14
|
-
value:
|
|
15
|
-
/**
|
|
16
|
-
* @deprecated URL of the icon that will be placed. IconSrc and label can't be used at same time.
|
|
17
|
-
*/
|
|
18
|
-
iconSrc?: string;
|
|
14
|
+
value: number;
|
|
19
15
|
};
|
|
20
16
|
declare type OptionIcon = OptionCommons & {
|
|
21
17
|
/**
|
|
@@ -25,7 +21,7 @@ declare type OptionIcon = OptionCommons & {
|
|
|
25
21
|
/**
|
|
26
22
|
* Element used as the icon. Icon and label can't be used at same time.
|
|
27
23
|
*/
|
|
28
|
-
icon: SVG;
|
|
24
|
+
icon: string | SVG;
|
|
29
25
|
};
|
|
30
26
|
declare type OptionLabel = OptionCommons & {
|
|
31
27
|
/**
|
|
@@ -35,10 +31,10 @@ declare type OptionLabel = OptionCommons & {
|
|
|
35
31
|
/**
|
|
36
32
|
* Element used as the icon. Icon and label can't be used at same time.
|
|
37
33
|
*/
|
|
38
|
-
icon?: SVG;
|
|
34
|
+
icon?: string | SVG;
|
|
39
35
|
};
|
|
40
36
|
declare type Option = OptionIcon | OptionLabel;
|
|
41
|
-
declare type
|
|
37
|
+
declare type CommonProps = {
|
|
42
38
|
/**
|
|
43
39
|
* Text to be placed above the component.
|
|
44
40
|
*/
|
|
@@ -47,18 +43,6 @@ declare type Props = {
|
|
|
47
43
|
* Helper text to be placed above the component.
|
|
48
44
|
*/
|
|
49
45
|
helperText?: string;
|
|
50
|
-
/**
|
|
51
|
-
* The key(s) of the selected value(s). If the toggle group component doesn't allow multiple selection,
|
|
52
|
-
* it must be one unique value. If the component allows multiple selection, value must be an array.
|
|
53
|
-
* If undefined, the component will be uncontrolled and the value will be managed internally by the component.
|
|
54
|
-
*/
|
|
55
|
-
value?: string | string[];
|
|
56
|
-
/**
|
|
57
|
-
* This function will be called every time the selection changes. The number with the key of the selected
|
|
58
|
-
* value will be passed as a parameter to this function.
|
|
59
|
-
* If multiple selection is allowed, an array of keys will be passed.
|
|
60
|
-
*/
|
|
61
|
-
onChange?: (optionIndex: number | number[]) => void;
|
|
62
46
|
/**
|
|
63
47
|
* If true, the component will be disabled.
|
|
64
48
|
*/
|
|
@@ -67,10 +51,6 @@ declare type Props = {
|
|
|
67
51
|
* An array of objects representing the selectable options.
|
|
68
52
|
*/
|
|
69
53
|
options: Option[];
|
|
70
|
-
/**
|
|
71
|
-
* If true, the toggle group will support multiple selection. In that case, value must be an array of numbers with the keys of the selected values.
|
|
72
|
-
*/
|
|
73
|
-
multiple?: boolean;
|
|
74
54
|
/**
|
|
75
55
|
* Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
|
|
76
56
|
* You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
|
|
@@ -81,4 +61,45 @@ declare type Props = {
|
|
|
81
61
|
*/
|
|
82
62
|
tabIndex?: number;
|
|
83
63
|
};
|
|
64
|
+
declare type SingleSelectionToggle = CommonProps & {
|
|
65
|
+
/**
|
|
66
|
+
* If true, the toggle group will support multiple selection. In that case, value must be an array of numbers with the keys of the selected values.
|
|
67
|
+
*/
|
|
68
|
+
multiple?: false;
|
|
69
|
+
/**
|
|
70
|
+
* The key of the initially selected value.
|
|
71
|
+
*/
|
|
72
|
+
defaultValue?: number;
|
|
73
|
+
/**
|
|
74
|
+
* The key of the selected value. If the component allows multiple selection, value must be an array.
|
|
75
|
+
* If undefined, the component will be uncontrolled and the value will be managed internally by the component.
|
|
76
|
+
*/
|
|
77
|
+
value?: number;
|
|
78
|
+
/**
|
|
79
|
+
* This function will be called every time the selection changes. The number with the key of the selected
|
|
80
|
+
* value will be passed as a parameter to this function.
|
|
81
|
+
*/
|
|
82
|
+
onChange?: (optionIndex: number) => void;
|
|
83
|
+
};
|
|
84
|
+
declare type MultipleSelectionToggle = CommonProps & {
|
|
85
|
+
/**
|
|
86
|
+
* If true, the toggle group will support multiple selection. In that case, value must be an array of numbers with the keys of the selected values.
|
|
87
|
+
*/
|
|
88
|
+
multiple: true;
|
|
89
|
+
/**
|
|
90
|
+
* The array of keys with the initially selected values.
|
|
91
|
+
*/
|
|
92
|
+
defaultValue?: number[];
|
|
93
|
+
/**
|
|
94
|
+
* An array with the keys of the selected values.
|
|
95
|
+
* If undefined, the component will be uncontrolled and the value will be managed internally by the component.
|
|
96
|
+
*/
|
|
97
|
+
value?: number[];
|
|
98
|
+
/**
|
|
99
|
+
* This function will be called every time the selection changes. An array with the key of
|
|
100
|
+
* the selected values will be passed as a parameter to this function.
|
|
101
|
+
*/
|
|
102
|
+
onChange?: (optionIndex: number[]) => void;
|
|
103
|
+
};
|
|
104
|
+
declare type Props = SingleSelectionToggle | MultipleSelectionToggle;
|
|
84
105
|
export default Props;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import TypographyPropsTypes from "./types";
|
|
3
|
+
declare const Typography: ({ as, display, fontFamily, fontSize, fontStyle, fontWeight, letterSpacing, lineHeight, textAlign, color, textDecoration, textOverflow, whiteSpace, children, }: TypographyPropsTypes) => JSX.Element;
|
|
4
|
+
export default Typography;
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
6
|
+
|
|
7
|
+
Object.defineProperty(exports, "__esModule", {
|
|
8
|
+
value: true
|
|
9
|
+
});
|
|
10
|
+
exports["default"] = void 0;
|
|
11
|
+
|
|
12
|
+
var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
|
|
13
|
+
|
|
14
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
15
|
+
|
|
16
|
+
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
17
|
+
|
|
18
|
+
var _templateObject;
|
|
19
|
+
|
|
20
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
21
|
+
|
|
22
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
23
|
+
|
|
24
|
+
var TypographyContext = /*#__PURE__*/_react["default"].createContext(null);
|
|
25
|
+
|
|
26
|
+
var Typography = function Typography(_ref) {
|
|
27
|
+
var as = _ref.as,
|
|
28
|
+
display = _ref.display,
|
|
29
|
+
fontFamily = _ref.fontFamily,
|
|
30
|
+
fontSize = _ref.fontSize,
|
|
31
|
+
fontStyle = _ref.fontStyle,
|
|
32
|
+
fontWeight = _ref.fontWeight,
|
|
33
|
+
letterSpacing = _ref.letterSpacing,
|
|
34
|
+
lineHeight = _ref.lineHeight,
|
|
35
|
+
textAlign = _ref.textAlign,
|
|
36
|
+
color = _ref.color,
|
|
37
|
+
textDecoration = _ref.textDecoration,
|
|
38
|
+
textOverflow = _ref.textOverflow,
|
|
39
|
+
whiteSpace = _ref.whiteSpace,
|
|
40
|
+
children = _ref.children;
|
|
41
|
+
var componentContext = (0, _react.useContext)(TypographyContext);
|
|
42
|
+
var asValue = as !== null && as !== void 0 ? as : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.as) || "span";
|
|
43
|
+
var displayValue = display !== null && display !== void 0 ? display : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.display) || "inline";
|
|
44
|
+
var fontFamilyValue = fontFamily !== null && fontFamily !== void 0 ? fontFamily : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.fontFamily) || "Open Sans, sans-serif";
|
|
45
|
+
var fontSizeValue = fontSize !== null && fontSize !== void 0 ? fontSize : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.fontSize) || "1rem";
|
|
46
|
+
var fontStyleValue = fontStyle !== null && fontStyle !== void 0 ? fontStyle : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.fontStyle) || "normal";
|
|
47
|
+
var fontWeightValue = fontWeight !== null && fontWeight !== void 0 ? fontWeight : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.fontWeight) || "400";
|
|
48
|
+
var letterSpacingValue = letterSpacing !== null && letterSpacing !== void 0 ? letterSpacing : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.letterSpacing) || "0em";
|
|
49
|
+
var lineHeightValue = lineHeight !== null && lineHeight !== void 0 ? lineHeight : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.lineHeight) || "1.5em";
|
|
50
|
+
var textAlignValue = textAlign !== null && textAlign !== void 0 ? textAlign : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.textAlign) || "left";
|
|
51
|
+
var colorValue = color !== null && color !== void 0 ? color : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.color) || "#000000";
|
|
52
|
+
var textDecorationValue = textDecoration !== null && textDecoration !== void 0 ? textDecoration : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.textDecoration) || "none";
|
|
53
|
+
var textOverflowValue = textOverflow !== null && textOverflow !== void 0 ? textOverflow : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.textOverflow) || "unset";
|
|
54
|
+
var whiteSpaceValue = whiteSpace !== null && whiteSpace !== void 0 ? whiteSpace : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.whiteSpace) || "normal";
|
|
55
|
+
return /*#__PURE__*/_react["default"].createElement(TypographyContext.Provider, {
|
|
56
|
+
value: {
|
|
57
|
+
as: asValue,
|
|
58
|
+
display: displayValue,
|
|
59
|
+
fontFamily: fontFamilyValue,
|
|
60
|
+
fontSize: fontSizeValue,
|
|
61
|
+
fontStyle: fontStyleValue,
|
|
62
|
+
fontWeight: fontWeightValue,
|
|
63
|
+
letterSpacing: letterSpacingValue,
|
|
64
|
+
lineHeight: lineHeightValue,
|
|
65
|
+
textAlign: textAlignValue,
|
|
66
|
+
color: colorValue,
|
|
67
|
+
textDecoration: textDecorationValue,
|
|
68
|
+
textOverflow: textOverflowValue,
|
|
69
|
+
whiteSpace: whiteSpaceValue
|
|
70
|
+
}
|
|
71
|
+
}, /*#__PURE__*/_react["default"].createElement(StyledTypography, {
|
|
72
|
+
as: asValue,
|
|
73
|
+
display: displayValue,
|
|
74
|
+
fontFamily: fontFamilyValue,
|
|
75
|
+
fontSize: fontSizeValue,
|
|
76
|
+
fontStyle: fontStyleValue,
|
|
77
|
+
fontWeight: fontWeightValue,
|
|
78
|
+
letterSpacing: letterSpacingValue,
|
|
79
|
+
lineHeight: lineHeightValue,
|
|
80
|
+
textAlign: textAlignValue,
|
|
81
|
+
color: colorValue,
|
|
82
|
+
textDecoration: textDecorationValue,
|
|
83
|
+
textOverflow: textOverflowValue,
|
|
84
|
+
whiteSpace: whiteSpaceValue
|
|
85
|
+
}, children));
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
var StyledTypography = _styledComponents["default"].span(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n margin: 0px;\n display: ", ";\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n text-align: ", ";\n line-height: ", ";\n text-decoration: ", ";\n text-overflow: ", ";\n white-space: ", ";\n overflow: ", ";\n"])), function (_ref2) {
|
|
89
|
+
var display = _ref2.display;
|
|
90
|
+
return display;
|
|
91
|
+
}, function (_ref3) {
|
|
92
|
+
var color = _ref3.color;
|
|
93
|
+
return color;
|
|
94
|
+
}, function (_ref4) {
|
|
95
|
+
var fontFamily = _ref4.fontFamily;
|
|
96
|
+
return fontFamily;
|
|
97
|
+
}, function (_ref5) {
|
|
98
|
+
var fontSize = _ref5.fontSize;
|
|
99
|
+
return fontSize;
|
|
100
|
+
}, function (_ref6) {
|
|
101
|
+
var fontStyle = _ref6.fontStyle;
|
|
102
|
+
return fontStyle;
|
|
103
|
+
}, function (_ref7) {
|
|
104
|
+
var fontWeight = _ref7.fontWeight;
|
|
105
|
+
return fontWeight;
|
|
106
|
+
}, function (_ref8) {
|
|
107
|
+
var letterSpacing = _ref8.letterSpacing;
|
|
108
|
+
return letterSpacing;
|
|
109
|
+
}, function (_ref9) {
|
|
110
|
+
var textAlign = _ref9.textAlign;
|
|
111
|
+
return textAlign;
|
|
112
|
+
}, function (_ref10) {
|
|
113
|
+
var lineHeight = _ref10.lineHeight;
|
|
114
|
+
return lineHeight;
|
|
115
|
+
}, function (_ref11) {
|
|
116
|
+
var textDecoration = _ref11.textDecoration;
|
|
117
|
+
return textDecoration;
|
|
118
|
+
}, function (_ref12) {
|
|
119
|
+
var textOverflow = _ref12.textOverflow;
|
|
120
|
+
return textOverflow;
|
|
121
|
+
}, function (_ref13) {
|
|
122
|
+
var whiteSpace = _ref13.whiteSpace,
|
|
123
|
+
textOverflow = _ref13.textOverflow;
|
|
124
|
+
return whiteSpace !== "normal" ? whiteSpace : textOverflow !== "unset" ? "nowrap" : "normal";
|
|
125
|
+
}, function (_ref14) {
|
|
126
|
+
var textOverflow = _ref14.textOverflow;
|
|
127
|
+
return textOverflow !== "unset" ? "hidden" : "visible";
|
|
128
|
+
});
|
|
129
|
+
|
|
130
|
+
var _default = Typography;
|
|
131
|
+
exports["default"] = _default;
|