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

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 (315) hide show
  1. package/BackgroundColorContext.d.ts +1 -10
  2. package/BackgroundColorContext.js +5 -22
  3. package/HalstackContext.d.ts +1235 -0
  4. package/HalstackContext.js +310 -0
  5. package/README.md +47 -0
  6. package/accordion/Accordion.d.ts +1 -1
  7. package/accordion/Accordion.js +116 -160
  8. package/accordion/Accordion.stories.tsx +103 -127
  9. package/accordion/Accordion.test.js +25 -41
  10. package/accordion/types.d.ts +5 -16
  11. package/accordion-group/AccordionGroup.d.ts +4 -3
  12. package/accordion-group/AccordionGroup.js +31 -98
  13. package/accordion-group/AccordionGroup.stories.tsx +94 -67
  14. package/accordion-group/AccordionGroup.test.js +52 -105
  15. package/accordion-group/AccordionGroupAccordion.d.ts +4 -0
  16. package/accordion-group/AccordionGroupAccordion.js +31 -0
  17. package/accordion-group/types.d.ts +11 -16
  18. package/action-icon/ActionIcon.d.ts +4 -0
  19. package/action-icon/ActionIcon.js +43 -0
  20. package/action-icon/types.d.ts +26 -0
  21. package/alert/Alert.js +23 -59
  22. package/alert/Alert.stories.tsx +28 -0
  23. package/alert/Alert.test.js +29 -46
  24. package/alert/types.d.ts +5 -5
  25. package/badge/Badge.d.ts +1 -1
  26. package/badge/Badge.js +8 -19
  27. package/badge/types.d.ts +2 -1
  28. package/bleed/Bleed.js +14 -55
  29. package/bleed/Bleed.stories.tsx +95 -95
  30. package/bleed/types.d.ts +2 -2
  31. package/box/Box.d.ts +1 -1
  32. package/box/Box.js +30 -81
  33. package/box/Box.stories.tsx +38 -51
  34. package/box/Box.test.js +2 -7
  35. package/box/types.d.ts +3 -14
  36. package/bulleted-list/BulletedList.d.ts +7 -0
  37. package/bulleted-list/BulletedList.js +89 -0
  38. package/bulleted-list/BulletedList.stories.tsx +115 -0
  39. package/bulleted-list/types.d.ts +38 -0
  40. package/button/Button.d.ts +1 -1
  41. package/button/Button.js +62 -113
  42. package/button/Button.stories.tsx +160 -90
  43. package/button/Button.test.js +18 -17
  44. package/button/types.d.ts +12 -8
  45. package/card/Card.d.ts +1 -1
  46. package/card/Card.js +58 -102
  47. package/card/Card.stories.tsx +12 -42
  48. package/card/Card.test.js +11 -22
  49. package/card/types.d.ts +6 -11
  50. package/checkbox/Checkbox.d.ts +2 -2
  51. package/checkbox/Checkbox.js +141 -180
  52. package/checkbox/Checkbox.stories.tsx +128 -94
  53. package/checkbox/Checkbox.test.js +160 -39
  54. package/checkbox/types.d.ts +12 -6
  55. package/chip/Chip.js +39 -79
  56. package/chip/Chip.stories.tsx +121 -26
  57. package/chip/Chip.test.js +16 -31
  58. package/chip/types.d.ts +4 -4
  59. package/common/OpenSans.css +68 -80
  60. package/common/coreTokens.d.ts +237 -0
  61. package/common/coreTokens.js +184 -0
  62. package/common/utils.d.ts +1 -0
  63. package/common/utils.js +6 -12
  64. package/common/variables.d.ts +1381 -0
  65. package/common/variables.js +998 -1117
  66. package/container/Container.d.ts +4 -0
  67. package/container/Container.js +194 -0
  68. package/container/Container.stories.tsx +214 -0
  69. package/container/types.d.ts +74 -0
  70. package/date-input/Calendar.d.ts +4 -0
  71. package/date-input/Calendar.js +214 -0
  72. package/date-input/DateInput.js +153 -299
  73. package/date-input/DateInput.stories.tsx +203 -56
  74. package/date-input/DateInput.test.js +700 -371
  75. package/date-input/DatePicker.d.ts +4 -0
  76. package/date-input/DatePicker.js +115 -0
  77. package/date-input/Icons.d.ts +6 -0
  78. package/date-input/Icons.js +58 -0
  79. package/date-input/YearPicker.d.ts +4 -0
  80. package/date-input/YearPicker.js +100 -0
  81. package/date-input/types.d.ts +72 -15
  82. package/dialog/Dialog.d.ts +1 -1
  83. package/dialog/Dialog.js +73 -107
  84. package/dialog/Dialog.stories.tsx +320 -167
  85. package/dialog/Dialog.test.js +287 -20
  86. package/dialog/types.d.ts +18 -25
  87. package/dropdown/Dropdown.d.ts +1 -1
  88. package/dropdown/Dropdown.js +243 -304
  89. package/dropdown/Dropdown.stories.tsx +245 -56
  90. package/dropdown/Dropdown.test.js +575 -165
  91. package/dropdown/DropdownMenu.d.ts +4 -0
  92. package/dropdown/DropdownMenu.js +63 -0
  93. package/dropdown/DropdownMenuItem.d.ts +4 -0
  94. package/dropdown/DropdownMenuItem.js +67 -0
  95. package/dropdown/types.d.ts +32 -14
  96. package/file-input/FileInput.d.ts +2 -2
  97. package/file-input/FileInput.js +246 -357
  98. package/file-input/FileInput.stories.tsx +123 -12
  99. package/file-input/FileInput.test.js +369 -367
  100. package/file-input/FileItem.d.ts +4 -14
  101. package/file-input/FileItem.js +50 -99
  102. package/file-input/types.d.ts +25 -8
  103. package/flex/Flex.d.ts +4 -0
  104. package/flex/Flex.js +57 -0
  105. package/flex/Flex.stories.tsx +112 -0
  106. package/flex/types.d.ts +97 -0
  107. package/footer/Footer.d.ts +1 -1
  108. package/footer/Footer.js +57 -115
  109. package/footer/Footer.stories.tsx +41 -19
  110. package/footer/Footer.test.js +33 -57
  111. package/footer/Icons.d.ts +2 -2
  112. package/footer/Icons.js +3 -8
  113. package/footer/types.d.ts +21 -28
  114. package/grid/Grid.d.ts +7 -0
  115. package/grid/Grid.js +76 -0
  116. package/grid/Grid.stories.tsx +219 -0
  117. package/grid/types.d.ts +115 -0
  118. package/header/Header.d.ts +4 -3
  119. package/header/Header.js +90 -170
  120. package/header/Header.stories.tsx +118 -39
  121. package/header/Header.test.js +13 -26
  122. package/header/Icons.d.ts +2 -2
  123. package/header/Icons.js +4 -9
  124. package/header/types.d.ts +5 -19
  125. package/heading/Heading.js +10 -32
  126. package/heading/Heading.test.js +71 -88
  127. package/heading/types.d.ts +7 -7
  128. package/image/Image.d.ts +4 -0
  129. package/image/Image.js +70 -0
  130. package/image/Image.stories.tsx +127 -0
  131. package/image/types.d.ts +72 -0
  132. package/inset/Inset.js +14 -55
  133. package/inset/Inset.stories.tsx +37 -36
  134. package/inset/types.d.ts +2 -2
  135. package/layout/ApplicationLayout.d.ts +16 -6
  136. package/layout/ApplicationLayout.js +82 -166
  137. package/layout/ApplicationLayout.stories.tsx +85 -94
  138. package/layout/Icons.d.ts +8 -0
  139. package/layout/Icons.js +51 -48
  140. package/layout/SidenavContext.d.ts +5 -0
  141. package/layout/SidenavContext.js +13 -0
  142. package/layout/types.d.ts +19 -35
  143. package/link/Link.d.ts +3 -2
  144. package/link/Link.js +61 -99
  145. package/link/Link.stories.tsx +155 -53
  146. package/link/Link.test.js +25 -53
  147. package/link/types.d.ts +15 -31
  148. package/main.d.ts +11 -12
  149. package/main.js +58 -109
  150. package/nav-tabs/NavTabs.d.ts +8 -0
  151. package/nav-tabs/NavTabs.js +90 -0
  152. package/nav-tabs/NavTabs.stories.tsx +274 -0
  153. package/nav-tabs/NavTabs.test.js +75 -0
  154. package/nav-tabs/Tab.d.ts +4 -0
  155. package/nav-tabs/Tab.js +117 -0
  156. package/nav-tabs/types.d.ts +52 -0
  157. package/nav-tabs/types.js +5 -0
  158. package/number-input/NumberInput.d.ts +7 -0
  159. package/number-input/NumberInput.js +26 -35
  160. package/number-input/NumberInput.stories.tsx +42 -26
  161. package/number-input/NumberInput.test.js +701 -377
  162. package/number-input/types.d.ts +12 -6
  163. package/package.json +44 -46
  164. package/paginator/Icons.d.ts +5 -0
  165. package/paginator/Icons.js +21 -47
  166. package/paginator/Paginator.js +34 -91
  167. package/paginator/Paginator.stories.tsx +24 -0
  168. package/paginator/Paginator.test.js +280 -211
  169. package/paginator/types.d.ts +3 -3
  170. package/paragraph/Paragraph.d.ts +5 -0
  171. package/paragraph/Paragraph.js +22 -0
  172. package/paragraph/Paragraph.stories.tsx +27 -0
  173. package/password-input/Icons.d.ts +6 -0
  174. package/password-input/Icons.js +35 -0
  175. package/password-input/PasswordInput.js +57 -123
  176. package/password-input/PasswordInput.stories.tsx +1 -33
  177. package/password-input/PasswordInput.test.js +160 -143
  178. package/password-input/types.d.ts +9 -8
  179. package/progress-bar/ProgressBar.js +65 -91
  180. package/progress-bar/ProgressBar.stories.tsx +93 -0
  181. package/progress-bar/ProgressBar.test.js +72 -44
  182. package/progress-bar/types.d.ts +3 -3
  183. package/quick-nav/QuickNav.js +71 -41
  184. package/quick-nav/QuickNav.stories.tsx +146 -27
  185. package/quick-nav/types.d.ts +10 -10
  186. package/radio-group/Radio.d.ts +1 -1
  187. package/radio-group/Radio.js +59 -76
  188. package/radio-group/RadioGroup.js +71 -116
  189. package/radio-group/RadioGroup.stories.tsx +132 -18
  190. package/radio-group/RadioGroup.test.js +518 -457
  191. package/radio-group/types.d.ts +10 -10
  192. package/resultset-table/Icons.d.ts +7 -0
  193. package/resultset-table/Icons.js +47 -0
  194. package/resultset-table/ResultsetTable.js +159 -0
  195. package/{resultsetTable → resultset-table}/ResultsetTable.stories.tsx +50 -25
  196. package/{resultsetTable → resultset-table}/ResultsetTable.test.js +117 -118
  197. package/{resultsetTable → resultset-table}/types.d.ts +7 -7
  198. package/resultset-table/types.js +5 -0
  199. package/select/Icons.d.ts +7 -7
  200. package/select/Icons.js +1 -5
  201. package/select/Listbox.d.ts +1 -1
  202. package/select/Listbox.js +46 -51
  203. package/select/Option.js +20 -50
  204. package/select/Select.js +168 -242
  205. package/select/Select.stories.tsx +525 -136
  206. package/select/Select.test.js +2009 -1696
  207. package/select/types.d.ts +16 -20
  208. package/sidenav/Icons.d.ts +7 -0
  209. package/sidenav/Icons.js +47 -0
  210. package/sidenav/Sidenav.d.ts +6 -5
  211. package/sidenav/Sidenav.js +131 -71
  212. package/sidenav/Sidenav.stories.tsx +251 -151
  213. package/sidenav/Sidenav.test.js +26 -45
  214. package/sidenav/types.d.ts +52 -26
  215. package/slider/Slider.d.ts +2 -2
  216. package/slider/Slider.js +148 -181
  217. package/slider/Slider.test.js +185 -81
  218. package/slider/types.d.ts +7 -3
  219. package/spinner/Spinner.js +31 -75
  220. package/spinner/{Spinner.stories.jsx → Spinner.stories.tsx} +53 -27
  221. package/spinner/Spinner.test.js +26 -35
  222. package/spinner/types.d.ts +3 -3
  223. package/switch/Switch.d.ts +2 -2
  224. package/switch/Switch.js +143 -121
  225. package/switch/Switch.stories.tsx +41 -64
  226. package/switch/Switch.test.js +138 -56
  227. package/switch/types.d.ts +9 -5
  228. package/table/Table.js +8 -30
  229. package/table/{Table.stories.jsx → Table.stories.tsx} +80 -1
  230. package/table/Table.test.js +3 -8
  231. package/table/types.d.ts +8 -8
  232. package/tabs/Tab.d.ts +4 -0
  233. package/tabs/Tab.js +113 -0
  234. package/tabs/Tabs.js +314 -141
  235. package/tabs/Tabs.stories.tsx +119 -11
  236. package/tabs/Tabs.test.js +223 -69
  237. package/tabs/types.d.ts +28 -18
  238. package/tag/Tag.js +33 -68
  239. package/tag/Tag.stories.tsx +14 -1
  240. package/tag/Tag.test.js +20 -31
  241. package/tag/types.d.ts +7 -7
  242. package/text-input/Icons.d.ts +8 -0
  243. package/text-input/Icons.js +56 -0
  244. package/text-input/Suggestion.d.ts +4 -0
  245. package/text-input/Suggestion.js +67 -0
  246. package/text-input/Suggestions.d.ts +4 -0
  247. package/text-input/Suggestions.js +84 -0
  248. package/text-input/TextInput.js +323 -547
  249. package/text-input/TextInput.stories.tsx +266 -275
  250. package/text-input/TextInput.test.js +1403 -1376
  251. package/text-input/types.d.ts +53 -14
  252. package/textarea/Textarea.js +79 -131
  253. package/textarea/Textarea.stories.tsx +174 -0
  254. package/textarea/Textarea.test.js +152 -183
  255. package/textarea/types.d.ts +10 -6
  256. package/toggle-group/ToggleGroup.d.ts +2 -2
  257. package/toggle-group/ToggleGroup.js +92 -106
  258. package/toggle-group/ToggleGroup.stories.tsx +49 -4
  259. package/toggle-group/ToggleGroup.test.js +69 -88
  260. package/toggle-group/types.d.ts +26 -17
  261. package/typography/Typography.d.ts +4 -0
  262. package/typography/Typography.js +23 -0
  263. package/typography/Typography.stories.tsx +198 -0
  264. package/typography/types.d.ts +18 -0
  265. package/typography/types.js +5 -0
  266. package/useTheme.d.ts +1133 -1
  267. package/useTheme.js +4 -11
  268. package/useTranslatedLabels.d.ts +85 -0
  269. package/useTranslatedLabels.js +14 -0
  270. package/utils/BaseTypography.d.ts +21 -0
  271. package/utils/BaseTypography.js +94 -0
  272. package/utils/FocusLock.d.ts +13 -0
  273. package/utils/FocusLock.js +121 -0
  274. package/wizard/Wizard.js +51 -91
  275. package/wizard/Wizard.stories.tsx +40 -1
  276. package/wizard/Wizard.test.js +54 -81
  277. package/wizard/types.d.ts +7 -7
  278. package/ThemeContext.d.ts +0 -10
  279. package/ThemeContext.js +0 -243
  280. package/card/ice-cream.jpg +0 -0
  281. package/common/RequiredComponent.js +0 -32
  282. package/list/List.d.ts +0 -4
  283. package/list/List.js +0 -47
  284. package/list/List.stories.tsx +0 -95
  285. package/list/types.d.ts +0 -7
  286. package/number-input/NumberInputContext.d.ts +0 -4
  287. package/number-input/NumberInputContext.js +0 -19
  288. package/number-input/numberInputContextTypes.d.ts +0 -19
  289. package/progress-bar/ProgressBar.stories.jsx +0 -58
  290. package/radio/Radio.d.ts +0 -4
  291. package/radio/Radio.js +0 -174
  292. package/radio/Radio.stories.tsx +0 -192
  293. package/radio/Radio.test.js +0 -71
  294. package/radio/types.d.ts +0 -54
  295. package/resultsetTable/ResultsetTable.js +0 -254
  296. package/row/Row.d.ts +0 -3
  297. package/row/Row.js +0 -127
  298. package/row/Row.stories.tsx +0 -237
  299. package/row/types.d.ts +0 -28
  300. package/slider/Slider.stories.tsx +0 -177
  301. package/stack/Stack.d.ts +0 -3
  302. package/stack/Stack.js +0 -97
  303. package/stack/Stack.stories.tsx +0 -164
  304. package/stack/types.d.ts +0 -24
  305. package/text/Text.d.ts +0 -7
  306. package/text/Text.js +0 -30
  307. package/text/Text.stories.tsx +0 -19
  308. package/textarea/Textarea.stories.jsx +0 -157
  309. /package/{list → action-icon}/types.js +0 -0
  310. /package/{radio → bulleted-list}/types.js +0 -0
  311. /package/{resultsetTable → container}/types.js +0 -0
  312. /package/{row → flex}/types.js +0 -0
  313. /package/{stack → grid}/types.js +0 -0
  314. /package/{number-input/numberInputContextTypes.js → image/types.js} +0 -0
  315. /package/{resultsetTable → resultset-table}/ResultsetTable.d.ts +0 -0
