@dxc-technology/halstack-react 0.0.0-d4fec82 → 0.0.0-d53aaf7

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 (297) 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 -23
  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.js +2 -2
  11. package/accordion-group/AccordionGroup.stories.tsx +225 -0
  12. package/accordion-group/AccordionGroup.test.js +133 -0
  13. package/accordion-group/types.d.ts +4 -8
  14. package/alert/Alert.js +2 -2
  15. package/alert/Alert.stories.tsx +170 -0
  16. package/alert/Alert.test.js +92 -0
  17. package/alert/types.d.ts +1 -1
  18. package/badge/Badge.d.ts +4 -0
  19. package/badge/Badge.js +1 -1
  20. package/badge/types.d.ts +4 -0
  21. package/badge/types.js +5 -0
  22. package/bleed/Bleed.d.ts +3 -0
  23. package/bleed/Bleed.js +84 -0
  24. package/bleed/Bleed.stories.tsx +342 -0
  25. package/bleed/types.d.ts +37 -0
  26. package/bleed/types.js +5 -0
  27. package/box/Box.d.ts +4 -0
  28. package/box/Box.js +6 -32
  29. package/box/{Box.stories.jsx → Box.stories.tsx} +0 -0
  30. package/box/Box.test.js +18 -0
  31. package/box/types.d.ts +43 -0
  32. package/box/types.js +5 -0
  33. package/button/Button.d.ts +1 -1
  34. package/button/Button.js +15 -26
  35. package/button/Button.stories.tsx +223 -242
  36. package/button/Button.test.js +35 -0
  37. package/button/types.d.ts +9 -13
  38. package/card/Card.js +5 -6
  39. package/card/Card.stories.tsx +201 -0
  40. package/card/Card.test.js +50 -0
  41. package/card/ice-cream.jpg +0 -0
  42. package/card/types.d.ts +4 -6
  43. package/checkbox/Checkbox.d.ts +1 -1
  44. package/checkbox/Checkbox.js +9 -15
  45. package/checkbox/Checkbox.stories.tsx +192 -0
  46. package/checkbox/Checkbox.test.js +78 -0
  47. package/checkbox/types.d.ts +6 -2
  48. package/chip/Chip.d.ts +4 -0
  49. package/chip/Chip.js +16 -76
  50. package/chip/Chip.stories.tsx +119 -0
  51. package/chip/Chip.test.js +56 -0
  52. package/chip/types.d.ts +45 -0
  53. package/chip/types.js +5 -0
  54. package/common/variables.js +85 -281
  55. package/date-input/DateInput.js +26 -33
  56. package/date-input/DateInput.stories.tsx +138 -0
  57. package/date-input/DateInput.test.js +492 -0
  58. package/date-input/types.d.ts +4 -0
  59. package/dialog/Dialog.d.ts +4 -0
  60. package/dialog/Dialog.js +8 -26
  61. package/dialog/Dialog.stories.tsx +212 -0
  62. package/dialog/Dialog.test.js +40 -0
  63. package/dialog/types.d.ts +43 -0
  64. package/dialog/types.js +5 -0
  65. package/dropdown/Dropdown.d.ts +1 -1
  66. package/dropdown/Dropdown.js +13 -35
  67. package/dropdown/Dropdown.stories.tsx +249 -0
  68. package/dropdown/Dropdown.test.js +189 -0
  69. package/dropdown/types.d.ts +6 -15
  70. package/file-input/FileInput.d.ts +4 -0
  71. package/file-input/FileInput.js +167 -109
  72. package/file-input/FileInput.stories.tsx +507 -0
  73. package/file-input/FileInput.test.js +457 -0
  74. package/file-input/FileItem.d.ts +14 -0
  75. package/file-input/FileItem.js +12 -21
  76. package/file-input/types.d.ts +112 -0
  77. package/file-input/types.js +5 -0
  78. package/footer/Footer.d.ts +1 -1
  79. package/footer/Footer.js +28 -36
  80. package/footer/Footer.stories.tsx +130 -0
  81. package/footer/Footer.test.js +109 -0
  82. package/footer/Icons.d.ts +2 -0
  83. package/footer/Icons.js +3 -3
  84. package/footer/types.d.ts +22 -18
  85. package/header/Header.d.ts +7 -0
  86. package/header/Header.js +28 -30
  87. package/header/Header.stories.tsx +162 -0
  88. package/header/Header.test.js +63 -0
  89. package/header/Icons.d.ts +2 -0
  90. package/header/Icons.js +2 -27
  91. package/header/types.d.ts +47 -0
  92. package/header/types.js +5 -0
  93. package/heading/Heading.d.ts +4 -0
  94. package/heading/Heading.js +7 -24
  95. package/heading/Heading.stories.tsx +54 -0
  96. package/heading/Heading.test.js +186 -0
  97. package/heading/types.d.ts +33 -0
  98. package/heading/types.js +5 -0
  99. package/inset/Inset.d.ts +3 -0
  100. package/inset/Inset.js +84 -0
  101. package/inset/Inset.stories.tsx +229 -0
  102. package/inset/types.d.ts +37 -0
  103. package/inset/types.js +5 -0
  104. package/layout/ApplicationLayout.d.ts +10 -0
  105. package/layout/ApplicationLayout.js +17 -21
  106. package/layout/ApplicationLayout.stories.tsx +171 -0
  107. package/layout/types.d.ts +57 -0
  108. package/layout/types.js +5 -0
  109. package/link/Link.d.ts +3 -0
  110. package/link/Link.js +10 -40
  111. package/link/Link.stories.tsx +151 -0
  112. package/link/Link.test.js +91 -0
  113. package/link/types.d.ts +70 -0
  114. package/link/types.js +5 -0
  115. package/list/List.d.ts +4 -0
  116. package/list/List.js +47 -0
  117. package/list/List.stories.tsx +95 -0
  118. package/list/types.d.ts +7 -0
  119. package/list/types.js +5 -0
  120. package/main.d.ts +11 -8
  121. package/main.js +62 -38
  122. package/number-input/NumberInput.d.ts +4 -0
  123. package/number-input/NumberInput.js +16 -68
  124. package/number-input/{NumberInput.stories.jsx → NumberInput.stories.tsx} +5 -5
  125. package/number-input/NumberInput.test.js +508 -0
  126. package/number-input/NumberInputContext.d.ts +4 -0
  127. package/number-input/NumberInputContext.js +5 -2
  128. package/number-input/numberInputContextTypes.d.ts +19 -0
  129. package/number-input/numberInputContextTypes.js +5 -0
  130. package/number-input/types.d.ts +121 -0
  131. package/number-input/types.js +5 -0
  132. package/package.json +5 -2
  133. package/paginator/Paginator.js +2 -8
  134. package/paginator/Paginator.stories.tsx +63 -0
  135. package/paginator/Paginator.test.js +266 -0
  136. package/password-input/PasswordInput.d.ts +4 -0
  137. package/password-input/PasswordInput.js +19 -55
  138. package/password-input/{PasswordInput.stories.jsx → PasswordInput.stories.tsx} +4 -4
  139. package/password-input/PasswordInput.test.js +183 -0
  140. package/password-input/types.d.ts +107 -0
  141. package/password-input/types.js +5 -0
  142. package/progress-bar/ProgressBar.js +5 -5
  143. package/progress-bar/ProgressBar.stories.jsx +58 -0
  144. package/progress-bar/ProgressBar.test.js +65 -0
  145. package/quick-nav/QuickNav.d.ts +4 -0
  146. package/quick-nav/QuickNav.js +66 -0
  147. package/quick-nav/QuickNav.stories.tsx +237 -0
  148. package/quick-nav/types.d.ts +21 -0
  149. package/quick-nav/types.js +5 -0
  150. package/radio/Radio.js +2 -2
  151. package/radio/Radio.stories.tsx +192 -0
  152. package/radio/Radio.test.js +71 -0
  153. package/radio/types.d.ts +2 -2
  154. package/radio-group/Radio.d.ts +4 -0
  155. package/radio-group/Radio.js +141 -0
  156. package/radio-group/RadioGroup.d.ts +4 -0
  157. package/radio-group/RadioGroup.js +280 -0
  158. package/radio-group/RadioGroup.stories.tsx +100 -0
  159. package/radio-group/RadioGroup.test.js +695 -0
  160. package/radio-group/types.d.ts +114 -0
  161. package/radio-group/types.js +5 -0
  162. package/resultsetTable/ResultsetTable.d.ts +4 -0
  163. package/resultsetTable/ResultsetTable.js +9 -29
  164. package/resultsetTable/ResultsetTable.stories.tsx +275 -0
  165. package/resultsetTable/ResultsetTable.test.js +306 -0
  166. package/resultsetTable/types.d.ts +67 -0
  167. package/resultsetTable/types.js +5 -0
  168. package/row/Row.d.ts +3 -0
  169. package/row/Row.js +127 -0
  170. package/row/Row.stories.tsx +237 -0
  171. package/row/types.d.ts +28 -0
  172. package/row/types.js +5 -0
  173. package/select/Icons.d.ts +10 -0
  174. package/select/Icons.js +93 -0
  175. package/select/Option.d.ts +4 -0
  176. package/select/Option.js +110 -0
  177. package/select/Select.d.ts +4 -0
  178. package/select/Select.js +116 -249
  179. package/select/Select.stories.tsx +582 -0
  180. package/select/Select.test.js +2057 -0
  181. package/select/types.d.ts +194 -0
  182. package/select/types.js +5 -0
  183. package/sidenav/Sidenav.d.ts +9 -0
  184. package/sidenav/Sidenav.js +6 -15
  185. package/sidenav/Sidenav.stories.tsx +182 -0
  186. package/sidenav/Sidenav.test.js +56 -0
  187. package/sidenav/types.d.ts +50 -0
  188. package/sidenav/types.js +5 -0
  189. package/slider/Slider.d.ts +1 -1
  190. package/slider/Slider.js +45 -33
  191. package/slider/Slider.stories.tsx +177 -0
  192. package/slider/Slider.test.js +150 -0
  193. package/slider/types.d.ts +6 -7
  194. package/spinner/Spinner.d.ts +4 -0
  195. package/spinner/Spinner.js +8 -25
  196. package/spinner/Spinner.stories.jsx +103 -0
  197. package/spinner/Spinner.test.js +64 -0
  198. package/spinner/types.d.ts +32 -0
  199. package/spinner/types.js +5 -0
  200. package/stack/Stack.d.ts +3 -0
  201. package/stack/Stack.js +97 -0
  202. package/stack/Stack.stories.tsx +164 -0
  203. package/stack/types.d.ts +24 -0
  204. package/stack/types.js +5 -0
  205. package/switch/Switch.d.ts +1 -1
  206. package/switch/Switch.js +22 -9
  207. package/switch/Switch.stories.tsx +160 -0
  208. package/switch/Switch.test.js +98 -0
  209. package/switch/types.d.ts +4 -0
  210. package/table/Table.d.ts +4 -0
  211. package/table/Table.js +3 -3
  212. package/table/Table.stories.jsx +277 -0
  213. package/table/Table.test.js +26 -0
  214. package/table/types.d.ts +21 -0
  215. package/table/types.js +5 -0
  216. package/tabs/Tabs.js +11 -9
  217. package/tabs/Tabs.stories.tsx +120 -0
  218. package/tabs/Tabs.test.js +123 -0
  219. package/tabs/types.d.ts +25 -18
  220. package/tag/Tag.d.ts +4 -0
  221. package/tag/Tag.js +34 -56
  222. package/tag/Tag.stories.tsx +142 -0
  223. package/tag/Tag.test.js +60 -0
  224. package/tag/types.d.ts +69 -0
  225. package/tag/types.js +5 -0
  226. package/text/Text.d.ts +7 -0
  227. package/text/Text.js +30 -0
  228. package/text/Text.stories.tsx +19 -0
  229. package/text-input/TextInput.d.ts +4 -0
  230. package/text-input/TextInput.js +62 -89
  231. package/text-input/TextInput.stories.tsx +474 -0
  232. package/text-input/TextInput.test.js +1725 -0
  233. package/text-input/types.d.ts +163 -0
  234. package/text-input/types.js +5 -0
  235. package/textarea/Textarea.d.ts +4 -0
  236. package/textarea/Textarea.js +37 -68
  237. package/textarea/Textarea.stories.jsx +37 -15
  238. package/textarea/Textarea.test.js +437 -0
  239. package/textarea/types.d.ts +134 -0
  240. package/textarea/types.js +5 -0
  241. package/toggle-group/ToggleGroup.d.ts +4 -0
  242. package/toggle-group/ToggleGroup.js +18 -46
  243. package/toggle-group/ToggleGroup.stories.tsx +173 -0
  244. package/toggle-group/ToggleGroup.test.js +156 -0
  245. package/toggle-group/types.d.ts +105 -0
  246. package/toggle-group/types.js +5 -0
  247. package/useTheme.d.ts +2 -0
  248. package/useTheme.js +1 -1
  249. package/wizard/Wizard.d.ts +4 -0
  250. package/wizard/Wizard.js +81 -66
  251. package/wizard/Wizard.stories.tsx +214 -0
  252. package/wizard/Wizard.test.js +141 -0
  253. package/wizard/types.d.ts +64 -0
  254. package/wizard/types.js +5 -0
  255. package/V3Select/V3Select.js +0 -455
  256. package/V3Select/index.d.ts +0 -27
  257. package/V3Textarea/V3Textarea.js +0 -260
  258. package/V3Textarea/index.d.ts +0 -27
  259. package/box/index.d.ts +0 -25
  260. package/chip/index.d.ts +0 -22
  261. package/date/Date.js +0 -373
  262. package/date/index.d.ts +0 -27
  263. package/dialog/index.d.ts +0 -18
  264. package/file-input/index.d.ts +0 -81
  265. package/header/index.d.ts +0 -25
  266. package/heading/index.d.ts +0 -17
  267. package/input-text/Icons.js +0 -22
  268. package/input-text/InputText.js +0 -611
  269. package/input-text/index.d.ts +0 -36
  270. package/link/index.d.ts +0 -23
  271. package/number-input/index.d.ts +0 -113
  272. package/password-input/index.d.ts +0 -94
  273. package/resultsetTable/index.d.ts +0 -19
  274. package/select/index.d.ts +0 -131
  275. package/sidenav/index.d.ts +0 -13
  276. package/spinner/index.d.ts +0 -17
  277. package/table/index.d.ts +0 -13
  278. package/tag/index.d.ts +0 -24
  279. package/text-input/index.d.ts +0 -135
  280. package/textarea/index.d.ts +0 -117
  281. package/toggle/Toggle.js +0 -186
  282. package/toggle/index.d.ts +0 -21
  283. package/toggle-group/index.d.ts +0 -21
  284. package/upload/Upload.js +0 -201
  285. package/upload/buttons-upload/ButtonsUpload.js +0 -111
  286. package/upload/buttons-upload/Icons.js +0 -40
  287. package/upload/dragAndDropArea/DragAndDropArea.js +0 -225
  288. package/upload/dragAndDropArea/Icons.js +0 -39
  289. package/upload/file-upload/FileToUpload.js +0 -115
  290. package/upload/file-upload/Icons.js +0 -66
  291. package/upload/files-upload/FilesToUpload.js +0 -109
  292. package/upload/index.d.ts +0 -15
  293. package/upload/transaction/Icons.js +0 -160
  294. package/upload/transaction/Transaction.js +0 -104
  295. package/upload/transactions/Transactions.js +0 -94
  296. package/wizard/Icons.js +0 -65
  297. package/wizard/index.d.ts +0 -18
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import InsetPropsType from "./types";
3
+ export default function Inset({ space, horizontal, vertical, top, right, bottom, left, children, }: InsetPropsType): JSX.Element;
package/inset/Inset.js ADDED
@@ -0,0 +1,84 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports["default"] = Inset;
9
+
10
+ var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
11
+
12
+ var _react = _interopRequireDefault(require("react"));
13
+
14
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
15
+
16
+ var _templateObject;
17
+
18
+ function Inset(_ref) {
19
+ var space = _ref.space,
20
+ horizontal = _ref.horizontal,
21
+ vertical = _ref.vertical,
22
+ top = _ref.top,
23
+ right = _ref.right,
24
+ bottom = _ref.bottom,
25
+ left = _ref.left,
26
+ children = _ref.children;
27
+ return /*#__PURE__*/_react["default"].createElement(StyledInset, {
28
+ space: space,
29
+ horizontal: horizontal,
30
+ vertical: vertical,
31
+ top: top,
32
+ right: right,
33
+ bottom: bottom,
34
+ left: left
35
+ }, children);
36
+ }
37
+
38
+ function getSpacingValue(spacingName) {
39
+ switch (spacingName) {
40
+ case "none":
41
+ return "0rem";
42
+
43
+ case "xxxsmall":
44
+ return "0.125rem";
45
+
46
+ case "xxsmall":
47
+ return "0.25rem";
48
+
49
+ case "xsmall":
50
+ return "0.5rem";
51
+
52
+ case "small":
53
+ return "1rem";
54
+
55
+ case "medium":
56
+ return "1.5rem";
57
+
58
+ case "large":
59
+ return "2rem";
60
+
61
+ case "xlarge":
62
+ return "3rem";
63
+
64
+ case "xxlarge":
65
+ return "4rem";
66
+
67
+ case "xxxlarge":
68
+ return "5rem";
69
+
70
+ default:
71
+ return "0rem";
72
+ }
73
+ }
74
+
75
+ var StyledInset = _styledComponents["default"].div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n ", "\n"])), function (_ref2) {
76
+ var space = _ref2.space,
77
+ horizontal = _ref2.horizontal,
78
+ vertical = _ref2.vertical,
79
+ top = _ref2.top,
80
+ right = _ref2.right,
81
+ bottom = _ref2.bottom,
82
+ left = _ref2.left;
83
+ return "\n padding: ".concat(getSpacingValue(top || vertical || space), " ").concat(getSpacingValue(right || horizontal || space), "\n ").concat(getSpacingValue(bottom || vertical || space), " ").concat(getSpacingValue(left || horizontal || space), ";\n");
84
+ });
@@ -0,0 +1,229 @@
1
+ import React from "react";
2
+ import Title from "../../.storybook/components/Title";
3
+ import styled from "styled-components";
4
+ import DxcStack from "./../stack/Stack";
5
+ import DxcInset from "./Inset";
6
+
7
+ export default {
8
+ title: "Inset",
9
+ component: DxcInset,
10
+ };
11
+
12
+ export const Chromatic = () => (
13
+ <>
14
+ <Title title="Default" level={4} />
15
+ <Container>
16
+ <DxcInset>
17
+ <Placeholder></Placeholder>
18
+ </DxcInset>
19
+ </Container>
20
+ <Title title="space = none" level={4} />
21
+ <Container>
22
+ <DxcInset space="none">
23
+ <Placeholder></Placeholder>
24
+ </DxcInset>
25
+ </Container>
26
+ <Title title="space = xxxsmall" level={4} />
27
+ <Container>
28
+ <DxcInset space="xxxsmall">
29
+ <Placeholder></Placeholder>
30
+ </DxcInset>
31
+ </Container>
32
+ <Title title="space = xxsmall" level={4} />
33
+ <Container>
34
+ <DxcInset space="xxsmall">
35
+ <Placeholder></Placeholder>
36
+ </DxcInset>
37
+ </Container>
38
+ <Title title="space = xsmall" level={4} />
39
+ <Container>
40
+ <DxcInset space="xsmall">
41
+ <Placeholder></Placeholder>
42
+ </DxcInset>
43
+ </Container>
44
+ <Title title="space = small" level={4} />
45
+ <Container>
46
+ <DxcInset space="small">
47
+ <Placeholder></Placeholder>
48
+ </DxcInset>
49
+ </Container>
50
+ <Title title="space = medium" level={4} />
51
+ <Container>
52
+ <DxcInset space="medium">
53
+ <Placeholder></Placeholder>
54
+ </DxcInset>
55
+ </Container>
56
+ <Title title="space = large" level={4} />
57
+ <Container>
58
+ <DxcInset space="large">
59
+ <Placeholder></Placeholder>
60
+ </DxcInset>
61
+ </Container>
62
+ <Title title="space = xlarge" level={4} />
63
+ <Container>
64
+ <DxcInset space="xlarge">
65
+ <Placeholder></Placeholder>
66
+ </DxcInset>
67
+ </Container>
68
+ <Title title="space = xxlarge" level={4} />
69
+ <Container>
70
+ <DxcInset space="xxlarge">
71
+ <Placeholder></Placeholder>
72
+ </DxcInset>
73
+ </Container>
74
+ <Title title="space = xxxlarge" level={4} />
75
+ <Container>
76
+ <DxcInset space="xxxlarge">
77
+ <Placeholder></Placeholder>
78
+ </DxcInset>
79
+ </Container>
80
+ <Title title="horizontal = none" level={4} />
81
+ <Container>
82
+ <DxcInset horizontal="none">
83
+ <Placeholder></Placeholder>
84
+ </DxcInset>
85
+ </Container>
86
+ <Title title="horizontal = xxxsmall" level={4} />
87
+ <Container>
88
+ <DxcInset horizontal="xxxsmall">
89
+ <Placeholder></Placeholder>
90
+ </DxcInset>
91
+ </Container>
92
+ <Title title="horizontal = xxsmall" level={4} />
93
+ <Container>
94
+ <DxcInset horizontal="xxsmall">
95
+ <Placeholder></Placeholder>
96
+ </DxcInset>
97
+ </Container>
98
+ <Title title="horizontal = xsmall" level={4} />
99
+ <Container>
100
+ <DxcInset horizontal="xsmall">
101
+ <Placeholder></Placeholder>
102
+ </DxcInset>
103
+ </Container>
104
+ <Title title="horizontal = small" level={4} />
105
+ <Container>
106
+ <DxcInset horizontal="small">
107
+ <Placeholder></Placeholder>
108
+ </DxcInset>
109
+ </Container>
110
+ <Title title="horizontal = medium" level={4} />
111
+ <Container>
112
+ <DxcInset horizontal="medium">
113
+ <Placeholder></Placeholder>
114
+ </DxcInset>
115
+ </Container>
116
+ <Title title="horizontal = large" level={4} />
117
+ <Container>
118
+ <DxcInset horizontal="large">
119
+ <Placeholder></Placeholder>
120
+ </DxcInset>
121
+ </Container>
122
+ <Title title="horizontal = xlarge" level={4} />
123
+ <Container>
124
+ <DxcInset horizontal="xlarge">
125
+ <Placeholder></Placeholder>
126
+ </DxcInset>
127
+ </Container>
128
+ <Title title="horizontal = xxlarge" level={4} />
129
+ <Container>
130
+ <DxcInset horizontal="xxlarge">
131
+ <Placeholder></Placeholder>
132
+ </DxcInset>
133
+ </Container>
134
+ <Title title="horizontal = xxxlarge" level={4} />
135
+ <Container>
136
+ <DxcInset horizontal="xxxlarge">
137
+ <Placeholder></Placeholder>
138
+ </DxcInset>
139
+ </Container>
140
+ <Title title="vertical = none" level={4} />
141
+ <Container>
142
+ <DxcInset vertical="none">
143
+ <Placeholder></Placeholder>
144
+ </DxcInset>
145
+ </Container>
146
+ <Title title="vertical = xxxsmall" level={4} />
147
+ <Container>
148
+ <DxcInset vertical="xxxsmall">
149
+ <Placeholder></Placeholder>
150
+ </DxcInset>
151
+ </Container>
152
+ <Title title="vertical = xxsmall" level={4} />
153
+ <Container>
154
+ <DxcInset vertical="xxsmall">
155
+ <Placeholder></Placeholder>
156
+ </DxcInset>
157
+ </Container>
158
+ <Title title="vertical = xsmall" level={4} />
159
+ <Container>
160
+ <DxcInset vertical="xsmall">
161
+ <Placeholder></Placeholder>
162
+ </DxcInset>
163
+ </Container>
164
+ <Title title="vertical = small" level={4} />
165
+ <Container>
166
+ <DxcInset vertical="small">
167
+ <Placeholder></Placeholder>
168
+ </DxcInset>
169
+ </Container>
170
+ <Title title="vertical = medium" level={4} />
171
+ <Container>
172
+ <DxcInset vertical="medium">
173
+ <Placeholder></Placeholder>
174
+ </DxcInset>
175
+ </Container>
176
+ <Title title="vertical = large" level={4} />
177
+ <Container>
178
+ <DxcInset vertical="large">
179
+ <Placeholder></Placeholder>
180
+ </DxcInset>
181
+ </Container>
182
+ <Title title="vertical = xlarge" level={4} />
183
+ <Container>
184
+ <DxcInset vertical="xlarge">
185
+ <Placeholder></Placeholder>
186
+ </DxcInset>
187
+ </Container>
188
+ <Title title="vertical = xxlarge" level={4} />
189
+ <Container>
190
+ <DxcInset vertical="xxlarge">
191
+ <Placeholder></Placeholder>
192
+ </DxcInset>
193
+ </Container>
194
+ <Title title="vertical = xxxlarge" level={4} />
195
+ <Container>
196
+ <DxcInset vertical="xxxlarge">
197
+ <Placeholder></Placeholder>
198
+ </DxcInset>
199
+ </Container>
200
+ <Title title="top = xxsmall, right= medium, bottom = large and left = xxlarge" level={4} />
201
+ <Container>
202
+ <DxcInset top="xxsmall" right="medium" bottom="large" left="xxlarge">
203
+ <Placeholder></Placeholder>
204
+ </DxcInset>
205
+ </Container>
206
+ <Title title="Inside a stack" level={4} />
207
+ <Container>
208
+ <DxcStack gutter="medium" divider>
209
+ <Placeholder></Placeholder>
210
+ <DxcInset top="xxsmall" right="medium" bottom="large" left="xxlarge">
211
+ <Placeholder></Placeholder>
212
+ </DxcInset>
213
+ <Placeholder></Placeholder>
214
+ </DxcStack>
215
+ </Container>
216
+ </>
217
+ );
218
+
219
+ const Container = styled.div`
220
+ background: #f2eafa;
221
+ margin: 2.5rem;
222
+ `;
223
+
224
+ const Placeholder = styled.div`
225
+ min-height: 40px;
226
+ min-width: 120px;
227
+ border: 1px solid #a46ede;
228
+ background-color: #e5d5f6;
229
+ `;
@@ -0,0 +1,37 @@
1
+ /// <reference types="react" />
2
+ declare type Spacing = "none" | "xxxsmall" | "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge" | "xxxlarge";
3
+ declare type Props = {
4
+ /**
5
+ * Applies the spacing scale to all sides.
6
+ */
7
+ space?: Spacing;
8
+ /**
9
+ * Applies the spacing scale to the left and right sides.
10
+ */
11
+ horizontal?: Spacing;
12
+ /**
13
+ * Applies the spacing scale to the top and bottom sides.
14
+ */
15
+ vertical?: Spacing;
16
+ /**
17
+ * Applies the spacing scale to the top side.
18
+ */
19
+ top?: Spacing;
20
+ /**
21
+ * Applies the spacing scale to the right side.
22
+ */
23
+ right?: Spacing;
24
+ /**
25
+ * Applies the spacing scale to the bottom side.
26
+ */
27
+ bottom?: Spacing;
28
+ /**
29
+ * Applies the spacing scale to the left side.
30
+ */
31
+ left?: Spacing;
32
+ /**
33
+ * Custom content inside the inset.
34
+ */
35
+ children: React.ReactNode;
36
+ };
37
+ export default Props;
package/inset/types.js ADDED
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -0,0 +1,10 @@
1
+ /// <reference types="react" />
2
+ import AppLayoutPropsType, { AppLayoutFooterPropsType, AppLayoutMainPropsType, AppLayoutHeaderPropsType } from "./types";
3
+ declare const DxcApplicationLayout: {
4
+ ({ children }: AppLayoutPropsType): JSX.Element;
5
+ Header: ({ children }: AppLayoutHeaderPropsType) => JSX.Element;
6
+ Main: ({ children }: AppLayoutMainPropsType) => JSX.Element;
7
+ Footer: ({ children }: AppLayoutFooterPropsType) => JSX.Element;
8
+ SideNav: (props: any) => JSX.Element;
9
+ };
10
+ export default DxcApplicationLayout;
@@ -21,13 +21,11 @@ var _main = require("../main");
21
21
 
