@dxc-technology/halstack-react 0.0.0-4254e6c → 0.0.0-4299a60

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 (206) hide show
  1. package/BackgroundColorContext.d.ts +10 -0
  2. package/BackgroundColorContext.js +1 -3
  3. package/ThemeContext.d.ts +15 -0
  4. package/ThemeContext.js +5 -8
  5. package/V3Select/V3Select.js +2 -2
  6. package/V3Textarea/V3Textarea.js +2 -2
  7. package/accordion/Accordion.d.ts +4 -0
  8. package/accordion/Accordion.js +14 -45
  9. package/accordion/types.d.ts +68 -0
  10. package/accordion/types.js +5 -0
  11. package/accordion-group/AccordionGroup.d.ts +7 -0
  12. package/accordion-group/AccordionGroup.js +59 -73
  13. package/accordion-group/AccordionGroup.stories.tsx +225 -0
  14. package/accordion-group/types.d.ts +72 -0
  15. package/accordion-group/types.js +5 -0
  16. package/alert/Alert.js +2 -2
  17. package/alert/Alert.stories.tsx +170 -0
  18. package/alert/types.d.ts +1 -1
  19. package/badge/Badge.js +1 -1
  20. package/box/Box.d.ts +4 -0
  21. package/box/Box.js +6 -32
  22. package/box/Box.stories.tsx +132 -0
  23. package/box/types.d.ts +43 -0
  24. package/box/types.js +5 -0
  25. package/button/Button.d.ts +1 -1
  26. package/button/Button.js +9 -12
  27. package/button/Button.stories.tsx +217 -234
  28. package/button/types.d.ts +11 -11
  29. package/card/Card.d.ts +4 -0
  30. package/card/Card.js +17 -53
  31. package/card/Card.stories.tsx +201 -0
  32. package/card/ice-cream.jpg +0 -0
  33. package/card/types.d.ts +67 -0
  34. package/card/types.js +5 -0
  35. package/checkbox/Checkbox.js +2 -2
  36. package/checkbox/Checkbox.stories.tsx +192 -0
  37. package/checkbox/types.d.ts +3 -4
  38. package/chip/Chip.d.ts +4 -0
  39. package/chip/Chip.js +1 -23
  40. package/chip/Chip.stories.tsx +121 -0
  41. package/chip/types.d.ts +53 -0
  42. package/chip/types.js +5 -0
  43. package/common/variables.js +33 -24
  44. package/date/Date.js +1 -1
  45. package/date-input/DateInput.js +1 -1
  46. package/date-input/DateInput.stories.tsx +138 -0
  47. package/dialog/Dialog.d.ts +4 -0
  48. package/dialog/Dialog.js +6 -25
  49. package/dialog/Dialog.stories.tsx +212 -0
  50. package/dialog/types.d.ts +43 -0
  51. package/dialog/types.js +5 -0
  52. package/dropdown/Dropdown.d.ts +4 -0
  53. package/dropdown/Dropdown.js +8 -41
  54. package/dropdown/types.d.ts +89 -0
  55. package/dropdown/types.js +5 -0
  56. package/file-input/FileInput.d.ts +4 -0
  57. package/file-input/FileInput.js +30 -51
  58. package/file-input/FileItem.d.ts +14 -0
  59. package/file-input/FileItem.js +10 -19
  60. package/file-input/types.d.ts +87 -0
  61. package/file-input/types.js +5 -0
  62. package/footer/Footer.d.ts +4 -0
  63. package/footer/Footer.js +6 -37
  64. package/footer/Footer.stories.jsx +151 -0
  65. package/footer/types.d.ts +69 -0
  66. package/footer/types.js +5 -0
  67. package/header/Header.d.ts +7 -0
  68. package/header/Header.js +28 -30
  69. package/header/Header.stories.tsx +162 -0
  70. package/header/Icons.js +2 -27
  71. package/header/types.d.ts +47 -0
  72. package/header/types.js +5 -0
  73. package/heading/Heading.d.ts +4 -0
  74. package/heading/Heading.js +7 -24
  75. package/heading/Heading.stories.tsx +53 -0
  76. package/heading/types.d.ts +33 -0
  77. package/heading/types.js +5 -0
  78. package/input-text/InputText.js +2 -2
  79. package/layout/ApplicationLayout.d.ts +10 -0
  80. package/layout/ApplicationLayout.js +8 -18
  81. package/layout/ApplicationLayout.stories.tsx +171 -0
  82. package/layout/types.d.ts +57 -0
  83. package/layout/types.js +5 -0
  84. package/link/Link.d.ts +3 -0
  85. package/link/Link.js +4 -26
  86. package/link/Link.stories.tsx +146 -0
  87. package/link/types.d.ts +74 -0
  88. package/link/types.js +5 -0
  89. package/main.d.ts +2 -2
  90. package/main.js +2 -2
  91. package/number-input/NumberInput.d.ts +4 -0
  92. package/number-input/NumberInput.js +2 -44
  93. package/number-input/NumberInput.stories.tsx +115 -0
  94. package/number-input/NumberInputContext.d.ts +4 -0
  95. package/number-input/NumberInputContext.js +5 -2
  96. package/number-input/numberInputContextTypes.d.ts +19 -0
  97. package/number-input/numberInputContextTypes.js +5 -0
  98. package/number-input/types.d.ts +117 -0
  99. package/number-input/types.js +5 -0
  100. package/package.json +1 -1
  101. package/paginator/Paginator.js +2 -2
  102. package/paginator/Paginator.stories.tsx +63 -0
  103. package/password-input/PasswordInput.d.ts +4 -0
  104. package/password-input/PasswordInput.js +7 -42
  105. package/password-input/{PasswordInput.stories.jsx → PasswordInput.stories.tsx} +1 -1
  106. package/password-input/types.d.ts +107 -0
  107. package/password-input/types.js +5 -0
  108. package/progress-bar/ProgressBar.d.ts +4 -0
  109. package/progress-bar/ProgressBar.js +5 -23
  110. package/progress-bar/ProgressBar.stories.jsx +58 -0
  111. package/progress-bar/types.d.ts +37 -0
  112. package/progress-bar/types.js +5 -0
  113. package/radio/Radio.js +2 -2
  114. package/radio/Radio.stories.tsx +192 -0
  115. package/radio/types.d.ts +2 -2
  116. package/resultsetTable/ResultsetTable.d.ts +4 -0
  117. package/resultsetTable/ResultsetTable.js +4 -27
  118. package/resultsetTable/types.d.ts +67 -0
  119. package/resultsetTable/types.js +5 -0
  120. package/select/Select.js +2 -2
  121. package/select/Select.stories.tsx +572 -0
  122. package/select/index.d.ts +4 -4
  123. package/sidenav/Sidenav.d.ts +9 -0
  124. package/sidenav/Sidenav.js +6 -15
  125. package/sidenav/Sidenav.stories.tsx +165 -0
  126. package/sidenav/types.d.ts +50 -0
  127. package/sidenav/types.js +5 -0
  128. package/slider/Slider.d.ts +4 -0
  129. package/slider/Slider.js +61 -84
  130. package/slider/Slider.stories.tsx +177 -0
  131. package/slider/types.d.ts +78 -0
  132. package/slider/types.js +5 -0
  133. package/spinner/Spinner.d.ts +4 -0
  134. package/spinner/Spinner.js +8 -25
  135. package/spinner/Spinner.stories.jsx +102 -0
  136. package/spinner/types.d.ts +32 -0
  137. package/spinner/types.js +5 -0
  138. package/switch/Switch.js +4 -4
  139. package/switch/Switch.stories.tsx +160 -0
  140. package/table/Table.d.ts +4 -0
  141. package/table/Table.js +3 -3
  142. package/table/Table.stories.jsx +276 -0
  143. package/table/types.d.ts +21 -0
  144. package/table/types.js +5 -0
  145. package/tabs/Tabs.d.ts +4 -0
  146. package/tabs/Tabs.js +9 -55
  147. package/tabs/Tabs.stories.tsx +121 -0
  148. package/tabs/types.d.ts +70 -0
  149. package/tabs/types.js +5 -0
  150. package/tag/Tag.d.ts +4 -0
  151. package/tag/Tag.js +21 -36
  152. package/tag/Tag.stories.tsx +145 -0
  153. package/tag/types.d.ts +60 -0
  154. package/tag/types.js +5 -0
  155. package/text-input/TextInput.d.ts +4 -0
  156. package/text-input/TextInput.js +28 -65
  157. package/text-input/TextInput.stories.tsx +456 -0
  158. package/text-input/types.d.ts +159 -0
  159. package/text-input/types.js +5 -0
  160. package/textarea/Textarea.js +15 -16
  161. package/textarea/Textarea.stories.jsx +135 -0
  162. package/textarea/index.d.ts +18 -8
  163. package/toggle/Toggle.js +1 -1
  164. package/toggle-group/ToggleGroup.d.ts +4 -0
  165. package/toggle-group/ToggleGroup.js +6 -32
  166. package/toggle-group/ToggleGroup.stories.tsx +178 -0
  167. package/toggle-group/types.d.ts +84 -0
  168. package/toggle-group/types.js +5 -0
  169. package/upload/buttons-upload/ButtonsUpload.js +2 -2
  170. package/upload/dragAndDropArea/DragAndDropArea.js +2 -2
  171. package/upload/file-upload/FileToUpload.js +1 -1
  172. package/upload/files-upload/FilesToUpload.js +1 -1
  173. package/upload/transaction/Transaction.js +2 -2
  174. package/upload/transactions/Transactions.js +1 -1
  175. package/useTheme.d.ts +2 -0
  176. package/useTheme.js +1 -1
  177. package/wizard/Wizard.d.ts +4 -0
  178. package/wizard/Wizard.js +12 -52
  179. package/wizard/Wizard.stories.jsx +224 -0
  180. package/wizard/types.d.ts +64 -0
  181. package/wizard/types.js +5 -0
  182. package/accordion/index.d.ts +0 -28
  183. package/accordion-group/index.d.ts +0 -16
  184. package/box/index.d.ts +0 -25
  185. package/card/index.d.ts +0 -22
  186. package/chip/index.d.ts +0 -22
  187. package/dialog/index.d.ts +0 -18
  188. package/dropdown/index.d.ts +0 -26
  189. package/file-input/index.d.ts +0 -81
  190. package/footer/index.d.ts +0 -25
  191. package/header/index.d.ts +0 -25
  192. package/heading/index.d.ts +0 -17
  193. package/link/index.d.ts +0 -23
  194. package/number-input/index.d.ts +0 -113
  195. package/password-input/index.d.ts +0 -94
  196. package/progress-bar/index.d.ts +0 -18
  197. package/resultsetTable/index.d.ts +0 -19
  198. package/sidenav/index.d.ts +0 -13
  199. package/slider/index.d.ts +0 -29
  200. package/spinner/index.d.ts +0 -17
  201. package/table/index.d.ts +0 -13
  202. package/tabs/index.d.ts +0 -19
  203. package/tag/index.d.ts +0 -24
  204. package/text-input/index.d.ts +0 -135
  205. package/toggle-group/index.d.ts +0 -21
  206. package/wizard/index.d.ts +0 -18
