@dxc-technology/halstack-react 0.0.0-ff43881 → 0.0.0-ff5083e

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 (209) hide show
  1. package/HalstackContext.d.ts +12 -0
  2. package/HalstackContext.js +295 -0
  3. package/accordion/Accordion.d.ts +1 -1
  4. package/accordion/Accordion.js +7 -28
  5. package/accordion/Accordion.stories.tsx +11 -11
  6. package/accordion/Accordion.test.js +72 -0
  7. package/accordion/types.d.ts +4 -0
  8. package/accordion-group/AccordionGroup.d.ts +1 -1
  9. package/accordion-group/AccordionGroup.js +13 -15
  10. package/accordion-group/AccordionGroup.stories.tsx +1 -1
  11. package/accordion-group/AccordionGroup.test.js +151 -0
  12. package/accordion-group/types.d.ts +4 -0
  13. package/alert/Alert.js +4 -1
  14. package/alert/Alert.test.js +92 -0
  15. package/badge/Badge.d.ts +1 -1
  16. package/badge/Badge.js +5 -3
  17. package/badge/types.d.ts +1 -0
  18. package/bleed/Bleed.js +1 -34
  19. package/bleed/Bleed.stories.tsx +31 -32
  20. package/bleed/types.d.ts +25 -1
  21. package/box/Box.js +22 -32
  22. package/box/Box.test.js +18 -0
  23. package/bulleted-list/BulletedList.d.ts +7 -0
  24. package/bulleted-list/BulletedList.js +120 -0
  25. package/bulleted-list/BulletedList.stories.tsx +203 -0
  26. package/bulleted-list/types.d.ts +11 -0
  27. package/{list → bulleted-list}/types.js +0 -0
  28. package/button/Button.js +14 -11
  29. package/button/Button.test.js +35 -0
  30. package/card/Card.js +24 -27
  31. package/card/Card.test.js +50 -0
  32. package/checkbox/Checkbox.d.ts +1 -1
  33. package/checkbox/Checkbox.js +43 -39
  34. package/checkbox/Checkbox.stories.tsx +124 -128
  35. package/checkbox/Checkbox.test.js +78 -0
  36. package/checkbox/types.d.ts +7 -3
  37. package/chip/Chip.test.js +56 -0
  38. package/common/variables.js +197 -322
  39. package/date-input/DateInput.js +53 -39
  40. package/date-input/DateInput.stories.tsx +7 -7
  41. package/date-input/DateInput.test.js +479 -0
  42. package/date-input/types.d.ts +16 -9
  43. package/dialog/Dialog.js +4 -32
  44. package/dialog/Dialog.test.js +40 -0
  45. package/dropdown/Dropdown.js +13 -17
  46. package/dropdown/Dropdown.test.js +189 -0
  47. package/file-input/FileInput.js +9 -6
  48. package/file-input/FileInput.test.js +457 -0
  49. package/file-input/FileItem.js +7 -5
  50. package/footer/Footer.js +15 -88
  51. package/footer/Footer.test.js +109 -0
  52. package/header/Header.js +27 -48
  53. package/header/Header.stories.tsx +46 -36
  54. package/header/Header.test.js +79 -0
  55. package/heading/Heading.test.js +186 -0
  56. package/inset/Inset.js +1 -34
  57. package/inset/Inset.stories.tsx +32 -32
  58. package/inset/types.d.ts +25 -1
  59. package/layout/ApplicationLayout.d.ts +4 -3
  60. package/layout/ApplicationLayout.js +82 -114
  61. package/layout/ApplicationLayout.stories.tsx +14 -59
  62. package/layout/Icons.d.ts +5 -0
  63. package/layout/Icons.js +13 -2
  64. package/layout/SidenavContext.d.ts +5 -0
  65. package/layout/SidenavContext.js +19 -0
  66. package/layout/types.d.ts +5 -10
  67. package/link/Link.d.ts +3 -2
  68. package/link/Link.js +57 -74
  69. package/link/Link.stories.tsx +87 -52
  70. package/link/Link.test.js +83 -0
  71. package/link/types.d.ts +7 -23
  72. package/main.d.ts +7 -10
  73. package/main.js +33 -51
  74. package/number-input/NumberInput.js +11 -18
  75. package/number-input/NumberInput.stories.tsx +5 -5
  76. package/number-input/NumberInput.test.js +506 -0
  77. package/number-input/types.d.ts +17 -10
  78. package/package.json +6 -5
  79. package/paginator/Paginator.js +17 -38
  80. package/paginator/Paginator.test.js +266 -0
  81. package/paragraph/Paragraph.d.ts +6 -0
  82. package/paragraph/Paragraph.js +38 -0
  83. package/paragraph/Paragraph.stories.tsx +44 -0
  84. package/password-input/PasswordInput.js +7 -4
  85. package/password-input/PasswordInput.test.js +180 -0
  86. package/password-input/types.d.ts +14 -11
  87. package/progress-bar/ProgressBar.js +1 -1
  88. package/progress-bar/ProgressBar.stories.jsx +11 -11
  89. package/progress-bar/ProgressBar.test.js +65 -0
  90. package/quick-nav/QuickNav.d.ts +4 -0
  91. package/quick-nav/QuickNav.js +112 -0
  92. package/quick-nav/QuickNav.stories.tsx +237 -0
  93. package/quick-nav/types.d.ts +21 -0
  94. package/{radio → quick-nav}/types.js +0 -0
  95. package/radio-group/Radio.d.ts +1 -1
  96. package/radio-group/Radio.js +25 -24
  97. package/radio-group/RadioGroup.js +46 -37
  98. package/radio-group/RadioGroup.stories.tsx +60 -39
  99. package/radio-group/RadioGroup.test.js +530 -83
  100. package/radio-group/types.d.ts +80 -2
  101. package/resultsetTable/ResultsetTable.test.js +306 -0
  102. package/row/types.d.ts +18 -0
  103. package/select/Icons.d.ts +10 -0
  104. package/select/Icons.js +93 -0
  105. package/select/Listbox.d.ts +4 -0
  106. package/select/Listbox.js +152 -0
  107. package/select/Option.d.ts +4 -0
  108. package/select/Option.js +110 -0
  109. package/select/Select.js +109 -327
  110. package/select/Select.stories.tsx +103 -81
  111. package/select/Select.test.js +2120 -0
  112. package/select/types.d.ts +54 -11
  113. package/sidenav/Sidenav.d.ts +1 -1
  114. package/sidenav/Sidenav.js +20 -9
  115. package/sidenav/Sidenav.test.js +56 -0
  116. package/slider/Slider.d.ts +1 -1
  117. package/slider/Slider.js +2 -1
  118. package/slider/Slider.stories.tsx +8 -8
  119. package/slider/Slider.test.js +150 -0
  120. package/slider/types.d.ts +4 -0
  121. package/spinner/Spinner.js +1 -1
  122. package/spinner/Spinner.test.js +64 -0
  123. package/stack/types.d.ts +15 -0
  124. package/switch/Switch.d.ts +1 -1
  125. package/switch/Switch.js +35 -19
  126. package/switch/Switch.stories.tsx +14 -14
  127. package/switch/Switch.test.js +98 -0
  128. package/switch/types.d.ts +6 -2
  129. package/table/Table.test.js +26 -0
  130. package/tabs/Tabs.d.ts +1 -1
  131. package/tabs/Tabs.js +9 -11
  132. package/tabs/Tabs.stories.tsx +0 -8
  133. package/tabs/Tabs.test.js +140 -0
  134. package/tabs/types.d.ts +4 -0
  135. package/tabs-nav/NavTabs.d.ts +8 -0
  136. package/tabs-nav/NavTabs.js +125 -0
  137. package/tabs-nav/NavTabs.stories.tsx +170 -0
  138. package/tabs-nav/NavTabs.test.js +82 -0
  139. package/tabs-nav/Tab.d.ts +4 -0
  140. package/tabs-nav/Tab.js +132 -0
  141. package/tabs-nav/types.d.ts +53 -0
  142. package/tabs-nav/types.js +5 -0
  143. package/tag/Tag.js +14 -19
  144. package/tag/Tag.stories.tsx +12 -8
  145. package/tag/Tag.test.js +60 -0
  146. package/text-input/Suggestion.d.ts +4 -0
  147. package/text-input/Suggestion.js +55 -0
  148. package/text-input/TextInput.js +56 -80
  149. package/text-input/TextInput.stories.tsx +30 -12
  150. package/text-input/TextInput.test.js +1712 -0
  151. package/text-input/types.d.ts +31 -12
  152. package/textarea/Textarea.js +20 -27
  153. package/textarea/Textarea.stories.jsx +33 -12
  154. package/textarea/Textarea.test.js +437 -0
  155. package/textarea/types.d.ts +18 -11
  156. package/toggle-group/ToggleGroup.d.ts +1 -1
  157. package/toggle-group/ToggleGroup.js +5 -4
  158. package/toggle-group/ToggleGroup.stories.tsx +4 -4
  159. package/toggle-group/ToggleGroup.test.js +156 -0
  160. package/toggle-group/types.d.ts +8 -0
  161. package/typography/Typography.d.ts +4 -0
  162. package/typography/Typography.js +131 -0
  163. package/typography/Typography.stories.tsx +175 -0
  164. package/typography/types.d.ts +18 -0
  165. package/typography/types.js +5 -0
  166. package/typography/typographyContextTypes.d.ts +16 -0
  167. package/typography/typographyContextTypes.js +5 -0
  168. package/useTheme.js +2 -2
  169. package/useTranslatedLabels.d.ts +2 -0
  170. package/useTranslatedLabels.js +20 -0
  171. package/wizard/Wizard.d.ts +1 -1
  172. package/wizard/Wizard.js +55 -44
  173. package/wizard/Wizard.stories.tsx +13 -23
  174. package/wizard/Wizard.test.js +141 -0
  175. package/wizard/types.d.ts +6 -2
  176. package/ThemeContext.d.ts +0 -15
  177. package/ThemeContext.js +0 -243
  178. package/V3Select/V3Select.js +0 -455
  179. package/V3Select/index.d.ts +0 -27
  180. package/V3Textarea/V3Textarea.js +0 -260
  181. package/V3Textarea/index.d.ts +0 -27
  182. package/date/Date.js +0 -373
  183. package/date/index.d.ts +0 -27
  184. package/input-text/Icons.js +0 -22
  185. package/input-text/InputText.js +0 -611
  186. package/input-text/index.d.ts +0 -36
  187. package/list/List.d.ts +0 -4
  188. package/list/List.js +0 -47
  189. package/list/List.stories.tsx +0 -95
  190. package/list/types.d.ts +0 -7
  191. package/radio/Radio.d.ts +0 -4
  192. package/radio/Radio.js +0 -174
  193. package/radio/Radio.stories.tsx +0 -192
  194. package/radio/types.d.ts +0 -54
  195. package/text/Text.d.ts +0 -7
  196. package/text/Text.js +0 -30
  197. package/text/Text.stories.tsx +0 -19
  198. package/upload/Upload.js +0 -201
  199. package/upload/buttons-upload/ButtonsUpload.js +0 -111
  200. package/upload/buttons-upload/Icons.js +0 -40
  201. package/upload/dragAndDropArea/DragAndDropArea.js +0 -225
  202. package/upload/dragAndDropArea/Icons.js +0 -39
  203. package/upload/file-upload/FileToUpload.js +0 -115
  204. package/upload/file-upload/Icons.js +0 -66
  205. package/upload/files-upload/FilesToUpload.js +0 -109
  206. package/upload/index.d.ts +0 -15
  207. package/upload/transaction/Icons.js +0 -160
  208. package/upload/transaction/Transaction.js +0 -104
  209. package/upload/transactions/Transactions.js +0 -94
