@webiny/ui 0.0.0-mt-1

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 (480) hide show
  1. package/Accordion/Accordion.d.ts +19 -0
  2. package/Accordion/Accordion.js +30 -0
  3. package/Accordion/Accordion.stories.d.ts +1 -0
  4. package/Accordion/Accordion.stories.js +43 -0
  5. package/Accordion/AccordionItem.d.ts +33 -0
  6. package/Accordion/AccordionItem.js +124 -0
  7. package/Accordion/README.md +11 -0
  8. package/Accordion/icons/round-keyboard_arrow_down-24px.svg +16 -0
  9. package/Accordion/icons/round-keyboard_arrow_up-24px.svg +16 -0
  10. package/Accordion/icons/round-settings-24px.svg +21 -0
  11. package/Accordion/index.d.ts +2 -0
  12. package/Accordion/index.js +2 -0
  13. package/Alert/Alert.d.ts +14 -0
  14. package/Alert/Alert.js +52 -0
  15. package/Alert/Alert.stories.d.ts +1 -0
  16. package/Alert/Alert.stories.js +29 -0
  17. package/Alert/README.md +11 -0
  18. package/Alert/index.d.ts +1 -0
  19. package/Alert/index.js +1 -0
  20. package/AutoComplete/AutoComplete.d.ts +37 -0
  21. package/AutoComplete/AutoComplete.js +299 -0
  22. package/AutoComplete/AutoComplete.stories.d.ts +1 -0
  23. package/AutoComplete/AutoComplete.stories.js +76 -0
  24. package/AutoComplete/AutoCompleteReadme.md +11 -0
  25. package/AutoComplete/MultiAutoComplete.d.ts +80 -0
  26. package/AutoComplete/MultiAutoComplete.js +569 -0
  27. package/AutoComplete/MultiAutoComplete.stories.d.ts +1 -0
  28. package/AutoComplete/MultiAutoComplete.stories.js +132 -0
  29. package/AutoComplete/MultiAutoCompleteReadme.md +11 -0
  30. package/AutoComplete/icons/baseline-close-24px.svg +4 -0
  31. package/AutoComplete/icons/delete.svg +12 -0
  32. package/AutoComplete/icons/navigate_before-24px.svg +1 -0
  33. package/AutoComplete/icons/navigate_next-24px.svg +1 -0
  34. package/AutoComplete/icons/reorder_black_24dp.svg +1 -0
  35. package/AutoComplete/icons/skip_next-24px.svg +1 -0
  36. package/AutoComplete/icons/skip_previous-24px.svg +1 -0
  37. package/AutoComplete/icons/spinner.svg +3 -0
  38. package/AutoComplete/index.d.ts +2 -0
  39. package/AutoComplete/index.js +2 -0
  40. package/AutoComplete/styles.d.ts +2 -0
  41. package/AutoComplete/styles.js +37 -0
  42. package/AutoComplete/types.d.ts +62 -0
  43. package/AutoComplete/types.js +1 -0
  44. package/AutoComplete/utils.d.ts +9 -0
  45. package/AutoComplete/utils.js +19 -0
  46. package/Avatar/Avatar.d.ts +49 -0
  47. package/Avatar/Avatar.js +80 -0
  48. package/Avatar/Avatar.stories.d.ts +1 -0
  49. package/Avatar/Avatar.stories.js +27 -0
  50. package/Avatar/README.md +11 -0
  51. package/Avatar/index.d.ts +1 -0
  52. package/Avatar/index.js +1 -0
  53. package/Button/Button.d.ts +58 -0
  54. package/Button/Button.js +139 -0
  55. package/Button/Button.stories.d.ts +1 -0
  56. package/Button/Button.stories.js +53 -0
  57. package/Button/CopyButton/CopyButton.d.ts +14 -0
  58. package/Button/CopyButton/CopyButton.js +32 -0
  59. package/Button/CopyButton/CopyButton.stories.d.ts +1 -0
  60. package/Button/CopyButton/CopyButton.stories.js +18 -0
  61. package/Button/CopyButton/README.md +11 -0
  62. package/Button/IconButton/IconButton.d.ts +39 -0
  63. package/Button/IconButton/IconButton.js +31 -0
  64. package/Button/IconButton/IconButton.stories.d.ts +1 -0
  65. package/Button/IconButton/IconButton.stories.js +38 -0
  66. package/Button/IconButton/README.md +15 -0
  67. package/Button/README.md +28 -0
  68. package/Button/assets/baseline-cloud_done-24px.svg +3 -0
  69. package/Button/assets/file_copy-24px.svg +1 -0
  70. package/Button/assets/round-more_vert-24px.svg +12 -0
  71. package/Button/index.d.ts +3 -0
  72. package/Button/index.js +3 -0
  73. package/Carousel/Carousel.d.ts +19 -0
  74. package/Carousel/Carousel.js +46 -0
  75. package/Carousel/Carouser.stories.d.ts +1 -0
  76. package/Carousel/Carouser.stories.js +29 -0
  77. package/Carousel/README.md +15 -0
  78. package/Carousel/index.d.ts +1 -0
  79. package/Carousel/index.js +1 -0
  80. package/Checkbox/Checkbox.d.ts +25 -0
  81. package/Checkbox/Checkbox.js +76 -0
  82. package/Checkbox/Checkbox.stories.d.ts +1 -0
  83. package/Checkbox/Checkbox.stories.js +28 -0
  84. package/Checkbox/Checkbox.styles.d.ts +6 -0
  85. package/Checkbox/Checkbox.styles.js +15 -0
  86. package/Checkbox/CheckboxGroup.d.ts +15 -0
  87. package/Checkbox/CheckboxGroup.js +63 -0
  88. package/Checkbox/CheckboxGroup.stories.d.ts +1 -0
  89. package/Checkbox/CheckboxGroup.stories.js +55 -0
  90. package/Checkbox/README_Checkbox.md +15 -0
  91. package/Checkbox/README_CheckboxGroup.md +19 -0
  92. package/Checkbox/index.d.ts +2 -0
  93. package/Checkbox/index.js +2 -0
  94. package/Chips/Chip.d.ts +9 -0
  95. package/Chips/Chip.js +10 -0
  96. package/Chips/ChipIcon.d.ts +4 -0
  97. package/Chips/ChipIcon.js +8 -0
  98. package/Chips/Chips.d.ts +21 -0
  99. package/Chips/Chips.js +17 -0
  100. package/Chips/Chips.stories.d.ts +1 -0
  101. package/Chips/Chips.stories.js +25 -0
  102. package/Chips/README.md +15 -0
  103. package/Chips/icons/baseline-done-24px.svg +4 -0
  104. package/Chips/icons/baseline-email-24px.svg +3 -0
  105. package/Chips/index.d.ts +3 -0
  106. package/Chips/index.js +3 -0
  107. package/Chips/styles.d.ts +2 -0
  108. package/Chips/styles.js +17 -0
  109. package/CodeEditor/CodeEditor.d.ts +22 -0
  110. package/CodeEditor/CodeEditor.js +88 -0
  111. package/CodeEditor/CodeEditor.stories.d.ts +2 -0
  112. package/CodeEditor/CodeEditor.stories.js +32 -0
  113. package/CodeEditor/README.md +21 -0
  114. package/CodeEditor/index.d.ts +1 -0
  115. package/CodeEditor/index.js +1 -0
  116. package/ColorPicker/ColorPicker.d.ts +25 -0
  117. package/ColorPicker/ColorPicker.js +140 -0
  118. package/ColorPicker/ColorPicker.stories.d.ts +1 -0
  119. package/ColorPicker/ColorPicker.stories.js +30 -0
  120. package/ColorPicker/README.md +11 -0
  121. package/ColorPicker/index.d.ts +1 -0
  122. package/ColorPicker/index.js +1 -0
  123. package/ConfirmationDialog/ConfirmationDialog.d.ts +45 -0
  124. package/ConfirmationDialog/ConfirmationDialog.js +164 -0
  125. package/ConfirmationDialog/ConfirmationDialog.stories.d.ts +1 -0
  126. package/ConfirmationDialog/ConfirmationDialog.stories.js +30 -0
  127. package/ConfirmationDialog/README.md +11 -0
  128. package/ConfirmationDialog/index.d.ts +2 -0
  129. package/ConfirmationDialog/index.js +2 -0
  130. package/ConfirmationDialog/withConfirmation.d.ts +11 -0
  131. package/ConfirmationDialog/withConfirmation.js +15 -0
  132. package/Dialog/Dialog.d.ts +88 -0
  133. package/Dialog/Dialog.js +101 -0
  134. package/Dialog/Dialog.stories.d.ts +1 -0
  135. package/Dialog/Dialog.stories.js +30 -0
  136. package/Dialog/README.md +23 -0
  137. package/Dialog/index.d.ts +1 -0
  138. package/Dialog/index.js +1 -0
  139. package/Drawer/Drawer.d.ts +47 -0
  140. package/Drawer/Drawer.js +25 -0
  141. package/Drawer/Drawer.stories.d.ts +1 -0
  142. package/Drawer/Drawer.stories.js +23 -0
  143. package/Drawer/README.md +15 -0
  144. package/Drawer/index.d.ts +1 -0
  145. package/Drawer/index.js +1 -0
  146. package/DynamicFieldset/Fieldset.d.ts +41 -0
  147. package/DynamicFieldset/Fieldset.js +143 -0
  148. package/DynamicFieldset/index.d.ts +1 -0
  149. package/DynamicFieldset/index.js +1 -0
  150. package/Elevation/Elevation.d.ts +13 -0
  151. package/Elevation/Elevation.js +13 -0
  152. package/Elevation/Elevation.stories.d.ts +1 -0
  153. package/Elevation/Elevation.stories.js +29 -0
  154. package/Elevation/README.md +15 -0
  155. package/Elevation/index.d.ts +1 -0
  156. package/Elevation/index.js +1 -0
  157. package/FormElementMessage/FormElementMessage.d.ts +8 -0
  158. package/FormElementMessage/FormElementMessage.js +13 -0
  159. package/FormElementMessage/index.d.ts +1 -0
  160. package/FormElementMessage/index.js +1 -0
  161. package/FullName/FullName.d.ts +8 -0
  162. package/FullName/FullName.js +21 -0
  163. package/FullName/README.md +11 -0
  164. package/FullName/index.d.ts +1 -0
  165. package/FullName/index.js +1 -0
  166. package/Grid/Grid.d.ts +33 -0
  167. package/Grid/Grid.js +20 -0
  168. package/Grid/Grid.stories.d.ts +1 -0
  169. package/Grid/Grid.stories.js +31 -0
  170. package/Grid/README.md +15 -0
  171. package/Grid/index.d.ts +1 -0
  172. package/Grid/index.js +1 -0
  173. package/Helpers/ClassNames.d.ts +10 -0
  174. package/Helpers/ClassNames.js +30 -0
  175. package/Helpers/index.d.ts +2 -0
  176. package/Helpers/index.js +2 -0
  177. package/Icon/Icon.d.ts +24 -0
  178. package/Icon/Icon.js +26 -0
  179. package/Icon/Icon.stories.d.ts +1 -0
  180. package/Icon/Icon.stories.js +27 -0
  181. package/Icon/README.md +11 -0
  182. package/Icon/index.d.ts +1 -0
  183. package/Icon/index.js +1 -0
  184. package/Icon/svg/baseline-autorenew-24px.svg +4 -0
  185. package/Icon/svg/baseline-cloud_done-24px.svg +4 -0
  186. package/Icon/svg/baseline-delete-24px.svg +4 -0
  187. package/Icon/svg/baseline-done-24px.svg +4 -0
  188. package/Image/Image.d.ts +6 -0
  189. package/Image/Image.js +18 -0
  190. package/Image/Image.stories.d.ts +1 -0
  191. package/Image/Image.stories.js +21 -0
  192. package/Image/README.md +12 -0
  193. package/Image/index.d.ts +1 -0
  194. package/Image/index.js +1 -0
  195. package/ImageEditor/ImageEditor.d.ts +47 -0
  196. package/ImageEditor/ImageEditor.js +335 -0
  197. package/ImageEditor/index.d.ts +1 -0
  198. package/ImageEditor/index.js +1 -0
  199. package/ImageEditor/toolbar/crop.d.ts +4 -0
  200. package/ImageEditor/toolbar/crop.js +69 -0
  201. package/ImageEditor/toolbar/filter.d.ts +3 -0
  202. package/ImageEditor/toolbar/filter.js +209 -0
  203. package/ImageEditor/toolbar/flip.d.ts +4 -0
  204. package/ImageEditor/toolbar/flip.js +96 -0
  205. package/ImageEditor/toolbar/icons/crop.svg +4 -0
  206. package/ImageEditor/toolbar/icons/draw.svg +4 -0
  207. package/ImageEditor/toolbar/icons/filter.svg +4 -0
  208. package/ImageEditor/toolbar/icons/flip.svg +4 -0
  209. package/ImageEditor/toolbar/icons/index.d.ts +8 -0
  210. package/ImageEditor/toolbar/icons/index.js +8 -0
  211. package/ImageEditor/toolbar/icons/redo.svg +4 -0
  212. package/ImageEditor/toolbar/icons/rotateLeft.svg +4 -0
  213. package/ImageEditor/toolbar/icons/rotateRight.svg +4 -0
  214. package/ImageEditor/toolbar/icons/undo.svg +4 -0
  215. package/ImageEditor/toolbar/index.d.ts +4 -0
  216. package/ImageEditor/toolbar/index.js +4 -0
  217. package/ImageEditor/toolbar/rotate.d.ts +4 -0
  218. package/ImageEditor/toolbar/rotate.js +145 -0
  219. package/ImageEditor/toolbar/types.d.ts +22 -0
  220. package/ImageEditor/toolbar/types.js +1 -0
  221. package/ImageUpload/Image.d.ts +26 -0
  222. package/ImageUpload/Image.js +119 -0
  223. package/ImageUpload/ImageEditorDialog.d.ts +19 -0
  224. package/ImageUpload/ImageEditorDialog.js +94 -0
  225. package/ImageUpload/MultiImageUpload.d.ts +61 -0
  226. package/ImageUpload/MultiImageUpload.js +383 -0
  227. package/ImageUpload/MultiImageUpload.stories.d.ts +1 -0
  228. package/ImageUpload/MultiImageUpload.stories.js +66 -0
  229. package/ImageUpload/README.md +11 -0
  230. package/ImageUpload/SingleImageUpload.d.ts +64 -0
  231. package/ImageUpload/SingleImageUpload.js +224 -0
  232. package/ImageUpload/SingleImageUpload.stories.d.ts +1 -0
  233. package/ImageUpload/SingleImageUpload.stories.js +43 -0
  234. package/ImageUpload/icons/round-add_photo_alternate-24px.svg +23 -0
  235. package/ImageUpload/icons/round-close-24px.svg +13 -0
  236. package/ImageUpload/icons/round-edit-24px.svg +4 -0
  237. package/ImageUpload/image.jpeg +0 -0
  238. package/ImageUpload/index.d.ts +4 -0
  239. package/ImageUpload/index.js +4 -0
  240. package/ImageUpload/styled.d.ts +15 -0
  241. package/ImageUpload/styled.js +122 -0
  242. package/Input/Input.d.ts +34 -0
  243. package/Input/Input.js +152 -0
  244. package/Input/Input.stories.d.ts +1 -0
  245. package/Input/Input.stories.js +104 -0
  246. package/Input/README.md +16 -0
  247. package/Input/__tests__/Input.test.d.ts +1 -0
  248. package/Input/__tests__/Input.test.js +113 -0
  249. package/Input/index.d.ts +1 -0
  250. package/Input/index.js +1 -0
  251. package/Input/svg/baseline-autorenew-24px.svg +4 -0
  252. package/Input/svg/baseline-cloud_done-24px.svg +4 -0
  253. package/Input/svg/baseline-delete-24px.svg +4 -0
  254. package/Input/svg/baseline-done-24px.svg +4 -0
  255. package/LICENSE +21 -0
  256. package/List/CollapsibleList/CollapsibleList.stories.d.ts +1 -0
  257. package/List/CollapsibleList/CollapsibleList.stories.js +26 -0
  258. package/List/CollapsibleList/README.md +11 -0
  259. package/List/CollapsibleList/index.css +31 -0
  260. package/List/CollapsibleList/index.d.ts +8 -0
  261. package/List/CollapsibleList/index.js +7 -0
  262. package/List/DataList/DataList.d.ts +61 -0
  263. package/List/DataList/DataList.js +312 -0
  264. package/List/DataList/DataList.stories.d.ts +1 -0
  265. package/List/DataList/DataList.stories.js +107 -0
  266. package/List/DataList/DataListModalOverlay/DataListModalOverlay.d.ts +18 -0
  267. package/List/DataList/DataListModalOverlay/DataListModalOverlay.js +87 -0
  268. package/List/DataList/DataListModalOverlay/DataListModalOverlayAction.d.ts +6 -0
  269. package/List/DataList/DataListModalOverlay/DataListModalOverlayAction.js +21 -0
  270. package/List/DataList/DataListModalOverlay/DataListModalOverlayContext.d.ts +6 -0
  271. package/List/DataList/DataListModalOverlay/DataListModalOverlayContext.js +18 -0
  272. package/List/DataList/DataListModalOverlay/index.d.ts +3 -0
  273. package/List/DataList/DataListModalOverlay/index.js +3 -0
  274. package/List/DataList/Loader.d.ts +3 -0
  275. package/List/DataList/Loader.js +57 -0
  276. package/List/DataList/NoData.d.ts +3 -0
  277. package/List/DataList/NoData.js +19 -0
  278. package/List/DataList/README.md +17 -0
  279. package/List/DataList/icons/baseline-autorenew-24px.svg +4 -0
  280. package/List/DataList/icons/baseline-delete-24px.svg +4 -0
  281. package/List/DataList/icons/baseline-edit-24px.svg +4 -0
  282. package/List/DataList/icons/baseline-navigate_before-24px.svg +4 -0
  283. package/List/DataList/icons/baseline-navigate_next-24px.svg +4 -0
  284. package/List/DataList/icons/baseline-sort-24px.svg +4 -0
  285. package/List/DataList/icons/baseline-tune-24px.svg +4 -0
  286. package/List/DataList/icons/filter_alt-24px.svg +1 -0
  287. package/List/DataList/icons/index.d.ts +15 -0
  288. package/List/DataList/icons/index.js +55 -0
  289. package/List/DataList/icons/round-more_vert-24px.svg +12 -0
  290. package/List/DataList/index.d.ts +3 -0
  291. package/List/DataList/index.js +3 -0
  292. package/List/DataList/types.d.ts +28 -0
  293. package/List/DataList/types.js +1 -0
  294. package/List/List.d.ts +131 -0
  295. package/List/List.js +167 -0
  296. package/List/List.stories.d.ts +1 -0
  297. package/List/List.stories.js +47 -0
  298. package/List/README.md +22 -0
  299. package/List/icons/baseline-autorenew-24px.svg +4 -0
  300. package/List/icons/baseline-cloud_done-24px.svg +4 -0
  301. package/List/icons/baseline-delete-24px.svg +4 -0
  302. package/List/icons/baseline-done-24px.svg +4 -0
  303. package/List/icons/baseline-email-24px.svg +4 -0
  304. package/List/icons/index.d.ts +3 -0
  305. package/List/icons/index.js +3 -0
  306. package/List/index.d.ts +3 -0
  307. package/List/index.js +3 -0
  308. package/Menu/Menu.d.ts +43 -0
  309. package/Menu/Menu.js +128 -0
  310. package/Menu/Menu.stories.d.ts +1 -0
  311. package/Menu/Menu.stories.js +29 -0
  312. package/Menu/README.md +15 -0
  313. package/Menu/index.d.ts +1 -0
  314. package/Menu/index.js +1 -0
  315. package/Mosaic/Mosaic.d.ts +19 -0
  316. package/Mosaic/Mosaic.js +19 -0
  317. package/Mosaic/Mosaic.stories.d.ts +1 -0
  318. package/Mosaic/Mosaic.stories.js +75 -0
  319. package/Mosaic/README.md +15 -0
  320. package/Mosaic/index.d.ts +1 -0
  321. package/Mosaic/index.js +1 -0
  322. package/Progress/CircularProgress.d.ts +19 -0
  323. package/Progress/CircularProgress.js +63 -0
  324. package/Progress/README.md +19 -0
  325. package/Progress/index.d.ts +1 -0
  326. package/Progress/index.js +1 -0
  327. package/Progress/svg/circularProgress.svg +3 -0
  328. package/README.md +28 -0
  329. package/Radio/README.md +17 -0
  330. package/Radio/Radio.d.ts +21 -0
  331. package/Radio/Radio.js +68 -0
  332. package/Radio/Radio.styles.d.ts +6 -0
  333. package/Radio/Radio.styles.js +15 -0
  334. package/Radio/RadioGroup.d.ts +20 -0
  335. package/Radio/RadioGroup.js +56 -0
  336. package/Radio/RadioGroup.stories.d.ts +1 -0
  337. package/Radio/RadioGroup.stories.js +55 -0
  338. package/Radio/index.d.ts +2 -0
  339. package/Radio/index.js +2 -0
  340. package/RichTextEditor/README.md +10 -0
  341. package/RichTextEditor/RichTextEditor.d.ts +27 -0
  342. package/RichTextEditor/RichTextEditor.js +136 -0
  343. package/RichTextEditor/RichTextEditor.stories.d.ts +1 -0
  344. package/RichTextEditor/RichTextEditor.stories.js +19 -0
  345. package/RichTextEditor/createPropsFromConfig.d.ts +5 -0
  346. package/RichTextEditor/createPropsFromConfig.js +18 -0
  347. package/RichTextEditor/index.d.ts +2 -0
  348. package/RichTextEditor/index.js +2 -0
  349. package/Ripple/README.md +15 -0
  350. package/Ripple/Ripple.d.ts +11 -0
  351. package/Ripple/Ripple.js +14 -0
  352. package/Ripple/Ripple.stories.d.ts +1 -0
  353. package/Ripple/Ripple.stories.js +71 -0
  354. package/Ripple/index.d.ts +1 -0
  355. package/Ripple/index.js +1 -0
  356. package/Ripple/svg/baseline-autorenew-24px.svg +4 -0
  357. package/Ripple/svg/baseline-cloud_done-24px.svg +4 -0
  358. package/Ripple/svg/baseline-delete-24px.svg +4 -0
  359. package/Ripple/svg/baseline-done-24px.svg +4 -0
  360. package/Scrollbar/README.md +15 -0
  361. package/Scrollbar/Scrollbar.d.ts +11 -0
  362. package/Scrollbar/Scrollbar.js +11 -0
  363. package/Scrollbar/Scrollbar.stories.d.ts +1 -0
  364. package/Scrollbar/Scrollbar.stories.js +20 -0
  365. package/Scrollbar/index.d.ts +1 -0
  366. package/Scrollbar/index.js +1 -0
  367. package/Section/README.md +11 -0
  368. package/Section/Section.stories.d.ts +1 -0
  369. package/Section/Section.stories.js +25 -0
  370. package/Section/index.d.ts +7 -0
  371. package/Section/index.js +48 -0
  372. package/Select/README.md +15 -0
  373. package/Select/Select.d.ts +22 -0
  374. package/Select/Select.js +60 -0
  375. package/Select/Select.stories.d.ts +1 -0
  376. package/Select/Select.stories.js +46 -0
  377. package/Select/index.d.ts +1 -0
  378. package/Select/index.js +1 -0
  379. package/Slider/README.md +15 -0
  380. package/Slider/Slider.d.ts +35 -0
  381. package/Slider/Slider.js +87 -0
  382. package/Slider/Slider.stories.d.ts +1 -0
  383. package/Slider/Slider.stories.js +44 -0
  384. package/Slider/index.d.ts +1 -0
  385. package/Slider/index.js +1 -0
  386. package/Snackbar/README.md +15 -0
  387. package/Snackbar/Snackbar.d.ts +15 -0
  388. package/Snackbar/Snackbar.js +54 -0
  389. package/Snackbar/Snackbar.stories.d.ts +1 -0
  390. package/Snackbar/Snackbar.stories.js +77 -0
  391. package/Snackbar/index.d.ts +1 -0
  392. package/Snackbar/index.js +1 -0
  393. package/Switch/README.md +15 -0
  394. package/Switch/Switch.d.ts +21 -0
  395. package/Switch/Switch.js +67 -0
  396. package/Switch/Switch.stories.d.ts +1 -0
  397. package/Switch/Switch.stories.js +32 -0
  398. package/Switch/index.d.ts +1 -0
  399. package/Switch/index.js +1 -0
  400. package/Tabs/README.md +19 -0
  401. package/Tabs/Tab.d.ts +14 -0
  402. package/Tabs/Tab.js +10 -0
  403. package/Tabs/Tabs.d.ts +41 -0
  404. package/Tabs/Tabs.js +145 -0
  405. package/Tabs/Tabs.stories.d.ts +1 -0
  406. package/Tabs/Tabs.stories.js +41 -0
  407. package/Tabs/index.d.ts +2 -0
  408. package/Tabs/index.js +2 -0
  409. package/Tabs/svg/baseline-autorenew-24px.svg +4 -0
  410. package/Tabs/svg/baseline-cloud_done-24px.svg +4 -0
  411. package/Tabs/svg/baseline-delete-24px.svg +4 -0
  412. package/Tabs/svg/baseline-done-24px.svg +4 -0
  413. package/Tags/README.md +15 -0
  414. package/Tags/Tags.d.ts +58 -0
  415. package/Tags/Tags.js +148 -0
  416. package/Tags/Tags.stories.d.ts +1 -0
  417. package/Tags/Tags.stories.js +32 -0
  418. package/Tags/icons/baseline-close-24px.svg +4 -0
  419. package/Tags/index.d.ts +1 -0
  420. package/Tags/index.js +1 -0
  421. package/Tooltip/README.md +15 -0
  422. package/Tooltip/Tooltip.d.ts +24 -0
  423. package/Tooltip/Tooltip.js +60 -0
  424. package/Tooltip/Tooltip.stories.d.ts +1 -0
  425. package/Tooltip/Tooltip.stories.js +17 -0
  426. package/Tooltip/index.d.ts +1 -0
  427. package/Tooltip/index.js +1 -0
  428. package/Tooltip/style.scss +97 -0
  429. package/TopAppBar/README.md +20 -0
  430. package/TopAppBar/TopAppBar.d.ts +18 -0
  431. package/TopAppBar/TopAppBar.js +13 -0
  432. package/TopAppBar/TopAppBar.stories.d.ts +1 -0
  433. package/TopAppBar/TopAppBar.stories.js +56 -0
  434. package/TopAppBar/TopAppBarActionItem.d.ts +5 -0
  435. package/TopAppBar/TopAppBarActionItem.js +8 -0
  436. package/TopAppBar/TopAppBarNavigationIcon.d.ts +5 -0
  437. package/TopAppBar/TopAppBarNavigationIcon.js +8 -0
  438. package/TopAppBar/TopAppBarPrimary.d.ts +5 -0
  439. package/TopAppBar/TopAppBarPrimary.js +15 -0
  440. package/TopAppBar/TopAppBarSecondary.d.ts +5 -0
  441. package/TopAppBar/TopAppBarSecondary.js +17 -0
  442. package/TopAppBar/TopAppBarSection.d.ts +18 -0
  443. package/TopAppBar/TopAppBarSection.js +13 -0
  444. package/TopAppBar/TopAppBarTitle.d.ts +10 -0
  445. package/TopAppBar/TopAppBarTitle.js +13 -0
  446. package/TopAppBar/icons/baseline-autorenew-24px.svg +4 -0
  447. package/TopAppBar/icons/baseline-cloud_done-24px.svg +4 -0
  448. package/TopAppBar/icons/baseline-delete-24px.svg +4 -0
  449. package/TopAppBar/icons/baseline-email-24px.svg +4 -0
  450. package/TopAppBar/icons/baseline-menu-24px.svg +4 -0
  451. package/TopAppBar/index.d.ts +7 -0
  452. package/TopAppBar/index.js +7 -0
  453. package/TopProgressBar/README.md +11 -0
  454. package/TopProgressBar/TopProgressBar.d.ts +15 -0
  455. package/TopProgressBar/TopProgressBar.js +9 -0
  456. package/TopProgressBar/TopProgressBar.stories.d.ts +1 -0
  457. package/TopProgressBar/TopProgressBar.stories.js +22 -0
  458. package/TopProgressBar/hoc/index.d.ts +1 -0
  459. package/TopProgressBar/hoc/index.js +1 -0
  460. package/TopProgressBar/hoc/withTopProgressBar.d.ts +3 -0
  461. package/TopProgressBar/hoc/withTopProgressBar.js +23 -0
  462. package/TopProgressBar/index.d.ts +1 -0
  463. package/TopProgressBar/index.js +1 -0
  464. package/TopProgressBar/style.scss +21 -0
  465. package/Typography/README.md +15 -0
  466. package/Typography/Typography.d.ts +13 -0
  467. package/Typography/Typography.js +11 -0
  468. package/Typography/Typography.stories.d.ts +1 -0
  469. package/Typography/Typography.stories.js +67 -0
  470. package/Typography/index.d.ts +1 -0
  471. package/Typography/index.js +1 -0
  472. package/package.json +142 -0
  473. package/rmwc/textfield/code/index.d.ts +135 -0
  474. package/rmwc/textfield/code/index.js +571 -0
  475. package/rmwc/textfield/next/index.d.ts +135 -0
  476. package/rmwc/textfield/next/index.js +560 -0
  477. package/rmwc/textfield/package.json +45 -0
  478. package/styles.scss +44 -0
  479. package/types.d.ts +12 -0
  480. package/types.js +1 -0