@@ -1,182 +1,282 @@
1
1
  import React from "react";
2
- import styled from "styled-components";
3
2
  import DxcSidenav from "./Sidenav";
3
+ import DxcSelect from "../select/Select";
4
+ import DxcInset from "../inset/Inset";
4
5
  import Title from "../../.storybook/components/Title";
5
6
  import ExampleContainer from "../../.storybook/components/ExampleContainer";
7
+ import { userEvent, within } from "@storybook/testing-library";
8
+ import { HalstackProvider } from "../HalstackContext";
6
9
 
7
10
  export default {
8
11
  title: "Sidenav",
9
12
  component: DxcSidenav,
10
13
  };
11
14
 
12
- const linkClick = () => {
13
- console.log("click");
15
+ const iconSVG = (
16
+ <svg
17
+ version="1.1"
18
+ id="Capa_1"
19
+ x="0px"
20
+ y="0px"
21
+ width="438.536px"
22
+ height="438.536px"
23
+ viewBox="0 0 438.536 438.536"
24
+ fill="currentColor"
25
+ >
26
+ <g>
27
+ <path
28
+ 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
29
+ 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
30
+ h274.084c22.648,0,42.018-8.042,58.095-24.126c16.084-16.084,24.126-35.454,24.126-58.102V82.225
31
+ 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
32
+ 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
33
+ 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"
34
+ />
35
+ </g>
36
+ </svg>
37
+ );
38
+
39
+ const TitleComponent = () => {
40
+ return <DxcSidenav.Title>Dxc technology</DxcSidenav.Title>;
14
41
  };
15
42
 
16
- const StyledContainer = styled["div"]`
17
- display: flex;
18
- flex-direction: row;
19
- height: 500px;
20
- `;
43
+ const opinionatedTheme = {
44
+ sidenav: {
45
+ baseColor: "#f2f2f2",
46
+ },
47
+ };
21
48
 
22
49
  export const Chromatic = () => (
23
50
  <>
24
51
  <ExampleContainer>
25
- <Title title="Deafult sidenav" theme="light" level={4} />
26
- <DxcSidenav>
27
- {" "}
28
- <p>Lorem ipsum</p>
29
- <p>Lorem ipsum</p>
30
- <p>Lorem ipsum</p>
31
- <p>Lorem ipsum</p>
32
- <p>Lorem ipsum</p>{" "}
33
- </DxcSidenav>
34
- </ExampleContainer>
35
-
36
- <ExampleContainer>
37
- <Title title="Sidenav with xxsmall padding" theme="light" level={4} />
38
- <DxcSidenav padding="xxsmall">
39
- {" "}
40
- <p>Lorem ipsum</p>
41
- <p>Lorem ipsum</p>
42
- <p>Lorem ipsum</p>
43
- <p>Lorem ipsum</p>
44
- <p>Lorem ipsum</p>{" "}
45
- </DxcSidenav>
46
- </ExampleContainer>
47
-
48
- <ExampleContainer>
49
- <Title title="Sidenav with xsmall padding" theme="light" level={4} />
50
- <DxcSidenav padding="xsmall">
51
- {" "}
52
- <p>Lorem ipsum</p>
53
- <p>Lorem ipsum</p>
54
- <p>Lorem ipsum</p>
55
- <p>Lorem ipsum</p>
56
- <p>Lorem ipsum</p>{" "}
52
+ <Title title="Default sidenav" theme="light" level={4} />
53
+ <DxcSidenav title={<DxcSidenav.Title>Dxc technology</DxcSidenav.Title>}>
54
+ <DxcSidenav.Section>
55
+ <p>
56
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ullamcorper consectetur mollis. Suspendisse
57
+ vitae lacinia libero.
58
+ </p>
59
+ </DxcSidenav.Section>
60
+ <DxcSidenav.Section>
61
+ <DxcSidenav.Link>Single Link</DxcSidenav.Link>
62
+ <DxcSidenav.Group collapsable={false} title="Single Group" icon={iconSVG}>
63
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
64
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
65
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
66
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
67
+ </DxcSidenav.Group>
68
+ </DxcSidenav.Section>
69
+ <DxcSidenav.Section>
70
+ <DxcSidenav.Group
71
+ collapsable={true}
72
+ title="Section Group"
73
+ icon="https://cdn-icons-png.flaticon.com/512/5039/5039041.png"
74
+ >
75
+ <DxcSidenav.Link selected>Group Link</DxcSidenav.Link>
76
+ <DxcSidenav.Link icon={iconSVG}>Group Link</DxcSidenav.Link>
77
+ </DxcSidenav.Group>
78
+ <DxcSidenav.Link icon="https://upload.wikimedia.org/wikipedia/commons/7/73/Flat_tick_icon.svg" newWindow>
79
+ Single Link
80
+ </DxcSidenav.Link>
81
+ <DxcSidenav.Link newWindow>Single Link</DxcSidenav.Link>
82
+ <DxcSidenav.Group collapsable={false} title="Section Group">
83
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
84
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
85
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
86
+ </DxcSidenav.Group>
87
+ </DxcSidenav.Section>
57
88
  </DxcSidenav>
58
89
  </ExampleContainer>
59
-
60
- <ExampleContainer>
61
- <Title title="Sidenav with small padding" theme="light" level={4} />
62
- <DxcSidenav padding="small">
63
- {" "}
64
- <p>Lorem ipsum</p>
65
- <p>Lorem ipsum</p>
66
- <p>Lorem ipsum</p>
67
- <p>Lorem ipsum</p>
68
- <p>Lorem ipsum</p>{" "}
90
+ <ExampleContainer pseudoState="pseudo-focus">
91
+ <Title title="Focused options sidenav" theme="light" level={4} />
92
+ <DxcSidenav title={<DxcSidenav.Title>Dxc technology</DxcSidenav.Title>}>
93
+ <DxcSidenav.Section>
94
+ <p>
95
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ullamcorper consectetur mollis. Suspendisse
96
+ vitae lacinia libero.
97
+ </p>
98
+ </DxcSidenav.Section>
99
+ <DxcSidenav.Section>
100
+ <DxcSidenav.Link>Single Link</DxcSidenav.Link>
101
+ <DxcSidenav.Group collapsable={true} title="Collapsable Group">
102
+ <DxcSidenav.Link icon="https://cdn-icons-png.flaticon.com/512/5039/5039041.png">Group Link</DxcSidenav.Link>
103
+ </DxcSidenav.Group>
104
+ </DxcSidenav.Section>
105
+ <DxcSidenav.Section>
106
+ <DxcSidenav.Group collapsable={true} title="Collapsable Group">
107
+ <DxcSidenav.Link selected icon={iconSVG}>
108
+ Group Link
109
+ </DxcSidenav.Link>
110
+ </DxcSidenav.Group>
111
+ <DxcSidenav.Group collapsable={false} title="Section Group">
112
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
113
+ </DxcSidenav.Group>
114
+ </DxcSidenav.Section>
69
115
  </DxcSidenav>
70
116
  </ExampleContainer>
71
-
117
+ <Title title="Opinionated theme" theme="light" level={2} />
72
118
  <ExampleContainer>
73
- <Title title="Sidenav with medium padding" theme="light" level={4} />
74
- <DxcSidenav padding="medium">
75
- {" "}
76
- <p>Lorem ipsum</p>
77
- <p>Lorem ipsum</p>
78
- <p>Lorem ipsum</p>
79
- <p>Lorem ipsum</p>
80
- <p>Lorem ipsum</p>{" "}
81
- </DxcSidenav>
119
+ <HalstackProvider theme={opinionatedTheme}>
120
+ <DxcSidenav title={<TitleComponent />}>
121
+ <DxcSidenav.Section>
122
+ <p>
123
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ullamcorper consectetur mollis. Suspendisse
124
+ vitae lacinia libero.
125
+ </p>
126
+ </DxcSidenav.Section>
127
+ <DxcSidenav.Section>
128
+ <DxcSidenav.Link>Single Link</DxcSidenav.Link>
129
+ <DxcSidenav.Group collapsable={false} title="Single Group" icon={iconSVG}>
130
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
131
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
132
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
133
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
134
+ </DxcSidenav.Group>
135
+ </DxcSidenav.Section>
136
+ <DxcSidenav.Section>
137
+ <DxcSidenav.Group collapsable={true} title="Section Group" icon={iconSVG}>
138
+ <DxcSidenav.Link selected>Group Link</DxcSidenav.Link>
139
+ <DxcSidenav.Link icon={iconSVG}>Group Link</DxcSidenav.Link>
140
+ </DxcSidenav.Group>
141
+ <DxcSidenav.Link icon={iconSVG}>Single Link</DxcSidenav.Link>
142
+ <DxcSidenav.Link>Single Link</DxcSidenav.Link>
143
+ <DxcSidenav.Group collapsable={false} title="Section Group">
144
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
145
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
146
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
147
+ </DxcSidenav.Group>
148
+ </DxcSidenav.Section>
149
+ </DxcSidenav>
150
+ </HalstackProvider>
82
151
  </ExampleContainer>
152
+ </>
153
+ );
83
154
 
155
+ const CollapsedGroupSidenav = () => (
156
+ <>
84
157
  <ExampleContainer>
85
- <Title title="Sidenav with large padding" theme="light" level={4} />
86
- <DxcSidenav padding="large">
87
- {" "}
88
- <p>Lorem ipsum</p>
89
- <p>Lorem ipsum</p>
90
- <p>Lorem ipsum</p>
91
- <p>Lorem ipsum</p>
92
- <p>Lorem ipsum</p>{" "}
158
+ <Title title="Collapsed group with a selected link" theme="light" level={4} />
159
+ <DxcSidenav title={<DxcSidenav.Title>Dxc technology</DxcSidenav.Title>}>
160
+ <DxcSidenav.Section>
161
+ <DxcSidenav.Group collapsable={true} title="Collapsed Group" icon={iconSVG}>
162
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
163
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
164
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
165
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
166
+ </DxcSidenav.Group>
167
+ </DxcSidenav.Section>
168
+ <DxcSidenav.Section>
169
+ <DxcSidenav.Group collapsable={true} title="Collapsed Group">
170
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
171
+ <DxcSidenav.Link selected>Group Link</DxcSidenav.Link>
172
+ </DxcSidenav.Group>
173
+ <DxcSidenav.Group collapsable={true} title="Section Group">
174
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
175
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
176
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
177
+ </DxcSidenav.Group>
178
+ </DxcSidenav.Section>
93
179
  </DxcSidenav>
94
180
  </ExampleContainer>
181
+ </>
182
+ );
95
183
 
96
- <ExampleContainer>
97
- <Title title="Sidenav with xlarge padding" theme="light" level={4} />
98
- <DxcSidenav padding="xlarge">
99
- {" "}
100
- <p>Lorem ipsum</p>
101
- <p>Lorem ipsum</p>
102
- <p>Lorem ipsum</p>
103
- <p>Lorem ipsum</p>
104
- <p>Lorem ipsum</p>{" "}
105
- </DxcSidenav>
106
- </ExampleContainer>
184
+ const HoveredGroupSidenav = () => (
185
+ <ExampleContainer pseudoState="pseudo-hover">
186
+ <Title title="Hover state for groups (selected and not)" theme="light" level={4} />
187
+ <DxcSidenav title={<DxcSidenav.Title>Dxc technology</DxcSidenav.Title>}>
188
+ <DxcSidenav.Section>
189
+ <DxcSidenav.Link>Single Link</DxcSidenav.Link>
190
+ <DxcSidenav.Link>Single Link</DxcSidenav.Link>
191
+ <DxcSidenav.Group collapsable={true} title="Collapsed Group">
192
+ <DxcSidenav.Link selected>Group Link</DxcSidenav.Link>
193
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
194
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
195
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
196
+ </DxcSidenav.Group>
197
+ </DxcSidenav.Section>
198
+ <DxcSidenav.Section>
199
+ <DxcSidenav.Group collapsable={true} title="Not Collapsed Group">
200
+ <DxcSidenav.Link selected>Group Link</DxcSidenav.Link>
201
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
202
+ </DxcSidenav.Group>
203
+ <DxcSidenav.Link>Single Link</DxcSidenav.Link>
204
+ <DxcSidenav.Link>Single Link</DxcSidenav.Link>
205
+ <DxcSidenav.Group collapsable={true} title="Collapsed Group">
206
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
207
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
208
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
209
+ </DxcSidenav.Group>
210
+ <DxcSidenav.Group collapsable={true} title="Collapsed Group">
211
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
212
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
213
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
214
+ </DxcSidenav.Group>
215
+ </DxcSidenav.Section>
216
+ </DxcSidenav>
217
+ </ExampleContainer>
218
+ );
107
219
 
108
- <ExampleContainer>
109
- <Title title="Sidenav with xxlarge padding" theme="light" level={4} />
110
- <DxcSidenav padding="xxlarge">
111
- {" "}
112
- <p>Lorem ipsum</p>
113
- <p>Lorem ipsum</p>
114
- <p>Lorem ipsum</p>
115
- <p>Lorem ipsum</p>
116
- <p>Lorem ipsum</p>{" "}
117
- </DxcSidenav>
118
- </ExampleContainer>
220
+ const ActiveGroupSidenav = () => (
221
+ <ExampleContainer pseudoState="pseudo-active">
222
+ <Title title="Active state for groups (selected and not)" theme="light" level={4} />
223
+ <DxcSidenav title={<DxcSidenav.Title>Dxc technology</DxcSidenav.Title>}>
224
+ <DxcSidenav.Section>
225
+ <DxcInset space="1rem">
226
+ <DxcSelect
227
+ defaultValue="1"
228
+ options={[
229
+ { label: "v1.0.0", value: "1" },
230
+ { label: "v2.0.0", value: "2" },
231
+ { label: "v3.0.0", value: "3" },
232
+ { label: "v4.0.0", value: "4" },
233
+ ]}
234
+ size="fillParent"
235
+ />
236
+ </DxcInset>
237
+ </DxcSidenav.Section>
238
+ <DxcSidenav.Section>
239
+ <DxcSidenav.Group collapsable={true} title="Collapsed Group">
240
+ <DxcSidenav.Link selected>Group Link</DxcSidenav.Link>
241
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
242
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
243
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
244
+ </DxcSidenav.Group>
245
+ </DxcSidenav.Section>
246
+ <DxcSidenav.Section>
247
+ <DxcSidenav.Group collapsable={true} title="Not Collapsed Group">
248
+ <DxcSidenav.Link selected>Group Link</DxcSidenav.Link>
249
+ <DxcSidenav.Link>Group Link</DxcSidenav.Link>
250
+ </DxcSidenav.Group>
251
+ <DxcSidenav.Link>Single Link</DxcSidenav.Link>
252
+ <DxcSidenav.Link>Single Link</DxcSidenav.Link>
253
+ </DxcSidenav.Section>
254
+ </DxcSidenav>
255
+ </ExampleContainer>
256
+ );
119
257
 
120
- <ExampleContainer>
121
- <Title title="Sidenav compound components" theme="light" level={4} />
122
- <DxcSidenav>
123
- <DxcSidenav.Title>My sidenav</DxcSidenav.Title>
124
- <DxcSidenav.Subtitle>Components</DxcSidenav.Subtitle>
125
- <DxcSidenav.Link href="#">Button</DxcSidenav.Link>
126
- <DxcSidenav.Link href="#">Date</DxcSidenav.Link>
127
- <DxcSidenav.Subtitle>Guidelines</DxcSidenav.Subtitle>
128
- <DxcSidenav.Link onClick={linkClick}>Layout</DxcSidenav.Link>
129
- <DxcSidenav.Link onClick={linkClick}>Footer</DxcSidenav.Link>
130
- </DxcSidenav>
131
- </ExampleContainer>
258
+ export const CollapsableGroup = CollapsedGroupSidenav.bind({});
259
+ CollapsableGroup.play = async ({ canvasElement }) => {
260
+ const canvas = within(canvasElement);
261
+ const collapsableGroups = canvas.getAllByText("Collapsed Group");
262
+ collapsableGroups.forEach((group) => {
263
+ userEvent.click(group);
264
+ });
265
+ };
132
266
 
133
- <ExampleContainer>
134
- <Title title="Sidenav with scroll" theme="light" level={4} />
135
- <StyledContainer>
136
- <DxcSidenav>
137
- <p>
138
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi egestas luctus porttitor. Donec massa magna,
139
- placerat sit amet felis eget, venenatis fringilla ipsum. Lorem ipsum dolor sit amet, consectetur adipiscing
140
- elit. Donec congue laoreet orci, nec elementum dolor consequat quis. Curabitur rhoncus justo sed dapibus
141
- tincidunt. Vestibulum cursus ut risus sit amet congue. Nunc luctus, urna ullamcorper facilisis Jia Le, risus
142
- eros aliquam erat, ut efficitur ante neque id odio. Nam orci leo, dignissim sit amet dolor ut, congue
143
- gravida enim. Donec rhoncus aliquam nisl, ac cursus enim bibendum vitae. Nunc sit amet elit ornare,
144
- malesuada urna eu, fringilla mauris. Vivamus bibendum turpis est, id elementum purus euismod sit amet. Etiam
145
- sit amet maximus augue. Vivamus erat sapien, ultricies fringilla tellus id, condimentum blandit justo.
146
- Praesent quis nunc dignissim, pharetra neque molestie, molestie lectus. Lorem ipsum dolor sit amet,
147
- consectetur adipiscing elit. Morbi egestas luctus porttitor. Donec massa magna, placerat sit amet felis
148
- eget, venenatis fringilla ipsum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec congue
149
- laoreet orci, nec elementum dolor consequat quis. Curabitur rhoncus justo sed dapibus tincidunt. Vestibulum
150
- cursus ut risus sit amet congue. Nunc luctus, urna ullamcorper facilisis Jia Le, risus eros aliquam erat, ut
151
- efficitur ante neque id odio. Nam orci leo, dignissim sit amet dolor ut, congue gravida enim. Donec rhoncus
152
- aliquam nisl, ac cursus enim bibendum vitae. Nunc sit amet elit ornare, malesuada urna eu, fringilla mauris.
153
- Vivamus bibendum turpis est, id elementum purus euismod sit amet. Etiam sit amet maximus augue. Vivamus erat
154
- sapien, ultricies fringilla tellus id, condimentum blandit justo. Praesent quis nunc dignissim, pharetra
155
- neque molestie, molestie lectus.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi egestas
156
- luctus porttitor. Donec massa magna, placerat sit amet felis eget, venenatis fringilla ipsum. Lorem ipsum
157
- dolor sit amet, consectetur adipiscing elit. Donec congue laoreet orci, nec elementum dolor consequat quis.
158
- Curabitur rhoncus justo sed dapibus tincidunt. Vestibulum cursus ut risus sit amet congue. Nunc luctus, urna
159
- ullamcorper facilisis Jia Le, risus eros aliquam erat, ut efficitur ante neque id odio. Nam orci leo,
160
- dignissim sit amet dolor ut, congue gravida enim. Donec rhoncus aliquam nisl, ac cursus enim bibendum vitae.
161
- Nunc sit amet elit ornare, malesuada urna eu, fringilla mauris. Vivamus bibendum turpis est, id elementum
162
- purus euismod sit amet. Etiam sit amet maximus augue. Vivamus erat sapien, ultricies fringilla tellus id,
163
- condimentum blandit justo. Praesent quis nunc dignissim, pharetra neque molestie, molestie lectus.
164
- </p>
165
- </DxcSidenav>
166
- </StyledContainer>
167
- </ExampleContainer>
267
+ export const CollapsedHoverGroup = HoveredGroupSidenav.bind({});
268
+ CollapsedHoverGroup.play = async ({ canvasElement }) => {
269
+ const canvas = within(canvasElement);
270
+ const collapsableGroups = canvas.getAllByText("Collapsed Group");
271
+ collapsableGroups.forEach((group) => {
272
+ userEvent.click(group);
273
+ });
274
+ await new Promise((resolve) => setTimeout(resolve, 1000));
275
+ };
168
276
 
169
- <ExampleContainer pseudoState="pseudo-focus-visible">
170
- <Title title="Focused" theme="light" level={4} />
171
- <DxcSidenav>
172
- <DxcSidenav.Title>My sidenav</DxcSidenav.Title>
173
- <DxcSidenav.Subtitle>Components</DxcSidenav.Subtitle>
174
- <DxcSidenav.Link href="#">Button</DxcSidenav.Link>
175
- <DxcSidenav.Link href="#">Date</DxcSidenav.Link>
176
- <DxcSidenav.Subtitle>Guidelines</DxcSidenav.Subtitle>
177
- <DxcSidenav.Link onClick={linkClick}>Layout</DxcSidenav.Link>
178
- <DxcSidenav.Link onClick={linkClick}>Footer</DxcSidenav.Link>
179
- </DxcSidenav>
180
- </ExampleContainer>
181
- </>
182
- );
277
+ export const CollapsedActiveGroup = ActiveGroupSidenav.bind({});
278
+ CollapsedActiveGroup.play = async ({ canvasElement }) => {
279
+ const canvas = within(canvasElement);
280
+ const collapsableGroups = canvas.getAllByText("Collapsed Group");
281
+ userEvent.click(collapsableGroups[0]);
282
+ };
@@ -1,56 +1,37 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
4
  var _react = _interopRequireDefault(require("react"));
