@dxc-technology/halstack-react 0.0.0-ddc0c35 → 0.0.0-df9dd3c

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 (417) hide show
  1. package/BackgroundColorContext.d.ts +10 -0
  2. package/BackgroundColorContext.js +47 -0
  3. package/ThemeContext.d.ts +15 -0
  4. package/ThemeContext.js +243 -0
  5. package/V3Select/V3Select.js +455 -0
  6. package/V3Select/index.d.ts +27 -0
  7. package/V3Textarea/V3Textarea.js +260 -0
  8. package/V3Textarea/index.d.ts +27 -0
  9. package/accordion/Accordion.d.ts +4 -0
  10. package/accordion/Accordion.js +258 -0
  11. package/accordion/Accordion.stories.tsx +300 -0
  12. package/accordion/types.d.ts +68 -0
  13. package/accordion/types.js +5 -0
  14. package/accordion-group/AccordionGroup.d.ts +7 -0
  15. package/accordion-group/AccordionGroup.js +170 -0
  16. package/accordion-group/AccordionGroup.stories.tsx +225 -0
  17. package/accordion-group/types.d.ts +72 -0
  18. package/accordion-group/types.js +5 -0
  19. package/alert/Alert.d.ts +4 -0
  20. package/alert/Alert.js +290 -0
  21. package/alert/Alert.stories.tsx +170 -0
  22. package/alert/types.d.ts +49 -0
  23. package/alert/types.js +5 -0
  24. package/badge/Badge.js +59 -0
  25. package/box/Box.d.ts +4 -0
  26. package/box/Box.js +126 -0
  27. package/box/Box.stories.tsx +132 -0
  28. package/box/types.d.ts +43 -0
  29. package/box/types.js +5 -0
  30. package/button/Button.d.ts +4 -0
  31. package/button/Button.js +179 -0
  32. package/button/Button.stories.tsx +276 -0
  33. package/button/types.d.ts +57 -0
  34. package/button/types.js +5 -0
  35. package/card/Card.d.ts +4 -0
  36. package/card/Card.js +164 -0
  37. package/card/Card.stories.tsx +201 -0
  38. package/card/ice-cream.jpg +0 -0
  39. package/card/types.d.ts +67 -0
  40. package/card/types.js +5 -0
  41. package/checkbox/Checkbox.d.ts +4 -0
  42. package/checkbox/Checkbox.js +253 -0
  43. package/checkbox/Checkbox.stories.tsx +192 -0
  44. package/checkbox/types.d.ts +60 -0
  45. package/checkbox/types.js +5 -0
  46. package/chip/Chip.d.ts +4 -0
  47. package/chip/Chip.js +199 -0
  48. package/chip/Chip.stories.tsx +121 -0
  49. package/chip/types.d.ts +53 -0
  50. package/chip/types.js +5 -0
  51. package/{dist/common → common}/OpenSans.css +0 -0
  52. package/{dist/common → common}/RequiredComponent.js +5 -19
  53. package/{dist/common → common}/fonts/OpenSans-Bold.ttf +0 -0
  54. package/{dist/common → common}/fonts/OpenSans-BoldItalic.ttf +0 -0
  55. package/{dist/common → common}/fonts/OpenSans-ExtraBold.ttf +0 -0
  56. package/{dist/common → common}/fonts/OpenSans-ExtraBoldItalic.ttf +0 -0
  57. package/{dist/common → common}/fonts/OpenSans-Italic.ttf +0 -0
  58. package/{dist/common → common}/fonts/OpenSans-Light.ttf +0 -0
  59. package/{dist/common → common}/fonts/OpenSans-LightItalic.ttf +0 -0
  60. package/{dist/common → common}/fonts/OpenSans-Regular.ttf +0 -0
  61. package/{dist/common → common}/fonts/OpenSans-SemiBold.ttf +0 -0
  62. package/{dist/common → common}/fonts/OpenSans-SemiBoldItalic.ttf +0 -0
  63. package/common/utils.js +22 -0
  64. package/common/variables.js +1605 -0
  65. package/{dist/date → date}/Date.js +93 -77
  66. package/date/index.d.ts +27 -0
  67. package/date-input/DateInput.d.ts +4 -0
  68. package/date-input/DateInput.js +358 -0
  69. package/date-input/DateInput.stories.tsx +138 -0
  70. package/date-input/types.d.ts +100 -0
  71. package/date-input/types.js +5 -0
  72. package/dialog/Dialog.d.ts +4 -0
  73. package/dialog/Dialog.js +166 -0
  74. package/dialog/Dialog.stories.tsx +212 -0
  75. package/dialog/types.d.ts +43 -0
  76. package/dialog/types.js +5 -0
  77. package/dropdown/Dropdown.d.ts +4 -0
  78. package/dropdown/Dropdown.js +417 -0
  79. package/dropdown/Dropdown.stories.tsx +247 -0
  80. package/dropdown/types.d.ts +89 -0
  81. package/dropdown/types.js +5 -0
  82. package/file-input/FileInput.d.ts +4 -0
  83. package/file-input/FileInput.js +590 -0
  84. package/file-input/FileInput.stories.tsx +506 -0
  85. package/file-input/FileItem.d.ts +14 -0
  86. package/file-input/FileItem.js +184 -0
  87. package/file-input/types.d.ts +112 -0
  88. package/file-input/types.js +5 -0
  89. package/footer/Footer.d.ts +4 -0
  90. package/footer/Footer.js +260 -0
  91. package/footer/Footer.stories.tsx +130 -0
  92. package/footer/Icons.d.ts +2 -0
  93. package/footer/Icons.js +77 -0
  94. package/footer/types.d.ts +65 -0
  95. package/footer/types.js +5 -0
  96. package/header/Header.d.ts +7 -0
  97. package/header/Header.js +324 -0
  98. package/header/Header.stories.tsx +162 -0
  99. package/header/Icons.d.ts +2 -0
  100. package/header/Icons.js +34 -0
  101. package/header/types.d.ts +47 -0
  102. package/header/types.js +5 -0
  103. package/heading/Heading.d.ts +4 -0
  104. package/heading/Heading.js +159 -0
  105. package/heading/Heading.stories.tsx +53 -0
  106. package/heading/types.d.ts +33 -0
  107. package/heading/types.js +5 -0
  108. package/input-text/Icons.js +22 -0
  109. package/input-text/InputText.js +611 -0
  110. package/input-text/index.d.ts +36 -0
  111. package/layout/ApplicationLayout.d.ts +10 -0
  112. package/layout/ApplicationLayout.js +225 -0
  113. package/layout/ApplicationLayout.stories.tsx +171 -0
  114. package/layout/Icons.js +55 -0
  115. package/layout/types.d.ts +57 -0
  116. package/layout/types.js +5 -0
  117. package/link/Link.d.ts +3 -0
  118. package/link/Link.js +161 -0
  119. package/link/Link.stories.tsx +146 -0
  120. package/link/types.d.ts +74 -0
  121. package/link/types.js +5 -0
  122. package/list/List.d.ts +8 -0
  123. package/list/List.js +47 -0
  124. package/list/List.stories.tsx +85 -0
  125. package/main.d.ts +48 -0
  126. package/{dist/main.js → main.js} +175 -43
  127. package/number-input/NumberInput.d.ts +4 -0
  128. package/number-input/NumberInput.js +83 -0
  129. package/number-input/NumberInput.stories.tsx +115 -0
  130. package/number-input/NumberInputContext.d.ts +4 -0
  131. package/{dist/ThemeContext.js → number-input/NumberInputContext.js} +6 -2
  132. package/number-input/numberInputContextTypes.d.ts +19 -0
  133. package/number-input/numberInputContextTypes.js +5 -0
  134. package/number-input/types.d.ts +117 -0
  135. package/number-input/types.js +5 -0
  136. package/package.json +41 -24
  137. package/paginator/Icons.js +66 -0
  138. package/paginator/Paginator.d.ts +4 -0
  139. package/paginator/Paginator.js +192 -0
  140. package/paginator/Paginator.stories.tsx +63 -0
  141. package/paginator/types.d.ts +38 -0
  142. package/paginator/types.js +5 -0
  143. package/password-input/PasswordInput.d.ts +4 -0
  144. package/password-input/PasswordInput.js +163 -0
  145. package/password-input/PasswordInput.stories.tsx +131 -0
  146. package/password-input/types.d.ts +107 -0
  147. package/password-input/types.js +5 -0
  148. package/progress-bar/ProgressBar.d.ts +4 -0
  149. package/progress-bar/ProgressBar.js +170 -0
  150. package/progress-bar/ProgressBar.stories.jsx +58 -0
  151. package/progress-bar/types.d.ts +37 -0
  152. package/progress-bar/types.js +5 -0
  153. package/radio/Radio.d.ts +4 -0
  154. package/radio/Radio.js +174 -0
  155. package/radio/Radio.stories.tsx +192 -0
  156. package/radio/types.d.ts +54 -0
  157. package/radio/types.js +5 -0
  158. package/radio-group/Radio.d.ts +4 -0
  159. package/radio-group/Radio.js +109 -0
  160. package/radio-group/RadioGroup.d.ts +4 -0
  161. package/radio-group/RadioGroup.js +166 -0
  162. package/radio-group/RadioGroup.stories.tsx +56 -0
  163. package/radio-group/types.d.ts +37 -0
  164. package/radio-group/types.js +5 -0
  165. package/resultsetTable/ResultsetTable.d.ts +4 -0
  166. package/resultsetTable/ResultsetTable.js +251 -0
  167. package/resultsetTable/ResultsetTable.stories.tsx +276 -0
  168. package/resultsetTable/types.d.ts +67 -0
  169. package/resultsetTable/types.js +5 -0
  170. package/row/Row.d.ts +11 -0
  171. package/row/Row.js +124 -0
  172. package/row/Row.stories.tsx +223 -0
  173. package/select/Select.d.ts +4 -0
  174. package/select/Select.js +863 -0
  175. package/select/Select.stories.tsx +572 -0
  176. package/select/types.d.ts +170 -0
  177. package/select/types.js +5 -0
  178. package/sidenav/Sidenav.d.ts +9 -0
  179. package/sidenav/Sidenav.js +136 -0
  180. package/sidenav/Sidenav.stories.tsx +165 -0
  181. package/sidenav/types.d.ts +50 -0
  182. package/sidenav/types.js +5 -0
  183. package/slider/Slider.d.ts +4 -0
  184. package/slider/Slider.js +317 -0
  185. package/slider/Slider.stories.tsx +177 -0
  186. package/slider/types.d.ts +78 -0
  187. package/slider/types.js +5 -0
  188. package/spinner/Spinner.d.ts +4 -0
  189. package/spinner/Spinner.js +250 -0
  190. package/spinner/Spinner.stories.jsx +102 -0
  191. package/spinner/types.d.ts +32 -0
  192. package/spinner/types.js +5 -0
  193. package/stack/Stack.d.ts +10 -0
  194. package/stack/Stack.js +94 -0
  195. package/stack/Stack.stories.tsx +150 -0
  196. package/switch/Switch.d.ts +4 -0
  197. package/switch/Switch.js +179 -0
  198. package/switch/Switch.stories.tsx +160 -0
  199. package/switch/types.d.ts +58 -0
  200. package/switch/types.js +5 -0
  201. package/table/Table.d.ts +4 -0
  202. package/table/Table.js +118 -0
  203. package/table/Table.stories.jsx +276 -0
  204. package/table/types.d.ts +21 -0
  205. package/table/types.js +5 -0
  206. package/tabs/Tabs.d.ts +4 -0
  207. package/tabs/Tabs.js +213 -0
  208. package/tabs/Tabs.stories.tsx +121 -0
  209. package/tabs/types.d.ts +70 -0
  210. package/tabs/types.js +5 -0
  211. package/tag/Tag.d.ts +4 -0
  212. package/tag/Tag.js +193 -0
  213. package/tag/Tag.stories.tsx +145 -0
  214. package/tag/types.d.ts +60 -0
  215. package/tag/types.js +5 -0
  216. package/text/Text.d.ts +7 -0
  217. package/text/Text.js +30 -0
  218. package/text/Text.stories.tsx +19 -0
  219. package/text-input/TextInput.d.ts +4 -0
  220. package/text-input/TextInput.js +786 -0
  221. package/text-input/TextInput.stories.tsx +456 -0
  222. package/text-input/types.d.ts +159 -0
  223. package/text-input/types.js +5 -0
  224. package/textarea/Textarea.d.ts +4 -0
  225. package/textarea/Textarea.js +284 -0
  226. package/textarea/Textarea.stories.jsx +135 -0
  227. package/textarea/types.d.ts +130 -0
  228. package/textarea/types.js +5 -0
  229. package/{dist/toggle → toggle}/Toggle.js +30 -67
  230. package/toggle/index.d.ts +21 -0
  231. package/toggle-group/ToggleGroup.d.ts +4 -0
  232. package/toggle-group/ToggleGroup.js +214 -0
  233. package/toggle-group/ToggleGroup.stories.tsx +173 -0
  234. package/toggle-group/types.d.ts +97 -0
  235. package/toggle-group/types.js +5 -0
  236. package/{dist/upload → upload}/Upload.js +23 -22
  237. package/upload/buttons-upload/ButtonsUpload.js +111 -0
  238. package/upload/buttons-upload/Icons.js +40 -0
  239. package/upload/dragAndDropArea/DragAndDropArea.js +225 -0
  240. package/upload/dragAndDropArea/Icons.js +39 -0
  241. package/upload/file-upload/FileToUpload.js +115 -0
  242. package/upload/file-upload/Icons.js +66 -0
  243. package/upload/files-upload/FilesToUpload.js +109 -0
  244. package/upload/index.d.ts +15 -0
  245. package/upload/transaction/Icons.js +160 -0
  246. package/upload/transaction/Transaction.js +104 -0
  247. package/upload/transactions/Transactions.js +94 -0
  248. package/useTheme.d.ts +2 -0
  249. package/useTheme.js +22 -0
  250. package/wizard/Wizard.d.ts +4 -0
  251. package/wizard/Wizard.js +281 -0
  252. package/wizard/Wizard.stories.tsx +224 -0
  253. package/wizard/types.d.ts +60 -0
  254. package/wizard/types.js +5 -0
  255. package/README.md +0 -66
  256. package/babel.config.js +0 -4
  257. package/dist/accordion/Accordion.js +0 -264
  258. package/dist/accordion/Accordion.stories.js +0 -207
  259. package/dist/accordion/readme.md +0 -96
  260. package/dist/alert/Alert.js +0 -302
  261. package/dist/alert/Alert.stories.js +0 -158
  262. package/dist/alert/close.svg +0 -4
  263. package/dist/alert/error.svg +0 -4
  264. package/dist/alert/info.svg +0 -4
  265. package/dist/alert/readme.md +0 -43
  266. package/dist/alert/success.svg +0 -4
  267. package/dist/alert/warning.svg +0 -4
  268. package/dist/box/Box.js +0 -148
  269. package/dist/button/Button.js +0 -183
  270. package/dist/button/Button.stories.js +0 -224
  271. package/dist/button/readme.md +0 -93
  272. package/dist/card/Card.js +0 -246
  273. package/dist/checkbox/Checkbox.js +0 -224
  274. package/dist/checkbox/Checkbox.stories.js +0 -144
  275. package/dist/checkbox/readme.md +0 -116
  276. package/dist/chip/Chip.js +0 -170
  277. package/dist/common/services/example-service.js +0 -10
  278. package/dist/common/services/example-service.test.js +0 -12
  279. package/dist/common/utils.js +0 -42
  280. package/dist/common/variables.js +0 -233
  281. package/dist/date/Date.stories.js +0 -205
  282. package/dist/date/calendar.svg +0 -1
  283. package/dist/date/calendar_dark.svg +0 -1
  284. package/dist/date/readme.md +0 -73
  285. package/dist/dialog/Dialog.js +0 -193
  286. package/dist/dialog/Dialog.stories.js +0 -217
  287. package/dist/dialog/readme.md +0 -32
  288. package/dist/dropdown/Dropdown.js +0 -412
  289. package/dist/dropdown/Dropdown.stories.js +0 -249
  290. package/dist/dropdown/baseline-arrow_drop_down.svg +0 -1
  291. package/dist/dropdown/baseline-arrow_drop_down_wh.svg +0 -4
  292. package/dist/dropdown/baseline-arrow_drop_up.svg +0 -1
  293. package/dist/dropdown/baseline-arrow_drop_up_wh.svg +0 -4
  294. package/dist/dropdown/readme.md +0 -69
  295. package/dist/footer/Footer.js +0 -341
  296. package/dist/footer/Footer.stories.js +0 -94
  297. package/dist/footer/dxc_logo_wht.png +0 -0
  298. package/dist/footer/readme.md +0 -41
  299. package/dist/header/Header.js +0 -350
  300. package/dist/header/Header.stories.js +0 -176
  301. package/dist/header/close_icon.svg +0 -1
  302. package/dist/header/dxc_logo_black.png +0 -0
  303. package/dist/header/dxc_logo_white.png +0 -0
  304. package/dist/header/hamb_menu_black.svg +0 -1
  305. package/dist/header/hamb_menu_white.svg +0 -1
  306. package/dist/header/readme.md +0 -33
  307. package/dist/heading/Heading.js +0 -159
  308. package/dist/input-text/InputText.js +0 -519
  309. package/dist/input-text/InputText.stories.js +0 -209
  310. package/dist/input-text/error.svg +0 -1
  311. package/dist/input-text/readme.md +0 -91
  312. package/dist/link/Link.js +0 -129
  313. package/dist/link/readme.md +0 -51
  314. package/dist/paginator/Paginator.js +0 -178
  315. package/dist/paginator/images/next.svg +0 -3
  316. package/dist/paginator/images/nextPage.svg +0 -3
  317. package/dist/paginator/images/previous.svg +0 -3
  318. package/dist/paginator/images/previousPage.svg +0 -3
  319. package/dist/paginator/readme.md +0 -50
  320. package/dist/progress-bar/ProgressBar.js +0 -189
  321. package/dist/progress-bar/ProgressBar.stories.js +0 -280
  322. package/dist/progress-bar/readme.md +0 -63
  323. package/dist/radio/Radio.js +0 -191
  324. package/dist/radio/Radio.stories.js +0 -166
  325. package/dist/radio/readme.md +0 -70
  326. package/dist/resultsetTable/ResultsetTable.js +0 -334
  327. package/dist/resultsetTable/arrow_downward-24px_wht.svg +0 -1
  328. package/dist/resultsetTable/arrow_upward-24px_wht.svg +0 -1
  329. package/dist/resultsetTable/unfold_more-24px_wht.svg +0 -1
  330. package/dist/select/Select.js +0 -442
  331. package/dist/select/Select.stories.js +0 -235
  332. package/dist/select/readme.md +0 -72
  333. package/dist/sidenav/Sidenav.js +0 -217
  334. package/dist/sidenav/arrow_icon.svg +0 -3
  335. package/dist/slider/Slider.js +0 -258
  336. package/dist/slider/Slider.stories.js +0 -241
  337. package/dist/slider/readme.md +0 -64
  338. package/dist/spinner/Spinner.js +0 -196
  339. package/dist/spinner/Spinner.stories.js +0 -183
  340. package/dist/spinner/readme.md +0 -65
  341. package/dist/switch/Switch.js +0 -195
  342. package/dist/switch/Switch.stories.js +0 -134
  343. package/dist/switch/readme.md +0 -133
  344. package/dist/table/Table.js +0 -84
  345. package/dist/tabs/Tabs.js +0 -170
  346. package/dist/tabs/Tabs.stories.js +0 -130
  347. package/dist/tabs/readme.md +0 -78
  348. package/dist/tabs-for-sections/TabsForSections.js +0 -107
  349. package/dist/tabs-for-sections/readme.md +0 -78
  350. package/dist/tag/Tag.js +0 -217
  351. package/dist/textarea/Textarea.js +0 -226
  352. package/dist/toggle/Toggle.stories.js +0 -297
  353. package/dist/toggle/readme.md +0 -80
  354. package/dist/upload/Upload.stories.js +0 -72
  355. package/dist/upload/buttons-upload/ButtonsUpload.js +0 -125
  356. package/dist/upload/buttons-upload/drag-drop-icon.svg +0 -4
  357. package/dist/upload/buttons-upload/upload-button.svg +0 -1
  358. package/dist/upload/dragAndDropArea/DragAndDropArea.js +0 -282
  359. package/dist/upload/dragAndDropArea/upload_drop.svg +0 -4
  360. package/dist/upload/dragAndDropArea/upload_file.svg +0 -4
  361. package/dist/upload/file-upload/FileToUpload.js +0 -158
  362. package/dist/upload/file-upload/audio-icon.svg +0 -4
  363. package/dist/upload/file-upload/close.svg +0 -4
  364. package/dist/upload/file-upload/file-icon.svg +0 -4
  365. package/dist/upload/file-upload/video-icon.svg +0 -4
  366. package/dist/upload/files-upload/FilesToUpload.js +0 -123
  367. package/dist/upload/readme.md +0 -37
  368. package/dist/upload/transaction/Transaction.js +0 -155
  369. package/dist/upload/transaction/audio-icon-err.svg +0 -4
  370. package/dist/upload/transaction/audio-icon.svg +0 -4
  371. package/dist/upload/transaction/error-icon.svg +0 -4
  372. package/dist/upload/transaction/file-icon-err.svg +0 -4
  373. package/dist/upload/transaction/file-icon.svg +0 -4
  374. package/dist/upload/transaction/image-icon-err.svg +0 -4
  375. package/dist/upload/transaction/image-icon.svg +0 -4
  376. package/dist/upload/transaction/success-icon.svg +0 -4
  377. package/dist/upload/transaction/video-icon-err.svg +0 -4
  378. package/dist/upload/transaction/video-icon.svg +0 -4
  379. package/dist/upload/transactions/Transactions.js +0 -120
  380. package/dist/wizard/Wizard.js +0 -310
  381. package/dist/wizard/invalid_icon.svg +0 -6
  382. package/dist/wizard/valid_icon.svg +0 -6
  383. package/dist/wizard/validation-wrong.svg +0 -6
  384. package/test/Accordion.test.js +0 -33
  385. package/test/Alert.test.js +0 -53
  386. package/test/Box.test.js +0 -10
  387. package/test/Button.test.js +0 -18
  388. package/test/Card.test.js +0 -30
  389. package/test/Checkbox.test.js +0 -45
  390. package/test/Chip.test.js +0 -25
  391. package/test/Date.test.js +0 -393
  392. package/test/Dialog.test.js +0 -23
  393. package/test/Dropdown.test.js +0 -130
  394. package/test/Footer.test.js +0 -99
  395. package/test/Header.test.js +0 -39
  396. package/test/Heading.test.js +0 -35
  397. package/test/InputText.test.js +0 -236
  398. package/test/Link.test.js +0 -25
  399. package/test/Paginator.test.js +0 -165
  400. package/test/ProgressBar.test.js +0 -35
  401. package/test/Radio.test.js +0 -37
  402. package/test/ResultsetTable.test.js +0 -282
  403. package/test/Select.test.js +0 -191
  404. package/test/Sidenav.test.js +0 -87
  405. package/test/Slider.test.js +0 -65
  406. package/test/Spinner.test.js +0 -27
  407. package/test/Switch.test.js +0 -45
  408. package/test/Table.test.js +0 -36
  409. package/test/Tabs.test.js +0 -88
  410. package/test/TabsForSections.test.js +0 -34
  411. package/test/Tag.test.js +0 -32
  412. package/test/TextArea.test.js +0 -52
  413. package/test/Toggle.test.js +0 -43
  414. package/test/Upload.test.js +0 -60
  415. package/test/Wizard.test.js +0 -130
  416. package/test/mocks/pngMock.js +0 -1
  417. package/test/mocks/svgMock.js +0 -1