package/chip/Chip.js CHANGED
@@ -9,8 +9,6 @@ Object.defineProperty(exports, "__esModule", {
9
9
  });
10
10
  exports["default"] = void 0;
11
11
 
12
- var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
13
-
14
12
  var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
15
13
 
16
14
  var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
@@ -19,13 +17,11 @@ var _react = _interopRequireDefault(require("react"));
19
17
 
20
18
  var _styledComponents = _interopRequireWildcard(require("styled-components"));
21
19
 
22
- var _propTypes = _interopRequireDefault(require("prop-types"));
23
-
24
20
  var _variables = require("../common/variables.js");
25
21
 
26
22
  var _utils = require("../common/utils.js");
27
23
 
28
- var _useTheme = _interopRequireDefault(require("../useTheme.js"));
24
+ var _useTheme = _interopRequireDefault(require("../useTheme"));
29
25
 
30
26
  var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5;
31
27
 
@@ -199,23 +195,5 @@ var IconContainer = _styledComponents["default"].div(_templateObject5 || (_templ
199
195
  return props.disabled && "outline: none;";
200
196
  });
201
197
 
202
- DxcChip.propTypes = {
203
- label: _propTypes["default"].string,
204
- disabled: _propTypes["default"].bool,
205
- theme: _propTypes["default"].oneOf(["dark", "light"]),
206
- suffixIcon: _propTypes["default"].oneOfType([_propTypes["default"].element, _propTypes["default"].func]),
207
- prefixIcon: _propTypes["default"].oneOfType([_propTypes["default"].element, _propTypes["default"].func]),
208
- suffixIconSrc: _propTypes["default"].string,
209
- prefixIconSrc: _propTypes["default"].string,
210
- onClickSuffix: _propTypes["default"].func,
211
- onClickPrefix: _propTypes["default"].func,
212
- margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
213
- top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
214
- bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
215
- left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
216
- right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
217
- }), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
218
- tabIndex: _propTypes["default"].number
219
- };
220
198
  var _default = DxcChip;