6
-
7
5
  var _react2 = require("@testing-library/react");
8
-
9
- var _Sidenav = _interopRequireDefault(require("./Sidenav"));
10
-
11
- var navContent = /*#__PURE__*/_react["default"].createElement("p", null, "nav-content-test");
12
-
6
+ var _Sidenav = _interopRequireDefault(require("./Sidenav.tsx"));
13
7
  describe("Sidenav component tests", function () {
14
- test("Sidenav renders nav content", function () {
15
- var _render = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Sidenav["default"], null, navContent)),
16
- getByText = _render.getByText;
17
-
18
- expect(getByText("nav-content-test")).toBeTruthy();
19
- });
20
- test("Sidenav renders nav and page content in mobile version", function () {
21
- //425 is mobile width
22
- Object.defineProperty(HTMLElement.prototype, "offsetWidth", {
23
- configurable: true,
24
- value: 425
25
- });
26
-
27
- var _render2 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Sidenav["default"], null, navContent)),
28
- getByText = _render2.getByText;
29
-
8
+ test("Sidenav renders anchors and Section correctly", function () {
9
+ var _render = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Sidenav["default"], null, /*#__PURE__*/_react["default"].createElement(_Sidenav["default"].Section, null, /*#__PURE__*/_react["default"].createElement("p", null, "nav-content-test"), /*#__PURE__*/_react["default"].createElement(_Sidenav["default"].Link, {
10
+ href: "#"
11
+ }, "Link")))),
12
+ getByText = _render.getByText;
30
13
  expect(getByText("nav-content-test")).toBeTruthy();