@@ -0,0 +1,122 @@
1
+ import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
+
3
+ var _hover, _styled;
4
+
5
+ // TODO remove
6
+ // @ts-nocheck
7
+ import styled from "@emotion/styled";
8
+ export var AddImageIconWrapper = /*#__PURE__*/styled("div", {
9
+ target: "e1engwcq0",
10
+ label: "AddImageIconWrapper"
11
+ })({
12
+ color: "var(--mdc-theme-text-secondary-on-background)",
13
+ ">svg": {
14
+ width: "100%",
15
+ height: "100%",
16
+ maxWidth: 50,
17
+ maxHeight: 50,
18
+ display: "block",
19
+ opacity: 0.5,
20
+ margin: "0 auto"
21
+ }
22
+ });
23
+ export var AddImageWrapper = /*#__PURE__*/styled("div", {
24
+ target: "e1engwcq1",
25
+ label: "AddImageWrapper"
26
+ })({
27
+ width: "100%",
28
+ height: "100%",
29
+ minHeight: 50,
30
+ minWidth: 50,
31
+ textAlign: "center",
32
+ backgroundColor: "var(--mdc-theme-on-background)",
33
+ borderRadius: 0,
34
+ borderBottom: "1px solid var(--mdc-theme-text-hint-on-background)",
35
+ display: "flex",
36
+ alignItems: "center",
37
+ justifyContent: "space-around",
38
+ flexDirection: "column",
39
+ transition: "color 0.2s",
40
+ cursor: "pointer",
41
+ padding: 10,
42
+ boxSizing: "border-box",
43
+ "&:hover": {
44
+ backgroundColor: "rgba(0,0,0, 0.5)",
45
+ borderBottom: "1px solid var(--mdc-theme-on-surface)"
46
+ }
47
+ });
48
+ export var AddImageWrapperRound = /*#__PURE__*/styled(AddImageWrapper, {
49
+ target: "e1engwcq2",
50
+ label: "AddImageWrapperRound"
51
+ })({
52
+ margin: "auto",
53
+ width: "150px",
54
+ height: "150px",
55
+ borderRadius: "50%"
56
+ });
57
+ export var RemoveImage = /*#__PURE__*/styled("div", {
58
+ target: "e1engwcq3",
59
+ label: "RemoveImage"
60
+ })({
61
+ position: "absolute",
62
+ cursor: "pointer",
63
+ top: 10,
64
+ right: 10,
65
+ display: "none",
66
+ color: "white",
67
+ opacity: 0.5,
68
+ "&:hover": {
69
+ opacity: 0.75
70
+ }
71
+ });
72
+ export var EditImage = /*#__PURE__*/styled("div", {
73
+ target: "e1engwcq4",
74
+ label: "EditImage"
75
+ })({
76
+ position: "absolute",
77
+ cursor: "pointer",
78
+ top: 10,
79
+ left: 10,
80
+ display: "none",
81
+ color: "white",
82
+ opacity: 0.5,
83
+ "&:hover": {
84
+ opacity: 0.75
85
+ }
86
+ });
87
+ export var ImagePreviewWrapper = /*#__PURE__*/styled("div", {
88
+ target: "e1engwcq5",
89
+ label: "ImagePreviewWrapper"
90
+ })((_styled = {
91
+ width: "100%",
92
+ height: "100%",
93
+ minHeight: 50,
94
+ minWidth: 50,
95
+ display: "flex",
96
+ alignItems: "center",
97
+ justifyContent: "space-around",
98
+ flexDirection: "column",
99
+ boxSizing: "border-box",
100
+ position: "relative"
101
+ }, _defineProperty(_styled, AddImageWrapper, _defineProperty({
102
+ position: "absolute",
103
+ display: "none",
104
+ top: 0,
105
+ height: "100%",
106
+ zIndex: 1,
107
+ backgroundColor: "rgba(0,0,0, 0.75)"
108
+ }, AddImageIconWrapper, {
109
+ top: "50%",
110
+ left: "50%",
111
+ transform: "translateY(-50%) translateX(-50%)",
112
+ position: "absolute",
113
+ color: "white"
114
+ })), _defineProperty(_styled, "&:hover", (_hover = {}, _defineProperty(_hover, AddImageWrapper, {
115
+ display: "block"
116
+ }), _defineProperty(_hover, RemoveImage, {
117
+ display: "block",
118
+ zIndex: 2
119
+ }), _defineProperty(_hover, EditImage, {
120
+ display: "block",
121
+ zIndex: 2
122
+ }), _hover)), _styled));
@@ -0,0 +1,34 @@
1
+ import * as React from "react";
2
+ import { TextFieldProps } from "@rmwc/textfield";
3
+ import { FormComponentProps } from "../types";
4
+ import { ReactElement } from "react";
5
+ export declare type InputProps = FormComponentProps & TextFieldProps & {
6
+ autoComplete?: string;
7
+ rawOnChange?: boolean;
8
+ autoFocus?: boolean;
9
+ placeholder?: string;
10
+ description?: string | ReactElement;
11
+ rows?: number;
12
+ maxLength?: number;
13
+ onBlur?: (e: React.SyntheticEvent<HTMLInputElement>) => any;
14
+ onKeyDown?: (e: React.SyntheticEvent<HTMLInputElement>) => any;
15
+ onEnter?: () => any;
16
+ className?: string;
17
+ };
18
+ /**
19
+ * Use Input component to store short string values, like first name, last name, e-mail etc.
20
+ * Additionally, with rows prop, it can also be turned into a text area, to store longer strings.
21
+ */
22
+ export declare class Input extends React.Component<InputProps> {
23
+ static defaultProps: {
24
+ rawOnChange: boolean;
25
+ validation: {
26
+ isValid: any;
27
+ message: any;
28
+ };
29
+ };
30
+ static rmwcProps: string[];
31
+ onChange: (e: React.SyntheticEvent<HTMLInputElement>) => void;
32
+ onBlur: (e: React.SyntheticEvent<HTMLInputElement>) => Promise<void>;
33
+ render(): JSX.Element;
34
+ }
package/Input/Input.js ADDED
@@ -0,0 +1,152 @@
1
+ import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
2
+ import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
3
+ import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
4
+ import _createClass from "@babel/runtime/helpers/createClass";
5
+ import _assertThisInitialized from "@babel/runtime/helpers/assertThisInitialized";
6
+ import _inherits from "@babel/runtime/helpers/inherits";
7
+ import _createSuper from "@babel/runtime/helpers/createSuper";
8
+ import _defineProperty from "@babel/runtime/helpers/defineProperty";
9
+ var _excluded = ["autoFocus", "value", "label", "description", "placeholder", "rows", "validation", "icon", "trailingIcon", "onEnter"];
10
+ import _regeneratorRuntime from "@babel/runtime/regenerator";
11
+ import * as React from "react";
12
+ import { TextField } from "@rmwc/textfield";
13
+ import { FormElementMessage } from "../FormElementMessage";
14
+ import pick from "lodash/pick";
15
+
16
+ /**
17
+ * Use Input component to store short string values, like first name, last name, e-mail etc.
18
+ * Additionally, with rows prop, it can also be turned into a text area, to store longer strings.
19
+ */
20
+ export var Input = /*#__PURE__*/function (_React$Component) {
21
+ _inherits(Input, _React$Component);
22
+
23
+ var _super = _createSuper(Input);
24
+
25
+ function Input() {
26
+ var _this;
27
+
28
+ _classCallCheck(this, Input);
29
+
30
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
31
+ args[_key] = arguments[_key];
32
+ }
33
+
34
+ _this = _super.call.apply(_super, [this].concat(args));
35
+
36
+ _defineProperty(_assertThisInitialized(_this), "onChange", function (e) {
37
+ var _this$props = _this.props,
38
+ onChange = _this$props.onChange,
39
+ rawOnChange = _this$props.rawOnChange;
40
+
41
+ if (!onChange) {
42
+ return;
43
+ } // @ts-ignore
44
+
45
+
46
+ onChange(rawOnChange ? e : e.target.value);
47
+ });
48
+
49
+ _defineProperty(_assertThisInitialized(_this), "onBlur", /*#__PURE__*/function () {
50
+ var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(e) {
51
+ var _this$props2, validate, onBlur;
52
+
53
+ return _regeneratorRuntime.wrap(function _callee$(_context) {
54
+ while (1) {
55
+ switch (_context.prev = _context.next) {
56
+ case 0:
57
+ _this$props2 = _this.props, validate = _this$props2.validate, onBlur = _this$props2.onBlur;
58
+
59
+ if (!validate) {
60
+ _context.next = 5;
61
+ break;
62
+ }
63
+
64
+ // Since we are accessing event in an async operation, we need to persist it.
65
+ // See https://reactjs.org/docs/events.html#event-pooling.
66
+ e.persist();
67
+ _context.next = 5;
68
+ return validate();
69
+
70
+ case 5:
71
+ onBlur && onBlur(e);
72
+
73
+ case 6:
74
+ case "end":
75
+ return _context.stop();
76
+ }
77
+ }
78
+ }, _callee);
79
+ }));
80
+
81
+ return function (_x) {
82
+ return _ref.apply(this, arguments);
83
+ };
84
+ }());
85
+
86
+ return _this;
87
+ }
88
+
89
+ _createClass(Input, [{
90
+ key: "render",
91
+ value: function render() {
92
+ var _this$props3 = this.props,
93
+ autoFocus = _this$props3.autoFocus,
94
+ value = _this$props3.value,
95
+ label = _this$props3.label,
96
+ description = _this$props3.description,
97
+ placeholder = _this$props3.placeholder,
98
+ rows = _this$props3.rows,
99
+ validation = _this$props3.validation,
100
+ icon = _this$props3.icon,
101
+ trailingIcon = _this$props3.trailingIcon,
102
+ onEnter = _this$props3.onEnter,
103
+ props = _objectWithoutProperties(_this$props3, _excluded);
104
+
105
+ var inputValue = value;
106
+
107
+ if (value === null || typeof value === "undefined") {
108
+ inputValue = "";
109
+ }
110
+
111
+ return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(TextField, Object.assign({}, pick(props, Input.rmwcProps), {
112
+ onKeyDown: function onKeyDown(e) {
113
+ if (typeof onEnter === "function" && e.key === "Enter") {
114
+ onEnter();
115
+ }
116
+
117
+ if (typeof props.onKeyDown === "function") {
118
+ for (var _len2 = arguments.length, rest = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
119
+ rest[_key2 - 1] = arguments[_key2];
120
+ }
121
+
122
+ return props.onKeyDown.apply(props, [e].concat(rest));
123
+ }
124
+ },
125
+ autoFocus: autoFocus,
126
+ textarea: Boolean(rows),
127
+ value: inputValue,
128
+ onChange: this.onChange,
129
+ onBlur: this.onBlur,
130
+ label: label,
131
+ icon: icon,
132
+ placeholder: !label && placeholder || undefined,
133
+ trailingIcon: trailingIcon,
134
+ rows: this.props.rows
135
+ })), validation.isValid === false && /*#__PURE__*/React.createElement(FormElementMessage, {
136
+ error: true
137
+ }, validation.message), validation.isValid !== false && description && /*#__PURE__*/React.createElement(FormElementMessage, null, description));
138
+ }
139
+ }]);
140
+
141
+ return Input;
142
+ }(React.Component);
143
+
144
+ _defineProperty(Input, "defaultProps", {
145
+ rawOnChange: false,
146
+ validation: {
147
+ isValid: null,
148
+ message: null
149
+ }
150
+ });
151
+
152
+ _defineProperty(Input, "rmwcProps", ["label", "type", "step", "disabled", "readOnly", "placeholder", "outlined", "onKeyDown", "onKeyPress", "onKeyUp", "onFocus", "rootProps", "fullwidth", "inputRef", "className", "maxLength", "characterCount"]);
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,104 @@
1
+ import * as React from "react";
2
+ import { storiesOf } from "@storybook/react";
3
+ import { Story, StoryReadme, StorySandboxCode, StorySandbox, StorySandboxExample } from "@webiny/storybook-utils/Story";
4
+ import { withKnobs, boolean } from "@storybook/addon-knobs";
5
+ import readme from "./../Input/README.md";
6
+ import { ReactComponent as AutoRenewIcon } from "@svgr/webpack!./svg/baseline-autorenew-24px.svg";
7
+ import { ReactComponent as CloudDoneIcon } from "@svgr/webpack!./svg/baseline-cloud_done-24px.svg";
8
+ import { ReactComponent as BaselineDeleteIcon } from "@svgr/webpack!./svg/baseline-delete-24px.svg";
9
+ import { ReactComponent as BaselineDoneIcon } from "@svgr/webpack!./svg/baseline-done-24px.svg";
10
+ import { Form } from "@webiny/form";
11
+ import { Input } from "./Input";
12
+ import { validation } from "@webiny/validation";
13
+ var story = storiesOf("Components/Input", module);
14
+ story.addDecorator(withKnobs);
15
+ story.add("usage", function () {
16
+ var bindProps = {
17
+ name: "name",
18
+ validators: validation.create("required,minLength:3")
19
+ };
20
+ var disabled = boolean("Disabled", false);
21
+ return /*#__PURE__*/React.createElement(Story, null, /*#__PURE__*/React.createElement(StoryReadme, null, readme), /*#__PURE__*/React.createElement(StorySandbox, null, /*#__PURE__*/React.createElement(StorySandboxExample, {
22
+ title: "Label, description and validation"
23
+ }, /*#__PURE__*/React.createElement(Form, null, function (_ref) {
24
+ var Bind = _ref.Bind;
25
+ return /*#__PURE__*/React.createElement(Bind, bindProps, /*#__PURE__*/React.createElement(Input, {
26
+ label: "Your name",
27
+ disabled: disabled,
28
+ description: "This is your profile name"
29
+ }));
30
+ })), /*#__PURE__*/React.createElement(StorySandboxCode, null, "\n <Form>\n {({ Bind }) => (\n <Bind\n name=\"name\"\n validators={validation.create(\"required,minLength:3\")}>\n <Input label={\"Your name\"} disabled={".concat(disabled, "} description={\"This is your profile name\"}/>\n </Bind>\n )}\n </Form>\n "))), /*#__PURE__*/React.createElement(StorySandbox, null, /*#__PURE__*/React.createElement(StorySandboxExample, {
31
+ title: "With icon (box)"
32
+ }, /*#__PURE__*/React.createElement(Form, null, function (_ref2) {
33
+ var Bind = _ref2.Bind;
34
+ return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Bind, {
35
+ name: "phone"
36
+ }, /*#__PURE__*/React.createElement(Input, {
37
+ icon: /*#__PURE__*/React.createElement(AutoRenewIcon, null),
38
+ label: "Your phone number",
39
+ description: "Please enter a real number",
40
+ disabled: disabled
41
+ })), /*#__PURE__*/React.createElement(Bind, {
42
+ name: "mobile"
43
+ }, /*#__PURE__*/React.createElement(Input, {
44
+ trailingIcon: /*#__PURE__*/React.createElement(CloudDoneIcon, null),
45
+ label: "Your mobile number",
46
+ description: "An SMS will be sent to this number",
47
+ disabled: disabled
48
+ })));
49
+ })), /*#__PURE__*/React.createElement(StorySandboxCode, null, "\n <Form>\n {({ Bind }) => (\n <React.Fragment>\n <Bind name=\"phone\">\n <Input\n icon={<AutoRenewIcon />}\n label={\"Your phone number\"}\n description={\"Please enter a real number\"}\n disabled={".concat(disabled, "}\n />\n </Bind>\n <Bind name=\"mobile\">\n <Input\n trailingIcon={<CloudDoneIcon />}\n label={\"Your mobile number\"}\n description={\"An SMS will be sent to this number\"}\n disabled={").concat(disabled, "}\n />\n </Bind>\n </React.Fragment>\n )}\n </Form>\n "))), /*#__PURE__*/React.createElement(StorySandbox, null, /*#__PURE__*/React.createElement(StorySandboxExample, {
50
+ title: "With icon (outlined)"
51
+ }, /*#__PURE__*/React.createElement(Form, null, function (_ref3) {
52
+ var Bind = _ref3.Bind;
53
+ return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Bind, {
54
+ name: "phone"
55
+ }, /*#__PURE__*/React.createElement(Input, {
56
+ outlined: true,
57
+ icon: /*#__PURE__*/React.createElement(BaselineDeleteIcon, null),
58
+ label: "Your phone number",
59
+ description: "Please enter a real number",
60
+ disabled: disabled
61
+ })), /*#__PURE__*/React.createElement(Bind, {
62
+ name: "mobile"
63
+ }, /*#__PURE__*/React.createElement(Input, {
64
+ outlined: true,
65
+ trailingIcon: /*#__PURE__*/React.createElement(BaselineDoneIcon, null),
66
+ label: "Your mobile number",
67
+ description: "An SMS will be sent to this number",
68
+ disabled: disabled
69
+ })));
70
+ })), /*#__PURE__*/React.createElement(StorySandboxCode, null, "\n <Form>\n {({ Bind }) => (\n <React.Fragment>\n <Bind name=\"phone\">\n <Input\n outlined\n icon={<BaselineDeleteIcon />}\n label={\"Your phone number\"}\n description={\"Please enter a real number\"}\n disabled={".concat(disabled, "}\n />\n </Bind>\n <Bind name=\"mobile\">\n <Input\n outlined\n trailingIcon={<BaselineDoneIcon />}\n label={\"Your mobile number\"}\n description={\"An SMS will be sent to this number\"}\n disabled={").concat(disabled, "}\n />\n </Bind>\n </React.Fragment>\n )}\n </Form>\n "))), /*#__PURE__*/React.createElement(StorySandbox, null, /*#__PURE__*/React.createElement(StorySandboxExample, {
71
+ title: "Full width"
72
+ }, /*#__PURE__*/React.createElement(Form, null, function (_ref4) {
73
+ var Bind = _ref4.Bind;
74
+ return /*#__PURE__*/React.createElement(Bind, bindProps, /*#__PURE__*/React.createElement(Input, {
75
+ placeholder: "Your name",
76
+ fullwidth: true,
77
+ disabled: disabled
78
+ }));
79
+ })), /*#__PURE__*/React.createElement(StorySandboxCode, null, "\n <Form>\n {({ Bind }) => (\n <Bind\n name=\"name\"\n validators={validation.create(\"required,minLength:3\")}>\n <Input placeholder={\"Your name\"} fullwidth disabled={".concat(disabled, "}/>\n </Bind>\n )}\n </Form>\n "))), /*#__PURE__*/React.createElement(StorySandbox, null, /*#__PURE__*/React.createElement(StorySandboxExample, {
80
+ title: "Textarea"
81
+ }, /*#__PURE__*/React.createElement(Form, null, function (_ref5) {
82
+ var Bind = _ref5.Bind;
83
+ return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(Bind, {
84
+ name: "info"
85
+ }, /*#__PURE__*/React.createElement(Input, {
86
+ rows: 6,
87
+ placeholder: "Tell us something...",
88
+ description: "Just a little bit about yourself.",
89
+ disabled: disabled
90
+ })), /*#__PURE__*/React.createElement(Bind, {
91
+ name: "description"
92
+ }, /*#__PURE__*/React.createElement(Input, {
93
+ fullwidth: true,
94
+ rows: 6,
95
+ placeholder: "How's the weather today?",
96
+ description: "We actually need to know.",
97
+ disabled: disabled
98
+ })));
99
+ })), /*#__PURE__*/React.createElement(StorySandboxCode, null, "\n <Form>\n {({ Bind }) => (\n <React.Fragment>\n <Bind name=\"info\">\n <Input\n rows={6}\n placeholder={\"Tell us something...\"}\n description={\"Just a little bit about yourself.\"}\n disabled={".concat(disabled, "}\n />\n </Bind>\n <Bind name=\"description\">\n <Input\n fullwidth\n rows={6}\n placeholder={\"How's the weather today?\"}\n description={\"We actually need to know.\"}\n disabled={").concat(disabled, "}\n />\n </Bind>\n </React.Fragment>\n )}\n </Form>\n "))));
100
+ }, {
101
+ info: {
102
+ propTables: [Input]
103
+ }
104
+ });
@@ -0,0 +1,16 @@
1
+ # Input
2
+
3
+ ### Design
4
+
5
+ <a href="https://material.io/design/components/text-fields.html" target="_blank">https://material.io/design/components/text-fields.html</a>
6
+
7
+ ### Description
8
+
9
+ Use `Input` component to store short string values, like first name, last name, e-mail etc.
10
+ Additionally, with `rows` prop, it can also be turned into a text area, to store longer strings.
11
+
12
+ ### Import
13
+
14
+ ```js
15
+ import { Input } from "@webiny/ui/Input";
16
+ ```
@@ -0,0 +1 @@
1
+ import "jest-dom/extend-expect";
@@ -0,0 +1,113 @@
1
+ import _objectSpread from "@babel/runtime/helpers/objectSpread2";
2
+ import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
3
+ import _createClass from "@babel/runtime/helpers/createClass";
4
+ import _assertThisInitialized from "@babel/runtime/helpers/assertThisInitialized";
5
+ import _inherits from "@babel/runtime/helpers/inherits";
6
+ import _createSuper from "@babel/runtime/helpers/createSuper";
7
+ import _defineProperty from "@babel/runtime/helpers/defineProperty";
8
+ // TODO remove
9
+ // @ts-nocheck
10
+ import React from "react"; // eslint-disable-next-line
11
+
12
+ import { Input } from "../index";
13
+ import "jest-dom/extend-expect";
14
+ import { render, cleanup } from "react-testing-library";
15
+ afterEach(cleanup);
16
+ describe("Input tests", function () {
17
+ test("passes expected props to render prop", function () {
18
+ var _setup = setup(),
19
+ renderArg = _setup.renderArg;
20
+
21
+ expect(renderArg).toContainKeys(["value", "validation", "onChange", "onBlur"]);
22
+ });
23
+ test("updates value via onChange", function () {
24
+ var _setup2 = setup(),
25
+ renderArg = _setup2.renderArg;
26
+
27
+ expect(renderArg.value).toBe("init-value");
28
+ renderArg.onChange("new-value");
29
+ expect(renderArg.value).toBe("new-value");
30
+ renderArg.onChange("third-value");
31
+ expect(renderArg.value).toBe("third-value");
32
+ });
33
+ });
34
+
35
+ function setup() {
36
+ var props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
37
+ var renderArg = {};
38
+ var renderProp = jest.fn(function (controllerArg) {
39
+ Object.assign(renderArg, controllerArg);
40
+ return null;
41
+ });
42
+
43
+ var Test = /*#__PURE__*/function (_React$Component) {
44
+ _inherits(Test, _React$Component);
45
+
46
+ var _super = _createSuper(Test);
47
+
48
+ function Test() {
49
+ var _this;
50
+
51
+ _classCallCheck(this, Test);
52
+
53
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
54
+ args[_key] = arguments[_key];
55
+ }
56
+
57
+ _this = _super.call.apply(_super, [this].concat(args));
58
+
59
+ _defineProperty(_assertThisInitialized(_this), "state", {
60
+ value: "init-value"
61
+ });
62
+
63
+ _defineProperty(_assertThisInitialized(_this), "onChange", function (value) {
64
+ _this.setState({
65
+ value: value
66
+ });
67
+ });
68
+
69
+ return _this;
70
+ }
71
+
72
+ _createClass(Test, [{
73
+ key: "render",
74
+ value: function render() {
75
+ return /*#__PURE__*/React.createElement(Input, Object.assign({}, props, {
76
+ value: this.state.value,
77
+ onChange: callAll(props.onChange, this.onChange)
78
+ }), renderProp);
79
+ }
80
+ }]);
81
+
82
+ return Test;
83
+ }(React.Component);
84
+
85
+ var utils = render( /*#__PURE__*/React.createElement(Test, null));
86
+ return _objectSpread({
87
+ renderArg: renderArg
88
+ }, utils);
89
+ }
90
+ /**
91
+ * This return a function that will call all the given functions with
92
+ * the arguments with which it's called. It does a null-check before
93
+ * attempting to call the functions and can take any number of functions.
94
+ * @param {...Function} fns the functions to call
95
+ * @return {Function} the function that calls all the functions
96
+ */
97
+
98
+
99
+ function callAll() {
100
+ for (var _len2 = arguments.length, fns = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
101
+ fns[_key2] = arguments[_key2];
102
+ }
103
+
104
+ return function () {
105
+ for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {
106
+ args[_key3] = arguments[_key3];
107
+ }
108
+
109
+ fns.forEach(function (fn) {
110
+ fn && fn.apply(void 0, args);
111
+ });
112
+ };
113
+ }
@@ -0,0 +1 @@
1
+ export * from "./Input";
package/Input/index.js ADDED
@@ -0,0 +1 @@
1
+ export * from "./Input";
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path d="M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z"/>
3
+ <path d="M0 0h24v24H0z" fill="none"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path d="M0 0h24v24H0z" fill="none"/>
3
+ <path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM10 17l-3.5-3.5 1.41-1.41L10 14.17 15.18 9l1.41 1.41L10 17z"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path d="M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z"/>
3
+ <path d="M0 0h24v24H0z" fill="none"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path fill="none" d="M0 0h24v24H0z"/>
3
+ <path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/>
4
+ </svg>
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) Webiny
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,26 @@
1
+ import React from "react";
2
+ import { storiesOf } from "@storybook/react";
3
+ import { Story, StoryReadme, StorySandboxCode, StorySandbox, StorySandboxExample } from "@webiny/storybook-utils/Story";
4
+ import readme from "./README.md";
5
+ import { withKnobs } from "@storybook/addon-knobs";
6
+ import { CollapsibleList } from "./index";
7
+ import { SimpleListItem } from "./../List";
8
+ var story = storiesOf("Components/List", module);
9
+ story.addDecorator(withKnobs);
10
+ story.add("collapsible list", function () {
11
+ return /*#__PURE__*/React.createElement(Story, null, /*#__PURE__*/React.createElement(StoryReadme, null, readme), /*#__PURE__*/React.createElement(StorySandbox, null, /*#__PURE__*/React.createElement(StorySandboxExample, null, /*#__PURE__*/React.createElement(CollapsibleList, {
12
+ handle: /*#__PURE__*/React.createElement(SimpleListItem, {
13
+ text: "Fruits"
14
+ })
15
+ }, /*#__PURE__*/React.createElement(SimpleListItem, {
16
+ text: "Bananas"
17
+ }), /*#__PURE__*/React.createElement(SimpleListItem, {
18
+ text: "Grapes"
19
+ }), /*#__PURE__*/React.createElement(SimpleListItem, {
20
+ text: "Oranges"
21
+ }))), /*#__PURE__*/React.createElement(StorySandboxCode, null, "\n <CollapsibleList handle={<SimpleListItem text=\"Fruits\" />}>\n <SimpleListItem text=\"Bananas\" />\n <SimpleListItem text=\"Grapes\" />\n <SimpleListItem text=\"Oranges\" />\n </CollapsibleList>\n ")));
22
+ }, {
23
+ info: {
24
+ propTables: [CollapsibleList, SimpleListItem]
25
+ }
26
+ });
@@ -0,0 +1,11 @@
1
+ # CollapsibleList
2
+
3
+ ### Description
4
+
5
+ Use `CollapsibleList` to display a list of items that are made visible when you click the assigned `handle` element.
6
+
7
+ ### Import
8
+
9
+ ```js
10
+ import { CollapsibleList, SimpleListItem } from "@webiny/ui/List";
11
+ ```