22
22
  var _styledComponents = _interopRequireWildcard(require("styled-components"));
23
23
 
24
- var _propTypes = _interopRequireDefault(require("prop-types"));
25
-
26
24
  var _variables = require("../common/variables.js");
27
25
 
28
26
  var _Icons = require("./Icons");
29
27
 
30
- var _useTheme = _interopRequireDefault(require("../useTheme.js"));
28
+ var _useTheme = _interopRequireDefault(require("../useTheme"));
31
29
 
32
30
  var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10;
33
31
 
@@ -55,23 +53,14 @@ var Footer = function Footer(_ref3) {
55
53
  };
56
54
 
57
55
  var SideNav = function SideNav(props) {
58
- var displayArrow = props.displayArrow,
59
- mode = props.mode,
56
+ var _props$displayArrow = props.displayArrow,
57
+ displayArrow = _props$displayArrow === void 0 ? true : _props$displayArrow,
58
+ _props$mode = props.mode,
59
+ mode = _props$mode === void 0 ? "overlay" : _props$mode,
60
60
  childProps = (0, _objectWithoutProperties2["default"])(props, _excluded);
61
61
  return /*#__PURE__*/_react["default"].createElement(_main.DxcSidenav, childProps, childProps.children);
62
62
  };
63
63
 