14
+ var link = getByText("Link");
15
+ expect(link.closest("a").getAttribute("href")).toBe("#");
31
16
  });
32
- test("Sidenav renders compound components", function () {
33
- var _render3 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Sidenav["default"], null, /*#__PURE__*/_react["default"].createElement(_Sidenav["default"].Title, null, "test-title"), /*#__PURE__*/_react["default"].createElement(_Sidenav["default"].Subtitle, null, "test-subtitle"), /*#__PURE__*/_react["default"].createElement(_Sidenav["default"].Link, {
17
+ test("Sidenav renders groups correctly", function () {
18
+ var sidenav = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Sidenav["default"], null, /*#__PURE__*/_react["default"].createElement(_Sidenav["default"].Section, null, /*#__PURE__*/_react["default"].createElement(_Sidenav["default"].Group, {
19
+ title: "Collapsable",
20
+ collapsable: true
21
+ }, /*#__PURE__*/_react["default"].createElement(_Sidenav["default"].Link, {
34
22
  href: "#"
35
- }, "test-link"))),
36
- getByText = _render3.getByText;
37
-
38
- expect(getByText("test-title")).toBeTruthy();
39
- expect(getByText("test-subtitle")).toBeTruthy();
40
- expect(getByText("test-link")).toBeTruthy();
41
- });
42
- test("Sidenav link onClick", function () {
43
- var onClick = jest.fn();
44
-
45
- var _render4 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_Sidenav["default"], null, /*#__PURE__*/_react["default"].createElement(_Sidenav["default"].Link, {
46
- onClick: onClick
47
- }, "test-link"))),
48
- getByText = _render4.getByText;
49
-
50
- var link = getByText("test-link");
51
-
52
- _react2.fireEvent.click(link);
53
-
54
- expect(onClick).toHaveBeenCalled();
23
+ }, "Lorem ipsum"), /*#__PURE__*/_react["default"].createElement(_Sidenav["default"].Link, {
24
+ href: "#"
25
+ }, "Lorem ipsum"), /*#__PURE__*/_react["default"].createElement(_Sidenav["default"].Link, {
26
+ href: "#"
27
+ }, "Lorem ipsum"), /*#__PURE__*/_react["default"].createElement(_Sidenav["default"].Link, {
28
+ href: "#"
29
+ }, "Lorem ipsum"), /*#__PURE__*/_react["default"].createElement(_Sidenav["default"].Link, {
30
+ href: "#"
31
+ }, "Lorem ipsum")))));
32
+ expect(sidenav.getByText("Collapsable")).toBeTruthy();
33
+ expect(sidenav.getAllByRole("button")[0].getAttribute("aria-expanded")).toBe("true");
34
+ _react2.fireEvent.click(sidenav.getByText("Collapsable"));
35
+ expect(sidenav.getAllByRole("button")[0].getAttribute("aria-expanded")).toBe("false");
55
36
  });
