@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
@@ -0,0 +1,225 @@
1
+ import React from "react";
2
+ import DxcAccordionGroup from "./AccordionGroup";
3
+ import Title from "../../.storybook/components/Title";
4
+ import ExampleContainer from "../../.storybook/components/ExampleContainer";
5
+
6
+ export default {
7
+ title: "Accordion group",
8
+ component: DxcAccordionGroup,
9
+ };
10
+
11
+ export const Chromatic = () => (
12
+ <>
13
+ <Title title="States" theme="light" level={2} />
14
+ <ExampleContainer>
15
+ <Title title="Default" theme="light" level={4} />
16
+ <DxcAccordionGroup>
17
+ <DxcAccordionGroup.Accordion label="Accordion1" assistiveText="Assistive text" padding="medium">
18
+ <div>
19
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit
20
+ leo lobortis eget.
21
+ </div>
22
+ </DxcAccordionGroup.Accordion>
23
+ <DxcAccordionGroup.Accordion label="Accordion2" assistiveText="Assistive text" padding="medium">
24
+ <div>
25
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit
26
+ leo lobortis eget.
27
+ </div>
28
+ </DxcAccordionGroup.Accordion>
29
+ <DxcAccordionGroup.Accordion label="Accordion2" assistiveText="Assistive text" padding="medium">
30
+ <div>
31
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit
32
+ leo lobortis eget.
33
+ </div>
34
+ </DxcAccordionGroup.Accordion>
35
+ </DxcAccordionGroup>
36
+ </ExampleContainer>
37
+ <ExampleContainer>
38
+ <Title title="Expanded" theme="light" level={4} />
39
+ <DxcAccordionGroup indexActive={1}>
40
+ <DxcAccordionGroup.Accordion label="Accordion1" padding="medium">
41
+ <div>
42
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
43
+ dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex
44
+ ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
45
+ nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
46
+ anim id est laborum.
47
+ </div>
48
+ </DxcAccordionGroup.Accordion>
49
+ <DxcAccordionGroup.Accordion label="Accordion2" padding="medium">
50
+ <div>
51
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit
52
+ leo lobortis eget.
53
+ </div>
54
+ </DxcAccordionGroup.Accordion>
55
+ <DxcAccordionGroup.Accordion label="Accordion2" padding="medium">
56
+ <div>
57
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit
58
+ leo lobortis eget.
59
+ </div>
60
+ </DxcAccordionGroup.Accordion>
61
+ </DxcAccordionGroup>
62
+ </ExampleContainer>
63
+ <ExampleContainer>
64
+ <Title title="Disabled" theme="light" level={4} />
65
+ <DxcAccordionGroup disabled>
66
+ <DxcAccordionGroup.Accordion label="Accordion1" padding="medium">
67
+ <div>
68
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
69
+ dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex
70
+ ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
71
+ nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
72
+ anim id est laborum.
73
+ </div>
74
+ </DxcAccordionGroup.Accordion>
75
+ <DxcAccordionGroup.Accordion label="Accordion2" padding="medium">
76
+ <div>
77
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit
78
+ leo lobortis eget.
79
+ </div>
80
+ </DxcAccordionGroup.Accordion>
81
+ </DxcAccordionGroup>
82
+ </ExampleContainer>
83
+ <Title title="Margins" theme="light" level={2} />
84
+ <ExampleContainer>
85
+ <Title title="Xxsmall" theme="light" level={4} />
86
+ <DxcAccordionGroup margin="xxsmall">
87
+ <DxcAccordionGroup.Accordion label="Accordion1" padding="medium">
88
+ <div>
89
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
90
+ dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex
91
+ ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
92
+ nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
93
+ anim id est laborum.
94
+ </div>
95
+ </DxcAccordionGroup.Accordion>
96
+ <DxcAccordionGroup.Accordion label="Accordion2" padding="medium">
97
+ <div>
98
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit
99
+ leo lobortis eget.
100
+ </div>
101
+ </DxcAccordionGroup.Accordion>
102
+ </DxcAccordionGroup>
103
+ </ExampleContainer>
104
+ <ExampleContainer>
105
+ <Title title="Xsmall" theme="light" level={4} />
106
+ <DxcAccordionGroup margin="xsmall">
107
+ <DxcAccordionGroup.Accordion label="Accordion1" padding="medium">
108
+ <div>
109
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
110
+ dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex
111
+ ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
112
+ nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
113
+ anim id est laborum.
114
+ </div>
115
+ </DxcAccordionGroup.Accordion>
116
+ <DxcAccordionGroup.Accordion label="Accordion2" padding="medium">
117
+ <div>
118
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit
119
+ leo lobortis eget.
120
+ </div>
121
+ </DxcAccordionGroup.Accordion>
122
+ </DxcAccordionGroup>
123
+ </ExampleContainer>
124
+ <ExampleContainer>
125
+ <Title title="Small" theme="light" level={4} />
126
+ <DxcAccordionGroup margin="small">
127
+ <DxcAccordionGroup.Accordion label="Accordion1" padding="medium">
128
+ <div>
129
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
130
+ dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex
131
+ ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
132
+ nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
133
+ anim id est laborum.
134
+ </div>
135
+ </DxcAccordionGroup.Accordion>
136
+ <DxcAccordionGroup.Accordion label="Accordion2" padding="medium">
137
+ <div>
138
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit
139
+ leo lobortis eget.
140
+ </div>
141
+ </DxcAccordionGroup.Accordion>
142
+ </DxcAccordionGroup>
143
+ </ExampleContainer>
144
+ <ExampleContainer>
145
+ <Title title="Medium" theme="light" level={4} />
146
+ <DxcAccordionGroup margin="medium">
147
+ <DxcAccordionGroup.Accordion label="Accordion1" padding="medium">
148
+ <div>
149
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
150
+ dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex
151
+ ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
152
+ nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
153
+ anim id est laborum.
154
+ </div>
155
+ </DxcAccordionGroup.Accordion>
156
+ <DxcAccordionGroup.Accordion label="Accordion2" padding="medium">
157
+ <div>
158
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit
159
+ leo lobortis eget.
160
+ </div>
161
+ </DxcAccordionGroup.Accordion>
162
+ </DxcAccordionGroup>
163
+ </ExampleContainer>
164
+ <ExampleContainer>
165
+ <Title title="Large" theme="light" level={4} />
166
+ <DxcAccordionGroup margin="large">
167
+ <DxcAccordionGroup.Accordion label="Accordion1" padding="medium">
168
+ <div>
169
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
170
+ dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex
171
+ ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
172
+ nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
173
+ anim id est laborum.
174
+ </div>
175
+ </DxcAccordionGroup.Accordion>
176
+ <DxcAccordionGroup.Accordion label="Accordion2" padding="medium">
177
+ <div>
178
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit
179
+ leo lobortis eget.
180
+ </div>
181
+ </DxcAccordionGroup.Accordion>
182
+ </DxcAccordionGroup>
183
+ </ExampleContainer>
184
+ <ExampleContainer>
185
+ <Title title="Xlarge" theme="light" level={4} />
186
+ <DxcAccordionGroup margin="xlarge">
187
+ <DxcAccordionGroup.Accordion label="Accordion1" padding="medium">
188
+ <div>
189
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
190
+ dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex
191
+ ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
192
+ nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
193
+ anim id est laborum.
194
+ </div>
195
+ </DxcAccordionGroup.Accordion>
196
+ <DxcAccordionGroup.Accordion label="Accordion2" padding="medium">
197
+ <div>
198
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit
199
+ leo lobortis eget.
200
+ </div>
201
+ </DxcAccordionGroup.Accordion>
202
+ </DxcAccordionGroup>
203
+ </ExampleContainer>
204
+ <ExampleContainer>
205
+ <Title title="Xxlarge" theme="light" level={4} />
206
+ <DxcAccordionGroup margin="xxlarge">
207
+ <DxcAccordionGroup.Accordion label="Accordion1" padding="medium">
208
+ <div>
209
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
210
+ dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex
211
+ ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat
212
+ nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit
213
+ anim id est laborum.
214
+ </div>
215
+ </DxcAccordionGroup.Accordion>
216
+ <DxcAccordionGroup.Accordion label="Accordion2" padding="medium">
217
+ <div>
218
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit
219
+ leo lobortis eget.
220
+ </div>
221
+ </DxcAccordionGroup.Accordion>
222
+ </DxcAccordionGroup>
223
+ </ExampleContainer>
224
+ </>
225
+ );
@@ -0,0 +1,72 @@
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 Padding = {
10
+ top?: Space;
11
+ bottom?: Space;
12
+ left?: Space;
13
+ right?: Space;
14
+ };
15
+ declare type SVG = React.SVGProps<SVGSVGElement> | React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
16
+ export declare type AccordionPropsType = {
17
+ /**
18
+ * The panel label.
19
+ */
20
+ label?: string;
21
+ /**
22
+ * Element used as the icon that will be placed next to panel label.
23
+ */
24
+ icon?: SVG;
25
+ /**
26
+ * @deprecated URL of the icon that will be placed next to panel label.
27
+ */
28
+ iconSrc?: string;
29
+ /**
30
+ * Assistive text to be placed on the right side of the panel.
31
+ */
32
+ assistiveText?: string;
33
+ /**
34
+ * If true, the component will be disabled.
35
+ */
36
+ disabled?: boolean;
37
+ /**
38
+ * Size of the padding to be applied to the custom area ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
39
+ * You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different padding sizes.
40
+ */
41
+ padding?: Space | Padding;
42
+ /**
43
+ * The expanded panel of the accordion. This area can be used to render
44
+ * custom content.
45
+ */
46
+ children: React.ReactNode;
47
+ };
48
+ declare type Props = {
49
+ /**
50
+ * The index of the active accordion. If undefined, the component will be uncontrolled and the active accordion will be managed internally by the component.
51
+ * If null, the component will be controlled and all accordions will be closed.
52
+ */
53
+ indexActive?: number;
54
+ /**
55
+ * If true, the component will be disabled.
56
+ */
57
+ disabled?: boolean;
58
+ /**
59
+ * This function will be called when the user clicks on an accordion. The index of the clicked accordion will be passed as a parameter.
60
+ */
61
+ onActiveChange?: (indexActive: number) => void;
62
+ /**
63
+ * Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
64
+ * You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
65
+ */
66
+ margin?: Space | Margin;
67
+ /**
68
+ * Customized accordion(s) that are allowed inside an Accordion Group.
69
+ */
70
+ children: React.ReactElement<AccordionPropsType>[] | React.ReactElement<AccordionPropsType>;
71
+ };
72
+ export default Props;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
package/alert/Alert.js CHANGED
@@ -21,9 +21,9 @@ var _variables = require("../common/variables.js");
21
21
 
