@dxc-technology/halstack-react 0.0.0-a0543ea → 0.0.0-a0a27b4

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 (395) 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/{dist/select/Select.js → V3Select/V3Select.js} +40 -134
  6. package/V3Select/index.d.ts +27 -0
  7. package/{dist/textarea/Textarea.js → V3Textarea/V3Textarea.js} +16 -20
  8. package/V3Textarea/index.d.ts +27 -0
  9. package/accordion/Accordion.d.ts +4 -0
  10. package/{dist/accordion → accordion}/Accordion.js +37 -132
  11. package/accordion/Accordion.stories.tsx +307 -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/{dist/alert → alert}/Alert.js +40 -153
  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/{dist/box → box}/Box.js +15 -45
  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/{dist/button → button}/Button.js +25 -84
  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/{dist/card → card}/Card.js +34 -124
  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/{dist/checkbox → checkbox}/Checkbox.js +18 -65
  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/{dist/chip → chip}/Chip.js +22 -88
  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 +3 -11
  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/{dist/common → common}/utils.js +0 -0
  64. package/{dist/common → common}/variables.js +210 -174
  65. package/{dist/date → date}/Date.js +17 -23
  66. package/date/index.d.ts +27 -0
  67. package/date-input/DateInput.d.ts +4 -0
  68. package/{dist/new-date/NewDate.js → date-input/DateInput.js} +59 -101
  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/{dist/dialog → dialog}/Dialog.js +24 -76
  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/{dist/dropdown → dropdown}/Dropdown.js +45 -172
  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 +507 -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/{dist/heading → heading}/Heading.js +31 -90
  105. package/heading/Heading.stories.tsx +54 -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/{dist/input-text → input-text}/InputText.js +39 -135
  110. package/input-text/index.d.ts +36 -0
  111. package/layout/ApplicationLayout.d.ts +10 -0
  112. package/{dist/layout → layout}/ApplicationLayout.js +43 -149
  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/{dist/link → link}/Link.js +19 -95
  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 +95 -0
  125. package/main.d.ts +48 -0
  126. package/{dist/main.js → main.js} +124 -96
  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/number/NumberContext.js → number-input/NumberInputContext.js} +6 -3
  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 +34 -25
  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/{dist/password/Password.js → password-input/PasswordInput.js} +45 -82
  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/{dist/progress-bar → progress-bar}/ProgressBar.js +22 -94
  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/{dist/radio → radio}/Radio.js +17 -52
  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 +117 -0
  160. package/radio-group/RadioGroup.d.ts +4 -0
  161. package/radio-group/RadioGroup.js +231 -0
  162. package/radio-group/RadioGroup.stories.tsx +57 -0
  163. package/radio-group/types.d.ts +31 -0
  164. package/radio-group/types.js +5 -0
  165. package/resultsetTable/ResultsetTable.d.ts +4 -0
  166. package/{dist/resultsetTable → resultsetTable}/ResultsetTable.js +39 -146
  167. package/resultsetTable/ResultsetTable.stories.tsx +277 -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 +127 -0
  172. package/row/Row.stories.tsx +239 -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/{dist/sidenav → sidenav}/Sidenav.js +21 -64
  180. package/sidenav/Sidenav.stories.tsx +182 -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/{dist/slider → slider}/Slider.js +78 -155
  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 +103 -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 +97 -0
  195. package/stack/Stack.stories.tsx +166 -0
  196. package/switch/Switch.d.ts +4 -0
  197. package/{dist/switch → switch}/Switch.js +28 -71
  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/{dist/table → table}/Table.js +12 -26
  203. package/table/Table.stories.jsx +277 -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 +122 -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/{dist/new-textarea/NewTextarea.js → textarea/Textarea.js} +40 -125
  226. package/textarea/Textarea.stories.jsx +136 -0
  227. package/textarea/types.d.ts +130 -0
  228. package/textarea/types.js +5 -0
  229. package/{dist/toggle → toggle}/Toggle.js +16 -50
  230. package/toggle/index.d.ts +21 -0
  231. package/toggle-group/ToggleGroup.d.ts +4 -0
  232. package/{dist/toggle-group → toggle-group}/ToggleGroup.js +35 -148
  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 +11 -15
  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/{dist/upload → upload}/files-upload/FilesToUpload.js +13 -27
  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/{dist/useTheme.js → useTheme.js} +1 -1
  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 -8
  257. package/dist/BackgroundColorContext.js +0 -46
  258. package/dist/ThemeContext.js +0 -248
  259. package/dist/accordion-group/AccordionGroup.js +0 -186
  260. package/dist/alert/index.d.ts +0 -51
  261. package/dist/badge/Badge.js +0 -63
  262. package/dist/checkbox/Checkbox.stories.js +0 -144
  263. package/dist/checkbox/readme.md +0 -116
  264. package/dist/date/Date.stories.js +0 -205
  265. package/dist/date/readme.md +0 -73
  266. package/dist/file-input/FileInput.js +0 -644
  267. package/dist/file-input/FileItem.js +0 -280
  268. package/dist/file-input/index.d.ts +0 -81
  269. package/dist/footer/Footer.js +0 -395
  270. package/dist/footer/Footer.stories.js +0 -94
  271. package/dist/footer/dxc_logo.svg +0 -15
  272. package/dist/footer/readme.md +0 -41
  273. package/dist/header/Header.js +0 -403
  274. package/dist/header/Header.stories.js +0 -176
  275. package/dist/header/close_icon.svg +0 -1
  276. package/dist/header/dxc_logo_black.svg +0 -8
  277. package/dist/header/hamb_menu_black.svg +0 -1
  278. package/dist/header/hamb_menu_white.svg +0 -1
  279. package/dist/header/readme.md +0 -33
  280. package/dist/input-text/InputText.stories.js +0 -209
  281. package/dist/input-text/error.svg +0 -1
  282. package/dist/input-text/readme.md +0 -91
  283. package/dist/layout/facebook.svg +0 -45
  284. package/dist/layout/linkedin.svg +0 -50
  285. package/dist/layout/twitter.svg +0 -53
  286. package/dist/link/readme.md +0 -51
  287. package/dist/main.d.ts +0 -8
  288. package/dist/new-date/index.d.ts +0 -95
  289. package/dist/new-input-text/NewInputText.js +0 -971
  290. package/dist/new-input-text/index.d.ts +0 -135
  291. package/dist/new-select/NewSelect.js +0 -836
  292. package/dist/new-select/index.d.ts +0 -53
  293. package/dist/new-textarea/index.d.ts +0 -117
  294. package/dist/number/Number.js +0 -136
  295. package/dist/number/index.d.ts +0 -113
  296. package/dist/paginator/Paginator.js +0 -289
  297. package/dist/paginator/images/next.svg +0 -3
  298. package/dist/paginator/images/nextPage.svg +0 -3
  299. package/dist/paginator/images/previous.svg +0 -3
  300. package/dist/paginator/images/previousPage.svg +0 -3
  301. package/dist/paginator/readme.md +0 -50
  302. package/dist/password/index.d.ts +0 -94
  303. package/dist/password/styles.css +0 -3
  304. package/dist/progress-bar/ProgressBar.stories.js +0 -280
  305. package/dist/progress-bar/readme.md +0 -63
  306. package/dist/radio/Radio.stories.js +0 -166
  307. package/dist/radio/readme.md +0 -70
  308. package/dist/resultsetTable/arrow_downward-24px_wht.svg +0 -1
  309. package/dist/resultsetTable/arrow_upward-24px_wht.svg +0 -1
  310. package/dist/resultsetTable/unfold_more-24px_wht.svg +0 -1
  311. package/dist/slider/Slider.stories.js +0 -241
  312. package/dist/slider/readme.md +0 -64
  313. package/dist/spinner/Spinner.js +0 -381
  314. package/dist/spinner/Spinner.stories.js +0 -183
  315. package/dist/spinner/readme.md +0 -65
  316. package/dist/switch/Switch.stories.js +0 -134
  317. package/dist/switch/readme.md +0 -133
  318. package/dist/tabs/Tabs.js +0 -343
  319. package/dist/tabs/Tabs.stories.js +0 -130
  320. package/dist/tabs/readme.md +0 -78
  321. package/dist/tabs-for-sections/TabsForSections.js +0 -92
  322. package/dist/tabs-for-sections/readme.md +0 -78
  323. package/dist/tag/Tag.js +0 -282
  324. package/dist/toggle/Toggle.stories.js +0 -297
  325. package/dist/toggle/readme.md +0 -80
  326. package/dist/upload/Upload.stories.js +0 -72
  327. package/dist/upload/buttons-upload/ButtonsUpload.js +0 -139
  328. package/dist/upload/buttons-upload/drag-drop-icon.svg +0 -4
  329. package/dist/upload/buttons-upload/upload-button.svg +0 -1
  330. package/dist/upload/dragAndDropArea/DragAndDropArea.js +0 -329
  331. package/dist/upload/dragAndDropArea/upload_drop.svg +0 -4
  332. package/dist/upload/dragAndDropArea/upload_file.svg +0 -4
  333. package/dist/upload/file-upload/FileToUpload.js +0 -184
  334. package/dist/upload/file-upload/audio-icon.svg +0 -4
  335. package/dist/upload/file-upload/close.svg +0 -4
  336. package/dist/upload/file-upload/file-icon.svg +0 -4
  337. package/dist/upload/file-upload/video-icon.svg +0 -4
  338. package/dist/upload/readme.md +0 -37
  339. package/dist/upload/transaction/Transaction.js +0 -175
  340. package/dist/upload/transaction/audio-icon-err.svg +0 -4
  341. package/dist/upload/transaction/audio-icon.svg +0 -4
  342. package/dist/upload/transaction/error-icon.svg +0 -4
  343. package/dist/upload/transaction/file-icon-err.svg +0 -4
  344. package/dist/upload/transaction/file-icon.svg +0 -4
  345. package/dist/upload/transaction/image-icon-err.svg +0 -4
  346. package/dist/upload/transaction/image-icon.svg +0 -4
  347. package/dist/upload/transaction/success-icon.svg +0 -4
  348. package/dist/upload/transaction/video-icon-err.svg +0 -4
  349. package/dist/upload/transaction/video-icon.svg +0 -4
  350. package/dist/upload/transactions/Transactions.js +0 -138
  351. package/dist/wizard/Wizard.js +0 -411
  352. package/dist/wizard/invalid_icon.svg +0 -5
  353. package/dist/wizard/valid_icon.svg +0 -5
  354. package/dist/wizard/validation-wrong.svg +0 -6
  355. package/test/Accordion.test.js +0 -33
  356. package/test/AccordionGroup.test.js +0 -125
  357. package/test/Alert.test.js +0 -53
  358. package/test/Box.test.js +0 -10
  359. package/test/Button.test.js +0 -18
  360. package/test/Card.test.js +0 -30
  361. package/test/Checkbox.test.js +0 -45
  362. package/test/Chip.test.js +0 -25
  363. package/test/Date.test.js +0 -393
  364. package/test/Dialog.test.js +0 -23
  365. package/test/Dropdown.test.js +0 -145
  366. package/test/FileInput.test.js +0 -201
  367. package/test/Footer.test.js +0 -99
  368. package/test/Header.test.js +0 -39
  369. package/test/Heading.test.js +0 -35
  370. package/test/InputText.test.js +0 -240
  371. package/test/Link.test.js +0 -43
  372. package/test/NewDate.test.js +0 -232
  373. package/test/NewInputText.test.js +0 -734
  374. package/test/NewTextarea.test.js +0 -195
  375. package/test/Number.test.js +0 -257
  376. package/test/Paginator.test.js +0 -177
  377. package/test/Password.test.js +0 -83
  378. package/test/ProgressBar.test.js +0 -35
  379. package/test/Radio.test.js +0 -37
  380. package/test/ResultsetTable.test.js +0 -329
  381. package/test/Select.test.js +0 -212
  382. package/test/Sidenav.test.js +0 -45
  383. package/test/Slider.test.js +0 -82
  384. package/test/Spinner.test.js +0 -32
  385. package/test/Switch.test.js +0 -45
  386. package/test/Table.test.js +0 -36
  387. package/test/Tabs.test.js +0 -109
  388. package/test/TabsForSections.test.js +0 -34
  389. package/test/Tag.test.js +0 -32
  390. package/test/TextArea.test.js +0 -52
  391. package/test/ToggleGroup.test.js +0 -85
  392. package/test/Upload.test.js +0 -60
  393. package/test/Wizard.test.js +0 -130
  394. package/test/mocks/pngMock.js +0 -1
  395. package/test/mocks/svgMock.js +0 -1