221
199
  exports["default"] = _default;
@@ -0,0 +1,121 @@
1
+ import React from "react";
2
+ import { userEvent, within } from "@storybook/testing-library";
3
+ import DxcChip from "./Chip";
4
+ import Title from "../../.storybook/components/Title";
5
+ import ExampleContainer from "../../.storybook/components/ExampleContainer";
6
+
7
+ export default {
8
+ title: "Chip",
9
+ component: DxcChip,
10
+ };
11
+
12
+ const iconSVG = () => {
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
+ export const Chromatic = () => (
22
+ <>
23
+ <ExampleContainer>
24
+ <Title title="Basic chip" theme="light" level={4} />
25
+ <DxcChip label="Default Chip" />
26
+ </ExampleContainer>
27
+ <ExampleContainer>
28
+ <Title title="Chip with prefix" theme="light" level={4} />
29
+ <DxcChip label="Chip with prefix" prefixIcon={iconSVG} />
30
+ </ExampleContainer>
31
+ <ExampleContainer>
32
+ <Title title="Chip with suffix" theme="light" level={4} />
33
+ <DxcChip label="Chip with suffix" suffixIcon={iconSVG} />
34
+ </ExampleContainer>
35
+ <ExampleContainer>
36
+ <Title title="Chip with prefix and suffix" theme="light" level={4} />
37
+ <DxcChip label="Chip with prefix and suffix" prefixIcon={iconSVG} suffixIcon={iconSVG} />
38
+ </ExampleContainer>
39
+ <ExampleContainer>
40
+ <Title title="Disabled chip" theme="light" level={4} />
41
+ <DxcChip label="Disabled" disabled prefixIcon={iconSVG} suffixIcon={iconSVG} />
42
+ </ExampleContainer>
43
+ <ExampleContainer>
44
+ <Title title="Chip with ellipsis" theme="light" level={4} />
45
+ <DxcChip label="With ellipsis asdfasdf asdf asdfasdf asdf asdfasdf asdfasdf asdf asdf adfasrfasf afsdg afgasfg asdf asdf asdf asdf asdf asdf asdf afdg asfg asdfg asdf asdf asdf asdfasdf asd fas df asd asdf asdf asdfasd fg ssssssssssss ssss" />
46
+ </ExampleContainer>
47
+ <ExampleContainer>
48
+ <Title title="Chip with ellipsis and suffix" theme="light" level={4} />
49
+ <DxcChip
50
+ suffixIcon={iconSVG}
51
+ label="With ellipsis asdfasdf asdf asdfasdf asdf asdfasdf asdfasdf asdf asdf adfasrfasf afsdg afgasfg asdf asdf asdf asdf asdf asdf asdf afdg asfg asdfg asdf asdf asdf asdfasdf asd fas df asd asdf asdf asdfasd fgsss"
52
+ />
53
+ </ExampleContainer>
54
+ <ExampleContainer>
55
+ <Title title="Chip with ellipsis and prefix" theme="light" level={4} />
56
+ <DxcChip
57
+ prefixIcon={iconSVG}
58
+ label="With ellipsis asdfasdf asdf asdfasdf asdf asdfasdf asdfasdf asdf asdf adfasrfasf afsdg afgasfg asdf asdf asdf asdf asdf asdf asdf afdg asfg asdfg asdf asdf asdf asdfasdf asd fas df asd asdf asdf asdfasd fgsss"
59
+ />
60
+ </ExampleContainer>
61
+ <ExampleContainer>
62
+ <Title title="Chip with ellipsis, suffix and prefix" theme="light" level={4} />
63
+ <DxcChip
64
+ prefixIcon={iconSVG}
65
+ suffixIcon={iconSVG}
66
+ label="With ellipsis asdfasdf asdf asdfasdf asdf asdfasdf asdfasdf asdf asdf adfasrfasf afsdg afgasfg asdf asdf asdf asdf asdf asdf asdf afdg asfg asdfg asdf asdf asdf asdfasdf asd fas df asd asdf asdf asdfasdf"
67
+ />
68
+ </ExampleContainer>
69
+ <Title title="Margins" theme="light" level={2} />
70
+ <ExampleContainer>
71
+ <Title title="Xxsmall margin" theme="light" level={4} />
72
+ <DxcChip label="xxsmall" margin="xxsmall" />
73
+ </ExampleContainer>
74
+ <ExampleContainer>
75
+ <Title title="Xsmall margin" theme="light" level={4} />
76
+ <DxcChip label="xsmall" margin="xsmall" />
77
+ </ExampleContainer>
78
+ <ExampleContainer>
79
+ <Title title="Small margin" theme="light" level={4} />
80
+ <DxcChip label="small" margin="small" />
81
+ </ExampleContainer>
82
+ <ExampleContainer>
83
+ <Title title="Medium margin" theme="light" level={4} />
84
+ <DxcChip label="medium" margin="medium" />
85
+ </ExampleContainer>
86
+ <ExampleContainer>
87
+ <Title title="Large margin" theme="light" level={4} />
88
+ <DxcChip label="large" margin="large" />
89
+ </ExampleContainer>
90
+ <ExampleContainer>
91
+ <Title title="Xlarge margin" theme="light" level={4} />
92
+ <DxcChip label="xlarge" margin="xlarge" />
93
+ </ExampleContainer>
94
+ <ExampleContainer>
95
+ <Title title="Xxlarge margin" theme="light" level={4} />
96
+ <DxcChip label="xxlarge" margin="xxlarge" />
97
+ </ExampleContainer>
98
+ </>
99
+ );
100
+ const ChipPrefixFocused = () => (
101
+ <ExampleContainer>
102
+ <Title title="Chip with prefix" theme="light" level={4} />
103
+ <DxcChip label="Chip with prefix" prefixIcon={iconSVG} onClickPrefix={() => {}} />
104
+ </ExampleContainer>
105
+ );
106
+ const ChipSuffixFocused = () => (
107
+ <ExampleContainer>
108
+ <Title title="Chip with suffix" theme="light" level={4} />
109
+ <DxcChip label="Chip with suffix" suffixIcon={iconSVG} onClickSuffix={() => {}} />
110
+ </ExampleContainer>
111
+ );
112
+
113
+ export const PrefixFocused = ChipPrefixFocused.bind({});
114
+ PrefixFocused.play = async ({ canvasElement }) => {
115
+ await userEvent.tab();
116
+ };
117
+
118
+ export const SuffixFocused = ChipSuffixFocused.bind({});
119
+ SuffixFocused.play = async ({ canvasElement }) => {
120
+ await userEvent.tab();
121
+ };
@@ -0,0 +1,53 @@
1
+ /// <reference types="react" />
2
+ declare type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
3
+ declare type Margin = {
4
+ top?: Space;
5
+ bottom?: Space;
6
+ left?: Space;
7
+ right?: Space;
8
+ };
9
+ declare type SVG = React.SVGProps<SVGSVGElement> | React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
10
+ declare type Props = {
11
+ /**
12
+ * Text to be placed on the chip.
13
+ */
14
+ label?: string;
15
+ /**
16
+ * Element used as icon to be placed after the chip label.
17
+ */
18
+ suffixIcon?: SVG;
19
+ /**
20
+ * Element used as icon to be placed before the chip label.
21
+ */
22
+ prefixIcon?: SVG;
23
+ /**
24
+ * @deprecated Path of the icon to be placed after the chip label.
25
+ */
26
+ suffixIconSrc?: string;
27
+ /**
28
+ * This function will be called when the suffix is clicked.
29
+ */
30
+ onClickSuffix?: (label: string | undefined) => void;
31
+ /**
32
+ * @deprecated Path of the icon to be placed before the chip label.
33
+ */
34
+ prefixIconSrc?: string;
35
+ /**
36
+ * This function will be called when the prefix is clicked.
37
+ */
38
+ onClickPrefix?: (label: string | undefined) => void;
39
+ /**
40
+ * If true, the component will be disabled.
41
+ */
42
+ disabled?: boolean;
43
+ /**
44
+ * Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
45
+ * You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
46
+ */
47
+ margin?: Space | Margin;
48
+ /**
49
+ * Value of the tabindex attribute.
50
+ */
51
+ tabIndex?: number;
52
+ };
53
+ export default Props;
package/chip/types.js ADDED
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -535,7 +535,7 @@ var componentTokens = {
535
535
  errorMessageFontFamily: globalTokens.type_sans,
536
536
  errorMessageFontSize: globalTokens.type_scale_01,
537
537
  errorMessageFontWeight: globalTokens.type_regular,
538
- errorMessageLineHeight: globalTokens.type_scale_05,
538
+ errorMessageLineHeight: globalTokens.type_leading_normal,
539
539
  dropBorderThickness: globalTokens.border_width_1,
540
540
  dropBorderStyle: globalTokens.border_dashed,
541
541
  dropBorderRadius: globalTokens.border_radius_large,
@@ -545,7 +545,8 @@ var componentTokens = {
545
545
  hoverDeleteFileItemBackgroundColor: globalTokens.hal_grey_l_95,
546
546
  activeDeleteFileItemBackgroundColor: globalTokens.hal_grey_l_80,
547
547
  errorHoverDeleteFileItemBackgroundColor: globalTokens.hal_red_l_95,
548
- errorActiveDeleteFileItemBackgroundColor: globalTokens.hal_red_s_41
548
+ errorActiveDeleteFileItemBackgroundColor: globalTokens.hal_red_s_41,
549
+ focusActionBorderColor: globalTokens.hal_blue_l_50
549
550
  },
550
551
  footer: {
551
552
  height: "124px",
@@ -780,7 +781,7 @@ var componentTokens = {
780
781
  activeActionBackgroundColor: globalTokens.hal_grey_l_80,
781
782
  activeActionBackgroundColorOnDark: globalTokens.hal_grey_l_60,
782
783
  listDialogBackgroundColor: globalTokens.hal_white,
783
- listDialogBorderColor: globalTokens.hal_black,
784
+ listDialogBorderColor: globalTokens.hal_grey_l_75,
784
785
  listOptionDividerColor: globalTokens.hal_grey_l_90,
785
786
  listOptionFontColor: globalTokens.hal_black,
786
787
  listOptionFontSize: globalTokens.type_scale_02,
@@ -1042,9 +1043,13 @@ var componentTokens = {
1042
1043
  },
1043
1044
  slider: {
1044
1045
  fontFamily: globalTokens.type_sans,
1045
- fontSize: globalTokens.type_scale_03,
1046
- fontStyle: globalTokens.type_normal,
1047
- fontWeight: globalTokens.type_regular,
1046
+ limitValuesFontColor: globalTokens.hal_black,
1047
+ limitValuesFontColorOnDark: globalTokens.hal_white,
1048
+ limitValuesFontSize: globalTokens.type_scale_03,
1049
+ limitValuesFontStyle: globalTokens.type_normal,
1050
+ limitValuesFontWeight: globalTokens.type_regular,
1051
+ limitValuesFontLetterSpacing: globalTokens.type_spacing_normal,
1052
+ disabledLimitValuesFontColor: globalTokens.hal_grey_l_60,
1048
1053
  labelFontFamily: globalTokens.type_sans,
1049
1054
  labelFontSize: globalTokens.type_scale_02,
1050
1055
  labelFontStyle: globalTokens.type_normal,
@@ -1058,9 +1063,13 @@ var componentTokens = {
1058
1063
  fontColor: globalTokens.hal_black,
1059
1064
  fontColorOnDark: globalTokens.hal_white,
1060
1065
  labelFontColor: globalTokens.hal_black,
1066
+ labelFontColorOnDark: globalTokens.hal_white,
1061
1067
  helperTextFontColor: globalTokens.hal_black,
1062
- disabledFontColor: globalTokens.hal_grey_l_60,
1063
- fontLetterSpacing: globalTokens.type_spacing_normal,
1068
+ helperTextFontColorOnDark: globalTokens.hal_white,
1069
+ disabledLabelFontColor: globalTokens.hal_grey_l_60,
1070
+ disabledLabelFontColorOnDark: globalTokens.hal_grey_l_60,
1071
+ disabledHelperTextFontColor: globalTokens.hal_grey_l_60,
1072
+ disabledHelperTextFontColorOnDark: globalTokens.hal_grey_l_60,
1064
1073
  thumbHeight: "12px",
1065
1074
  thumbWidth: "12px",
1066
1075
  hoverThumbHeight: "14px",
@@ -1142,30 +1151,30 @@ var componentTokens = {
1142
1151
  "switch": {
1143
1152
  checkedTrackBackgroundColor: globalTokens.hal_purple_s_38,
1144
1153
  checkedTrackBackgroundColorOnDark: globalTokens.hal_purple_s_38,
1145
- checkedThumbBackgroundColor: globalTokens.white,
1146
- checkedThumbBackgroundColorOnDark: globalTokens.white,
1147
- uncheckedTrackBackgroundColor: globalTokens.lightGrey,
1148
- uncheckedTrackBackgroundColorOnDark: globalTokens.lightGrey,
1149
- uncheckedThumbBackgroundColor: globalTokens.white,
1150
- uncheckedThumbBackgroundColorOnDark: globalTokens.white,
1151
- disabledCheckedTrackBackgroundColor: globalTokens.lightPurple,
1154
+ checkedThumbBackgroundColor: globalTokens.hal_white,
1155
+ checkedThumbBackgroundColorOnDark: globalTokens.hal_white,
1156
+ uncheckedTrackBackgroundColor: globalTokens.hal_grey_l_75,
1157
+ uncheckedTrackBackgroundColorOnDark: globalTokens.hal_grey_l_75,
1158
+ uncheckedThumbBackgroundColor: globalTokens.hal_white,
1159
+ uncheckedThumbBackgroundColorOnDark: globalTokens.hal_white,
1160
+ disabledCheckedTrackBackgroundColor: globalTokens.hal_purple_l_95,
1152
1161
  disabledCheckedTrackBackgroundColorOnDark: "#1c0b24",
1153
- disabledCheckedThumbBackgroundColor: globalTokens.white,
1154
- disabledCheckedThumbBackgroundColorOnDark: globalTokens.white,
1155
- disabledUncheckedTrackBackgroundColor: globalTokens.lightWhite,
1162
+ disabledCheckedThumbBackgroundColor: globalTokens.hal_white,
1163
+ disabledCheckedThumbBackgroundColorOnDark: globalTokens.hal_white,
1164
+ disabledUncheckedTrackBackgroundColor: globalTokens.hal_grey_l_95,
1156
1165
  disabledUncheckedTrackBackgroundColorOnDark: "#363636",
1157
- disabledUncheckedThumbBackgroundColor: globalTokens.white,
1158
- disabledUncheckedThumbBackgroundColorOnDark: globalTokens.white,
1159
- disabledLabelFontColor: globalTokens.lighterBlack,
1166
+ disabledUncheckedThumbBackgroundColor: globalTokens.hal_white,
1167
+ disabledUncheckedThumbBackgroundColorOnDark: globalTokens.hal_white,
1168
+ disabledLabelFontColor: globalTokens.hal_grey_l_60,
1160
1169
  disabledLabelFontColorOnDark: "#575757",
1161
1170
  disabledLabelFontStyle: globalTokens.type_normal,
1162
1171
  labelFontFamily: globalTokens.type_sans,
1163
1172
  labelFontSize: globalTokens.type_scale_root,
1164
1173
  labelFontStyle: globalTokens.type_normal,
1165
1174
  labelFontWeight: globalTokens.type_regular,
1166
- labelFontColor: globalTokens.black,
1167
- labelFontColorOnDark: globalTokens.white,
1168
- thumbFocusColor: globalTokens.blue,
1175
+ labelFontColor: globalTokens.hal_black,
1176
+ labelFontColorOnDark: globalTokens.hal_white,
1177
+ thumbFocusColor: globalTokens.hal_blue_l_50,
1169
1178
  thumbFocusColorOnDark: "#1682FF",
1170
1179
  thumbHeight: "24px",
1171
1180
  thumbWidth: "24px",
package/date/Date.js CHANGED
@@ -39,7 +39,7 @@ var _InputText = _interopRequireDefault(require("../input-text/InputText"));
39
39
 
40
40
  var _variables = require("../common/variables.js");
41
41
 
42
- var _useTheme = _interopRequireDefault(require("../useTheme.js"));
42
+ var _useTheme = _interopRequireDefault(require("../useTheme"));
43
43
 
44
44
  var _templateObject, _DxcDate$propTypes;
45
45
 
@@ -29,7 +29,7 @@ var _dateFns = _interopRequireDefault(require("@date-io/date-fns"));
29
29
 
30
30
  var _styledComponents = _interopRequireWildcard(require("styled-components"));
31
31
 
32
- var _useTheme = _interopRequireDefault(require("../useTheme.js"));
32
+ var _useTheme = _interopRequireDefault(require("../useTheme"));
33
33
 
34
34
  var _TextInput = _interopRequireDefault(require("../text-input/TextInput"));
35
35
 
@@ -0,0 +1,138 @@
1
+ import React from "react";
2
+ import { userEvent, within, fireEvent, screen } from "@storybook/testing-library";
3
+ import DxcDateInput from "./DateInput";
4
+ import Title from "../../.storybook/components/Title";
5
+ import ExampleContainer from "../../.storybook/components/ExampleContainer";
6
+ import { BackgroundColorProvider } from "../BackgroundColorContext";
7
+ import DarkContainer from "../../.storybook/components/DarkSection";
8
+
9
+ export default {
10
+ title: "Date input",
11
+ component: DxcDateInput,
12
+ };
13
+
14
+ export const Chromatic = () => (
15
+ <>
16
+ <ExampleContainer>
17
+ <Title title="Complete date input" theme="light" level={4} />
18
+ <DxcDateInput label="Date input" helperText="Help message" format="dd/mm/yy" placeholder optional />
19
+ </ExampleContainer>
20
+ <ExampleContainer>
21
+ <Title title="Disabled" theme="light" level={4} />
22
+ <DxcDateInput label="Disabled date input" helperText="Help message" value="06-04-2027" clearable disabled />
23
+ </ExampleContainer>
24
+ <ExampleContainer>
25
+ <Title title="Invalid" theme="light" level={4} />
26
+ <DxcDateInput label="Error date input" error="Error message." placeholder />
27
+ </ExampleContainer>
28
+ <ExampleContainer>
29
+ <Title title="Relation between icons" theme="light" level={4} />
30
+ <DxcDateInput label="Error date input" error="Error message." value="06-04-2027" clearable />
31
+ </ExampleContainer>
32
+ <BackgroundColorProvider color="#333333">
33
+ <DarkContainer>
34
+ <Title title="Dark" theme="dark" level={2} />
35
+ <ExampleContainer>
36
+ <Title title="Complete date input" theme="dark" level={4} />
37
+ <DxcDateInput label="Date input" helperText="Help message" format="yyyy/dd/mm" placeholder optional />
38
+ </ExampleContainer>
39
+ <ExampleContainer>
40
+ <Title title="Disabled" theme="dark" level={4} />
41
+ <DxcDateInput label="Disabled Date input" helperText="Help message" value="06-04-2027" clearable disabled />
42
+ </ExampleContainer>
43
+ <ExampleContainer>
44
+ <Title title="Invalid" theme="dark" level={4} />
45
+ <DxcDateInput label="Error date input" error="Error message." placeholder />
46
+ </ExampleContainer>
47
+ <ExampleContainer>
48
+ <Title title="Relation between icons" theme="dark" level={4} />
49
+ <DxcDateInput label="Error date input" value="06-04-2027" error="Error message." clearable />
50
+ </ExampleContainer>
51
+ </DarkContainer>
52
+ </BackgroundColorProvider>
53
+ <Title title="Margins" theme="light" level={2} />
54
+ <ExampleContainer>
55
+ <Title title="Xxsmall" theme="light" level={4} />
56
+ <DxcDateInput label="Xxsmall" margin="xxsmall" />
57
+ </ExampleContainer>
58
+ <ExampleContainer>
59
+ <Title title="Xsmall" theme="light" level={4} />
60
+ <DxcDateInput label="Xsmall" margin="xsmall" />
61
+ </ExampleContainer>
62
+ <ExampleContainer>
63
+ <Title title="Small" theme="light" level={4} />
64
+ <DxcDateInput label="Small" margin="small" />
65
+ </ExampleContainer>
66
+ <ExampleContainer>
67
+ <Title title="Medium" theme="light" level={4} />
68
+ <DxcDateInput label="Medium" margin="medium" />
69
+ </ExampleContainer>
70
+ <ExampleContainer>
71
+ <Title title="Large" theme="light" level={4} />
72
+ <DxcDateInput label="Large" margin="large" />
73
+ </ExampleContainer>
74
+ <ExampleContainer>
75
+ <Title title="Xlarge" theme="light" level={4} />
76
+ <DxcDateInput label="Xlarge" margin="xlarge" />
77
+ </ExampleContainer>
78
+ <ExampleContainer>
79
+ <Title title="Xxlarge" theme="light" level={4} />
80
+ <DxcDateInput label="Xxlarge" margin="xxlarge" />
81
+ </ExampleContainer>
82
+ <Title title="Sizes" theme="light" level={2} />
83
+ <ExampleContainer>
84
+ <Title title="Medium size" theme="light" level={4} />
85
+ <DxcDateInput label="Medium" size="medium" />
86
+ </ExampleContainer>
87
+ <ExampleContainer>
88
+ <Title title="Large size" theme="light" level={4} />
89
+ <DxcDateInput label="Large" size="large" />
90
+ </ExampleContainer>
91
+ <ExampleContainer>
92
+ <Title title="FillParent size" theme="light" level={4} />
93
+ <DxcDateInput label="FillParent" size="fillParent" />
94
+ </ExampleContainer>
95
+ </>
96
+ );
97
+
98
+ const DatePicker = () => (
99
+ <ExampleContainer expanded>
100
+ <Title title="Show date input" theme="light" level={4} />
101
+ <DxcDateInput label="Date input" value="10-06-2023" />
102
+ </ExampleContainer>
103
+ );
104
+
105
+ export const ShowDatePicker = DatePicker.bind({});
106
+ ShowDatePicker.play = async ({ canvasElement }) => {
107
+ const canvas = within(canvasElement);
108
+ const dateBtn = canvas.getByRole("button");
109
+ await userEvent.click(dateBtn);
110
+ await userEvent.tab();
111
+ };
112
+
113
+ const YearPicker = () => (
114
+ <ExampleContainer expanded>
115
+ <Title title="Show date input" theme="light" level={4} />
116
+ <DxcDateInput label="Date input" value="10-06-2023" />
117
+ </ExampleContainer>
118
+ );
119
+
120
+ export const ShowYearPicker = YearPicker.bind({});
121
+ ShowYearPicker.play = async () => {
122
+ await fireEvent.click(screen.getByRole("button"));
123
+ await fireEvent.click(screen.getByText("2023"));
124
+ };
125
+
126
+ const YearPickerFocus = () => (
127
+ <ExampleContainer expanded>
128
+ <Title title="Show date input" theme="light" level={4} />
129
+ <DxcDateInput label="Date input" value="10-06-2023" />
130
+ </ExampleContainer>
131
+ );
132
+
133
+ export const ShowYearPickerFocus = YearPickerFocus.bind({});
134
+ ShowYearPickerFocus.play = async () => {
135
+ await fireEvent.click(screen.getByRole("button"));
136
+ await fireEvent.click(screen.getByText("2023"));
137
+ await screen.getByText("2021").focus();
138
+ };
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import DialogPropsType from "./types";
3
+ declare const DxcDialog: ({ isCloseVisible, onCloseClick, children, overlay, onBackgroundClick, padding, tabIndex, }: DialogPropsType) => JSX.Element;
4
+ export default DxcDialog;
package/dialog/Dialog.js CHANGED
@@ -9,8 +9,6 @@ Object.defineProperty(exports, "__esModule", {
9
9
  });
10
10
  exports["default"] = void 0;
11
11
 
12
- var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
13
-
14
12
  var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
15
13
 
16
14
  var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
@@ -23,13 +21,11 @@ var _styledComponents = _interopRequireWildcard(require("styled-components"));
23
21
 
24
22
  var _Dialog = _interopRequireDefault(require("@material-ui/core/Dialog"));
25
23
 
26
- var _propTypes = _interopRequireDefault(require("prop-types"));
27
-
28
24
  var _variables = require("../common/variables.js");
29
25
 
30
- var _useTheme = _interopRequireDefault(require("../useTheme.js"));
26
+ var _useTheme = _interopRequireDefault(require("../useTheme"));
31
27
 
32
- var _BackgroundColorContext = require("../BackgroundColorContext.js");
28
+ var _BackgroundColorContext = require("../BackgroundColorContext");
33
29
 
34
30
  var _templateObject, _templateObject2, _templateObject3, _templateObject4;
35
31
 
@@ -49,7 +45,7 @@ var DxcDialog = function DxcDialog(_ref) {
49
45
  _ref$tabIndex = _ref.tabIndex,
50
46
  tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
51
47
 
52
- var _useState = (0, _react.useState)(),
48
+ var _useState = (0, _react.useState)(false),
53
49
  _useState2 = (0, _slicedToArray2["default"])(_useState, 2),
54
50
  isResponsive = _useState2[0],
55
51
  setIsResponsive = _useState2[1];
@@ -57,15 +53,15 @@ var DxcDialog = function DxcDialog(_ref) {
57
53
  var colorsTheme = (0, _useTheme["default"])();
58
54
 
59
55
  var handleClose = function handleClose() {
60
- typeof onCloseClick === "function" && onCloseClick();
56
+ onCloseClick === null || onCloseClick === void 0 ? void 0 : onCloseClick();
61
57
  };
62
58
 
63
59
  var handleOverlayClick = function handleOverlayClick() {
64
- typeof onBackgroundClick === "function" && onBackgroundClick();
60
+ onBackgroundClick === null || onBackgroundClick === void 0 ? void 0 : onBackgroundClick();
65
61
  };
66
62
 
67
63
  var handleResize = function handleResize(width) {
68
- width && width <= _variables.responsiveSizes.tablet ? setIsResponsive(true) : setIsResponsive(false);
64
+ setIsResponsive(width && width <= _variables.responsiveSizes.tablet);
69
65
  };
70
66
 
71
67
  var handleEventListener = function handleEventListener() {
@@ -165,20 +161,5 @@ var CloseIcon = _styledComponents["default"].svg(_templateObject4 || (_templateO
165
161
  return props.theme.closeIconBorderColor;
166
162
  });
167
163
 
168
- DxcDialog.propTypes = {
169
- padding: _propTypes["default"].oneOfType([_propTypes["default"].shape({
170
- top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
171
- bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
172
- left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
173
- right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
174
- }), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
175
- isVisible: _propTypes["default"].bool,
176
- isCloseVisible: _propTypes["default"].bool,
177
- onClose: _propTypes["default"].func,
178
- onCloseClick: _propTypes["default"].func,
179
- onBackgroundClick: _propTypes["default"].func,
180
- overlay: _propTypes["default"].bool,
181
- tabIndex: _propTypes["default"].number
182
- };
183
164
  var _default = DxcDialog;
184
165
  exports["default"] = _default;