@dxc-technology/halstack-react 0.0.0-081eeee → 0.0.0-0af2013

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 (448) hide show
  1. package/BackgroundColorContext.d.ts +10 -0
  2. package/BackgroundColorContext.js +47 -0
  3. package/HalstackContext.d.ts +10 -0
  4. package/HalstackContext.js +243 -0
  5. package/accordion/Accordion.d.ts +4 -0
  6. package/accordion/Accordion.js +226 -0
  7. package/accordion/Accordion.stories.tsx +307 -0
  8. package/accordion/Accordion.test.js +72 -0
  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 +168 -0
  13. package/accordion-group/AccordionGroup.stories.tsx +225 -0
  14. package/accordion-group/AccordionGroup.test.js +151 -0
  15. package/accordion-group/types.d.ts +72 -0
  16. package/accordion-group/types.js +5 -0
  17. package/alert/Alert.d.ts +4 -0
  18. package/{dist/alert → alert}/Alert.js +40 -153
  19. package/alert/Alert.stories.tsx +170 -0
  20. package/alert/Alert.test.js +92 -0
  21. package/alert/types.d.ts +49 -0
  22. package/alert/types.js +5 -0
  23. package/badge/Badge.d.ts +4 -0
  24. package/badge/Badge.js +59 -0
  25. package/badge/types.d.ts +4 -0
  26. package/badge/types.js +5 -0
  27. package/bleed/Bleed.d.ts +3 -0
  28. package/bleed/Bleed.js +84 -0
  29. package/bleed/Bleed.stories.tsx +342 -0
  30. package/bleed/types.d.ts +37 -0
  31. package/bleed/types.js +5 -0
  32. package/box/Box.d.ts +4 -0
  33. package/{dist/box → box}/Box.js +15 -45
  34. package/box/Box.stories.tsx +132 -0
  35. package/box/Box.test.js +18 -0
  36. package/box/types.d.ts +43 -0
  37. package/box/types.js +5 -0
  38. package/button/Button.d.ts +4 -0
  39. package/{dist/button → button}/Button.js +34 -98
  40. package/button/Button.stories.tsx +274 -0
  41. package/button/Button.test.js +35 -0
  42. package/button/types.d.ts +53 -0
  43. package/button/types.js +5 -0
  44. package/card/Card.d.ts +4 -0
  45. package/card/Card.js +163 -0
  46. package/card/Card.stories.tsx +201 -0
  47. package/card/Card.test.js +50 -0
  48. package/card/ice-cream.jpg +0 -0
  49. package/card/types.d.ts +67 -0
  50. package/card/types.js +5 -0
  51. package/checkbox/Checkbox.d.ts +4 -0
  52. package/{dist/checkbox → checkbox}/Checkbox.js +53 -99
  53. package/checkbox/Checkbox.stories.tsx +188 -0
  54. package/checkbox/Checkbox.test.js +78 -0
  55. package/checkbox/types.d.ts +64 -0
  56. package/checkbox/types.js +5 -0
  57. package/chip/Chip.d.ts +4 -0
  58. package/chip/Chip.js +161 -0
  59. package/chip/Chip.stories.tsx +119 -0
  60. package/chip/Chip.test.js +56 -0
  61. package/chip/types.d.ts +45 -0
  62. package/chip/types.js +5 -0
  63. package/{dist/common → common}/OpenSans.css +0 -0
  64. package/{dist/common → common}/RequiredComponent.js +3 -11
  65. package/{dist/common → common}/fonts/OpenSans-Bold.ttf +0 -0
  66. package/{dist/common → common}/fonts/OpenSans-BoldItalic.ttf +0 -0
  67. package/{dist/common → common}/fonts/OpenSans-ExtraBold.ttf +0 -0
  68. package/{dist/common → common}/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
  69. package/{dist/common → common}/fonts/OpenSans-Italic.ttf +0 -0
  70. package/{dist/common → common}/fonts/OpenSans-Light.ttf +0 -0
  71. package/{dist/common → common}/fonts/OpenSans-LightItalic.ttf +0 -0
  72. package/{dist/common → common}/fonts/OpenSans-Regular.ttf +0 -0
  73. package/{dist/common → common}/fonts/OpenSans-SemiBold.ttf +0 -0
  74. package/{dist/common → common}/fonts/OpenSans-SemiBoldItalic.ttf +0 -0
  75. package/{dist/common → common}/utils.js +0 -0
  76. package/{dist/common → common}/variables.js +153 -350
  77. package/date-input/DateInput.d.ts +4 -0
  78. package/date-input/DateInput.js +369 -0
  79. package/date-input/DateInput.stories.tsx +138 -0
  80. package/date-input/DateInput.test.js +479 -0
  81. package/date-input/types.d.ts +107 -0
  82. package/date-input/types.js +5 -0
  83. package/dialog/Dialog.d.ts +4 -0
  84. package/dialog/Dialog.js +138 -0
  85. package/dialog/Dialog.stories.tsx +212 -0
  86. package/dialog/Dialog.test.js +40 -0
  87. package/dialog/types.d.ts +43 -0
  88. package/dialog/types.js +5 -0
  89. package/dropdown/Dropdown.d.ts +4 -0
  90. package/{dist/dropdown → dropdown}/Dropdown.js +54 -207
  91. package/dropdown/Dropdown.stories.tsx +249 -0
  92. package/dropdown/Dropdown.test.js +189 -0
  93. package/dropdown/types.d.ts +80 -0
  94. package/dropdown/types.js +5 -0
  95. package/file-input/FileInput.d.ts +4 -0
  96. package/file-input/FileInput.js +590 -0
  97. package/file-input/FileInput.stories.tsx +507 -0
  98. package/file-input/FileInput.test.js +457 -0
  99. package/file-input/FileItem.d.ts +14 -0
  100. package/file-input/FileItem.js +184 -0
  101. package/file-input/types.d.ts +112 -0
  102. package/file-input/types.js +5 -0
  103. package/footer/Footer.d.ts +4 -0
  104. package/footer/Footer.js +183 -0
  105. package/footer/Footer.stories.tsx +130 -0
  106. package/footer/Footer.test.js +109 -0
  107. package/footer/Icons.d.ts +2 -0
  108. package/footer/Icons.js +77 -0
  109. package/footer/types.d.ts +65 -0
  110. package/footer/types.js +5 -0
  111. package/header/Header.d.ts +7 -0
  112. package/header/Header.js +300 -0
  113. package/header/Header.stories.tsx +172 -0
  114. package/header/Header.test.js +79 -0
  115. package/header/Icons.d.ts +2 -0
  116. package/header/Icons.js +34 -0
  117. package/header/types.d.ts +47 -0
  118. package/header/types.js +5 -0
  119. package/heading/Heading.d.ts +4 -0
  120. package/{dist/heading → heading}/Heading.js +31 -90
  121. package/heading/Heading.stories.tsx +54 -0
  122. package/heading/Heading.test.js +186 -0
  123. package/heading/types.d.ts +33 -0
  124. package/heading/types.js +5 -0
  125. package/inset/Inset.d.ts +3 -0
  126. package/inset/Inset.js +84 -0
  127. package/inset/Inset.stories.tsx +229 -0
  128. package/inset/types.d.ts +37 -0
  129. package/inset/types.js +5 -0
  130. package/layout/ApplicationLayout.d.ts +10 -0
  131. package/layout/ApplicationLayout.js +218 -0
  132. package/layout/ApplicationLayout.stories.tsx +171 -0
  133. package/layout/Icons.js +55 -0
  134. package/layout/types.d.ts +57 -0
  135. package/layout/types.js +5 -0
  136. package/link/Link.d.ts +4 -0
  137. package/link/Link.js +162 -0
  138. package/link/Link.stories.tsx +186 -0
  139. package/link/Link.test.js +83 -0
  140. package/link/types.d.ts +55 -0
  141. package/link/types.js +5 -0
  142. package/list/List.d.ts +4 -0
  143. package/list/List.js +47 -0
  144. package/list/List.stories.tsx +95 -0
  145. package/list/types.d.ts +7 -0
  146. package/list/types.js +5 -0
  147. package/main.d.ts +47 -0
  148. package/{dist/main.js → main.js} +123 -103
  149. package/number-input/NumberInput.d.ts +4 -0
  150. package/number-input/NumberInput.js +76 -0
  151. package/number-input/NumberInput.stories.tsx +115 -0
  152. package/number-input/NumberInput.test.js +506 -0
  153. package/number-input/NumberInputContext.d.ts +4 -0
  154. package/{dist/number-input → number-input}/NumberInputContext.js +5 -2
  155. package/number-input/numberInputContextTypes.d.ts +19 -0
  156. package/number-input/numberInputContextTypes.js +5 -0
  157. package/number-input/types.d.ts +124 -0
  158. package/number-input/types.js +5 -0
  159. package/package.json +38 -28
  160. package/paginator/Icons.js +66 -0
  161. package/paginator/Paginator.d.ts +4 -0
  162. package/paginator/Paginator.js +192 -0
  163. package/paginator/Paginator.stories.tsx +63 -0
  164. package/paginator/Paginator.test.js +266 -0
  165. package/paginator/types.d.ts +38 -0
  166. package/paginator/types.js +5 -0
  167. package/password-input/PasswordInput.d.ts +4 -0
  168. package/{dist/password-input → password-input}/PasswordInput.js +43 -78
  169. package/password-input/PasswordInput.stories.tsx +131 -0
  170. package/password-input/PasswordInput.test.js +181 -0
  171. package/password-input/types.d.ts +110 -0
  172. package/password-input/types.js +5 -0
  173. package/progress-bar/ProgressBar.d.ts +4 -0
  174. package/{dist/progress-bar → progress-bar}/ProgressBar.js +22 -94
  175. package/progress-bar/ProgressBar.stories.jsx +58 -0
  176. package/progress-bar/ProgressBar.test.js +65 -0
  177. package/progress-bar/types.d.ts +37 -0
  178. package/progress-bar/types.js +5 -0
  179. package/quick-nav/QuickNav.d.ts +4 -0
  180. package/quick-nav/QuickNav.js +64 -0
  181. package/quick-nav/QuickNav.stories.tsx +237 -0
  182. package/quick-nav/types.d.ts +21 -0
  183. package/quick-nav/types.js +5 -0
  184. package/radio/Radio.d.ts +4 -0
  185. package/{dist/radio → radio}/Radio.js +23 -59
  186. package/radio/Radio.stories.tsx +192 -0
  187. package/radio/Radio.test.js +71 -0
  188. package/radio/types.d.ts +54 -0
  189. package/radio/types.js +5 -0
  190. package/radio-group/Radio.d.ts +4 -0
  191. package/radio-group/Radio.js +141 -0
  192. package/radio-group/RadioGroup.d.ts +4 -0
  193. package/radio-group/RadioGroup.js +280 -0
  194. package/radio-group/RadioGroup.stories.tsx +100 -0
  195. package/radio-group/RadioGroup.test.js +695 -0
  196. package/radio-group/types.d.ts +114 -0
  197. package/radio-group/types.js +5 -0
  198. package/resultsetTable/ResultsetTable.d.ts +4 -0
  199. package/{dist/resultsetTable → resultsetTable}/ResultsetTable.js +43 -147
  200. package/resultsetTable/ResultsetTable.stories.tsx +275 -0
  201. package/resultsetTable/ResultsetTable.test.js +306 -0
  202. package/resultsetTable/types.d.ts +67 -0
  203. package/resultsetTable/types.js +5 -0
  204. package/row/Row.d.ts +3 -0
  205. package/row/Row.js +127 -0
  206. package/row/Row.stories.tsx +237 -0
  207. package/row/types.d.ts +28 -0
  208. package/row/types.js +5 -0
  209. package/select/Icons.d.ts +10 -0
  210. package/select/Icons.js +93 -0
  211. package/select/Listbox.d.ts +4 -0
  212. package/select/Listbox.js +148 -0
  213. package/select/Option.d.ts +4 -0
  214. package/select/Option.js +110 -0
  215. package/select/Select.d.ts +4 -0
  216. package/select/Select.js +655 -0
  217. package/select/Select.stories.tsx +582 -0
  218. package/select/Select.test.js +2057 -0
  219. package/select/types.d.ts +213 -0
  220. package/select/types.js +5 -0
  221. package/sidenav/Sidenav.d.ts +9 -0
  222. package/{dist/sidenav → sidenav}/Sidenav.js +21 -64
  223. package/sidenav/Sidenav.stories.tsx +182 -0
  224. package/sidenav/Sidenav.test.js +56 -0
  225. package/sidenav/types.d.ts +50 -0
  226. package/sidenav/types.js +5 -0
  227. package/slider/Slider.d.ts +4 -0
  228. package/{dist/slider → slider}/Slider.js +80 -156
  229. package/slider/Slider.stories.tsx +177 -0
  230. package/slider/Slider.test.js +150 -0
  231. package/slider/types.d.ts +82 -0
  232. package/slider/types.js +5 -0
  233. package/spinner/Spinner.d.ts +4 -0
  234. package/spinner/Spinner.js +250 -0
  235. package/spinner/Spinner.stories.jsx +103 -0
  236. package/spinner/Spinner.test.js +64 -0
  237. package/spinner/types.d.ts +32 -0
  238. package/spinner/types.js +5 -0
  239. package/stack/Stack.d.ts +3 -0
  240. package/stack/Stack.js +97 -0
  241. package/stack/Stack.stories.tsx +164 -0
  242. package/stack/types.d.ts +24 -0
  243. package/stack/types.js +5 -0
  244. package/switch/Switch.d.ts +4 -0
  245. package/switch/Switch.js +192 -0
  246. package/switch/Switch.stories.tsx +160 -0
  247. package/switch/Switch.test.js +98 -0
  248. package/switch/types.d.ts +62 -0
  249. package/switch/types.js +5 -0
  250. package/table/Table.d.ts +4 -0
  251. package/{dist/table → table}/Table.js +12 -26
  252. package/table/Table.stories.jsx +277 -0
  253. package/table/Table.test.js +26 -0
  254. package/table/types.d.ts +21 -0
  255. package/table/types.js +5 -0
  256. package/tabs/Tabs.d.ts +4 -0
  257. package/tabs/Tabs.js +211 -0
  258. package/tabs/Tabs.stories.tsx +112 -0
  259. package/tabs/Tabs.test.js +140 -0
  260. package/tabs/types.d.ts +82 -0
  261. package/tabs/types.js +5 -0
  262. package/tag/Tag.d.ts +4 -0
  263. package/tag/Tag.js +183 -0
  264. package/tag/Tag.stories.tsx +142 -0
  265. package/tag/Tag.test.js +60 -0
  266. package/tag/types.d.ts +69 -0
  267. package/tag/types.js +5 -0
  268. package/text/Text.d.ts +7 -0
  269. package/text/Text.js +30 -0
  270. package/text/Text.stories.tsx +19 -0
  271. package/text-input/TextInput.d.ts +4 -0
  272. package/{dist/text-input → text-input}/TextInput.js +288 -463
  273. package/text-input/TextInput.stories.tsx +474 -0
  274. package/text-input/TextInput.test.js +1712 -0
  275. package/text-input/types.d.ts +166 -0
  276. package/text-input/types.js +5 -0
  277. package/textarea/Textarea.d.ts +4 -0
  278. package/{dist/new-textarea/NewTextarea.js → textarea/Textarea.js} +50 -133
  279. package/textarea/Textarea.stories.jsx +157 -0
  280. package/textarea/Textarea.test.js +437 -0
  281. package/textarea/types.d.ts +137 -0
  282. package/textarea/types.js +5 -0
  283. package/toggle-group/ToggleGroup.d.ts +4 -0
  284. package/{dist/toggle-group → toggle-group}/ToggleGroup.js +36 -148
  285. package/toggle-group/ToggleGroup.stories.tsx +173 -0
  286. package/toggle-group/ToggleGroup.test.js +156 -0
  287. package/toggle-group/types.d.ts +105 -0
  288. package/toggle-group/types.js +5 -0
  289. package/useTheme.d.ts +2 -0
  290. package/{dist/useTheme.js → useTheme.js} +2 -2
  291. package/wizard/Wizard.d.ts +4 -0
  292. package/wizard/Wizard.js +290 -0
  293. package/wizard/Wizard.stories.tsx +214 -0
  294. package/wizard/Wizard.test.js +141 -0
  295. package/wizard/types.d.ts +64 -0
  296. package/wizard/types.js +5 -0
  297. package/README.md +0 -66
  298. package/babel.config.js +0 -8
  299. package/dist/BackgroundColorContext.js +0 -46
  300. package/dist/ThemeContext.js +0 -248
  301. package/dist/accordion/Accordion.js +0 -353
  302. package/dist/accordion-group/AccordionGroup.js +0 -186
  303. package/dist/alert/index.d.ts +0 -51
  304. package/dist/badge/Badge.js +0 -63
  305. package/dist/card/Card.js +0 -254
  306. package/dist/checkbox/Checkbox.stories.js +0 -144
  307. package/dist/checkbox/readme.md +0 -116
  308. package/dist/chip/Chip.js +0 -265
  309. package/dist/date/Date.js +0 -379
  310. package/dist/date/Date.stories.js +0 -205
  311. package/dist/date/readme.md +0 -73
  312. package/dist/dialog/Dialog.js +0 -218
  313. package/dist/file-input/FileInput.js +0 -644
  314. package/dist/file-input/FileItem.js +0 -280
  315. package/dist/file-input/index.d.ts +0 -81
  316. package/dist/footer/Footer.js +0 -395
  317. package/dist/footer/dxc_logo.svg +0 -15
  318. package/dist/footer/readme.md +0 -41
  319. package/dist/header/Header.js +0 -403
  320. package/dist/header/Header.stories.js +0 -176
  321. package/dist/header/close_icon.svg +0 -1
  322. package/dist/header/dxc_logo_black.svg +0 -8
  323. package/dist/header/hamb_menu_black.svg +0 -1
  324. package/dist/header/hamb_menu_white.svg +0 -1
  325. package/dist/header/readme.md +0 -33
  326. package/dist/input-text/InputText.js +0 -707
  327. package/dist/input-text/error.svg +0 -1
  328. package/dist/input-text/readme.md +0 -91
  329. package/dist/layout/ApplicationLayout.js +0 -331
  330. package/dist/layout/facebook.svg +0 -45
  331. package/dist/layout/linkedin.svg +0 -50
  332. package/dist/layout/twitter.svg +0 -53
  333. package/dist/link/Link.js +0 -237
  334. package/dist/link/readme.md +0 -51
  335. package/dist/main.d.ts +0 -8
  336. package/dist/new-date/NewDate.js +0 -400
  337. package/dist/new-date/index.d.ts +0 -95
  338. package/dist/new-select/NewSelect.js +0 -836
  339. package/dist/new-select/index.d.ts +0 -53
  340. package/dist/new-textarea/index.d.ts +0 -117
  341. package/dist/number-input/NumberInput.js +0 -136
  342. package/dist/number-input/index.d.ts +0 -113
  343. package/dist/paginator/Paginator.js +0 -289
  344. package/dist/paginator/images/next.svg +0 -3
  345. package/dist/paginator/images/nextPage.svg +0 -3
  346. package/dist/paginator/images/previous.svg +0 -3
  347. package/dist/paginator/images/previousPage.svg +0 -3
  348. package/dist/paginator/readme.md +0 -50
  349. package/dist/password-input/index.d.ts +0 -94
  350. package/dist/progress-bar/ProgressBar.stories.js +0 -280
  351. package/dist/progress-bar/readme.md +0 -63
  352. package/dist/radio/Radio.stories.js +0 -166
  353. package/dist/radio/readme.md +0 -70
  354. package/dist/resultsetTable/arrow_downward-24px_wht.svg +0 -1
  355. package/dist/resultsetTable/arrow_upward-24px_wht.svg +0 -1
  356. package/dist/resultsetTable/unfold_more-24px_wht.svg +0 -1
  357. package/dist/select/Select.js +0 -549
  358. package/dist/slider/Slider.stories.js +0 -241
  359. package/dist/slider/readme.md +0 -64
  360. package/dist/spinner/Spinner.js +0 -381
  361. package/dist/spinner/Spinner.stories.js +0 -183
  362. package/dist/spinner/readme.md +0 -65
  363. package/dist/switch/Switch.js +0 -222
  364. package/dist/switch/Switch.stories.js +0 -134
  365. package/dist/switch/readme.md +0 -133
  366. package/dist/tabs/Tabs.js +0 -343
  367. package/dist/tabs/Tabs.stories.js +0 -130
  368. package/dist/tabs/readme.md +0 -78
  369. package/dist/tabs-for-sections/TabsForSections.js +0 -92
  370. package/dist/tabs-for-sections/readme.md +0 -78
  371. package/dist/tag/Tag.js +0 -282
  372. package/dist/text-input/index.d.ts +0 -135
  373. package/dist/textarea/Textarea.js +0 -264
  374. package/dist/toggle/Toggle.js +0 -220
  375. package/dist/toggle/Toggle.stories.js +0 -297
  376. package/dist/toggle/readme.md +0 -80
  377. package/dist/upload/Upload.js +0 -205
  378. package/dist/upload/Upload.stories.js +0 -72
  379. package/dist/upload/buttons-upload/ButtonsUpload.js +0 -139
  380. package/dist/upload/buttons-upload/drag-drop-icon.svg +0 -4
  381. package/dist/upload/buttons-upload/upload-button.svg +0 -1
  382. package/dist/upload/dragAndDropArea/DragAndDropArea.js +0 -329
  383. package/dist/upload/dragAndDropArea/upload_drop.svg +0 -4
  384. package/dist/upload/dragAndDropArea/upload_file.svg +0 -4
  385. package/dist/upload/file-upload/FileToUpload.js +0 -184
  386. package/dist/upload/file-upload/audio-icon.svg +0 -4
  387. package/dist/upload/file-upload/close.svg +0 -4
  388. package/dist/upload/file-upload/file-icon.svg +0 -4
  389. package/dist/upload/file-upload/video-icon.svg +0 -4
  390. package/dist/upload/files-upload/FilesToUpload.js +0 -123
  391. package/dist/upload/readme.md +0 -37
  392. package/dist/upload/transaction/Transaction.js +0 -175
  393. package/dist/upload/transaction/audio-icon-err.svg +0 -4
  394. package/dist/upload/transaction/audio-icon.svg +0 -4
  395. package/dist/upload/transaction/error-icon.svg +0 -4
  396. package/dist/upload/transaction/file-icon-err.svg +0 -4
  397. package/dist/upload/transaction/file-icon.svg +0 -4
  398. package/dist/upload/transaction/image-icon-err.svg +0 -4
  399. package/dist/upload/transaction/image-icon.svg +0 -4
  400. package/dist/upload/transaction/success-icon.svg +0 -4
  401. package/dist/upload/transaction/video-icon-err.svg +0 -4
  402. package/dist/upload/transaction/video-icon.svg +0 -4
  403. package/dist/upload/transactions/Transactions.js +0 -138
  404. package/dist/wizard/Wizard.js +0 -411
  405. package/dist/wizard/invalid_icon.svg +0 -5
  406. package/dist/wizard/valid_icon.svg +0 -5
  407. package/dist/wizard/validation-wrong.svg +0 -6
  408. package/test/Accordion.test.js +0 -33
  409. package/test/AccordionGroup.test.js +0 -125
  410. package/test/Alert.test.js +0 -53
  411. package/test/Box.test.js +0 -10
  412. package/test/Button.test.js +0 -18
  413. package/test/Card.test.js +0 -30
  414. package/test/Checkbox.test.js +0 -45
  415. package/test/Chip.test.js +0 -25
  416. package/test/Date.test.js +0 -393
  417. package/test/Dialog.test.js +0 -23
  418. package/test/Dropdown.test.js +0 -145
  419. package/test/FileInput.test.js +0 -201
  420. package/test/Footer.test.js +0 -99
  421. package/test/Header.test.js +0 -39
  422. package/test/Heading.test.js +0 -35
  423. package/test/InputText.test.js +0 -240
  424. package/test/Link.test.js +0 -43
  425. package/test/NewDate.test.js +0 -232
  426. package/test/NewTextarea.test.js +0 -195
  427. package/test/NumberInput.test.js +0 -259
  428. package/test/Paginator.test.js +0 -177
  429. package/test/PasswordInput.test.js +0 -83
  430. package/test/ProgressBar.test.js +0 -35
  431. package/test/Radio.test.js +0 -37
  432. package/test/ResultsetTable.test.js +0 -329
  433. package/test/Select.test.js +0 -212
  434. package/test/Sidenav.test.js +0 -45
  435. package/test/Slider.test.js +0 -82
  436. package/test/Spinner.test.js +0 -32
  437. package/test/Switch.test.js +0 -45
  438. package/test/Table.test.js +0 -36
  439. package/test/Tabs.test.js +0 -109
  440. package/test/TabsForSections.test.js +0 -34
  441. package/test/Tag.test.js +0 -32
  442. package/test/TextArea.test.js +0 -52
  443. package/test/TextInput.test.js +0 -732
  444. package/test/ToggleGroup.test.js +0 -85
  445. package/test/Upload.test.js +0 -60
  446. package/test/Wizard.test.js +0 -130
  447. package/test/mocks/pngMock.js +0 -1
  448. package/test/mocks/svgMock.js +0 -1