@@ -0,0 +1,89 @@
1
+ /// <reference types="react" />
2
+ declare type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
3
+ declare type Margin = {
4
+ top?: Space;
5
+ bottom?: Space;
6
+ left?: Space;
7
+ right?: Space;
8
+ };
9
+ declare type SVG = React.SVGProps<SVGSVGElement> | React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
10
+ declare type Option = {
11
+ /**
12
+ * Option display value.
13
+ */
14
+ label?: string;
15
+ /**
16
+ * Element used as the icon that will be placed next to the
17
+ * option label.
18
+ */
19
+ icon?: SVG;
20
+ /**
21
+ * @deprecated URL of the icon that will be placed next to the option label.
22
+ */
23
+ iconSrc?: string;
24
+ /**
25
+ * Option inner value.
26
+ */
27
+ value: string;
28
+ };
29
+ declare type Props = {
30
+ /**
31
+ * An array of objects representing the options.
32
+ */
33
+ options: Option[];
34
+ /**
35
+ * In case options include icons, whether the icon should appear
36
+ * after or before the label.
37
+ */
38
+ optionsIconPosition?: "before" | "after";
39
+ /**
40
+ * Element used as the icon that will be placed next to the
41
+ * dropdown label.
42
+ */
43
+ icon?: SVG;
44
+ /**
45
+ * @deprecated URL of the icon that will be placed next to the
46
+ * dropdown label.
47
+ */
48
+ iconSrc?: string;
49
+ /**
50
+ * Whether the icon should appear after or before the label.
51
+ */
52
+ iconPosition?: "before" | "after";
53
+ /**
54
+ * Text to be placed within the dropdown.
55
+ */
56
+ label?: string;
57
+ /**
58
+ * Whether the arrow next to the label must be displayed or not.
59
+ */
60
+ caretHidden?: boolean;
61
+ /**
62
+ * This function will be called every time the selection changes.
63
+ * The value of the selected option will be passed as a parameter.
64
+ */
65
+ onSelectOption: (value: string) => void;
66
+ /**
67
+ * If true, the options are showed when the dropdown is hover.
68
+ */
69
+ expandOnHover?: boolean;
70
+ /**
71
+ * Size of the margin to be applied to the component.
72
+ * You can pass an object with 'top', 'bottom', 'left' and 'right'
73
+ * properties in order to specify different margin sizes.
74
+ */
75
+ margin?: Space | Margin;
76
+ /**
77
+ * Size of the component.
78
+ */
79
+ size?: "small" | "medium" | "large" | "fillParent" | "fitContent";
80
+ /**
81
+ * Value of the tabindex.
82
+ */
83
+ tabIndex?: number;
84
+ /**
85
+ * If true, the component will be disabled.
86
+ */
87
+ disabled?: boolean;
88
+ };
89
+ export default Props;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import FileInputPropsType from "./types";
3
+ declare const DxcFileInput: ({ name, mode, label, buttonLabel, dropAreaLabel, helperText, accept, minSize, maxSize, showPreview, multiple, disabled, callbackFile, value, margin, tabIndex, }: FileInputPropsType) => JSX.Element;
4
+ export default DxcFileInput;
@@ -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;