@@ -0,0 +1,156 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ var _react = _interopRequireDefault(require("react"));
6
+
7
+ var _react2 = require("@testing-library/react");
8
+
9
+ var _ToggleGroup = _interopRequireDefault(require("./ToggleGroup"));
10
+
11
+ var options = [{
12
+ value: 1,
13
+ label: "Amazon"
14
+ }, {
15
+ value: 2,
16
+ label: "Ebay"
17
+ }, {
18
+ value: 3,
19
+ label: "Apple"
20
+ }, {
21
+ value: 4,
22
+ label: "Google"
23
+ }];
24
+ describe("Toggle group component tests", function () {
25
+ test("Toggle group renders with correct labels", function () {
26
+ var _render = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
27
+ label: "Toggle group label",
28
+ helperText: "Toggle group helper text",
29
+ options: options
30
+ })),
31
+ getByText = _render.getByText;
32
+
33
+ expect(getByText("Toggle group label")).toBeTruthy();
34
+ expect(getByText("Toggle group helper text")).toBeTruthy();
35
+ expect(getByText("Amazon")).toBeTruthy();
36
+ expect(getByText("Ebay")).toBeTruthy();
37
+ expect(getByText("Apple")).toBeTruthy();
38
+ expect(getByText("Google")).toBeTruthy();
39
+ });
40
+ test("Uncontrolled toggle group calls correct function on change with value", function () {
41
+ var onChange = jest.fn();
42
+
43
+ var _render2 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
44
+ options: options,
45
+ onChange: onChange
46
+ })),
47
+ getByText = _render2.getByText;
48
+
49
+ var option = getByText("Ebay");
50
+
51
+ _react2.fireEvent.click(option);
52
+
53
+ expect(onChange).toHaveBeenCalledWith(2);
54
+ });
55
+ test("Controlled toggle group calls correct function on change with value", function () {
56
+ var onChange = jest.fn();
57
+
58
+ var _render3 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
59
+ options: options,
60
+ onChange: onChange,
61
+ value: 1
62
+ })),
63
+ getByText = _render3.getByText;
64
+
65
+ var option = getByText("Ebay");
66
+
67
+ _react2.fireEvent.click(option);
68
+
69
+ expect(onChange).toHaveBeenCalledWith(2);
70
+ });
71
+ test("Function on change is not called when disable", function () {
72
+ var onChange = jest.fn();
73
+
74
+ var _render4 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
75
+ options: options,
76
+ onChange: onChange,
77
+ disabled: true
78
+ })),
79
+ getByText = _render4.getByText;
80
+
81
+ var option = getByText("Ebay");
82
+
83
+ _react2.fireEvent.click(option);
84
+
85
+ expect(onChange).toHaveBeenCalledTimes(0);
86
+ });
87
+ test("Uncontrolled multiple toggle group calls correct function on change with value when is multiple", function () {
88
+ var onChange = jest.fn();
89
+
90
+ var _render5 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
91
+ options: options,
92
+ onChange: onChange,
93
+ multiple: true
94
+ })),
95
+ getAllByRole = _render5.getAllByRole;
96
+
97
+ var toggleOptions = getAllByRole("switch");
98
+
99
+ _react2.fireEvent.click(toggleOptions[0]);
100
+
101
+ expect(onChange).toHaveBeenCalledWith([1]);
102
+
103
+ _react2.fireEvent.click(toggleOptions[1]);
104
+
105
+ _react2.fireEvent.click(toggleOptions[3]);
106
+
107
+ expect(onChange).toHaveBeenCalledWith([1, 2, 4]);
108
+ expect(toggleOptions[0].getAttribute("aria-checked")).toBe("true");
109
+ expect(toggleOptions[1].getAttribute("aria-checked")).toBe("true");
110
+ expect(toggleOptions[3].getAttribute("aria-checked")).toBe("true");
111
+ });
112
+ test("Controlled multiple toggle returns always same values", function () {
113
+ var onChange = jest.fn();
114
+
115
+ var _render6 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
116
+ options: options,
117
+ onChange: onChange,
118
+ value: [1],
119
+ multiple: true
120
+ })),
121
+ getByText = _render6.getByText;
122
+
123
+ var option = getByText("Ebay");
124
+
125
+ _react2.fireEvent.click(option);
126
+
127
+ expect(onChange).toHaveBeenCalledWith([1, 2]);
128
+ var option2 = getByText("Google");
129
+
130
+ _react2.fireEvent.click(option2);
131
+
132
+ expect(onChange).toHaveBeenNthCalledWith(2, [1, 4]);
133
+ });
134
+ test("Single selection: Renders with correct default value", function () {
135
+ var _render7 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
136
+ options: options,
137
+ defaultValue: 2
138
+ })),
139
+ getAllByRole = _render7.getAllByRole;
140
+
141
+ var toggleOptions = getAllByRole("radio");
142
+ expect(toggleOptions[1].getAttribute("aria-checked")).toBe("true");
143
+ });
144
+ test("Multiple selection: Renders with correct default value", function () {
145
+ var _render8 = (0, _react2.render)( /*#__PURE__*/_react["default"].createElement(_ToggleGroup["default"], {
146
+ options: options,
147
+ defaultValue: [2, 4],
148
+ multiple: true
149
+ })),
150
+ getAllByRole = _render8.getAllByRole;
151
+
152
+ var toggleOptions = getAllByRole("switch");
153
+ expect(toggleOptions[1].getAttribute("aria-checked")).toBe("true");
154
+ expect(toggleOptions[3].getAttribute("aria-checked")).toBe("true");
155
+ });
156
+ });
@@ -66,6 +66,10 @@ declare type SingleSelectionToggle = CommonProps & {
66
66
  * If true, the toggle group will support multiple selection. In that case, value must be an array of numbers with the keys of the selected values.
67
67
  */
68
68
  multiple?: false;
69
+ /**
70
+ * The key of the initially selected value.
71
+ */
72
+ defaultValue?: number;
69
73
  /**
70
74
  * The key of the selected value. If the component allows multiple selection, value must be an array.
71
75
  * If undefined, the component will be uncontrolled and the value will be managed internally by the component.
@@ -82,6 +86,10 @@ declare type MultipleSelectionToggle = CommonProps & {
82
86
  * If true, the toggle group will support multiple selection. In that case, value must be an array of numbers with the keys of the selected values.
83
87
  */
84
88
  multiple: true;
89
+ /**
90
+ * The array of keys with the initially selected values.
91
+ */
92
+ defaultValue?: number[];
85
93
  /**
86
94
  * An array with the keys of the selected values.
87
95
  * If undefined, the component will be uncontrolled and the value will be managed internally by the component.
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import TypographyPropsTypes from "./types";
3
+ declare function Typography({ as, display, fontFamily, fontSize, fontStyle, fontWeight, letterSpacing, lineHeight, textAlign, color, textDecoration, textOverflow, whiteSpace, children, }: TypographyPropsTypes): JSX.Element;
4
+ export default Typography;
@@ -0,0 +1,131 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ var _typeof = require("@babel/runtime/helpers/typeof");
6
+
7
+ Object.defineProperty(exports, "__esModule", {
8
+ value: true
9
+ });
10
+ exports["default"] = void 0;
11
+
12
+ var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
13
+
14
+ var _react = _interopRequireWildcard(require("react"));
15
+
16
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
17
+
18
+ var _templateObject;
19
+
20
+ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
21
+
22
+ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
23
+
24
+ var TypographyContext = /*#__PURE__*/_react["default"].createContext(null);
25
+
26
+ function Typography(_ref) {
27
+ var as = _ref.as,
28
+ display = _ref.display,
29
+ fontFamily = _ref.fontFamily,
30
+ fontSize = _ref.fontSize,
31
+ fontStyle = _ref.fontStyle,
32
+ fontWeight = _ref.fontWeight,
33
+ letterSpacing = _ref.letterSpacing,
34
+ lineHeight = _ref.lineHeight,
35
+ textAlign = _ref.textAlign,
36
+ color = _ref.color,
37
+ textDecoration = _ref.textDecoration,
38
+ textOverflow = _ref.textOverflow,
39
+ whiteSpace = _ref.whiteSpace,
40
+ children = _ref.children;
41
+ var componentContext = (0, _react.useContext)(TypographyContext);
42
+ var asValue = as !== null && as !== void 0 ? as : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.as) || "span";
43
+ var displayValue = display !== null && display !== void 0 ? display : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.display) || "inline";
44
+ var fontFamilyValue = fontFamily !== null && fontFamily !== void 0 ? fontFamily : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.fontFamily) || "Open Sans, sans-serif";
45
+ var fontSizeValue = fontSize !== null && fontSize !== void 0 ? fontSize : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.fontSize) || "1rem";
46
+ var fontStyleValue = fontStyle !== null && fontStyle !== void 0 ? fontStyle : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.fontStyle) || "normal";
47
+ var fontWeightValue = fontWeight !== null && fontWeight !== void 0 ? fontWeight : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.fontWeight) || "400";
48
+ var letterSpacingValue = letterSpacing !== null && letterSpacing !== void 0 ? letterSpacing : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.letterSpacing) || "0em";
49
+ var lineHeightValue = lineHeight !== null && lineHeight !== void 0 ? lineHeight : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.lineHeight) || "1.5em";
50
+ var textAlignValue = textAlign !== null && textAlign !== void 0 ? textAlign : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.textAlign) || "left";
51
+ var colorValue = color !== null && color !== void 0 ? color : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.color) || "#000000";
52
+ var textDecorationValue = textDecoration !== null && textDecoration !== void 0 ? textDecoration : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.textDecoration) || "none";
53
+ var textOverflowValue = textOverflow !== null && textOverflow !== void 0 ? textOverflow : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.textOverflow) || "unset";
54
+ var whiteSpaceValue = whiteSpace !== null && whiteSpace !== void 0 ? whiteSpace : (componentContext === null || componentContext === void 0 ? void 0 : componentContext.whiteSpace) || "normal";
55
+ return /*#__PURE__*/_react["default"].createElement(TypographyContext.Provider, {
56
+ value: {
57
+ as: asValue,
58
+ display: displayValue,
59
+ fontFamily: fontFamilyValue,
60
+ fontSize: fontSizeValue,
61
+ fontStyle: fontStyleValue,
62
+ fontWeight: fontWeightValue,
63
+ letterSpacing: letterSpacingValue,
64
+ lineHeight: lineHeightValue,
65
+ textAlign: textAlignValue,
66
+ color: colorValue,
67
+ textDecoration: textDecorationValue,
68
+ textOverflow: textOverflowValue,
69
+ whiteSpace: whiteSpaceValue
70
+ }
71
+ }, /*#__PURE__*/_react["default"].createElement(StyledTypography, {
72
+ as: asValue,
73
+ display: displayValue,
74
+ fontFamily: fontFamilyValue,
75
+ fontSize: fontSizeValue,
76
+ fontStyle: fontStyleValue,
77
+ fontWeight: fontWeightValue,
78
+ letterSpacing: letterSpacingValue,
79
+ lineHeight: lineHeightValue,
80
+ textAlign: textAlignValue,
81
+ color: colorValue,
82
+ textDecoration: textDecorationValue,
83
+ textOverflow: textOverflowValue,
84
+ whiteSpace: whiteSpaceValue
85
+ }, children));
86
+ }
87
+
88
+ var StyledTypography = _styledComponents["default"].span(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n margin: 0px;\n display: ", ";\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-style: ", ";\n font-weight: ", ";\n letter-spacing: ", ";\n text-align: ", ";\n line-height: ", ";\n text-decoration: ", ";\n text-overflow: ", ";\n white-space: ", ";\n overflow: ", ";\n"])), function (_ref2) {
89
+ var display = _ref2.display;
90
+ return display;
91
+ }, function (_ref3) {
92
+ var color = _ref3.color;
93
+ return color;
94
+ }, function (_ref4) {
95
+ var fontFamily = _ref4.fontFamily;
96
+ return fontFamily;
97
+ }, function (_ref5) {
98
+ var fontSize = _ref5.fontSize;
99
+ return fontSize;
100
+ }, function (_ref6) {
101
+ var fontStyle = _ref6.fontStyle;
102
+ return fontStyle;
103
+ }, function (_ref7) {
104
+ var fontWeight = _ref7.fontWeight;
105
+ return fontWeight;
106
+ }, function (_ref8) {
107
+ var letterSpacing = _ref8.letterSpacing;
108
+ return letterSpacing;
109
+ }, function (_ref9) {
110
+ var textAlign = _ref9.textAlign;
111
+ return textAlign;
112
+ }, function (_ref10) {
113
+ var lineHeight = _ref10.lineHeight;
114
+ return lineHeight;
115
+ }, function (_ref11) {
116
+ var textDecoration = _ref11.textDecoration;
117
+ return textDecoration;
118
+ }, function (_ref12) {
119
+ var textOverflow = _ref12.textOverflow;
120
+ return textOverflow;
121
+ }, function (_ref13) {
122
+ var whiteSpace = _ref13.whiteSpace,
123
+ textOverflow = _ref13.textOverflow;
124
+ return whiteSpace !== "normal" ? whiteSpace : textOverflow !== "unset" ? "nowrap" : "normal";
125
+ }, function (_ref14) {
126
+ var textOverflow = _ref14.textOverflow;
127
+ return textOverflow !== "unset" ? "hidden" : "visible";
128
+ });
129
+
130
+ var _default = Typography;
131
+ exports["default"] = _default;
@@ -0,0 +1,175 @@
1
+ import React from "react";
2
+ import Title from "../../.storybook/components/Title";
3
+ import DxcTypography from "./Typography";
4
+
5
+ export default {
6
+ title: "Typography",
7
+ component: DxcTypography,
8
+ };
9
+
10
+ export const Chromatic = () => (
11
+ <>
12
+ <Title title="Default Typography" theme="light" level={4} />
13
+ <DxcTypography>Default typography.</DxcTypography>
14
+ <Title title="Typography font sizes" theme="light" level={4} />
15
+ <DxcTypography display="block" fontSize="3.75rem">
16
+ 3.75rem.
17
+ </DxcTypography>
18
+ <DxcTypography display="block" fontSize="3rem">
19
+ 3rem.
20
+ </DxcTypography>
21
+ <DxcTypography display="block" fontSize="2rem">
22
+ 2rem.
23
+ </DxcTypography>
24
+ <DxcTypography display="block" fontSize="1.5rem">
25
+ 1.5rem.
26
+ </DxcTypography>
27
+ <DxcTypography display="block" fontSize="1.25rem">
28
+ 1.25rem.
29
+ </DxcTypography>
30
+ <DxcTypography display="block" fontSize="1rem">
31
+ 1rem.
32
+ </DxcTypography>
33
+ <DxcTypography display="block" fontSize="0.875rem">
34
+ 0.875rem.
35
+ </DxcTypography>
36
+ <DxcTypography display="block" fontSize="0.75rem">
37
+ 0.75rem.
38
+ </DxcTypography>
39
+ <Title title="Typography letter spacing" theme="light" level={4} />
40
+ <DxcTypography display="block" letterSpacing="-0.025em">
41
+ -0.025em.
42
+ </DxcTypography>
43
+ <DxcTypography display="block" letterSpacing="-0.0125em">
44
+ -0.0125em.
45
+ </DxcTypography>
46
+ <DxcTypography display="block" letterSpacing="0em">
47
+ 0em.
48
+ </DxcTypography>
49
+ <DxcTypography display="block" letterSpacing="0.025em">
50
+ 0.025em.
51
+ </DxcTypography>
52
+ <DxcTypography display="block" letterSpacing="0.05em">
53
+ 0.05em.
54
+ </DxcTypography>
55
+ <DxcTypography display="block" letterSpacing="0.1em">
56
+ 0.1em.
57
+ </DxcTypography>
58
+ <Title title="Typography line height" theme="light" level={4} />
59
+ <DxcTypography display="block" lineHeight="1em">
60
+ 1em.
61
+ </DxcTypography>
62
+ <DxcTypography display="block" lineHeight="1.25em">
63
+ 1.25em.
64
+ </DxcTypography>
65
+ <DxcTypography display="block" lineHeight="1.365em">
66
+ 1.365em.
67
+ </DxcTypography>
68
+ <DxcTypography display="block" lineHeight="1.5em">
69
+ 1.5em.
70
+ </DxcTypography>
71
+ <DxcTypography display="block" lineHeight="1.715em">
72
+ 1.715em.
73
+ </DxcTypography>
74
+ <DxcTypography display="block" lineHeight="2em">
75
+ 2em.
76
+ </DxcTypography>
77
+ <Title title="Typography font weight" theme="light" level={4} />
78
+ <DxcTypography display="block" fontWeight="300">
79
+ 300.
80
+ </DxcTypography>
81
+ <DxcTypography display="block" fontWeight="400">
82
+ 400.
83
+ </DxcTypography>
84
+ <DxcTypography display="block" fontWeight="600">
85
+ 600.
86
+ </DxcTypography>
87
+ <DxcTypography display="block" fontWeight="700">
88
+ 700.
89
+ </DxcTypography>
90
+ <Title title="Typography decoration" theme="light" level={4} />
91
+ <DxcTypography display="block" textDecoration="underline">
92
+ Underline.
93
+ </DxcTypography>
94
+ <DxcTypography display="block" textDecoration="line-through">
95
+ Line-through.
96
+ </DxcTypography>
97
+ <Title title="Typography font family" theme="light" level={4} />
98
+ <DxcTypography display="block" fontFamily="Open Sans, sans-serif">
99
+ Open Sans, sans-serif.
100
+ </DxcTypography>
101
+ <DxcTypography display="block" fontFamily="Source Code Pro, monospace">
102
+ Source Code Pro, monospace.
103
+ </DxcTypography>
104
+ <Title title="Typography font style" theme="light" level={4} />
105
+ <DxcTypography display="block" fontStyle="italic">
106
+ Italic.
107
+ </DxcTypography>
108
+ <DxcTypography display="block" fontStyle="normal">
109
+ Normal.
110
+ </DxcTypography>
111
+ <Title title="Typography align" theme="light" level={4} />
112
+ <DxcTypography display="block" textAlign="left">
113
+ Left.
114
+ </DxcTypography>
115
+ <DxcTypography display="block" textAlign="center">
116
+ Center.
117
+ </DxcTypography>
118
+ <DxcTypography display="block" textAlign="right">
119
+ Right.
120
+ </DxcTypography>
121
+ <Title title="Typography whitespace" theme="light" level={4} />
122
+ <div style={{ margin: "50px", border: "1px solid red", width: "125px" }}>
123
+ <DxcTypography whiteSpace="normal" fontSize="2rem">
124
+ {" "} Normal: A bunch of words you see.
125
+ </DxcTypography>
126
+ </div>
127
+ <div style={{ margin: "50px", border: "1px solid red", width: "125px" }}>
128
+ <DxcTypography whiteSpace="nowrap" fontSize="2rem">
129
+ {" "}No-wrap: A bunch of words you see.
130
+ </DxcTypography>
131
+ </div>
132
+ <div style={{ margin: "50px", border: "1px solid red", width: "125px" }}>
133
+ <DxcTypography whiteSpace="pre" fontSize="2rem">
134
+ {" "} pre: A bunch of words you see.
135
+ </DxcTypography>
136
+ </div>
137
+ <div style={{ margin: "50px", border: "1px solid red", width: "125px" }}>
138
+ <DxcTypography whiteSpace="pre-line" fontSize="2rem">
139
+ {" "}pre-line: A bunch of words you see.
140
+ </DxcTypography>
141
+ </div>
142
+ <div style={{ margin: "50px", border: "1px solid red", width: "125px" }}>
143
+ <DxcTypography whiteSpace="pre-wrap" fontSize="2rem">
144
+ {" "} pre-wrap: A bunch of words you see.
145
+ </DxcTypography>
146
+ </div>
147
+
148
+ <Title title="Typography display" theme="light" level={4} />
149
+ <DxcTypography display="block" textAlign="left">
150
+ Display Block.
151
+ <DxcTypography>A different text.</DxcTypography>
152
+ </DxcTypography>
153
+ <DxcTypography display="inline" textAlign="left">
154
+ Display Inline.
155
+ <DxcTypography>A different text.</DxcTypography>
156
+ </DxcTypography>
157
+
158
+ <Title title="Typography text-overflow" theme="light" level={4} />
159
+ <div style={{ width: "75px" }}>
160
+ <DxcTypography display="block" textOverflow="clip">
161
+ Overflow clip.
162
+ </DxcTypography>
163
+ </div>
164
+ <div style={{ width: "75px" }}>
165
+ <DxcTypography display="block" textOverflow="ellipsis">
166
+ Overflow ellipsis.
167
+ </DxcTypography>
168
+ </div>
169
+ <div style={{ width: "75px" }}>
170
+ <DxcTypography display="block" textOverflow="unset">
171
+ Overflow unset.
172
+ </DxcTypography>
173
+ </div>
174
+ </>
175
+ );
@@ -0,0 +1,18 @@
1
+ /// <reference types="react" />
2
+ declare type Props = {
3
+ as?: keyof HTMLElementTagNameMap;
4
+ display?: "inline" | "block";
5
+ fontFamily?: "Open Sans, sans-serif" | "Source Code Pro, monospace";
6
+ fontSize?: "0.75rem" | "0.875rem" | "1rem" | "1.25rem" | "1.5rem" | "2rem" | "3rem" | "3.75rem";
7
+ fontStyle?: "italic" | "normal";
8
+ fontWeight?: "300" | "400" | "600" | "700";
9
+ letterSpacing?: "-0.025em" | "-0.0125em" | "0em" | "0.025em" | "0.05em" | "0.1em";
10
+ lineHeight?: "1em" | "1.25em" | "1.365em" | "1.5em" | "1.715em" | "2em";
11
+ textAlign?: "left" | "center" | "right";
12
+ color?: string;
13
+ textDecoration?: "none" | "underline" | "line-through";
14
+ textOverflow?: "clip" | "ellipsis" | "unset";
15
+ whiteSpace?: "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap";
16
+ children: React.ReactNode;
17
+ };
18
+ export default Props;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -0,0 +1,16 @@
1
+ declare type Props = {
2
+ as?: keyof HTMLElementTagNameMap;
3
+ display?: "inline" | "block";
4
+ fontFamily?: "Open Sans, sans-serif" | "Source Code Pro, monospace";
5
+ fontSize?: "0.75rem" | "0.875rem" | "1rem" | "1.25rem" | "1.5rem" | "2rem" | "3rem" | "3.75rem";
6
+ fontStyle?: "italic" | "normal";
7
+ fontWeight?: "300" | "400" | "600" | "700";
8
+ letterSpacing?: "-0.025em" | "-0.0125em" | "0em" | "0.025em" | "0.05em" | "0.1em";
9
+ lineHeight?: "1em" | "1.25em" | "1.365em" | "1.5em" | "1.715em" | "2em";
10
+ textAlign?: "left" | "center" | "right";
11
+ color?: string;
12
+ textDecoration?: "none" | "underline" | "line-through";
13
+ textOverflow?: "clip" | "ellipsis" | "unset";
14
+ whiteSpace?: "normal" | "nowrap" | "pre" | "pre-line" | "pre-wrap";
15
+ };
16
+ export default Props;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
package/useTheme.js CHANGED
@@ -11,10 +11,10 @@ var _react = require("react");
11
11
 
