@dxc-technology/halstack-react 0.0.0-dfcca07 → 0.0.0-dfd09f9

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.
Files changed (234) hide show
  1. package/BackgroundColorContext.d.ts +10 -0
  2. package/BackgroundColorContext.js +1 -4
  3. package/ThemeContext.d.ts +10 -0
  4. package/ThemeContext.js +26 -29
  5. package/accordion/Accordion.d.ts +1 -1
  6. package/accordion/Accordion.js +13 -45
  7. package/accordion/Accordion.stories.tsx +307 -0
  8. package/accordion/Accordion.test.js +72 -0
  9. package/accordion/types.d.ts +8 -8
  10. package/accordion-group/AccordionGroup.d.ts +1 -1
  11. package/accordion-group/AccordionGroup.js +14 -16
  12. package/accordion-group/AccordionGroup.stories.tsx +1 -1
  13. package/accordion-group/AccordionGroup.test.js +151 -0
  14. package/accordion-group/types.d.ts +8 -8
  15. package/alert/Alert.js +2 -2
  16. package/alert/Alert.test.js +92 -0
  17. package/badge/Badge.d.ts +4 -0
  18. package/badge/Badge.js +1 -1
  19. package/badge/types.d.ts +4 -0
  20. package/badge/types.js +5 -0
  21. package/bleed/Bleed.d.ts +3 -0
  22. package/bleed/Bleed.js +84 -0
  23. package/bleed/Bleed.stories.tsx +342 -0
  24. package/bleed/types.d.ts +37 -0
  25. package/bleed/types.js +5 -0
  26. package/box/Box.js +2 -2
  27. package/box/Box.test.js +18 -0
  28. package/button/Button.d.ts +1 -1
  29. package/button/Button.js +11 -19
  30. package/button/Button.stories.tsx +6 -8
  31. package/button/Button.test.js +35 -0
  32. package/button/types.d.ts +3 -7
  33. package/card/Card.js +1 -1
  34. package/card/Card.stories.tsx +1 -1
  35. package/card/Card.test.js +50 -0
  36. package/checkbox/Checkbox.d.ts +1 -1
  37. package/checkbox/Checkbox.js +33 -32
  38. package/checkbox/Checkbox.stories.tsx +124 -128
  39. package/checkbox/Checkbox.test.js +78 -0
  40. package/checkbox/types.d.ts +10 -4
  41. package/chip/Chip.d.ts +4 -0
  42. package/chip/Chip.js +16 -76
  43. package/chip/Chip.stories.tsx +6 -8
  44. package/chip/Chip.test.js +56 -0
  45. package/chip/types.d.ts +45 -0
  46. package/chip/types.js +5 -0
  47. package/common/variables.js +59 -265
  48. package/date-input/DateInput.js +54 -46
  49. package/date-input/DateInput.stories.tsx +7 -7
  50. package/date-input/DateInput.test.js +479 -0
  51. package/date-input/types.d.ts +16 -9
  52. package/dialog/Dialog.js +8 -35
  53. package/dialog/Dialog.test.js +40 -0
  54. package/dropdown/Dropdown.d.ts +1 -1
  55. package/dropdown/Dropdown.js +13 -35
  56. package/dropdown/Dropdown.stories.tsx +249 -0
  57. package/dropdown/Dropdown.test.js +189 -0
  58. package/dropdown/types.d.ts +5 -14
  59. package/file-input/FileInput.d.ts +1 -1
  60. package/file-input/FileInput.js +148 -69
  61. package/file-input/FileInput.stories.tsx +507 -0
  62. package/file-input/FileInput.test.js +457 -0
  63. package/file-input/FileItem.js +3 -3
  64. package/file-input/types.d.ts +32 -7
  65. package/footer/Footer.d.ts +1 -1
  66. package/footer/Footer.js +28 -111
  67. package/footer/{Footer.stories.jsx → Footer.stories.tsx} +1 -22
  68. package/footer/Footer.test.js +109 -0
  69. package/footer/Icons.d.ts +2 -0
  70. package/footer/Icons.js +3 -3
  71. package/footer/types.d.ts +5 -9
  72. package/header/Header.js +22 -46
  73. package/header/Header.stories.tsx +46 -36
  74. package/header/Header.test.js +79 -0
  75. package/header/Icons.d.ts +2 -0
  76. package/heading/Heading.js +1 -1
  77. package/heading/Heading.stories.tsx +3 -2
  78. package/heading/Heading.test.js +186 -0
  79. package/inset/Inset.d.ts +3 -0
  80. package/inset/Inset.js +84 -0
  81. package/inset/Inset.stories.tsx +229 -0
  82. package/inset/types.d.ts +37 -0
  83. package/inset/types.js +5 -0
  84. package/layout/ApplicationLayout.d.ts +10 -0
  85. package/layout/ApplicationLayout.js +14 -31
  86. package/layout/ApplicationLayout.stories.tsx +171 -0
  87. package/layout/types.d.ts +57 -0
  88. package/layout/types.js +5 -0
  89. package/link/Link.js +8 -16
  90. package/link/Link.stories.tsx +6 -1
  91. package/link/Link.test.js +91 -0
  92. package/link/types.d.ts +5 -9
  93. package/list/List.d.ts +4 -0
  94. package/list/List.js +47 -0
  95. package/list/List.stories.tsx +95 -0
  96. package/list/types.d.ts +7 -0
  97. package/list/types.js +5 -0
  98. package/main.d.ts +11 -8
  99. package/main.js +62 -38
  100. package/number-input/NumberInput.js +14 -24
  101. package/number-input/NumberInput.stories.tsx +5 -5
  102. package/number-input/NumberInput.test.js +506 -0
  103. package/number-input/types.d.ts +16 -9
  104. package/package.json +6 -3
  105. package/paginator/Paginator.js +2 -8
  106. package/paginator/Paginator.test.js +266 -0
  107. package/password-input/PasswordInput.js +15 -16
  108. package/password-input/PasswordInput.stories.tsx +3 -3
  109. package/password-input/PasswordInput.test.js +181 -0
  110. package/password-input/types.d.ts +13 -10
  111. package/progress-bar/ProgressBar.js +4 -4
  112. package/progress-bar/ProgressBar.test.js +65 -0
  113. package/quick-nav/QuickNav.d.ts +4 -0
  114. package/quick-nav/QuickNav.js +64 -0
  115. package/quick-nav/QuickNav.stories.tsx +237 -0
  116. package/quick-nav/types.d.ts +21 -0
  117. package/quick-nav/types.js +5 -0
  118. package/radio/Radio.js +2 -2
  119. package/radio/Radio.test.js +71 -0
  120. package/radio-group/Radio.d.ts +4 -0
  121. package/radio-group/Radio.js +141 -0
  122. package/radio-group/RadioGroup.d.ts +4 -0
  123. package/radio-group/RadioGroup.js +280 -0
  124. package/radio-group/RadioGroup.stories.tsx +100 -0
  125. package/radio-group/RadioGroup.test.js +695 -0
  126. package/radio-group/types.d.ts +114 -0
  127. package/radio-group/types.js +5 -0
  128. package/resultsetTable/ResultsetTable.js +6 -3
  129. package/resultsetTable/ResultsetTable.stories.tsx +275 -0
  130. package/resultsetTable/ResultsetTable.test.js +306 -0
  131. package/resultsetTable/types.d.ts +1 -1
  132. package/row/Row.d.ts +3 -0
  133. package/row/Row.js +127 -0
  134. package/row/Row.stories.tsx +237 -0
  135. package/row/types.d.ts +28 -0
  136. package/row/types.js +5 -0
  137. package/select/Icons.d.ts +10 -0
  138. package/select/Icons.js +93 -0
  139. package/select/Listbox.d.ts +4 -0
  140. package/select/Listbox.js +148 -0
  141. package/select/Option.d.ts +4 -0
  142. package/select/Option.js +110 -0
  143. package/select/Select.d.ts +4 -0
  144. package/select/Select.js +107 -317
  145. package/select/Select.stories.tsx +91 -81
  146. package/select/Select.test.js +2057 -0
  147. package/select/types.d.ts +213 -0
  148. package/select/types.js +5 -0
  149. package/sidenav/Sidenav.js +2 -2
  150. package/sidenav/Sidenav.stories.tsx +18 -1
  151. package/sidenav/Sidenav.test.js +56 -0
  152. package/slider/Slider.d.ts +1 -1
  153. package/slider/Slider.js +4 -3
  154. package/slider/Slider.stories.tsx +8 -8
  155. package/slider/Slider.test.js +150 -0
  156. package/slider/types.d.ts +4 -0
  157. package/spinner/Spinner.js +2 -2
  158. package/spinner/Spinner.stories.jsx +1 -0
  159. package/spinner/Spinner.test.js +64 -0
  160. package/stack/Stack.d.ts +3 -0
  161. package/stack/Stack.js +97 -0
  162. package/stack/Stack.stories.tsx +164 -0
  163. package/stack/types.d.ts +24 -0
  164. package/stack/types.js +5 -0
  165. package/switch/Switch.d.ts +1 -1
  166. package/switch/Switch.js +21 -8
  167. package/switch/Switch.stories.tsx +7 -7
  168. package/switch/Switch.test.js +98 -0
  169. package/switch/types.d.ts +4 -0
  170. package/table/Table.js +2 -2
  171. package/table/Table.stories.jsx +2 -1
  172. package/table/Table.test.js +26 -0
  173. package/tabs/Tabs.d.ts +1 -1
  174. package/tabs/Tabs.js +17 -19
  175. package/tabs/Tabs.stories.tsx +8 -11
  176. package/tabs/Tabs.test.js +140 -0
  177. package/tabs/types.d.ts +27 -15
  178. package/tag/Tag.d.ts +1 -1
  179. package/tag/Tag.js +16 -23
  180. package/tag/Tag.stories.tsx +26 -29
  181. package/tag/Tag.test.js +60 -0
  182. package/tag/types.d.ts +23 -14
  183. package/text/Text.d.ts +7 -0
  184. package/text/Text.js +30 -0
  185. package/text/Text.stories.tsx +19 -0
  186. package/text-input/TextInput.js +46 -36
  187. package/text-input/TextInput.stories.tsx +34 -16
  188. package/text-input/TextInput.test.js +1712 -0
  189. package/text-input/types.d.ts +18 -11
  190. package/textarea/Textarea.d.ts +4 -0
  191. package/textarea/Textarea.js +26 -56
  192. package/textarea/Textarea.stories.jsx +37 -15
  193. package/textarea/Textarea.test.js +437 -0
  194. package/textarea/types.d.ts +137 -0
  195. package/textarea/types.js +5 -0
  196. package/toggle-group/ToggleGroup.d.ts +1 -1
  197. package/toggle-group/ToggleGroup.js +15 -17
  198. package/toggle-group/ToggleGroup.stories.tsx +27 -32
  199. package/toggle-group/ToggleGroup.test.js +156 -0
  200. package/toggle-group/types.d.ts +46 -25
  201. package/useTheme.d.ts +2 -0
  202. package/useTheme.js +1 -1
  203. package/wizard/Wizard.d.ts +1 -1
  204. package/wizard/Wizard.js +81 -22
  205. package/wizard/{Wizard.stories.jsx → Wizard.stories.tsx} +13 -23
  206. package/wizard/Wizard.test.js +141 -0
  207. package/wizard/types.d.ts +8 -8
  208. package/V3Select/V3Select.js +0 -455
  209. package/V3Select/index.d.ts +0 -27
  210. package/V3Textarea/V3Textarea.js +0 -260
  211. package/V3Textarea/index.d.ts +0 -27
  212. package/chip/index.d.ts +0 -22
  213. package/date/Date.js +0 -373
  214. package/date/index.d.ts +0 -27
  215. package/input-text/Icons.js +0 -22
  216. package/input-text/InputText.js +0 -611
  217. package/input-text/index.d.ts +0 -36
  218. package/select/index.d.ts +0 -131
  219. package/textarea/index.d.ts +0 -127
  220. package/toggle/Toggle.js +0 -186
  221. package/toggle/index.d.ts +0 -21
  222. package/upload/Upload.js +0 -201
  223. package/upload/buttons-upload/ButtonsUpload.js +0 -111
  224. package/upload/buttons-upload/Icons.js +0 -40
  225. package/upload/dragAndDropArea/DragAndDropArea.js +0 -225
  226. package/upload/dragAndDropArea/Icons.js +0 -39
  227. package/upload/file-upload/FileToUpload.js +0 -115
  228. package/upload/file-upload/Icons.js +0 -66
  229. package/upload/files-upload/FilesToUpload.js +0 -109
  230. package/upload/index.d.ts +0 -15
  231. package/upload/transaction/Icons.js +0 -160
  232. package/upload/transaction/Transaction.js +0 -104
  233. package/upload/transactions/Transactions.js +0 -94
  234. package/wizard/Icons.js +0 -65