22
22
  var _utils = require("../common/utils.js");
23
23
 
24
- var _useTheme = _interopRequireDefault(require("../useTheme.js"));
24
+ var _useTheme = _interopRequireDefault(require("../useTheme"));
25
25
 
26
- var _BackgroundColorContext = require("../BackgroundColorContext.js");
26
+ var _BackgroundColorContext = require("../BackgroundColorContext");
27
27
 
28
28
  var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10;
29
29
 
@@ -0,0 +1,170 @@
1
+ import React from "react";
2
+ import DxcAlert from "./Alert";
3
+ import Title from "../../.storybook/components/Title";
4
+ import ExampleContainer from "../../.storybook/components/ExampleContainer";
5
+
6
+ export default {
7
+ title: "Alert",
8
+ component: DxcAlert,
9
+ };
10
+
11
+ export const Chromatic = () => (
12
+ <>
13
+ <ExampleContainer>
14
+ <Title title="Info" theme="light" level={4} />
15
+ <DxcAlert inlineText="Info type alert with inline text." />
16
+ </ExampleContainer>
17
+ <ExampleContainer>
18
+ <Title title="Confirm" theme="light" level={4} />
19
+ <DxcAlert type="confirm" inlineText="Confirm type alert with inline text." />
20
+ </ExampleContainer>
21
+ <ExampleContainer>
22
+ <Title title="Warning" theme="light" level={4} />
23
+ <DxcAlert type="warning" inlineText="Warning type alert with inline text." />
24
+ </ExampleContainer>
25
+ <ExampleContainer>
26
+ <Title title="Error" theme="light" level={4} />
27
+ <DxcAlert type="error" inlineText="Error type alert with inline text." />
28
+ </ExampleContainer>
29
+ <ExampleContainer>
30
+ <Title title="With close button" theme="light" level={4} />
31
+ <DxcAlert inlineText="Info type alert with inline text and close button." onClose={() => {}} />
32
+ </ExampleContainer>
33
+ <ExampleContainer pseudoState="pseudo-hover">
34
+ <Title title="With hovered close button" theme="light" level={4} />
35
+ <DxcAlert inlineText="Info type alert with inline text and close button." onClose={() => {}} />
36
+ </ExampleContainer>
37
+ <ExampleContainer pseudoState="pseudo-focus">
38
+ <Title title="With focused close button" theme="light" level={4} />
39
+ <DxcAlert inlineText="Info type alert with inline text and close button." onClose={() => {}} />
40
+ </ExampleContainer>
41
+ <ExampleContainer pseudoState="pseudo-active">
42
+ <Title title="With actived close button" theme="light" level={4} />
43
+ <DxcAlert inlineText="Info type alert with inline text and close button." onClose={() => {}} />
44
+ </ExampleContainer>
45
+ <ExampleContainer>
46
+ <Title title="With children" theme="light" level={4} />
47
+ <DxcAlert>
48
+ <div>
49
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit leo
50
+ lobortis eget.
51
+ </div>
52
+ </DxcAlert>
53
+ </ExampleContainer>
54
+ <ExampleContainer>
55
+ <Title title="With inline text and children" theme="light" level={4} />
56
+ <DxcAlert inlineText="Info type alert with inline text.">
57
+ <div>
58
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit leo
59
+ lobortis eget.
60
+ </div>
61
+ </DxcAlert>
62
+ </ExampleContainer>
63
+ <Title title="Margins" theme="light" level={2} />
64
+ <ExampleContainer>
65
+ <Title title="Xxsmall" theme="light" level={4} />
66
+ <DxcAlert margin="xxsmall" inlineText="Info type alert with inline text and xxsmall margin." />
67
+ </ExampleContainer>
68
+ <ExampleContainer>
69
+ <Title title="Xsmall" theme="light" level={4} />
70
+ <DxcAlert margin="xsmall" inlineText="Info type alert with inline text and xsmall margin." />
71
+ </ExampleContainer>
72
+ <ExampleContainer>
73
+ <Title title="Small" theme="light" level={4} />
74
+ <DxcAlert margin="small" inlineText="Info type alert with inline text and small margin." />
75
+ </ExampleContainer>
76
+ <ExampleContainer>
77
+ <Title title="Medium" theme="light" level={4} />
78
+ <DxcAlert margin="medium" inlineText="Info type alert with inline text and medium margin." />
79
+ </ExampleContainer>
80
+ <ExampleContainer>
81
+ <Title title="Large" theme="light" level={4} />
82
+ <DxcAlert margin="large" inlineText="Info type alert with inline text and large margin." />
83
+ </ExampleContainer>
84
+ <ExampleContainer>
85
+ <Title title="Xlarge" theme="light" level={4} />
86
+ <DxcAlert margin="xlarge" inlineText="Info type alert with inline text and xlarge margin." />
87
+ </ExampleContainer>
88
+ <ExampleContainer>
89
+ <Title title="Xxlarge" theme="light" level={4} />
90
+ <DxcAlert margin="xxlarge" inlineText="Info type alert with inline text and xxlarge margin." />
91
+ </ExampleContainer>
92
+ <Title title="Sizes" theme="light" level={2} />
93
+ <ExampleContainer>
94
+ <Title title="FitContent" theme="light" level={4} />
95
+ <DxcAlert
96
+ size="fitContent"
97
+ inlineText="Info type alert with inline text, children, close button and fitContent size."
98
+ onClose={() => {}}
99
+ >
100
+ <div>
101
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit leo
102
+ lobortis eget.
103
+ </div>
104
+ </DxcAlert>
105
+ </ExampleContainer>
106
+ <ExampleContainer>
107
+ <Title title="Small" theme="light" level={4} />
108
+ <DxcAlert
109
+ size="small"
110
+ inlineText="Info type alert with inline text, children, close button and small size."
111
+ onClose={() => {}}
112
+ >
113
+ <div>
114
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit leo
115
+ lobortis eget.
116
+ </div>
117
+ </DxcAlert>
118
+ </ExampleContainer>
119
+ <ExampleContainer>
120
+ <Title title="Medium" theme="light" level={4} />
121
+ <DxcAlert
122
+ size="medium"
123
+ inlineText="Info type alert with inline text, children, close button and medium size."
124
+ onClose={() => {}}
125
+ >
126
+ <div>
127
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit leo
128
+ lobortis eget.
129
+ </div>
130
+ </DxcAlert>
131
+ </ExampleContainer>
132
+ <ExampleContainer>
133
+ <Title title="Large" theme="light" level={4} />
134
+ <DxcAlert
135
+ size="large"
136
+ inlineText="Info type alert with inline text, children, close button and large size."
137
+ onClose={() => {}}
138
+ >
139
+ <div>
140
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit leo
141
+ lobortis eget.
142
+ </div>
143
+ </DxcAlert>
144
+ </ExampleContainer>
145
+ <ExampleContainer>
146
+ <Title title="FillParent" theme="light" level={4} />
147
+ <DxcAlert
148
+ size="fillParent"
149
+ inlineText="Info type alert with inline text, children, close button and fillParent size."
150
+ onClose={() => {}}
151
+ >
152
+ <div>
153
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit leo
154
+ lobortis eget.
155
+ </div>
156
+ </DxcAlert>
157
+ </ExampleContainer>
158
+ </>
159
+ );
160
+
161
+ export const ModalAlert = () => (
162
+ <ExampleContainer>
163
+ <DxcAlert inlineText="Modal alert." mode="modal" onClose={() => {}}>
164
+ <div>
165
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse malesuada lacus ex, sit amet blandit leo
166
+ lobortis eget.
167
+ </div>
168
+ </DxcAlert>
169
+ </ExampleContainer>
170
+ );
package/alert/types.d.ts CHANGED
@@ -38,7 +38,7 @@ declare type Props = {
38
38
  */
39
39
  margin?: Space | Margin;
40
40
  /**
41
- * Size of the component ('small' | 'medium' | 'large' | 'fillParent' | 'fitContent').
41
+ * Size of the component.
42
42
  */
43
43
  size?: "small" | "medium" | "large" | "fillParent" | "fitContent";
44
44
  /**
package/badge/Badge.js CHANGED
@@ -15,7 +15,7 @@ var _react = _interopRequireDefault(require("react"));
15
15
 
16
16
  var _styledComponents = _interopRequireWildcard(require("styled-components"));
17
17
 
18
- var _useTheme = _interopRequireDefault(require("../useTheme.js"));
18
+ var _useTheme = _interopRequireDefault(require("../useTheme"));
19
19
 
20
20
  var _templateObject;
21
21
 
package/box/Box.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import BoxPropsType from "./types";
3
+ declare const DxcBox: ({ shadowDepth, display, children, margin, padding, size, }: BoxPropsType) => JSX.Element;
4
+ export default DxcBox;
package/box/Box.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"));
@@ -19,15 +17,13 @@ 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
- var _BackgroundColorContext = require("../BackgroundColorContext.js");
26
+ var _BackgroundColorContext = require("../BackgroundColorContext");
31
27
 
32
28
  var _templateObject;
33
29
 
@@ -36,12 +32,13 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
36
32
  function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof3(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
37
33
 
38
34
  var DxcBox = function DxcBox(_ref) {
39
- var shadowDepth = _ref.shadowDepth,
40
- margin = _ref.margin,
41
- padding = _ref.padding,
35
+ var _ref$shadowDepth = _ref.shadowDepth,
36
+ shadowDepth = _ref$shadowDepth === void 0 ? 2 : _ref$shadowDepth,
42
37
  _ref$display = _ref.display,
43
38
  display = _ref$display === void 0 ? "inline-flex" : _ref$display,
44
39
  children = _ref.children,
40
+ margin = _ref.margin,
41
+ padding = _ref.padding,
45
42
  _ref$size = _ref.size,
46
43
  size = _ref$size === void 0 ? "fitContent" : _ref$size;
47
44
  var colorsTheme = (0, _useTheme["default"])();
@@ -125,28 +122,5 @@ var StyledDxcBox = _styledComponents["default"].div(_templateObject || (_templat
125
122
  return padding && padding.left ? _variables.spaces[padding.left] : "";
126
123
  });
127
124
 
128
- DxcBox.propTypes = {
129
- size: _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(sizes))),
130
- display: _propTypes["default"].string,
131
- shadowDepth: _propTypes["default"].oneOf([0, 1, 2]),
132
- margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
133
- top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
134
- bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
135
- left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
136
- right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
137
- }), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
138
- padding: _propTypes["default"].oneOfType([_propTypes["default"].shape({
139
- top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
140
- bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
141
- left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
142
- right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
143
- }), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))])
144
- };
145
- DxcBox.defaultProps = {
146
- shadowDepth: 2,
147
- display: "inline-flex",
148
- margin: null,
149
- padding: null
150
- };
151
125
  var _default = DxcBox;
152
126
  exports["default"] = _default;