@@ -1,209 +0,0 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
-
5
- var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
6
-
7
- var _react = _interopRequireDefault(require("react"));
8
-
9
- var _react2 = require("@storybook/react");
10
-
11
- var _addonActions = require("@storybook/addon-actions");
12
-
13
- var _addonKnobs = require("@storybook/addon-knobs");
14
-
15
- var _amazon = _interopRequireDefault(require("../../.storybook/public/amazon.svg"));
16
-
17
- var _readme = _interopRequireDefault(require("./readme.md"));
18
-
19
- var _InputText = _interopRequireDefault(require("./InputText"));
20
-
21
- var onChange = (0, _addonActions.action)("onChange");
22
-
23
- onChange.toString = function () {
24
- return "onChangeHandler";
25
- };
26
-
27
- var onBlur = (0, _addonActions.action)("onBlur");
28
-
29
- onBlur.toString = function () {
30
- return "onBlurHandler";
31
- };
32
-
33
- var onClickIcon = (0, _addonActions.action)("onClickIcon");
34
-
35
- onClickIcon.toString = function () {
36
- return "onClickIconHandler";
37
- };
38
-
39
- (0, _react2.storiesOf)("Form Components|Text", module).add("Component", function () {
40
- return _react["default"].createElement("div", null, _react["default"].createElement("h3", null, "Light"), _react["default"].createElement("div", null, _react["default"].createElement(_InputText["default"], {
41
- disabled: false,
42
- label: "Normal Input",
43
- error: false,
44
- value: "Test Value",
45
- onChange: onChange,
46
- onBlur: onBlur,
47
- required: true,
48
- assistiveText: "Assistive Text Here"
49
- }), _react["default"].createElement(_InputText["default"], {
50
- disabled: false,
51
- label: "With Assistive Text",
52
- assistiveText: "Assistive Text Here",
53
- error: true,
54
- onChange: onChange,
55
- onBlur: onBlur,
56
- required: true
57
- }), _react["default"].createElement(_InputText["default"], {
58
- disabled: false,
59
- label: "With Prefix text",
60
- prefijo: "Kg",
61
- onChange: onChange,
62
- onBlur: onBlur,
63
- assistiveText: "Assistive Text Here"
64
- }), _react["default"].createElement(_InputText["default"], {
65
- disabled: true,
66
- label: "With Sufix text",
67
- sufix: "\u20AC",
68
- onChange: onChange,
69
- onBlur: onBlur
70
- }), _react["default"].createElement(_InputText["default"], {
71
- disabled: true,
72
- label: "With Prefix icon",
73
- prefijoIconSrc: _amazon["default"],
74
- onChange: onChange,
75
- onBlur: onBlur,
76
- onClickIcon: onClickIcon
77
- }), _react["default"].createElement(_InputText["default"], {
78
- disabled: true,
79
- label: "With Sufix icon",
80
- sufixIconSrc: _amazon["default"],
81
- onChange: onChange,
82
- onBlur: onBlur,
83
- onClickIcon: onClickIcon
84
- }), _react["default"].createElement(_InputText["default"], {
85
- disabled: false,
86
- label: "With Sufix icon",
87
- sufixIconSrc: _amazon["default"],
88
- onChange: onChange,
89
- onBlur: onBlur,
90
- onClickIcon: onClickIcon
91
- }), _react["default"].createElement(_InputText["default"], {
92
- disabled: false,
93
- label: "Multiline",
94
- multiline: true,
95
- onChange: onChange,
96
- onBlur: onBlur,
97
- onClickIcon: onClickIcon
98
- })), _react["default"].createElement("h3", null, "Dark"), _react["default"].createElement("div", {
99
- style: {
100
- background: "black"
101
- }
102
- }, _react["default"].createElement(_InputText["default"], {
103
- disabled: false,
104
- theme: "dark",
105
- label: "Normal Input",
106
- error: false,
107
- value: "Test Value",
108
- onChange: onChange,
109
- onBlur: onBlur,
110
- required: true,
111
- assistiveText: "Assistive Text Here"
112
- }), _react["default"].createElement(_InputText["default"], {
113
- disabled: false,
114
- theme: "dark",
115
- label: "With Assistive Text",
116
- assistiveText: "Assistive Text Here",
117
- error: true,
118
- onChange: onChange,
119
- onBlur: onBlur,
120
- required: true
121
- }), _react["default"].createElement(_InputText["default"], {
122
- disabled: false,
123
- theme: "dark",
124
- label: "With Prefix text",
125
- prefijo: "Kg",
126
- onChange: onChange,
127
- onBlur: onBlur,
128
- assistiveText: "Assistive Text Here"
129
- }), _react["default"].createElement(_InputText["default"], {
130
- disabled: true,
131
- label: "With Sufix text",
132
- sufix: "\u20AC",
133
- theme: "dark",
134
- onChange: onChange,
135
- onBlur: onBlur
136
- }), _react["default"].createElement(_InputText["default"], {
137
- disabled: false,
138
- theme: "dark",
139
- label: "With Prefix icon",
140
- prefijoIconSrc: _amazon["default"],
141
- onChange: onChange,
142
- onBlur: onBlur,
143
- onClickIcon: onClickIcon
144
- }), _react["default"].createElement(_InputText["default"], {
145
- disabled: false,
146
- theme: "dark",
147
- label: "With Sufix icon",
148
- sufixIconSrc: _amazon["default"],
149
- onChange: onChange,
150
- onBlur: onBlur,
151
- onClickIcon: onClickIcon
152
- }), _react["default"].createElement(_InputText["default"], {
153
- disabled: false,
154
- theme: "dark",
155
- label: "With Sufix icon",
156
- sufixIconSrc: _amazon["default"],
157
- onChange: onChange,
158
- onBlur: onBlur,
159
- onClickIcon: onClickIcon
160
- }), _react["default"].createElement(_InputText["default"], {
161
- disabled: false,
162
- label: "Multiline",
163
- multiline: true,
164
- sufix: "\u20AC",
165
- prefijo: "Kg",
166
- theme: "dark",
167
- onChange: onChange,
168
- onBlur: onBlur,
169
- onClickIcon: onClickIcon
170
- })));
171
- }, {
172
- notes: {
173
- markdown: _readme["default"]
174
- }
175
- });
176
-
177
- var knobProps = function knobProps() {
178
- return {
179
- label: (0, _addonKnobs.text)("Label", "Test Label"),
180
- theme: (0, _addonKnobs.select)("Theme", {
181
- light: "light",
182
- dark: "dark"
183
- }, "light"),
184
- assistiveText: (0, _addonKnobs.text)("Assistive text", "Helper text"),
185
- disabled: (0, _addonKnobs["boolean"])("Disabled", false),
186
- prefijo: (0, _addonKnobs.text)("Prefix word", ""),
187
- sufix: (0, _addonKnobs.text)("Sufix word", ""),
188
- required: (0, _addonKnobs["boolean"])("Required", false),
189
- error: (0, _addonKnobs["boolean"])("Error", false),
190
- multiline: (0, _addonKnobs["boolean"])("Multiline", false)
191
- };
192
- };
193
-
194
- (0, _react2.storiesOf)("Form Components|Text", module).add("Knobs example", function () {
195
- var props = knobProps();
196
- return _react["default"].createElement("div", {
197
- style: {
198
- background: props.theme === "dark" && "black" || "transparent"
199
- }
200
- }, _react["default"].createElement(_InputText["default"], (0, _extends2["default"])({}, props, {
201
- onChange: onChange,
202
- onBlur: onBlur,
203
- onClickIcon: onClickIcon
204
- })));
205
- }, {
206
- notes: {
207
- markdown: _readme["default"]
208
- }
209
- });
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" height="24" width="24" style=""><rect id="backgroundrect" width="100%" height="100%" x="0" y="0" fill="none" stroke="none"/><g class="currentLayer" style=""><title>Layer 1</title><path d="M0 0h24v24H0V0z" fill="transparent" id="svg_1" class="" stroke="transparent" stroke-opacity="1" fill-opacity="1"/><path d="M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" id="svg_2" class="selected" stroke="#eb1a1a" stroke-opacity="1" fill="#FF6161" fill-opacity="1"/></g></svg>
@@ -1,91 +0,0 @@
1
- # DXC Input Text Component
2
-
3
- ## Props
4
-
5
- <table>
6
- <tr style="background-color: grey">
7
- <td>Name</td>
8
- <td>Default</td>
9
- <td>Description</td>
10
- </tr>
11
- <tr>
12
- <td>value: string</td>
13
- <td><code></code></td>
14
- <td>The value of the input element.</td>
15
- </tr>
16
- <tr>
17
- <td>label: string</td>
18
- <td></td>
19
- <td>Text to be placed next to the input.</td>
20
- </tr>
21
- <tr>
22
- <td>assistiveText: string</td>
23
- <td></td>
24
- <td>Assistive text to be placed at the bottom of the input.</td>
25
- </tr>
26
- <tr>
27
- <td>prefix: string</td>
28
- <td></td>
29
- <td>A prefix to be placed before the input value. Use prefixIconSrc in case the prefix needs to be an icon.</td>
30
- </tr>
31
- <tr>
32
- <td>suffix: string</td>
33
- <td></td>
34
- <td>A suffix to be placed after the input value. Use suffixIconSrc in case the suffix needs to be an icon.</td>
35
- </tr>
36
- <tr>
37
- <td>prefixIconSrc: string</td>
38
- <td></td>
39
- <td>The path of an icon to be placed before the input value.</td>
40
- </tr>
41
- <tr>
42
- <td>suffixIconSrc: string</td>
43
- <td></td>
44
- <td>The path of an icon to be placed after the input value.</td>
45
- </tr>
46
- <tr>
47
- <td>theme: 'light' | 'dark'</td>
48
- <td><code>'light'</code></td>
49
- <td>Uses one of the available component themes.</td>
50
- </tr>
51
- <tr>
52
- <td>name: string</td>
53
- <td></td>
54
- <td>Name attribute of the input element.</td>
55
- </tr>
56
- <tr>
57
- <td>disabled: boolean</td>
58
- <td><code>false</code></td>
59
- <td>If true, the component will be disabled.</td>
60
- </tr>
61
- <tr>
62
- <td>required: boolean</td>
63
- <td><code>false</code></td>
64
- <td>If true, the input will change its appearence, showing that the value is required.</td>
65
- </tr>
66
- <tr>
67
- <td>invalid: boolean</td>
68
- <td><code>false</code></td>
69
- <td>If true, the input will change its appearence, showing that the value is valid.</td>
70
- </tr>
71
- <tr>
72
- <td>multiline: boolean</td>
73
- <td><code>false</code></td>
74
- <td>If true, a resizable text area will be displayed.</td>
75
- </tr>
76
- <tr>
77
- <td>onChange: function</td>
78
- <td></td>
79
- <td>This function will be called when the user changes the value of the input. The new value will be passed as a parameter.</td>
80
- </tr>
81
- <tr>
82
- <td>onBlur: function</td>
83
- <td></td>
84
- <td>This function will be called when the focus moves away from the input. The input value will be passed as a parameter.</td>
85
- </tr>
86
- <tr>
87
- <td>onClickIcon: function</td>
88
- <td></td>
89
- <td>This function will be called when either of the two icons, prefixIcon or sufixIcon, is clicked.</td>
90
- </tr>
91
- </table>
@@ -1,45 +0,0 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="438.536px" height="438.536px" viewBox="0 0 438.536 438.536" style="enable-background:new 0 0 438.536 438.536;"
6
- xml:space="preserve" fill="#FFFFFF">
7
- <g>
8
- <path d="M414.41,24.123C398.333,8.042,378.963,0,356.315,0H82.228C59.58,0,40.21,8.042,24.126,24.123
9
- C8.045,40.207,0.003,59.576,0.003,82.225v274.084c0,22.647,8.042,42.018,24.123,58.102c16.084,16.084,35.454,24.126,58.102,24.126
10
- h274.084c22.648,0,42.018-8.042,58.095-24.126c16.084-16.084,24.126-35.454,24.126-58.102V82.225
11
- C438.532,59.576,430.49,40.204,414.41,24.123z M373.155,225.548h-49.963V406.84h-74.802V225.548H210.99V163.02h37.401v-37.402
12
- c0-26.838,6.283-47.107,18.843-60.813c12.559-13.706,33.304-20.555,62.242-20.555h49.963v62.526h-31.401
13
- c-10.663,0-17.467,1.853-20.417,5.568c-2.949,3.711-4.428,10.23-4.428,19.558v31.119h56.534L373.155,225.548z"/>
14
- </g>
15
- <g>
16
- </g>
17
- <g>
18
- </g>
19
- <g>
20
- </g>
21
- <g>
22
- </g>
23
- <g>
24
- </g>
25
- <g>
26
- </g>
27
- <g>
28
- </g>
29
- <g>
30
- </g>
31
- <g>
32
- </g>
33
- <g>
34
- </g>
35
- <g>
36
- </g>
37
- <g>
38
- </g>
39
- <g>
40
- </g>
41
- <g>
42
- </g>
43
- <g>
44
- </g>
45
- </svg>
@@ -1,50 +0,0 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="438.536px" height="438.536px" viewBox="0 0 438.536 438.536" style="enable-background:new 0 0 438.536 438.536;"
6
- xml:space="preserve" fill="#FFFFFF">
7
- <g>
8
- <path d="M414.41,24.123C398.333,8.042,378.963,0,356.315,0H82.228C59.58,0,40.21,8.042,24.126,24.123
9
- C8.045,40.207,0.003,59.576,0.003,82.225v274.084c0,22.647,8.042,42.018,24.123,58.102c16.084,16.084,35.454,24.126,58.102,24.126
10
- h274.084c22.648,0,42.018-8.042,58.095-24.126c16.084-16.084,24.126-35.454,24.126-58.102V82.225
11
- C438.532,59.576,430.49,40.204,414.41,24.123z M133.618,367.157H67.666V169.016h65.952V367.157z M127.626,132.332
12
- c-6.851,6.567-15.893,9.851-27.124,9.851h-0.288c-10.848,0-19.648-3.284-26.407-9.851c-6.76-6.567-10.138-14.703-10.138-24.41
13
- c0-9.897,3.476-18.083,10.421-24.556c6.95-6.471,15.942-9.708,26.98-9.708c11.039,0,19.89,3.237,26.553,9.708
14
- c6.661,6.473,10.088,14.659,10.277,24.556C137.899,117.625,134.477,125.761,127.626,132.332z M370.873,367.157h-65.952v-105.92
15
- c0-29.879-11.036-44.823-33.116-44.823c-8.374,0-15.42,2.331-21.128,6.995c-5.715,4.661-9.996,10.324-12.847,16.991
16
- c-1.335,3.422-1.999,8.75-1.999,15.981v110.775h-65.952c0.571-119.529,0.571-185.579,0-198.142h65.952v27.974
17
- c13.867-21.681,33.558-32.544,59.101-32.544c22.84,0,41.21,7.52,55.104,22.554c13.895,15.037,20.841,37.214,20.841,66.519v113.64
18
- H370.873z"/>
19
- </g>
20
- <g>
21
- </g>
22
- <g>
23
- </g>
24
- <g>
25
- </g>
26
- <g>
27
- </g>
28
- <g>
29
- </g>
30
- <g>
31
- </g>
32
- <g>
33
- </g>
34
- <g>
35
- </g>
36
- <g>
37
- </g>
38
- <g>
39
- </g>
40
- <g>
41
- </g>
42
- <g>
43
- </g>
44
- <g>
45
- </g>
46
- <g>
47
- </g>
48
- <g>
49
- </g>
50
- </svg>
@@ -1,53 +0,0 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="438.536px" height="438.536px" viewBox="0 0 438.536 438.536" style="enable-background:new 0 0 438.536 438.536;"
6
- xml:space="preserve" fill="#FFFFFF">
7
- <g>
8
- <path d="M414.41,24.123C398.333,8.042,378.963,0,356.315,0H82.228C59.58,0,40.21,8.042,24.126,24.123
9
- C8.045,40.207,0.003,59.576,0.003,82.225v274.084c0,22.647,8.042,42.018,24.123,58.102c16.084,16.084,35.454,24.126,58.102,24.126
10
- h274.084c22.648,0,42.018-8.042,58.095-24.126c16.084-16.084,24.126-35.454,24.126-58.102V82.225
11
- C438.532,59.576,430.49,40.204,414.41,24.123z M335.471,168.735c0.191,1.713,0.288,4.278,0.288,7.71
12
- c0,15.989-2.334,32.025-6.995,48.104c-4.661,16.087-11.8,31.504-21.416,46.254c-9.606,14.749-21.074,27.791-34.396,39.115
13
- c-13.325,11.32-29.311,20.365-47.968,27.117c-18.648,6.762-38.637,10.143-59.953,10.143c-33.116,0-63.76-8.952-91.931-26.836
14
- c4.568,0.568,9.329,0.855,14.275,0.855c27.6,0,52.439-8.565,74.519-25.7c-12.941-0.185-24.506-4.179-34.688-11.991
15
- c-10.185-7.803-17.273-17.699-21.271-29.691c4.947,0.76,8.658,1.137,11.132,1.137c4.187,0,9.042-0.76,14.56-2.279
16
- c-13.894-2.669-25.598-9.562-35.115-20.697c-9.519-11.136-14.277-23.84-14.277-38.114v-0.571
17
- c10.085,4.755,19.602,7.229,28.549,7.422c-17.321-11.613-25.981-28.265-25.981-49.963c0-10.66,2.758-20.747,8.278-30.264
18
- c15.035,18.464,33.311,33.213,54.816,44.252c21.507,11.038,44.54,17.227,69.092,18.558c-0.95-3.616-1.427-8.186-1.427-13.704
19
- c0-16.562,5.853-30.692,17.56-42.399c11.703-11.706,25.837-17.561,42.394-17.561c17.515,0,32.079,6.283,43.688,18.846
20
- c13.134-2.474,25.892-7.33,38.26-14.56c-4.757,14.652-13.613,25.788-26.55,33.402c12.368-1.716,23.88-4.95,34.537-9.708
21
- C357.458,149.793,347.462,160.166,335.471,168.735z"/>
22
- </g>
23
- <g>
24
- </g>
25
- <g>
26
- </g>
27
- <g>
28
- </g>
29
- <g>
30
- </g>
31
- <g>
32
- </g>
33
- <g>
34
- </g>
35
- <g>
36
- </g>
37
- <g>
38
- </g>
39
- <g>
40
- </g>
41
- <g>
42
- </g>
43
- <g>
44
- </g>
45
- <g>
46
- </g>
47
- <g>
48
- </g>
49
- <g>
50
- </g>
51
- <g>
52
- </g>
53
- </svg>
@@ -1,51 +0,0 @@
1
- # DXC Input Text Component
2
-
3
- ## Props
4
-
5
- <table>
6
- <tr style="background-color: grey">
7
- <td>Name</td>
8
- <td>Default</td>
9
- <td>Description</td>
10
- </tr>
11
- <tr>
12
- <td>underlined: 'boolean'</td>
13
- <td><code>false</code></td>
14
- <td>If true, the text is underlined.</td>
15
- </tr>
16
- <tr>
17
- <td>color: boolean</td>
18
- <td><code>false</code></td>
19
- <td>If true, the link have the default colors.</td>
20
- </tr>
21
- <tr>
22
- <td>text: string</td>
23
- <td></td>
24
- <td>Link text.</td>
25
- </tr>
26
- <tr>
27
- <td>iconSrc: string</td>
28
- <td></td>
29
- <td>Source of the icon.</td>
30
- </tr>
31
- <tr>
32
- <td>iconPosition: 'before' | 'after'</td>
33
- <td><code>before</code></td>
34
- <td>Indicates the position of the icon in the component.</td>
35
- </tr>
36
- <tr>
37
- <td>href: string</td>
38
- <td></td>
39
- <td>Page to be opened when the user clicks on the link.</td>
40
- </tr>
41
- <tr>
42
- <td>theme: 'light' | 'dark'</td>
43
- <td><code>light</code></td>
44
- <td>Theme of the component.</td>
45
- </tr>
46
- <tr>
47
- <td>newWindow: boolean</td>
48
- <td><code>false</code></td>
49
- <td>If true, the page is opened in a new browser tab.</td>
50
- </tr>
51
- </table>
package/dist/main.d.ts DELETED
@@ -1,8 +0,0 @@
1
- export { default as DxcAlert } from "./alert/index";
2
- export { default as DxcNewSelect } from "./new-select/index";
3
- export { default as DxcNewInputText } from "./new-input-text/index";
4
- export { default as DxcNewDate } from "./new-date/index";
5
- export { default as DxcNewTextarea } from "./new-textarea/index";
6
- export { default as DxcNumber } from "./number/index";
7
- export { default as DxcPassword } from "./password/index";
8
- export { default as DxcFileInput } from "./file-input/index";
@@ -1,95 +0,0 @@
1
- type Size = "small" | "medium" | "large" | "fillParent";
2
- type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
3
- type Margin = {
4
- top?: Space;
5
- bottom?: Space;
6
- left?: Space;
7
- right?: Space;
8
- };
9
-
10
- type Props = {
11
- /**
12
- * Text to be placed above the date.
13
- */
14
- label?: string;
15
- /**
16
- * Name attribute of the input element.
17
- */
18
- name?: string;
19
- /**
20
- * Value of the input element. If undefined, the component will be uncontrolled and the value will be managed internally by the component.
21
- */
22
- value?: string;
23
- /**
24
- * The format in which the date value will be displayed. User must use this format when editing the value or it will be considered as an invalid date.
25
- */
26
- format?: string;
27
- /**
28
- * Helper text to be placed above the date.
29
- */
30
- helperText?: string;
31
- /**
32
- * If true, the date format will appear as placeholder in the field.
33
- */
34
- placeholder?: boolean;
35
- /**
36
- * If true, the date will have an action to clear the entered value.
37
- */
38
- clearable?: boolean;
39
- /**
40
- * If true, the component will be disabled.
41
- */
42
- disabled?: boolean;
43
- /**
44
- * If true, the date will be optional, showing '(Optional)'
45
- * next to the label. Otherwise, the field will be considered required and an error will be
46
- * passed as a parameter to the OnBlur and onChange functions when it has
47
- * not been filled.
48
- */
49
- optional?: boolean;
50
- /**
51
- * This function will be called when the user types within the input
52
- * element of the component. An object including the string value, the
53
- * error and the date value will be passed to this function.
54
- * If the string value is a valid date, error will
55
- * be null. Also, if the string value is not a valid date, date will be null.
56
- */
57
- onChange?: (val: { value: string; error: string; date: Date }) => void;
58
- /**
59
- * This function will be called when the input element loses the focus.
60
- * An object including the string value, the error and the date value
61
- * will be passed to this function. If the string value is a valid date, error will
62
- * be null. Also, if the string value is not a valid date, date will be null.
63
- */
64
- onBlur?: (val: { value: string; error: string; date: Date }) => void;
65
- /**
66
- * If it is defined, the component will change its appearance, showing
67
- * the error below the date component. If it is not defined, the error
68
- * messages will be managed internally, but never displayed on its own.
69
- */
70
- error?: string;
71
- /**
72
- * HTML autocomplete attribute. Lets the user specify if any permission the user agent has to provide automated assistance in filling out the input value.
73
- * Its value must be one of all the possible values of the HTML autocomplete attribute: 'on', 'off', 'email', 'username', 'new-password', ...
74
- */
75
- autocomplete?: string;
76
- /**
77
- * Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
78
- * You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
79
- */
80
- margin?: Space | Margin;
81
- /**
82
- * Size of the component ('medium' | 'large' | 'fillParent').
83
- */
84
- size?: Size;
85
- /**
86
- * Value of the tabindex attribute.
87
- */
88
- tabIndex?: number;
89
- /**
90
- * Reference to the component.
91
- */
92
- ref?: React.RefObject<HTMLDivElement>;
93
- };
94
-
95
- export default function DxcNewDate(props: Props): JSX.Element;