@@ -9,36 +9,31 @@ export default {
9
9
  component: DxcToggleGroup,
10
10
  };
11
11
 
12
- const ethernetSVG = () => {
13
- return (
14
- <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
15
- <path d="M0 0h24v24H0V0z" fill="none" />
16
- <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" />
17
- </svg>
18
- );
19
- };
20
- const gMobileSVG = () => {
21
- return (
22
- <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
23
- <g>
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
- <g>
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
- </svg>
32
- );
33
- };
34
- const wifiSVG = () => {
35
- return (
36
- <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="currentColor">
37
- <path d="M0 0h24v24H0V0zm0 0h24v24H0V0z" fill="none" />
38
- <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" />
39
- </svg>
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" value={2} options={options} />
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" value={2} options={options} 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} value={2} />
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
- value={[1, 3]}
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
+ });
@@ -6,16 +6,12 @@ declare type Margin = {
6
6
  left?: Space;
7
7
  right?: Space;
8
8
  };
9
- declare type SVG = React.SVGProps<SVGSVGElement> | React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
9
+ declare type SVG = React.SVGProps<SVGSVGElement>;
10
10
  declare type OptionCommons = {
11
11
  /**
12
12
  * Number with the option inner value.
13
13
  */
14
- value: string;
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 Props = {
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;
package/useTheme.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ declare const useTheme: () => any;
2
+ export default useTheme;
package/useTheme.js CHANGED
@@ -11,7 +11,7 @@ var _react = require("react");
11
11
 
12
12
  var _variables = require("./common/variables.js");
13
13
 
14
- var _ThemeContext = _interopRequireDefault(require("./ThemeContext.js"));
14
+ var _ThemeContext = _interopRequireDefault(require("./ThemeContext"));
15
15
 
16
16
  var useTheme = function useTheme() {
17
17
  var colorsTheme = (0, _react.useContext)(_ThemeContext["default"]);
@@ -1,4 +1,4 @@
1
1
  /// <reference types="react" />
2
2
  import WizardPropsType from "./types";
3
- declare const DxcWizard: ({ mode, currentStep, onStepClick, steps, margin, tabIndex, }: WizardPropsType) => JSX.Element;
3
+ declare const DxcWizard: ({ mode, defaultCurrentStep, currentStep, onStepClick, steps, margin, tabIndex, }: WizardPropsType) => JSX.Element;
4
4
  export default DxcWizard;
package/wizard/Wizard.js CHANGED
@@ -9,10 +9,10 @@ Object.defineProperty(exports, "__esModule", {
9
9
  });
10
10
  exports["default"] = void 0;
11
11
 
12
- var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
13
-
14
12
  var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
15
13
 
14
+ var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
15
+
16
16
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
17
17
 
18
18
  var _react = _interopRequireWildcard(require("react"));
@@ -21,9 +21,7 @@ var _styledComponents = _interopRequireWildcard(require("styled-components"));
21
21
 
22
22
  var _variables = require("../common/variables.js");
23
23
 
24
- var _useTheme = _interopRequireDefault(require("../useTheme.js"));
25
-
26
- var _Icons = require("./Icons");
24
+ var _useTheme = _interopRequireDefault(require("../useTheme"));
27
25
 
28
26
  var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12, _templateObject13;
29
27
 
@@ -31,9 +29,64 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
31
29
 
32
30
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof3(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; }
33
31
 
32
+ var icons = {
33
+ validIcon: /*#__PURE__*/_react["default"].createElement("svg", {
34
+ id: "check_circle_black_18dp",
35
+ xmlns: "http://www.w3.org/2000/svg",
36
+ width: "18",
37
+ height: "18",
38
+ viewBox: "0 0 18 18"
39
+ }, /*#__PURE__*/_react["default"].createElement("path", {
40
+ id: "Path_2946",
41
+ "data-name": "Path 2946",
42
+ d: "M0,0H18V18H0Z",
43
+ fill: "none"
44
+ }), /*#__PURE__*/_react["default"].createElement("path", {
45
+ id: "Path_2947",
46
+ "data-name": "Path 2947",
47
+ d: "M9.986,4a5.986,5.986,0,1,0,5.986,5.986A5.994,5.994,0,0,0,9.986,4Zm-1.5,9.727L5.5,10.734,6.551,9.679l1.938,1.93L13.42,6.679l1.055,1.063Z",
48
+ transform: "translate(-0.986 -0.986)",
49
+ fill: "#eafaef",
50
+ opacity: "0.999"
51
+ }), /*#__PURE__*/_react["default"].createElement("path", {
52
+ id: "Path_2948",
53
+ "data-name": "Path 2948",
54
+ d: "M9.493,2a7.493,7.493,0,1,0,7.493,7.493A7.5,7.5,0,0,0,9.493,2Zm0,13.487a5.994,5.994,0,1,1,5.994-5.994A6,6,0,0,1,9.493,15.487Zm3.439-9.306L7.994,11.119,6.054,9.186,5,10.242l3,3,5.994-5.994Z",
55
+ transform: "translate(-0.493 -0.493)",
56
+ fill: "#24a148"
57
+ })),
58
+ invalidIcon: /*#__PURE__*/_react["default"].createElement("svg", {
59
+ id: "highlight_off_black_18dp",
60
+ xmlns: "http://www.w3.org/2000/svg",
61
+ width: "18",
62
+ height: "18",
63
+ viewBox: "0 0 18 18"
64
+ }, /*#__PURE__*/_react["default"].createElement("path", {
65
+ id: "Path_2943",
66
+ "data-name": "Path 2943",
67
+ d: "M0,0H18V18H0Z",
68
+ fill: "none"
69
+ }), /*#__PURE__*/_react["default"].createElement("path", {
70
+ id: "Path_2944",
71
+ "data-name": "Path 2944",
72
+ d: "M10,4a6,6,0,1,0,6,6A6.01,6.01,0,0,0,10,4Zm3,7.945L11.945,13,10,11.06,8.059,13,7,11.945,8.944,10,7,8.059,8.059,7,10,8.944,11.945,7,13,8.059,11.06,10Z",
73
+ transform: "translate(-1.002 -1.002)",
74
+ fill: "#ffe6e9"
75
+ }), /*#__PURE__*/_react["default"].createElement("path", {
76
+ id: "Path_2945",
77
+ "data-name": "Path 2945",
78
+ d: "M11.444,6.5,9.5,8.443,7.558,6.5,6.5,7.558,8.443,9.5,6.5,11.444,7.558,12.5,9.5,10.558,11.444,12.5,12.5,11.444,10.558,9.5,12.5,7.558ZM9.5,2A7.5,7.5,0,1,0,17,9.5,7.494,7.494,0,0,0,9.5,2Zm0,13.5a6,6,0,1,1,6-6A6.009,6.009,0,0,1,9.5,15.5Z",
79
+ transform: "translate(-0.501 -0.501)",
80
+ fill: "#d0011b"
81
+ }))
82
+ };
83
+
34
84
  var DxcWizard = function DxcWizard(_ref) {
85
+ var _ref2;
86
+
35
87
  var _ref$mode = _ref.mode,
36
88
  mode = _ref$mode === void 0 ? "horizontal" : _ref$mode,
89
+ defaultCurrentStep = _ref.defaultCurrentStep,
37
90
  currentStep = _ref.currentStep,
38
91
  onStepClick = _ref.onStepClick,
39
92
  steps = _ref.steps,
@@ -41,7 +94,7 @@ var DxcWizard = function DxcWizard(_ref) {
41
94
  _ref$tabIndex = _ref.tabIndex,
42
95
  tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
43
96
 
44
- var _useState = (0, _react.useState)(currentStep || 0),
97
+ var _useState = (0, _react.useState)((_ref2 = currentStep !== null && currentStep !== void 0 ? currentStep : defaultCurrentStep) !== null && _ref2 !== void 0 ? _ref2 : 0),
45
98
  _useState2 = (0, _slicedToArray2["default"])(_useState, 2),
46
99
  innerCurrent = _useState2[0],
47
100
  setInnerCurrentStep = _useState2[1];
@@ -63,48 +116,52 @@ var DxcWizard = function DxcWizard(_ref) {
63
116
  theme: colorsTheme.wizard
64
117
  }, /*#__PURE__*/_react["default"].createElement(StepsContainer, {
65
118
  mode: mode,
66
- margin: margin
119
+ margin: margin,
120
+ role: "group"
67
121
  }, steps === null || steps === void 0 ? void 0 : steps.map(function (step, i) {
68
122
  return /*#__PURE__*/_react["default"].createElement(StepContainer, {
69
123
  key: "step".concat(i),
70
124
  mode: mode,
71
125
  lastStep: i === (steps === null || steps === void 0 ? void 0 : steps.length) - 1
72
126
  }, /*#__PURE__*/_react["default"].createElement(Step, {
73
- tabIndex: tabIndex,
74
127
  onClick: function onClick() {
75
- return handleStepClick(i);
128
+ handleStepClick(i);
76
129
  },
77
- mode: mode,
78
130
  disabled: step.disabled,
131
+ mode: mode,
79
132
  first: i === 0,
80
- last: i === (steps === null || steps === void 0 ? void 0 : steps.length) - 1
81
- }, /*#__PURE__*/_react["default"].createElement(StepHeader, null, /*#__PURE__*/_react["default"].createElement(IconContainer, {
133
+ last: i === (steps === null || steps === void 0 ? void 0 : steps.length) - 1,
134
+ "aria-current": renderedCurrent === i ? "step" : "false",
135
+ tabIndex: tabIndex
136
+ }, /*#__PURE__*/_react["default"].createElement(StepHeader, {
137
+ validityIcon: step.valid !== undefined
138
+ }, /*#__PURE__*/_react["default"].createElement(IconContainer, {
82
139
  current: i === renderedCurrent,
83
140
  visited: i < renderedCurrent,
84
141
  disabled: step.disabled
85
142
  }, step.icon ? /*#__PURE__*/_react["default"].createElement(StepIconContainer, {
86
143
  disabled: step.disabled
87
- }, (0, _typeof2["default"])(step.icon) === "object" ? step.icon : /*#__PURE__*/_react["default"].createElement(step.icon)) : step.iconSrc ? /*#__PURE__*/_react["default"].createElement(Icon, {
88
- src: step.iconSrc
89
- }) : /*#__PURE__*/_react["default"].createElement(Number, {
144
+ }, typeof step.icon === "string" ? /*#__PURE__*/_react["default"].createElement(Icon, {
145
+ src: step.icon
146
+ }) : step.icon) : /*#__PURE__*/_react["default"].createElement(Number, {
90
147
  disabled: step.disabled,
91
148
  current: i === renderedCurrent
92
- }, i + 1)), step.valid !== undefined ? step.valid ? /*#__PURE__*/_react["default"].createElement(ValidityIconContainer, null, _Icons.validIcon) : /*#__PURE__*/_react["default"].createElement(ValidityIconContainer, null, _Icons.invalidIcon) : ""), step.label || step.description ? /*#__PURE__*/_react["default"].createElement(InfoContainer, null, step.label ? /*#__PURE__*/_react["default"].createElement(Label, {
149
+ }, i + 1)), step.valid !== undefined && (step.valid ? /*#__PURE__*/_react["default"].createElement(ValidityIconContainer, null, icons.validIcon) : /*#__PURE__*/_react["default"].createElement(ValidityIconContainer, null, icons.invalidIcon))), (step.label || step.description) && /*#__PURE__*/_react["default"].createElement(InfoContainer, null, step.label && /*#__PURE__*/_react["default"].createElement(Label, {
93
150
  disabled: step.disabled,
94
151
  visited: i <= innerCurrent
95
- }, step.label) : "", step.description ? /*#__PURE__*/_react["default"].createElement(Description, {
152
+ }, step.label), step.description && /*#__PURE__*/_react["default"].createElement(Description, {
96
153
  disabled: step.disabled,
97
154
  visited: i <= innerCurrent
98
- }, step.description) : "") : ""), i === steps.length - 1 ? "" : /*#__PURE__*/_react["default"].createElement(StepSeparator, {
155
+ }, step.description))), i === steps.length - 1 ? "" : /*#__PURE__*/_react["default"].createElement(StepSeparator, {
99
156
  mode: mode
100
157
  }));
101
158
  })));
102
159
  };
103
160
 
104
- var StepsContainer = _styledComponents["default"].div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n display: inline-flex;\n flex-direction: ", ";\n justify-content: \"center\";\n ", ";\n font-family: ", ";\n\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n"])), function (props) {
161
+ var StepsContainer = _styledComponents["default"].div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: ", ";\n justify-content: \"center\";\n ", ";\n font-family: ", ";\n\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n"])), function (props) {
105
162
  return props.mode === "vertical" ? "column" : "row";
106
163
  }, function (props) {
107
- return props.mode === "vertical" ? "height: 500px" : "width: 100%";
164
+ return props.mode === "vertical" && "height: 500px";
108
165
  }, function (props) {
109
166
  return props.theme.fontFamily;
110
167
  }, function (props) {
@@ -139,14 +196,16 @@ var Step = _styledComponents["default"].button(_templateObject3 || (_templateObj
139
196
  return props.theme.focusColor;
140
197
  });
141
198
 
142
- var StepHeader = _styledComponents["default"].div(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2["default"])(["\n position: relative;\n display: inline-flex;\n padding-bottom: 4px;\n"])));
199
+ var StepHeader = _styledComponents["default"].div(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2["default"])(["\n position: relative;\n display: inline-flex;\n ", "\n"])), function (props) {
200
+ return props.validityIcon && "padding-bottom: 4px;";
201
+ });
143
202
 