12
12
  var _variables = require("./common/variables.js");
13
13
 
14
- var _ThemeContext = _interopRequireDefault(require("./ThemeContext"));
14
+ var _HalstackContext = _interopRequireDefault(require("./HalstackContext"));
15
15
 
16
16
  var useTheme = function useTheme() {
17
- var colorsTheme = (0, _react.useContext)(_ThemeContext["default"]);
17
+ var colorsTheme = (0, _react.useContext)(_HalstackContext["default"]);
18
18
  return colorsTheme || _variables.componentTokens;
19
19
  };
20
20
 
@@ -0,0 +1,2 @@
1
+ declare const useTranslatedLabels: () => any;
2
+ export default useTranslatedLabels;
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+
8
+ var _react = require("react");
9
+
10
+ var _variables = require("./common/variables");
11
+
12
+ var _HalstackContext = require("./HalstackContext");
13
+
14
+ var useTranslatedLabels = function useTranslatedLabels() {
15
+ var labels = (0, _react.useContext)(_HalstackContext.HalstackLanguageContext);
16
+ return labels || _variables.defaultTranslatedComponentLabels;
17
+ };
18
+
19
+ var _default = useTranslatedLabels;
20
+ exports["default"] = _default;
@@ -1,4 +1,4 @@
1
1
  /// <reference types="react" />
2
2
  import WizardPropsType from "./types";
3
- declare const DxcWizard: ({ mode, currentStep, onStepClick, steps, margin, tabIndex, }: WizardPropsType) => JSX.Element;
3
+ declare const DxcWizard: ({ mode, defaultCurrentStep, currentStep, onStepClick, steps, margin, tabIndex, }: WizardPropsType) => JSX.Element;
4
4
  export default DxcWizard;