56
37
  });
@@ -1,50 +1,76 @@
1
1
  /// <reference types="react" />
2
- declare type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
3
- declare type Padding = {
4
- top?: Space;
5
- bottom?: Space;
6
- left?: Space;
7
- right?: Space;
2
+ type SVG = React.ReactNode & React.SVGProps<SVGSVGElement>;
3
+ export type SidenavTitlePropsType = {
4
+ /**
5
+ * The area inside the sidenav title. This area can be used to render custom content.
6
+ */
7
+ children: React.ReactNode;
8
8
  };
9
- export declare type SidenavLinkPropsType = {
9
+ export type SidenavSectionPropsType = {
10
10
  /**
11
- * Value of the tabindex.
11
+ * The area inside the sidenav section. This area can be used to render sidenav groups, links and custom content.
12
12
  */
13
- tabIndex?: number;
13
+ children: React.ReactNode;
14
+ };
15
+ export type SidenavGroupPropsType = {
14
16
  /**
15
- * Page to be opened when the user clicks on the link.
17
+ * The title of the sidenav group.
16
18
  */
17
- href?: string;
19
+ title?: string;
18
20
  /**
19
- * This function will be called when the user clicks the link.
21
+ * If true, the sidenav group will be a button that will allow you to collapse the links contained within it.
22
+ * In addition, if it's collapsed and contains the currently selected link, the group title will also be marked as selected.
20
23
  */
21
- onClick?: () => void;
24
+ collapsable?: boolean;
22
25
  /**
23
- * The area inside the sidenav link. This area can be used to render custom content.
26
+ * The icon to be displayed next to the title of the group.
24
27
  */
25
- children: React.ReactNode;
26
- };
27
- export declare type SidenavTitlePropsType = {
28
+ icon?: string | SVG;
28
29
  /**
29
- * The area inside the sidenav title. This area can be used to render custom content.
30
+ * The area inside the sidenav group. This area can be used to render sidenav links.
30
31
  */
31
32
  children: React.ReactNode;
32
33
  };
33
- export declare type SidenavSubtitlePropsType = {
34
+ export type SidenavLinkPropsType = {
34
35
  /**
35
- * The area inside the sidenav subtitle. This area can be used to render custom content.
36
+ * Page to be opened when the user clicks on the link.
37
+ */
38
+ href?: string;
39
+ /**
40
+ * If true, the page is opened in a new browser tab.
41
+ */
42
+ newWindow?: boolean;
43
+ /**
44
+ * Element or path used as the icon that will be placed to the left of the link text.
45
+ */
46
+ icon?: string | SVG;
47
+ /**
48
+ * If true, the link will be marked as selected. Moreover, in that same case,
49
+ * if it is contained within a collapsed group, and consequently, the currently selected link is not visible,
50
+ * the group title will appear as selected too.
51
+ */
52
+ selected?: boolean;
53
+ /**
54
+ * This function will be called when the user clicks the link and the event will be passed to this function.
55
+ */
56
+ onClick?: (event: React.MouseEvent<HTMLAnchorElement>) => void;
57
+ /**
58
+ * The area inside the sidenav link.
36
59
  */
37
60
  children: React.ReactNode;
61
+ /**
62
+ * Value of the tabindex.
63
+ */
64
+ tabIndex?: number;
38
65
  };
39
- declare type SidenavPropsType = {
66
+ type Props = {
40
67
  /**
41
- * Size of the padding to be applied to the custom area ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
42
- * You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different padding sizes.
68
+ * The area assigned to render the sidenav title. It is highly recommended to use the sidenav title.
43
69
  */
44
- padding?: Space | Padding;
70
+ title?: React.ReactNode;
45
71
  /**
46
- * The area inside the sidenav. This area can be used to render custom content.
72
+ * The area inside the sidenav. This area can be used to render the content inside the sidenav.
47
73
  */
48
74
  children: React.ReactNode;
49
75
  };
50
- export default SidenavPropsType;
76
+ export default Props;
@@ -1,4 +1,4 @@
1
- /// <reference types="react" />
1
+ import React from "react";
2
2
  import SliderPropsType from "./types";
3
- declare const DxcSlider: ({ label, name, defaultValue, value, helperText, minValue, maxValue, step, showLimitsValues, showInput, disabled, marks, onChange, onDragEnd, labelFormatCallback, margin, size, }: SliderPropsType) => JSX.Element;
3
+ declare const DxcSlider: React.ForwardRefExoticComponent<SliderPropsType & React.RefAttributes<HTMLDivElement>>;
4
4
  export default DxcSlider;