144
203
  var IconContainer = _styledComponents["default"].div(_templateObject5 || (_templateObject5 = (0, _taggedTemplateLiteral2["default"])(["\n width: ", ";\n height: ", ";\n\n ", "\n ", ";\n\n border-radius: ", ";\n display: flex;\n justify-content: center;\n align-items: center;\n"])), function (props) {
145
204
  return props.disabled ? props.theme.disabledCircleWidth : props.current ? props.theme.selectedCircleWidth : props.theme.circleWidth;
146
205
  }, function (props) {
147
206
  return props.disabled ? props.theme.disabledCircleHeight : props.current ? props.theme.selectedCircleHeight : props.theme.circleHeight;
148
207
  }, function (props) {
149
- return "\n ".concat(!props.current && !props.disabled ? "border: ".concat(props.theme.circleBorderThickness, " ").concat(props.theme.circleBorderStyle, " ").concat(props.theme.circleBorderColor, ";") : props.current ? "border: ".concat(props.theme.selectedCircleBorderThickness, " ").concat(props.theme.selectedCircleBorderStyle, " ").concat(props.theme.selectedCircleBorderColor, ";") : props.disabled ? "border: ".concat(props.theme.disabledCircleBorderThickness, " ").concat(props.theme.disabledCircleBorderStyle, " ").concat(props.theme.disabledCircleBorderColor, ";") : "", "\n background: ").concat(props.disabled ? "".concat(props.theme.disabledBackgroundColor) : props.current ? "".concat(props.theme.stepContainerSelectedBackgroundColor) : "".concat(props.theme.stepContainerBackgroundColor), ";\n ");
208
+ return "\n ".concat(!props.current && !props.disabled ? "border: ".concat(props.theme.circleBorderThickness, " ").concat(props.theme.circleBorderStyle, " ").concat(props.theme.circleBorderColor, ";") : props.current && !props.disabled ? "border: ".concat(props.theme.selectedCircleBorderThickness, " ").concat(props.theme.selectedCircleBorderStyle, " ").concat(props.theme.selectedCircleBorderColor, ";") : props.disabled ? "border: ".concat(props.theme.disabledCircleBorderThickness, " ").concat(props.theme.disabledCircleBorderStyle, " ").concat(props.theme.disabledCircleBorderColor, ";") : "", "\n background: ").concat(props.disabled ? "".concat(props.theme.disabledBackgroundColor) : props.current ? "".concat(props.theme.stepContainerSelectedBackgroundColor) : "".concat(props.theme.stepContainerBackgroundColor), ";\n ");
150
209
  }, function (props) {
151
210
  return props.disabled ? "color: ".concat(props.theme.disabledFontColor, ";") : "color: ".concat(props.current ? props.theme.stepContainerSelectedFontColor : props.theme.stepContainerFontColor, ";");
152
211
  }, function (props) {
@@ -9,23 +9,18 @@ export default {
9
9
  component: DxcWizard,
10
10
  };
11
11
 
12
- const favoriteSVG = () => {
13
- return (
14
- <svg viewBox="0 0 24 24" fill="currentColor">
15
- <path d="M0 0h24v24H0z" fill="none" />
16
- <path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z" />
17
- </svg>
18
- );
19
- };
20
-
21
- const largeIcon = () => {
22
- return (
23
- <svg xmlns="http://www.w3.org/2000/svg" height="48px" viewBox="0 0 24 24" width="48px" fill="currentColor">
24
- <path d="M0 0h24v24H0z" fill="none" />
25
- <path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z" />
26
- </svg>
27
- );
28
- };
12
+ const favoriteSVG = (
13
+ <svg viewBox="0 0 24 24" fill="currentColor">
14
+ <path d="M0 0h24v24H0z" fill="none" />
15
+ <path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z" />
16
+ </svg>
17
+ );
18
+ const largeIcon = (
19
+ <svg xmlns="http://www.w3.org/2000/svg" height="48px" viewBox="0 0 24 24" width="48px" fill="currentColor">
20
+ <path d="M0 0h24v24H0z" fill="none" />
21
+ <path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z" />
22
+ </svg>
23
+ );
29
24
 
30
25
  const stepWithLabel = [
31
26
  {
@@ -41,7 +36,6 @@ const stepWithLabel = [
41
36
  label: "Forth step",
42
37
  },
43
38
  ];
44
-
45
39
  const stepWithLabelDescription = [
46
40
  {
47
41
  label: "First step",
@@ -62,7 +56,6 @@ const stepWithLabelDescription = [
62
56
  valid: false,
63
57
  },
64
58
  ];
65
-
66
59
  const stepWithLongDescription = [
67
60
  {
68
61
  label: "First step",
@@ -80,7 +73,6 @@ const stepWithLongDescription = [
80
73
  "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. ",
81
74
  },
82
75
  ];
83
-
84
76
  const stepDisabled = [
85
77
  {
86
78
  label: "First step",
@@ -106,7 +98,6 @@ const stepDisabled = [
106
98
  disabled: true,
107
99
  },
108
100
  ];
109
-
110
101
  const stepIcons = [
111
102
  {
112
103
  label: "First step",
@@ -121,7 +112,6 @@ const stepIcons = [
121
112
  icon: favoriteSVG,
122
113
  },
123
114
  ];
124
-
125
115
  const stepLargeIcons = [
126
116
  {
127
117
  label: "First step",
@@ -141,7 +131,7 @@ export const Chromatic = () => (
141
131
  <>
142
132
  <ExampleContainer>
143
133
  <Title title="Current step in the third step, labels and description" theme="light" level={4} />
144
- <DxcWizard currentStep={2} steps={stepWithLabelDescription}></DxcWizard>
134
+ <DxcWizard defaultCurrentStep={2} steps={stepWithLabelDescription}></DxcWizard>
145
135
  <Title title="With long description in horizontal" theme="light" level={4} />
146
136
  <DxcWizard steps={stepWithLongDescription}></DxcWizard>
147
137
  <Title title="With long description in vertical" theme="light" level={4} />