@@ -0,0 +1,590 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ var _typeof3 = require("@babel/runtime/helpers/typeof");
6
+
7
+ Object.defineProperty(exports, "__esModule", {
8
+ value: true
9
+ });
10
+ exports["default"] = void 0;
11
+
12
+ var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
13
+
14
+ var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
15
+
16
+ var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
17
+
18
+ var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
19
+
20
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
21
+
22
+ var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
23
+
24
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
25
+
26
+ var _react = _interopRequireWildcard(require("react"));
27
+
28
+ var _styledComponents = _interopRequireWildcard(require("styled-components"));
29
+
30
+ var _uuid = require("uuid");
31
+
32
+ var _variables = require("../common/variables.js");
33
+
34
+ var _useTheme = _interopRequireDefault(require("../useTheme"));
35
+
36
+ var _Button = _interopRequireDefault(require("../button/Button"));
37
+
38
+ var _FileItem = _interopRequireDefault(require("./FileItem"));
39
+
40
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12;
41
+
42
+ 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); }
43
+
44
+ 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; }
45
+
46
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
47
+
48
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2["default"])(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
49
+
50
+ var audioIcon = /*#__PURE__*/_react["default"].createElement("svg", {
51
+ xmlns: "http://www.w3.org/2000/svg",
52
+ width: "24",
53
+ height: "24",
54
+ viewBox: "0 0 24 24",
55
+ fill: "currentColor"
56
+ }, /*#__PURE__*/_react["default"].createElement("path", {
57
+ fill: "none",
58
+ d: "M0 0h24v24H0V0z"
59
+ }), /*#__PURE__*/_react["default"].createElement("path", {
60
+ d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03c-.02 1.64-1.35 2.97-3 2.97-1.66 0-3-1.34-3-3z"
61
+ }));
62
+
63
+ var videoIcon = /*#__PURE__*/_react["default"].createElement("svg", {
64
+ xmlns: "http://www.w3.org/2000/svg",
65
+ width: "24",
66
+ height: "24",
67
+ viewBox: "0 0 24 24",
68
+ fill: "currentColor"
69
+ }, /*#__PURE__*/_react["default"].createElement("path", {
70
+ d: "M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z"
71
+ }), /*#__PURE__*/_react["default"].createElement("path", {
72
+ d: "M0 0h24v24H0z",
73
+ fill: "none"
74
+ }));
75
+
76
+ var fileIcon = /*#__PURE__*/_react["default"].createElement("svg", {
77
+ xmlns: "http://www.w3.org/2000/svg",
78
+ width: "24",
79
+ height: "24",
80
+ viewBox: "0 0 24 24",
81
+ fill: "currentColor"
82
+ }, /*#__PURE__*/_react["default"].createElement("path", {
83
+ fill: "none",
84
+ d: "M0 0h24v24H0V0z"
85
+ }), /*#__PURE__*/_react["default"].createElement("path", {
86
+ d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zM6 20V4h7v5h5v11H6z"
87
+ }));
88
+
89
+ var DxcFileInput = function DxcFileInput(_ref) {
90
+ var _ref$name = _ref.name,
91
+ name = _ref$name === void 0 ? "" : _ref$name,
92
+ _ref$mode = _ref.mode,
93
+ mode = _ref$mode === void 0 ? "file" : _ref$mode,
94
+ _ref$label = _ref.label,
95
+ label = _ref$label === void 0 ? "" : _ref$label,
96
+ buttonLabel = _ref.buttonLabel,
97
+ dropAreaLabel = _ref.dropAreaLabel,
98
+ _ref$helperText = _ref.helperText,
99
+ helperText = _ref$helperText === void 0 ? "" : _ref$helperText,
100
+ accept = _ref.accept,
101
+ minSize = _ref.minSize,
102
+ maxSize = _ref.maxSize,
103
+ _ref$showPreview = _ref.showPreview,
104
+ showPreview = _ref$showPreview === void 0 ? false : _ref$showPreview,
105
+ _ref$multiple = _ref.multiple,
106
+ multiple = _ref$multiple === void 0 ? true : _ref$multiple,
107
+ _ref$disabled = _ref.disabled,
108
+ disabled = _ref$disabled === void 0 ? false : _ref$disabled,
109
+ callbackFile = _ref.callbackFile,
110
+ value = _ref.value,
111
+ margin = _ref.margin,
112
+ _ref$tabIndex = _ref.tabIndex,
113
+ tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
114
+
115
+ var _useState = (0, _react.useState)(false),
116
+ _useState2 = (0, _slicedToArray2["default"])(_useState, 2),
117
+ isDragging = _useState2[0],
118
+ setIsDragging = _useState2[1];
119
+
120
+ var _useState3 = (0, _react.useState)([]),
121
+ _useState4 = (0, _slicedToArray2["default"])(_useState3, 2),
122
+ files = _useState4[0],
123
+ setFiles = _useState4[1];
124
+
125
+ var _useState5 = (0, _react.useState)("file-input-".concat((0, _uuid.v4)())),
126
+ _useState6 = (0, _slicedToArray2["default"])(_useState5, 1),
127
+ fileInputId = _useState6[0];
128
+
129
+ var colorsTheme = (0, _useTheme["default"])();
130
+ (0, _react.useEffect)(function () {
131
+ var getFiles = /*#__PURE__*/function () {
132
+ var _ref2 = (0, _asyncToGenerator2["default"])( /*#__PURE__*/_regenerator["default"].mark(function _callee2() {
133
+ var valueFiles;
134
+ return _regenerator["default"].wrap(function _callee2$(_context2) {
135
+ while (1) {
136
+ switch (_context2.prev = _context2.next) {
137
+ case 0:
138
+ if (!value) {
139
+ _context2.next = 5;
140
+ break;
141
+ }
142
+
143
+ _context2.next = 3;
144
+ return Promise.all(value.map( /*#__PURE__*/function () {
145
+ var _ref3 = (0, _asyncToGenerator2["default"])( /*#__PURE__*/_regenerator["default"].mark(function _callee(file) {
146
+ var preview;
147
+ return _regenerator["default"].wrap(function _callee$(_context) {
148
+ while (1) {
149
+ switch (_context.prev = _context.next) {
150
+ case 0:
151
+ if (!file.preview) {
152
+ _context.next = 4;
153
+ break;
154
+ }
155
+
156
+ return _context.abrupt("return", file);
157
+
158
+ case 4:
159
+ _context.next = 6;
160
+ return getFilePreview(file.file);
161
+
162
+ case 6:
163
+ preview = _context.sent;
164
+ return _context.abrupt("return", _objectSpread(_objectSpread({}, file), {}, {
165
+ preview: preview
166
+ }));
167
+
168
+ case 8:
169
+ case "end":
170
+ return _context.stop();
171
+ }
172
+ }
173
+ }, _callee);
174
+ }));
175
+
176
+ return function (_x) {
177
+ return _ref3.apply(this, arguments);
178
+ };
179
+ }()));
180
+
181
+ case 3:
182
+ valueFiles = _context2.sent;
183
+ setFiles(valueFiles);
184
+
185
+ case 5:
186
+ case "end":
187
+ return _context2.stop();
188
+ }
189
+ }
190
+ }, _callee2);
191
+ }));
192
+
193
+ return function getFiles() {
194
+ return _ref2.apply(this, arguments);
195
+ };
196
+ }();
197
+
198
+ getFiles();
199
+ }, [value]);
200
+
201
+ var handleClick = function handleClick() {
202
+ document.getElementById(fileInputId).click();
203
+ };
204
+
205
+ var checkFileSize = function checkFileSize(file) {
206
+ if (file.size < minSize) {
207
+ return "File size must be greater than min size.";
208
+ }
209
+
210
+ if (file.size > maxSize) {
211
+ return "File size must be less than max size.";
212
+ }
213
+ };
214
+
215
+ var getFilePreview = function getFilePreview(file) {
216
+ if (file.type.includes("video")) {
217
+ return videoIcon;
218
+ }
219
+
220
+ if (file.type.includes("audio")) {
221
+ return audioIcon;
222
+ }
223
+
224
+ if (file.type.includes("image")) {
225
+ return new Promise(function (resolve) {
226
+ var reader = new FileReader();
227
+ reader.readAsDataURL(file);
228
+
229
+ reader.onload = function (e) {
230
+ resolve(e.target.result);
231
+ };
232
+ });
233
+ }
234
+
235
+ return fileIcon;
236
+ };
237
+
238
+ var getFilesToAdd = /*#__PURE__*/function () {
239
+ var _ref4 = (0, _asyncToGenerator2["default"])( /*#__PURE__*/_regenerator["default"].mark(function _callee3(selectedFiles) {
240
+ var filesToAdd;
241
+ return _regenerator["default"].wrap(function _callee3$(_context3) {
242
+ while (1) {
243
+ switch (_context3.prev = _context3.next) {
244
+ case 0:
245
+ _context3.next = 2;
246
+ return Promise.all(selectedFiles.map(function (selectedFile) {
247
+ return getFilePreview(selectedFile);
248
+ })).then(function (previews) {
249
+ return selectedFiles.map(function (selectedFile, index) {
250
+ var fileInfo = {
251
+ file: selectedFile,
252
+ error: checkFileSize(selectedFile),
253
+ preview: previews[index]
254
+ };
255
+ return fileInfo;
256
+ });
257
+ });
258
+
259
+ case 2:
260
+ filesToAdd = _context3.sent;
261
+ return _context3.abrupt("return", filesToAdd);
262
+
263
+ case 4:
264
+ case "end":
265
+ return _context3.stop();
266
+ }
267
+ }
268
+ }, _callee3);
269
+ }));
270
+
271
+ return function getFilesToAdd(_x2) {
272
+ return _ref4.apply(this, arguments);
273
+ };
274
+ }();
275
+
276
+ var addFile = /*#__PURE__*/function () {
277
+ var _ref5 = (0, _asyncToGenerator2["default"])( /*#__PURE__*/_regenerator["default"].mark(function _callee4(selectedFiles) {
278
+ var filesToAdd, finalFiles, fileToAdd;
279
+ return _regenerator["default"].wrap(function _callee4$(_context4) {
280
+ while (1) {
281
+ switch (_context4.prev = _context4.next) {
282
+ case 0:
283
+ if (!multiple) {
284
+ _context4.next = 8;
285
+ break;
286
+ }
287
+
288
+ _context4.next = 3;
289
+ return getFilesToAdd(selectedFiles);
290
+
291
+ case 3:
292
+ filesToAdd = _context4.sent;
293
+ finalFiles = [].concat((0, _toConsumableArray2["default"])(files), (0, _toConsumableArray2["default"])(filesToAdd));
294
+
295
+ if (typeof callbackFile === "function") {
296
+ callbackFile(finalFiles);
297
+ }
298
+
299
+ _context4.next = 19;
300
+ break;
301
+
302
+ case 8:
303
+ if (!(selectedFiles.length === 1)) {
304
+ _context4.next = 14;
305
+ break;
306
+ }
307
+
308
+ _context4.next = 11;
309
+ return getFilesToAdd(selectedFiles);
310
+
311
+ case 11:
312
+ _context4.t0 = _context4.sent;
313
+ _context4.next = 17;
314
+ break;
315
+
316
+ case 14:
317
+ _context4.next = 16;
318
+ return getFilesToAdd([selectedFiles[0]]);
319
+
320
+ case 16:
321
+ _context4.t0 = _context4.sent;
322
+
323
+ case 17:
324
+ fileToAdd = _context4.t0;
325
+
326
+ if (typeof callbackFile === "function") {
327
+ callbackFile(fileToAdd);
328
+ }
329
+
330
+ case 19:
331
+ case "end":
332
+ return _context4.stop();
333
+ }
334
+ }
335
+ }, _callee4);
336
+ }));
337
+
338
+ return function addFile(_x3) {
339
+ return _ref5.apply(this, arguments);
340
+ };
341
+ }();
342
+
343
+ var selectFiles = function selectFiles(e) {
344
+ var selectedFiles = e.target.files;
345
+ var filesArray = Object.keys(selectedFiles).map(function (key) {
346
+ return selectedFiles[key];
347
+ });
348
+ addFile(filesArray);
349
+ };
350
+
351
+ var onDelete = function onDelete(fileName) {
352
+ var filesCopy = (0, _toConsumableArray2["default"])(files);
353
+ var fileToRemove = filesCopy.find(function (file) {
354
+ return file.file.name === fileName;
355
+ });
356
+ var fileIndex = filesCopy.indexOf(fileToRemove);
357
+ filesCopy.splice(fileIndex, 1);
358
+
359
+ if (typeof callbackFile === "function") {
360
+ callbackFile(filesCopy);
361
+ }
362
+ };
363
+
364
+ var handleDrag = function handleDrag(e) {
365
+ e.preventDefault();
366
+ e.stopPropagation();
367
+ };
368
+
369
+ var handleDragIn = function handleDragIn(e) {
370
+ if (e.dataTransfer.items && e.dataTransfer.items.length > 0) setIsDragging(true);
371
+ };
372
+
373
+ var handleDragOut = function handleDragOut(e) {
374
+ // only if dragged items leave container (outside, not to childs)
375
+ if (!e.currentTarget.contains(e.relatedTarget)) setIsDragging(false);
376
+ };
377
+
378
+ var handleDrop = function handleDrop(e) {
379
+ e.preventDefault();
380
+ e.stopPropagation();
381
+ setIsDragging(false);
382
+ var filesObject = e.dataTransfer.files;
383
+
384
+ if (filesObject && filesObject.length > 0) {
385
+ var filesArray = Object.keys(filesObject).map(function (key) {
386
+ return filesObject[key];
387
+ });
388
+ addFile(filesArray);
389
+ }
390
+ };
391
+
392
+ return /*#__PURE__*/_react["default"].createElement(_styledComponents.ThemeProvider, {
393
+ theme: colorsTheme.fileInput
394
+ }, /*#__PURE__*/_react["default"].createElement(FileInputContainer, {
395
+ margin: margin,
396
+ name: name
397
+ }, /*#__PURE__*/_react["default"].createElement(Label, {
398
+ htmlFor: fileInputId,
399
+ disabled: disabled
400
+ }, label), /*#__PURE__*/_react["default"].createElement(HelperText, {
401
+ disabled: disabled
402
+ }, helperText), mode === "file" ? /*#__PURE__*/_react["default"].createElement(FileContainer, {
403
+ multiple: multiple,
404
+ files: files
405
+ }, /*#__PURE__*/_react["default"].createElement(HiddenInputFile, {
406
+ id: fileInputId,
407
+ type: "file",
408
+ accept: accept,
409
+ multiple: multiple,
410
+ onChange: selectFiles
411
+ }), /*#__PURE__*/_react["default"].createElement(_Button["default"], {
412
+ mode: "secondary",
413
+ label: buttonLabel !== null && buttonLabel !== void 0 ? buttonLabel : multiple ? "Select files" : "Select file",
414
+ onClick: handleClick,
415
+ disabled: disabled,
416
+ size: "medium",
417
+ tabIndex: tabIndex
418
+ }), files.map(function (file) {
419
+ return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement(FileItemContainer, {
420
+ mode: mode,
421
+ multiple: multiple,
422
+ files: files
423
+ }, /*#__PURE__*/_react["default"].createElement(_FileItem["default"], {
424
+ mode: mode,
425
+ multiple: multiple,
426
+ name: file.file.name,
427
+ error: file.error,
428
+ showPreview: mode === "file" && !multiple ? false : showPreview,
429
+ numFiles: files.length,
430
+ preview: file.preview,
431
+ type: file.file.type,
432
+ onDelete: onDelete,
433
+ tabIndex: tabIndex
434
+ })));
435
+ })) : /*#__PURE__*/_react["default"].createElement(Container, null, /*#__PURE__*/_react["default"].createElement(HiddenInputFile, {
436
+ id: fileInputId,
437
+ type: "file",
438
+ accept: accept,
439
+ multiple: multiple,
440
+ onChange: selectFiles
441
+ }), /*#__PURE__*/_react["default"].createElement(DragDropArea, {
442
+ isDragging: isDragging,
443
+ disabled: disabled,
444
+ mode: mode,
445
+ onDrop: handleDrop,
446
+ onDragEnter: handleDragIn,
447
+ onDragOver: handleDrag,
448
+ onDragLeave: handleDragOut
449
+ }, /*#__PURE__*/_react["default"].createElement(ButtonContainer, {
450
+ mode: mode
451
+ }, /*#__PURE__*/_react["default"].createElement(_Button["default"], {
452
+ mode: "secondary",
453
+ label: buttonLabel !== null && buttonLabel !== void 0 ? buttonLabel : "Select",
454
+ onClick: handleClick,
455
+ disabled: disabled,
456
+ size: "fitContent"
457
+ })), mode === "dropzone" ? /*#__PURE__*/_react["default"].createElement(DropzoneLabel, {
458
+ disabled: disabled
459
+ }, dropAreaLabel !== null && dropAreaLabel !== void 0 ? dropAreaLabel : multiple ? "or drop files" : "or drop a file") : /*#__PURE__*/_react["default"].createElement(FiledropLabel, {
460
+ disabled: disabled
461
+ }, dropAreaLabel !== null && dropAreaLabel !== void 0 ? dropAreaLabel : multiple ? "or drop files" : "or drop a file")), files.map(function (file) {
462
+ return /*#__PURE__*/_react["default"].createElement(FileItemContainer, {
463
+ mode: mode,
464
+ multiple: multiple,
465
+ files: files
466
+ }, /*#__PURE__*/_react["default"].createElement(_FileItem["default"], {
467
+ mode: mode,
468
+ multiple: multiple,
469
+ name: file.file.name,
470
+ error: file.error,
471
+ showPreview: showPreview,
472
+ numFiles: files.length,
473
+ preview: file.preview,
474
+ type: file.file.type,
475
+ onDelete: onDelete,
476
+ tabIndex: tabIndex
477
+ }));
478
+ })), files.length === 1 && files.map(function (file) {
479
+ return file.error && mode === "file" && !multiple && /*#__PURE__*/_react["default"].createElement(ErrorMessage, null, file.error);
480
+ })));
481
+ };
482
+
483
+ var FileInputContainer = _styledComponents["default"].div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: column;\n margin: ", ";\n margin-top: ", ";\n margin-right: ", ";\n margin-bottom: ", ";\n margin-left: ", ";\n width: fit-content;\n"])), function (props) {
484
+ return props.margin && (0, _typeof2["default"])(props.margin) !== "object" ? _variables.spaces[props.margin] : "0px";
485
+ }, function (props) {
486
+ return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.top ? _variables.spaces[props.margin.top] : "";
487
+ }, function (props) {
488
+ return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.right ? _variables.spaces[props.margin.right] : "";
489
+ }, function (props) {
490
+ return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.bottom ? _variables.spaces[props.margin.bottom] : "";
491
+ }, function (props) {
492
+ return props.margin && (0, _typeof2["default"])(props.margin) === "object" && props.margin.left ? _variables.spaces[props.margin.left] : "";
493
+ });
494
+
495
+ var Label = _styledComponents["default"].label(_templateObject2 || (_templateObject2 = (0, _taggedTemplateLiteral2["default"])(["\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-weight: ", ";\n line-height: ", ";\n"])), function (props) {
496
+ return props.disabled ? props.theme.disabledLabelFontColor : props.theme.labelFontColor;
497
+ }, function (props) {
498
+ return props.theme.labelFontFamily;
499
+ }, function (props) {
500
+ return props.theme.labelFontSize;
501
+ }, function (props) {
502
+ return props.theme.labelFontWeight;
503
+ }, function (props) {
504
+ return props.theme.labelLineHeight;
505
+ });
506
+
507
+ var HelperText = _styledComponents["default"].span(_templateObject3 || (_templateObject3 = (0, _taggedTemplateLiteral2["default"])(["\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-weight: ", ";\n line-height: ", ";\n"])), function (props) {
508
+ return props.disabled ? props.theme.disabledHelperTextFontcolor : props.theme.helperTextFontColor;
509
+ }, function (props) {
510
+ return props.theme.helperTextFontFamily;
511
+ }, function (props) {
512
+ return props.theme.helperTextFontSize;
513
+ }, function (props) {
514
+ return props.theme.helperTextFontWeight;
515
+ }, function (props) {
516
+ return props.theme.helperTextLineHeight;
517
+ });
518
+
519
+ var DragDropArea = _styledComponents["default"].div(_templateObject4 || (_templateObject4 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n overflow: hidden;\n box-sizing: border-box;\n flex-direction: ", ";\n ", ";\n align-items: center;\n height: ", ";\n width: 320px;\n\n box-shadow: 0 0 0 2px transparent;\n border-radius: ", ";\n border-width: ", ";\n border-style: ", ";\n border-color: ", ";\n\n ", "\n\n cursor: ", ";\n"])), function (props) {
520
+ return props.mode === "filedrop" ? "row" : "column";
521
+ }, function (props) {
522
+ return props.mode === "dropzone" && "justify-content: center; padding: 1rem;";
523
+ }, function (props) {
524
+ return props.mode === "filedrop" ? "48px" : "160px";
525
+ }, function (props) {
526
+ return props.theme.dropBorderRadius;
527
+ }, function (props) {
528
+ return props.theme.dropBorderThickness;
529
+ }, function (props) {
530
+ return props.theme.dropBorderStyle;
531
+ }, function (props) {
532
+ return props.disabled ? props.theme.disabledDropBorderColor : props.theme.dropBorderColor;
533
+ }, function (props) {
534
+ return props.isDragging && "\n background-color: ".concat(props.theme.dragoverDropBackgroundColor, ";\n border-color: transparent;\n box-shadow: 0 0 0 2px ").concat(props.theme.focusDropBorderColor, ";\n ");
535
+ }, function (props) {
536
+ return props.disabled && "not-allowed";
537
+ });
538
+
539
+ var FileContainer = _styledComponents["default"].div(_templateObject5 || (_templateObject5 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: ", ";\n margin-top: 0.25rem;\n"])), function (props) {
540
+ return props.multiple || props.files.length > 1 ? "column" : "row";
541
+ });
542
+
543
+ var HiddenInputFile = _styledComponents["default"].input(_templateObject6 || (_templateObject6 = (0, _taggedTemplateLiteral2["default"])(["\n visibility: hidden;\n position: absolute;\n width: 0px;\n height: 0px;\n"])));
544
+
545
+ var ButtonContainer = _styledComponents["default"].div(_templateObject7 || (_templateObject7 = (0, _taggedTemplateLiteral2["default"])(["\n ", ";\n"])), function (props) {
546
+ return props.mode === "filedrop" && "padding: 2px 12px 2px 3px";
547
+ });
548
+
549
+ var DropzoneLabel = _styledComponents["default"].div(_templateObject8 || (_templateObject8 = (0, _taggedTemplateLiteral2["default"])(["\n display: -webkit-box;\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n -webkit-line-clamp: 3;\n text-align: center;\n margin-top: 0.5rem;\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-weight: ", ";\n"])), function (props) {
550
+ return props.disabled ? props.theme.disabledDropLabelFontColor : props.theme.dropLabelFontColor;
551
+ }, function (props) {
552
+ return props.theme.dropLabelFontFamily;
553
+ }, function (props) {
554
+ return props.theme.dropLabelFontSize;
555
+ }, function (props) {
556
+ return props.theme.dropLabelFontWeight;
557
+ });
558
+
559
+ var FiledropLabel = _styledComponents["default"].span(_templateObject9 || (_templateObject9 = (0, _taggedTemplateLiteral2["default"])(["\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-weight: ", ";\n margin-right: 1rem;\n"])), function (props) {
560
+ return props.disabled ? props.theme.disabledDropLabelFontColor : props.theme.dropLabelFontColor;
561
+ }, function (props) {
562
+ return props.theme.dropLabelFontFamily;
563
+ }, function (props) {
564
+ return props.theme.dropLabelFontSize;
565
+ }, function (props) {
566
+ return props.theme.dropLabelFontWeight;
567
+ });
568
+
569
+ var Container = _styledComponents["default"].div(_templateObject10 || (_templateObject10 = (0, _taggedTemplateLiteral2["default"])(["\n display: flex;\n flex-direction: column;\n margin-top: 0.25rem;\n"])));
570
+
571
+ var FileItemContainer = _styledComponents["default"].div(_templateObject11 || (_templateObject11 = (0, _taggedTemplateLiteral2["default"])(["\n margin-top: ", ";\n margin-left: ", ";\n"])), function (props) {
572
+ return (props.multiple || props.files.length > 1 || props.mode !== "file") && "4px";
573
+ }, function (props) {
574
+ return props.mode === "file" && props.files.length === 1 && !props.multiple && "4px";
575
+ });
576
+
577
+ var ErrorMessage = _styledComponents["default"].div(_templateObject12 || (_templateObject12 = (0, _taggedTemplateLiteral2["default"])(["\n color: ", ";\n font-family: ", ";\n font-size: ", ";\n font-weight: ", ";\n line-height: ", ";\n margin-top: 0.25rem;\n"])), function (props) {
578
+ return props.theme.errorMessageFontColor;
579
+ }, function (props) {
580
+ return props.theme.errorMessageFontFamily;
581
+ }, function (props) {
582
+ return props.theme.errorMessageFontSize;
583
+ }, function (props) {
584
+ return props.theme.errorMessageFontWeight;
585
+ }, function (props) {
586
+ return props.theme.errorMessageLineHeight;
587
+ });
588
+
589
+ var _default = DxcFileInput;
590
+ exports["default"] = _default;