64
- SideNav.propTypes = {
65
- mode: _propTypes["default"].oneOf(["overlay", "push", ""]),
66
- displayArrow: _propTypes["default"].bool,
67
- padding: _propTypes["default"].oneOfType([_propTypes["default"].shape({
68
- top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
69
- bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
70
- left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
71
- right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
72
- })])
73
- };
74
-
75
64
  var defaultFooter = function defaultFooter() {
76
65
  return /*#__PURE__*/_react["default"].createElement(_main.DxcFooter, {
77
66
  copyright: "\xA9 DXC Technology ".concat(year, "\u200B\u200B\u200B\u200B. All rights reserved."),
@@ -120,11 +109,16 @@ var DxcApplicationLayout = function DxcApplicationLayout(_ref4) {
120
109
  isSideNavVisible = _useState2[0],
121
110
  setIsSideNavVisible = _useState2[1];
122
111
 
123
- var _useState3 = (0, _react.useState)(),
112
+ var _useState3 = (0, _react.useState)(false),
124
113
  _useState4 = (0, _slicedToArray2["default"])(_useState3, 2),
125
114
  isResponsive = _useState4[0],
126
115
  setIsResponsive = _useState4[1];
127
116
 
117
+ var _useState5 = (0, _react.useState)(null),
118
+ _useState6 = (0, _slicedToArray2["default"])(_useState5, 2),
119
+ previousWidth = _useState6[0],
120
+ setPreviousWidth = _useState6[1];
121
+
128
122
  var childrenArray = _react["default"].Children.toArray(children);
129
123
 
130
124
  var header = childTypeExists(childrenArray, _main.DxcHeader) || childTypeExists(childrenArray, Header) || defaultHeader();
@@ -149,13 +143,14 @@ var DxcApplicationLayout = function DxcApplicationLayout(_ref4) {
149
143
 
150
144
  var handleResize = function handleResize(width) {
151
145
  if (width) {
152
- if (width <= _variables.responsiveSizes.tablet ? setIsResponsive(true) : setIsResponsive(false)) ;
146
+ setPreviousWidth(width);
147
+ setIsResponsive(width <= _variables.responsiveSizes.tablet);
153
148
  setIsSideNavVisible(true);
154
149
  }
155
150
  };
156
151
 
157
152
  var handleEventListener = function handleEventListener() {
158
- handleResize(ref.current.offsetWidth);
153
+ if (previousWidth !== ref.current.offsetWidth) handleResize(ref.current.offsetWidth);
159
154
  };
160
155
 
161
156
  (0, _react.useEffect)(function () {
@@ -167,7 +162,7 @@ var DxcApplicationLayout = function DxcApplicationLayout(_ref4) {
167
162
  return function () {
168
163
  window.removeEventListener("resize", handleEventListener);
169
164
  };
170
- }, []);
165
+ }, [ref.current]);
171
166
 
172
167
  var handleSidenav = function handleSidenav() {
173
168
  setIsSideNavVisible(!isSideNavVisible);
@@ -180,6 +175,7 @@ var DxcApplicationLayout = function DxcApplicationLayout(_ref4) {
180
175
  }, /*#__PURE__*/_react["default"].createElement(HeaderContainer, null, header), /*#__PURE__*/_react["default"].createElement(BodyContainer, null, /*#__PURE__*/_react["default"].createElement(ContentContainer, null, /*#__PURE__*/_react["default"].createElement(SideNavArrowContainer, {
181
176
  isSideNavVisible: isSideNavVisible
182
177
  }, sideNav, /*#__PURE__*/_react["default"].createElement(ArrowContainer, null, sideNav && (displayArrow || isResponsive) && /*#__PURE__*/_react["default"].createElement(ArrowTrigger, {
178
+ role: "button",
183
179
  tabIndex: 0,
184
180
  onClick: handleSidenav,
185
181
  isSideNavVisible: isSideNavVisible
@@ -223,7 +219,7 @@ var SideNavArrowContainer = _styledComponents["default"].div(_templateObject8 ||
223
219
 
224
220
  var ArrowContainer = _styledComponents["default"].div(_templateObject9 || (_templateObject9 = (0, _taggedTemplateLiteral2["default"])(["\n position: absolute;\n height: calc(100vh - 64px);\n left: 279px;\n"])));
225
221
 
226
- var ArrowTrigger = _styledComponents["default"].div(_templateObject10 || (_templateObject10 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n justify-content: center;\n position: sticky;\n top: 45vh;\n width: 42px;\n min-height: 42px;\n background-color: ", ";\n border-radius: 50%;\n transform: ", ";\n transition: transform 0.4s ease-in-out;\n z-index: 1250;\n cursor: pointer;\n & > svg {\n fill: ", ";\n }\n"])), function (props) {
222
+ var ArrowTrigger = _styledComponents["default"].div(_templateObject10 || (_templateObject10 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n align-items: center;\n justify-content: center;\n position: sticky;\n top: 45vh;\n width: 42px;\n min-height: 42px;\n background-color: ", ";\n border-radius: 50%;\n transform: ", ";\n transition: transform 0.4s ease-in-out;\n z-index: 1250;\n cursor: pointer;\n & > svg {\n fill: ", ";\n }\n :focus {\n outline: #0095ff auto 1px;\n }\n"])), function (props) {
227
223
  return "".concat(props.theme.arrowContainerColor);
228
224
  }, function (props) {
229
225
  return props.isSideNavVisible ? "rotate(-180deg)" : "rotate(0deg)";
@@ -0,0 +1,171 @@
1
+ import React from "react";
2
+ import DxcApplicationLayout from "./ApplicationLayout";
3
+ import DxcSidenav from "../sidenav/Sidenav";
4
+ import Title from "../../.storybook/components/Title";
5
+ import { INITIAL_VIEWPORTS } from '@storybook/addon-viewport';
6
+ import { userEvent, within, waitFor } from "@storybook/testing-library";
7
+
8
+ export default {
9
+ title: "Application Layout ",
10
+ component: DxcApplicationLayout,
11
+ parameters: {
12
+ viewport: {
13
+ viewports: INITIAL_VIEWPORTS,
14
+ }
15
+ }
16
+ };
17
+
18
+ export const DefaultApplicationLayout = () => (
19
+ <>
20
+ <DxcApplicationLayout>
21
+ <DxcApplicationLayout.Main>
22
+ <Title title="Default application layout" theme="light" level={4} />
23
+ <p>Main Content</p>
24
+ <p>Main Content</p>
25
+ <p>Main Content</p>
26
+ <p>Main Content</p>
27
+ </DxcApplicationLayout.Main>
28
+ </DxcApplicationLayout>
29
+ </>
30
+ );
31
+
32
+ export const ApplicationLayoutWithDefaultSidenav = () => (
33
+ <>
34
+ <DxcApplicationLayout>
35
+ <DxcApplicationLayout.SideNav>
36
+ <DxcSidenav.Title>Application layout with sidenav</DxcSidenav.Title>
37
+ <p>SideNav Content</p>
38
+ <p>SideNav Content</p>
39
+ <p>SideNav Content</p>
40
+ <p>SideNav Content</p>
41
+ <p>SideNav Content</p>
42
+ </DxcApplicationLayout.SideNav>
43
+ <DxcApplicationLayout.Main>
44
+ <p>Main Content</p>
45
+ <p>Main Content</p>
46
+ <p>Main Content</p>
47
+ <p>Main Content</p>
48
+ </DxcApplicationLayout.Main>
49
+ </DxcApplicationLayout>
50
+ </>
51
+ );
52
+
53
+ export const ApplicationLayoutWithPushSidenav = () => (
54
+ <>
55
+ <DxcApplicationLayout>
56
+ <DxcApplicationLayout.SideNav mode="push">
57
+ <DxcSidenav.Title>Application layout with push sidenav</DxcSidenav.Title>
58
+ <p>SideNav Content</p>
59
+ <p>SideNav Content</p>
60
+ <p>SideNav Content</p>
61
+ <p>SideNav Content</p>
62
+ <p>SideNav Content</p>
63
+ </DxcApplicationLayout.SideNav>
64
+ <DxcApplicationLayout.Main>
65
+ <p>Main Content</p>
66
+ <p>Main Content</p>
67
+ <p>Main Content</p>
68
+ <p>Main Content</p>
69
+ </DxcApplicationLayout.Main>
70
+ </DxcApplicationLayout>
71
+ </>
72
+ );
73
+
74
+ export const ApplicationLayoutWithArrowSidenav = () => (
75
+ <>
76
+ <DxcApplicationLayout>
77
+ <DxcApplicationLayout.SideNav mode="overlay" displayArrow>
78
+ <DxcSidenav.Title>Application layout with push sidenav</DxcSidenav.Title>
79
+ <p>SideNav Content</p>
80
+ <p>SideNav Content</p>
81
+ <p>SideNav Content</p>
82
+ <p>SideNav Content</p>
83
+ <p>SideNav Content</p>
84
+ </DxcApplicationLayout.SideNav>
85
+ <DxcApplicationLayout.Main>
86
+ <p>Main Content</p>
87
+ <p>Main Content</p>
88
+ <p>Main Content</p>
89
+ <p>Main Content</p>
90
+ </DxcApplicationLayout.Main>
91
+ </DxcApplicationLayout>
92
+ </>
93
+ );
94
+
95
+ export const ApplicationLayoutWithResponsiveSidenav = () => (
96
+ <>
97
+ <DxcApplicationLayout>
98
+ <DxcApplicationLayout.SideNav>
99
+ <DxcSidenav.Title>Application layout with push sidenav</DxcSidenav.Title>
100
+ <p>SideNav Content</p>
101
+ <p>SideNav Content</p>
102
+ <p>SideNav Content</p>
103
+ <p>SideNav Content</p>
104
+ <p>SideNav Content</p>
105
+ </DxcApplicationLayout.SideNav>
106
+ <DxcApplicationLayout.Main>
107
+ <p>Main Content</p>
108
+ <p>Main Content</p>
109
+ <p>Main Content</p>
110
+ <p>Main Content</p>
111
+ </DxcApplicationLayout.Main>
112
+ </DxcApplicationLayout>
113
+ </>
114
+ );
115
+
116
+ ApplicationLayoutWithResponsiveSidenav.parameters = {
117
+ viewport: {
118
+ defaultViewport: 'pixel',
119
+ },
120
+ };
121
+
122
+ export const ApplicationLayoutWithCustomHeader = () => (
123
+ <>
124
+ <DxcApplicationLayout>
125
+ <DxcApplicationLayout.Header> <p>Custom Header</p> </DxcApplicationLayout.Header>
126
+ <DxcApplicationLayout.SideNav>
127
+ <DxcSidenav.Title>Application layout with push sidenav</DxcSidenav.Title>
128
+ <p>SideNav Content</p>
129
+ <p>SideNav Content</p>
130
+ <p>SideNav Content</p>
131
+ <p>SideNav Content</p>
132
+ <p>SideNav Content</p>
133
+ </DxcApplicationLayout.SideNav>
134
+ <DxcApplicationLayout.Main>
135
+ <p>Main Content</p>
136
+ <p>Main Content</p>
137
+ <p>Main Content</p>
138
+ <p>Main Content</p>
139
+ </DxcApplicationLayout.Main>
140
+ </DxcApplicationLayout>
141
+ </>
142
+ );
143
+
144
+ export const ApplicationLayoutWithCustomFooter = () => (
145
+ <>
146
+ <DxcApplicationLayout>
147
+ <DxcApplicationLayout.SideNav>
148
+ <DxcSidenav.Title>Application layout with push sidenav</DxcSidenav.Title>
149
+ <p>SideNav Content</p>
150
+ <p>SideNav Content</p>
151
+ <p>SideNav Content</p>
152
+ <p>SideNav Content</p>
153
+ <p>SideNav Content</p>
154
+ </DxcApplicationLayout.SideNav>
155
+ <DxcApplicationLayout.Main>
156
+ <p>Main Content</p>
157
+ <p>Main Content</p>
158
+ <p>Main Content</p>
159
+ <p>Main Content</p>
160
+ </DxcApplicationLayout.Main>
161
+ <DxcApplicationLayout.Footer> <p>Custom Footer</p> </DxcApplicationLayout.Footer>
162
+ </DxcApplicationLayout>
163
+ </>
164
+ );
165
+
166
+ export const ApplicationLayoutWithClosingSidenav = ApplicationLayoutWithArrowSidenav.bind({});
167
+ ApplicationLayoutWithClosingSidenav.play = async ({ canvasElement }) => {
168
+ const canvas = within(canvasElement);
169
+ const arrow = canvas.getByRole("button");
170
+ await userEvent.click(arrow);
171
+ };