@agility/plenum-ui 1.3.48 → 2.0.0-rc1

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 (332) hide show
  1. package/.eslintrc.json +6 -0
  2. package/.prettierrc +12 -12
  3. package/.storybook/Layout.jsx +9 -6
  4. package/.storybook/head.tsx +4 -0
  5. package/.storybook/main.ts +18 -0
  6. package/.storybook/manager-head.html +1 -0
  7. package/.storybook/manager.ts +25 -0
  8. package/.storybook/plenumTheme.ts +8 -0
  9. package/.storybook/preview-head.html +4 -0
  10. package/.storybook/preview.tsx +28 -0
  11. package/.vscode/settings.json +4 -0
  12. package/.yarnrc.yml +1 -0
  13. package/README.md +165 -53
  14. package/app/globals.css +99 -0
  15. package/app/head.tsx +59 -0
  16. package/app/layout.tsx +28 -0
  17. package/app/page.tsx +7 -0
  18. package/build.js +33 -0
  19. package/dist/index.js +5936 -0
  20. package/dist/index.js.map +7 -0
  21. package/{lib/components → dist/types/stories/atoms}/Avatar/Avatar.d.ts +28 -27
  22. package/dist/types/stories/atoms/Avatar/index.d.ts +3 -0
  23. package/dist/types/stories/atoms/badges/Badge.d.ts +21 -0
  24. package/dist/types/stories/atoms/badges/index.d.ts +3 -0
  25. package/dist/types/stories/atoms/buttons/Button/Alternative/Alternative.stories.d.ts +13 -0
  26. package/dist/types/stories/atoms/buttons/Button/Button.d.ts +33 -0
  27. package/dist/types/stories/atoms/buttons/Button/Danger/Danger.stories.d.ts +13 -0
  28. package/dist/types/stories/atoms/buttons/Button/Primary/Primary.stories.d.ts +13 -0
  29. package/dist/types/stories/atoms/buttons/Button/Secondary/Secondary.stories.d.ts +13 -0
  30. package/dist/types/stories/atoms/buttons/Button/defaultArgs.d.ts +3 -0
  31. package/dist/types/stories/atoms/buttons/Button/index.d.ts +3 -0
  32. package/dist/types/stories/atoms/buttons/Capsule/Alternative/Alternative.stories.d.ts +6 -0
  33. package/dist/types/stories/atoms/buttons/Capsule/Capsule.d.ts +27 -0
  34. package/dist/types/stories/atoms/buttons/Capsule/Danger/Danger.stories.d.ts +6 -0
  35. package/dist/types/stories/atoms/buttons/Capsule/Primary/Primary.stories.d.ts +6 -0
  36. package/dist/types/stories/atoms/buttons/Capsule/Secondary/Secondary.stories.d.ts +6 -0
  37. package/dist/types/stories/atoms/buttons/Capsule/index.d.ts +3 -0
  38. package/dist/types/stories/atoms/buttons/index.d.ts +4 -0
  39. package/{lib/components/DynamicIcons/DynamicIcons.d.ts → dist/types/stories/atoms/icons/DynamicIcon.d.ts} +20 -17
  40. package/dist/types/stories/atoms/icons/DynamicIcon.stories.d.ts +10 -0
  41. package/dist/types/stories/atoms/icons/IconWithShadow.d.ts +6 -0
  42. package/dist/types/stories/atoms/icons/IconWithShadow.stories.d.ts +10 -0
  43. package/{lib/components/DynamicIcons → dist/types/stories/atoms/icons}/TablerIcon.d.ts +9 -9
  44. package/dist/types/stories/atoms/icons/index.d.ts +4 -0
  45. package/dist/types/stories/atoms/icons/tablerIconNames.d.ts +2 -0
  46. package/dist/types/stories/atoms/index.d.ts +7 -0
  47. package/dist/types/stories/atoms/loaders/Loader.d.ts +6 -0
  48. package/dist/types/stories/atoms/loaders/Loader.stories.d.ts +6 -0
  49. package/dist/types/stories/atoms/loaders/NProgress/RadialProgress.d.ts +11 -0
  50. package/dist/types/stories/atoms/loaders/NProgress/index.d.ts +3 -0
  51. package/dist/types/stories/atoms/loaders/index.d.ts +4 -0
  52. package/dist/types/stories/index.d.ts +5 -0
  53. package/dist/types/stories/layouts/index.d.ts +0 -0
  54. package/dist/types/stories/molecules/index.d.ts +3 -0
  55. package/dist/types/stories/molecules/inputs/InputField/InputField.d.ts +28 -0
  56. package/dist/types/stories/molecules/inputs/InputField/index.d.ts +3 -0
  57. package/{lib/components/Forms → dist/types/stories/molecules/inputs}/InputLabel/InputLabel.d.ts +15 -14
  58. package/dist/types/stories/molecules/inputs/InputLabel/index.d.ts +3 -0
  59. package/dist/types/stories/molecules/inputs/NestedInputButton/NestedInputButton.d.ts +17 -0
  60. package/dist/types/stories/molecules/inputs/NestedInputButton/index.d.ts +3 -0
  61. package/{lib/components/Forms/Checkbox → dist/types/stories/molecules/inputs/checkbox}/Checkbox.d.ts +28 -27
  62. package/dist/types/stories/molecules/inputs/checkbox/Checkbox.stories.d.ts +6 -0
  63. package/dist/types/stories/molecules/inputs/checkbox/index.d.ts +3 -0
  64. package/{lib/components/Combobox/Combobox.d.ts → dist/types/stories/molecules/inputs/combobox/ComboBox.d.ts} +34 -34
  65. package/dist/types/stories/molecules/inputs/combobox/ComboBox.stories.d.ts +6 -0
  66. package/dist/types/stories/molecules/inputs/combobox/index.d.ts +3 -0
  67. package/dist/types/stories/molecules/inputs/index.d.ts +11 -0
  68. package/{lib/components/Forms/Radio → dist/types/stories/molecules/inputs/radio}/Radio.d.ts +27 -27
  69. package/dist/types/stories/molecules/inputs/radio/Radio.stories.d.ts +6 -0
  70. package/dist/types/stories/molecules/inputs/radio/index.d.ts +3 -0
  71. package/{lib/components/Forms/Select → dist/types/stories/molecules/inputs/select}/Select.d.ts +27 -27
  72. package/dist/types/stories/molecules/inputs/select/Select.stories.d.ts +6 -0
  73. package/dist/types/stories/molecules/inputs/select/index.d.ts +3 -0
  74. package/dist/types/stories/molecules/inputs/textArea/TextArea.d.ts +26 -0
  75. package/dist/types/stories/molecules/inputs/textArea/TextArea.stories.d.ts +6 -0
  76. package/dist/types/stories/molecules/inputs/textArea/index.d.ts +3 -0
  77. package/dist/types/stories/molecules/inputs/toggleSwitch/ToggleSwitch.d.ts +18 -0
  78. package/dist/types/stories/molecules/inputs/toggleSwitch/index.d.ts +3 -0
  79. package/dist/types/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.d.ts +18 -0
  80. package/dist/types/stories/organisms/AnimatedLabelInput/index.d.ts +3 -0
  81. package/dist/types/stories/organisms/ButtonDropdown/ButtonDropdown.d.ts +14 -0
  82. package/dist/types/stories/organisms/ButtonDropdown/index.d.ts +3 -0
  83. package/{lib/components/Dropdown/Dropdown.d.ts → dist/types/stories/organisms/DropdownComponent/DropdownComponent.d.ts} +40 -39
  84. package/dist/types/stories/organisms/DropdownComponent/dropdownItems.d.ts +3 -0
  85. package/dist/types/stories/organisms/DropdownComponent/index.d.ts +4 -0
  86. package/dist/types/stories/organisms/EmptySectionPlaceholder/EmptySectionPlaceholder.d.ts +19 -0
  87. package/dist/types/stories/organisms/EmptySectionPlaceholder/index.d.ts +3 -0
  88. package/dist/types/stories/organisms/FormInputWithAddons/FormInputWithAddons.d.ts +21 -0
  89. package/dist/types/stories/organisms/FormInputWithAddons/index.d.ts +3 -0
  90. package/dist/types/stories/organisms/index.d.ts +7 -0
  91. package/dist/types/utils/types.d.ts +2 -0
  92. package/dist/types/utils/useId.d.ts +1 -0
  93. package/next.config.js +8 -0
  94. package/package.json +53 -77
  95. package/pages/api/hello.ts +13 -0
  96. package/postcss.config.js +5 -6
  97. package/public/next.svg +1 -0
  98. package/public/thirteen.svg +1 -0
  99. package/public/vercel.svg +1 -0
  100. package/scripts/create-component.js +97 -0
  101. package/stories/Introduction.mdx +314 -0
  102. package/stories/assets/code-brackets.svg +1 -0
  103. package/stories/assets/colors.svg +1 -0
  104. package/stories/assets/comments.svg +1 -0
  105. package/stories/assets/direction.svg +1 -0
  106. package/stories/assets/flow.svg +1 -0
  107. package/stories/assets/plugin.svg +1 -0
  108. package/stories/assets/repo.svg +1 -0
  109. package/stories/assets/stackalt.svg +1 -0
  110. package/stories/atoms/Avatar/Avatar.stories.tsx +96 -0
  111. package/stories/atoms/Avatar/Avatar.tsx +123 -0
  112. package/stories/atoms/Avatar/index.ts +3 -0
  113. package/stories/atoms/badges/Badge.tsx +127 -0
  114. package/stories/atoms/badges/Pill/Pill.stories.tsx +75 -0
  115. package/stories/atoms/badges/Rounded/Rounded.stories.tsx +75 -0
  116. package/stories/atoms/badges/index.ts +3 -0
  117. package/stories/atoms/buttons/Button/Alternative/Alternative.stories.ts +69 -0
  118. package/stories/atoms/buttons/Button/Button.tsx +123 -0
  119. package/stories/atoms/buttons/Button/Danger/Danger.stories.ts +71 -0
  120. package/stories/atoms/buttons/Button/Primary/Primary.stories.ts +78 -0
  121. package/stories/atoms/buttons/Button/Secondary/Secondary.stories.ts +74 -0
  122. package/stories/atoms/buttons/Button/defaultArgs.ts +9 -0
  123. package/stories/atoms/buttons/Button/index.ts +3 -0
  124. package/stories/atoms/buttons/Capsule/Alternative/Alternative.stories.ts +27 -0
  125. package/stories/atoms/buttons/Capsule/Capsule.tsx +87 -0
  126. package/stories/atoms/buttons/Capsule/Danger/Danger.stories.ts +27 -0
  127. package/stories/atoms/buttons/Capsule/Primary/Primary.stories.ts +27 -0
  128. package/stories/atoms/buttons/Capsule/Secondary/Secondary.stories.ts +27 -0
  129. package/stories/atoms/buttons/Capsule/index.ts +3 -0
  130. package/stories/atoms/buttons/FloatingActionButton/FloatingActionButton.stories.tsx +15 -0
  131. package/stories/atoms/buttons/FloatingActionButton/FloatingActionButton.tsx +22 -0
  132. package/stories/atoms/buttons/FloatingActionButton/index.tsx +3 -0
  133. package/stories/atoms/buttons/index.ts +4 -0
  134. package/stories/atoms/crumb/Crumb.stories.tsx +18 -0
  135. package/stories/atoms/crumb/Crumb.tsx +22 -0
  136. package/stories/atoms/crumb/index.tsx +3 -0
  137. package/stories/atoms/icons/DynamicIcon.stories.ts +43 -0
  138. package/stories/atoms/icons/DynamicIcon.tsx +90 -0
  139. package/stories/atoms/icons/IconWithShadow.stories.ts +43 -0
  140. package/stories/atoms/icons/IconWithShadow.tsx +16 -0
  141. package/stories/atoms/icons/TablerIcon.tsx +22 -0
  142. package/stories/atoms/icons/index.tsx +14 -0
  143. package/stories/atoms/icons/tablerIconNames.ts +4336 -0
  144. package/stories/atoms/index.ts +46 -0
  145. package/stories/atoms/loaders/Loader.stories.ts +15 -0
  146. package/stories/atoms/loaders/Loader.tsx +15 -0
  147. package/stories/atoms/loaders/NProgress/RadialProgress.stories.tsx +19 -0
  148. package/stories/atoms/loaders/NProgress/RadialProgress.tsx +76 -0
  149. package/stories/atoms/loaders/NProgress/index.ts +3 -0
  150. package/stories/atoms/loaders/index.ts +4 -0
  151. package/stories/index.ts +124 -0
  152. package/stories/layouts/CardLayout/CardLayout.stories.tsx +18 -0
  153. package/stories/layouts/CardLayout/CardLayout.tsx +22 -0
  154. package/stories/layouts/CardLayout/index.tsx +3 -0
  155. package/stories/layouts/ModalLayout/ModalLayout.stories.tsx +18 -0
  156. package/stories/layouts/ModalLayout/ModalLayout.tsx +22 -0
  157. package/stories/layouts/ModalLayout/index.tsx +3 -0
  158. package/stories/layouts/index.ts +0 -0
  159. package/stories/molecules/index.ts +35 -0
  160. package/stories/molecules/inputs/InputField/InputField.stories.tsx +29 -0
  161. package/stories/molecules/inputs/InputField/InputField.tsx +88 -0
  162. package/stories/molecules/inputs/InputField/index.tsx +3 -0
  163. package/stories/molecules/inputs/InputLabel/InputLabel.stories.tsx +19 -0
  164. package/stories/molecules/inputs/InputLabel/InputLabel.tsx +45 -0
  165. package/stories/molecules/inputs/InputLabel/index.tsx +3 -0
  166. package/stories/molecules/inputs/NestedInputButton/NestedInputButton.stories.tsx +52 -0
  167. package/stories/molecules/inputs/NestedInputButton/NestedInputButton.tsx +64 -0
  168. package/stories/molecules/inputs/NestedInputButton/index.tsx +3 -0
  169. package/stories/molecules/inputs/checkbox/Checkbox.stories.ts +23 -0
  170. package/stories/molecules/inputs/checkbox/Checkbox.tsx +99 -0
  171. package/stories/molecules/inputs/checkbox/index.ts +3 -0
  172. package/stories/molecules/inputs/combobox/ComboBox.stories.ts +41 -0
  173. package/stories/molecules/inputs/combobox/ComboBox.tsx +194 -0
  174. package/stories/molecules/inputs/combobox/index.ts +3 -0
  175. package/stories/molecules/inputs/index.ts +24 -0
  176. package/stories/molecules/inputs/radio/Radio.stories.ts +27 -0
  177. package/stories/molecules/inputs/radio/Radio.tsx +92 -0
  178. package/stories/molecules/inputs/radio/index.ts +3 -0
  179. package/stories/molecules/inputs/select/Select.stories.ts +23 -0
  180. package/stories/molecules/inputs/select/Select.tsx +100 -0
  181. package/stories/molecules/inputs/select/index.ts +3 -0
  182. package/stories/molecules/inputs/textArea/TextArea.stories.ts +20 -0
  183. package/stories/molecules/inputs/textArea/TextArea.tsx +67 -0
  184. package/stories/molecules/inputs/textArea/index.ts +3 -0
  185. package/stories/molecules/inputs/toggleSwitch/ToggleSwitch.stories.tsx +119 -0
  186. package/stories/molecules/inputs/toggleSwitch/ToggleSwitch.tsx +75 -0
  187. package/stories/molecules/inputs/toggleSwitch/index.ts +3 -0
  188. package/stories/molecules/tabs/Tabs.stories.tsx +18 -0
  189. package/stories/molecules/tabs/Tabs.tsx +22 -0
  190. package/stories/molecules/tabs/index.tsx +3 -0
  191. package/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.stories.tsx +21 -0
  192. package/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.tsx +60 -0
  193. package/stories/organisms/AnimatedLabelInput/index.tsx +3 -0
  194. package/stories/organisms/ButtonDropdown/ButtonDropdown.stories.tsx +118 -0
  195. package/stories/organisms/ButtonDropdown/ButtonDropdown.tsx +81 -0
  196. package/stories/organisms/ButtonDropdown/index.tsx +3 -0
  197. package/stories/organisms/DropdownComponent/Dropdown.stories.tsx +49 -0
  198. package/stories/organisms/DropdownComponent/Dropdown.test.tsx +0 -0
  199. package/stories/organisms/DropdownComponent/DropdownComponent.tsx +269 -0
  200. package/stories/organisms/DropdownComponent/dropdownItems.ts +101 -0
  201. package/stories/organisms/DropdownComponent/index.ts +4 -0
  202. package/stories/organisms/EmptySectionPlaceholder/EmptySectionPlaceholder.stories.tsx +76 -0
  203. package/stories/organisms/EmptySectionPlaceholder/EmptySectionPlaceholder.tsx +52 -0
  204. package/stories/organisms/EmptySectionPlaceholder/index.tsx +3 -0
  205. package/stories/organisms/FormInputWithAddons/FormInputWithAddons.stories.tsx +29 -0
  206. package/stories/organisms/FormInputWithAddons/FormInputWithAddons.tsx +140 -0
  207. package/stories/organisms/FormInputWithAddons/index.tsx +3 -0
  208. package/stories/organisms/index.ts +16 -0
  209. package/tailwind.config.js +165 -36
  210. package/tsconfig.json +27 -21
  211. package/tsconfig.lib.json +19 -0
  212. package/utils/types.d.ts +2 -0
  213. package/utils/types.ts +3 -0
  214. package/utils/useId.d.ts +1 -0
  215. package/utils/useId.tsx +16 -0
  216. package/.babelrc +0 -14
  217. package/.editorconfig +0 -9
  218. package/.eslintrc +0 -13
  219. package/.github/workflows/test.yml +0 -27
  220. package/.storybook/main.js +0 -17
  221. package/.storybook/manager.js +0 -6
  222. package/.storybook/plenumTheme.js +0 -8
  223. package/.storybook/preview.js +0 -44
  224. package/_templates/component/new/component.ejs.t +0 -18
  225. package/_templates/component/new/component.stories.ejs.t +0 -21
  226. package/_templates/component/new/component.test.ejs.t +0 -15
  227. package/_templates/component/new/index.ejs.t +0 -6
  228. package/_templates/component/new/prompt.js +0 -7
  229. package/jest.config.js +0 -8
  230. package/lib/common/brandCfg.d.ts +0 -3
  231. package/lib/common/index.d.ts +0 -3
  232. package/lib/common/storyCfg.d.ts +0 -5
  233. package/lib/components/Avatar/Avatar.stories.d.ts +0 -6
  234. package/lib/components/Avatar/Avatar.test.d.ts +0 -1
  235. package/lib/components/Avatar/index.d.ts +0 -1
  236. package/lib/components/Button/Button.d.ts +0 -55
  237. package/lib/components/Button/Button.stories.d.ts +0 -11
  238. package/lib/components/Button/Button.test.d.ts +0 -1
  239. package/lib/components/Button/index.d.ts +0 -1
  240. package/lib/components/ButtonDropdown/ButtonDropdown.d.ts +0 -12
  241. package/lib/components/ButtonDropdown/ButtonDropdown.stories.d.ts +0 -9
  242. package/lib/components/ButtonDropdown/index.d.ts +0 -1
  243. package/lib/components/Combobox/Combobox.stories.d.ts +0 -14
  244. package/lib/components/Combobox/Combobox.test.d.ts +0 -1
  245. package/lib/components/Combobox/index.d.ts +0 -1
  246. package/lib/components/Dropdown/Dropdown.stories.d.ts +0 -8
  247. package/lib/components/Dropdown/Dropdown.test.d.ts +0 -1
  248. package/lib/components/Dropdown/data.d.ts +0 -3
  249. package/lib/components/Dropdown/index.d.ts +0 -1
  250. package/lib/components/DynamicIcons/DynamicIcons.stories.d.ts +0 -9
  251. package/lib/components/DynamicIcons/index.d.ts +0 -3
  252. package/lib/components/DynamicIcons/tablerIconNames.d.ts +0 -2
  253. package/lib/components/Forms/BaseField/BaseField.d.ts +0 -34
  254. package/lib/components/Forms/BaseField/BaseField.stories.d.ts +0 -6
  255. package/lib/components/Forms/BaseField/BaseField.test.d.ts +0 -1
  256. package/lib/components/Forms/BaseField/index.d.ts +0 -1
  257. package/lib/components/Forms/Checkbox/Checkbox.stories.d.ts +0 -14
  258. package/lib/components/Forms/Checkbox/Checkbox.test.d.ts +0 -1
  259. package/lib/components/Forms/Checkbox/index.d.ts +0 -1
  260. package/lib/components/Forms/InputCounter/InputCounter.d.ts +0 -9
  261. package/lib/components/Forms/InputCounter/InputCounter.stories.d.ts +0 -6
  262. package/lib/components/Forms/InputCounter/InputCounter.test.d.ts +0 -1
  263. package/lib/components/Forms/InputCounter/index.d.ts +0 -1
  264. package/lib/components/Forms/InputLabel/InputLabel.stories.d.ts +0 -6
  265. package/lib/components/Forms/InputLabel/InputLabel.test.d.ts +0 -1
  266. package/lib/components/Forms/InputLabel/index.d.ts +0 -1
  267. package/lib/components/Forms/Radio/Radio.stories.d.ts +0 -12
  268. package/lib/components/Forms/Radio/Radio.test.d.ts +0 -1
  269. package/lib/components/Forms/Radio/index.d.ts +0 -1
  270. package/lib/components/Forms/Select/Select.stories.d.ts +0 -11
  271. package/lib/components/Forms/Select/Select.test.d.ts +0 -1
  272. package/lib/components/Forms/Select/index.d.ts +0 -1
  273. package/lib/components/Forms/TextInput/TextInput.d.ts +0 -39
  274. package/lib/components/Forms/TextInput/TextInput.stories.d.ts +0 -12
  275. package/lib/components/Forms/TextInput/index.d.ts +0 -1
  276. package/lib/components/Forms/TextInputAddon/InputCta/InputCta.d.ts +0 -16
  277. package/lib/components/Forms/TextInputAddon/InputCta/InputCta.stories.d.ts +0 -6
  278. package/lib/components/Forms/TextInputAddon/InputCta/InputCta.test.d.ts +0 -1
  279. package/lib/components/Forms/TextInputAddon/InputCta/index.d.ts +0 -1
  280. package/lib/components/Forms/TextInputAddon/TextInputAddon.d.ts +0 -54
  281. package/lib/components/Forms/TextInputAddon/TextInputAddon.stories.d.ts +0 -13
  282. package/lib/components/Forms/TextInputAddon/index.d.ts +0 -1
  283. package/lib/components/Forms/TextInputSelect/InputSelect/InputSelect.d.ts +0 -13
  284. package/lib/components/Forms/TextInputSelect/InputSelect/InputSelect.stories.d.ts +0 -6
  285. package/lib/components/Forms/TextInputSelect/InputSelect/InputSelect.test.d.ts +0 -1
  286. package/lib/components/Forms/TextInputSelect/InputSelect/index.d.ts +0 -1
  287. package/lib/components/Forms/TextInputSelect/TextInputSelect.d.ts +0 -48
  288. package/lib/components/Forms/TextInputSelect/TextInputSelect.stories.d.ts +0 -8
  289. package/lib/components/Forms/TextInputSelect/index.d.ts +0 -1
  290. package/lib/components/Forms/Textarea/Textarea.d.ts +0 -32
  291. package/lib/components/Forms/Textarea/Textarea.stories.d.ts +0 -12
  292. package/lib/components/Forms/Textarea/Textarea.test.d.ts +0 -1
  293. package/lib/components/Forms/Textarea/index.d.ts +0 -1
  294. package/lib/components/ToggleSwitch/ToggleSwitch.d.ts +0 -28
  295. package/lib/components/ToggleSwitch/ToggleSwitch.stories.d.ts +0 -21
  296. package/lib/components/ToggleSwitch/ToggleSwitch.test.d.ts +0 -1
  297. package/lib/components/ToggleSwitch/index.d.ts +0 -1
  298. package/lib/components/TreeView/TreeView.d.ts +0 -36
  299. package/lib/components/TreeView/TreeView.stories.d.ts +0 -6
  300. package/lib/components/TreeView/TreeView.test.d.ts +0 -1
  301. package/lib/components/TreeView/index.d.ts +0 -1
  302. package/lib/components/TreeView V1/TreeItem/TreeItem.d.ts +0 -16
  303. package/lib/components/TreeView V1/TreeItem/TreeItem.stories.d.ts +0 -9
  304. package/lib/components/TreeView V1/TreeItem/TreeItem.test.d.ts +0 -1
  305. package/lib/components/TreeView V1/TreeItem/index.d.ts +0 -1
  306. package/lib/components/TreeView V1/TreeView.d.ts +0 -6
  307. package/lib/components/TreeView V1/TreeView.stories.d.ts +0 -6
  308. package/lib/components/TreeView V1/TreeView.test.d.ts +0 -1
  309. package/lib/components/TreeView V1/context.d.ts +0 -9
  310. package/lib/components/TreeView V1/index.d.ts +0 -1
  311. package/lib/components/TreeView V1/sampleData.d.ts +0 -71
  312. package/lib/components/TreeView V1/types/tree.types.d.ts +0 -21
  313. package/lib/index.d.ts +0 -13
  314. package/lib/index.esm.js +0 -105874
  315. package/lib/index.esm.js.map +0 -1
  316. package/lib/index.js +0 -105913
  317. package/lib/index.js.map +0 -1
  318. package/lib/page/TreeNavigation/CustomNode/CustomNode.d.ts +0 -3
  319. package/lib/page/TreeNavigation/CustomNode/CustomNode.test.d.ts +0 -1
  320. package/lib/page/TreeNavigation/CustomNode/index.d.ts +0 -1
  321. package/lib/page/TreeNavigation/TreeNavigation.d.ts +0 -8
  322. package/lib/page/TreeNavigation/TreeNavigation.stories.d.ts +0 -6
  323. package/lib/page/TreeNavigation/hooks/useFetch.d.ts +0 -14
  324. package/lib/page/TreeNavigation/index.d.ts +0 -1
  325. package/lib/tailwind.css +0 -2023
  326. package/lib/util/DynamicIcons.d.ts +0 -10
  327. package/lib/util/Loader.d.ts +0 -5
  328. package/lib/util/types.d.ts +0 -2
  329. package/lib/util/useID.d.ts +0 -1
  330. package/rollup.config.js +0 -37
  331. package/setupTests.js +0 -6
  332. package/styleMock.js +0 -2
@@ -0,0 +1,100 @@
1
+ import React, { useEffect, useState } from "react"
2
+ import InputLabel from "@/stories/molecules/inputs/InputLabel"
3
+ import { useId } from "@/utils/useId"
4
+ import { default as cn } from "classnames"
5
+
6
+ export type ISimpleSelectOptions = {
7
+ label: string
8
+ value: string
9
+ }
10
+ export interface ISelectProps {
11
+ /** Label */
12
+ label?: string
13
+ /** Select ID prop */
14
+ id?: string
15
+ /** Select name prop */
16
+ name?: string
17
+ /** List of options to display in the select menu */
18
+ options: ISimpleSelectOptions[]
19
+ /** Select name prop */
20
+ onChange?(value: string): void
21
+ /** Select disabled state */
22
+ isDisabled?: boolean
23
+ /** Select error state */
24
+ isError?: boolean
25
+ /** Select required state */
26
+ isRequired?: boolean
27
+
28
+ value?: string
29
+
30
+ className?: string
31
+ }
32
+ const Select: React.FC<ISelectProps> = ({
33
+ label,
34
+ id,
35
+ name,
36
+ options,
37
+ onChange,
38
+ isDisabled,
39
+ isError,
40
+ isRequired,
41
+ value,
42
+ className
43
+ }) => {
44
+ const [selectedOption, setSelectedOption] = useState<string>(value || options[0].value)
45
+ const uniqueID = useId()
46
+ if (!id) id = `select-${uniqueID}`
47
+ if (!name) name = id
48
+
49
+ useEffect(() => {
50
+ if (value !== undefined && value !== null) {
51
+ setSelectedOption(value)
52
+ }
53
+ }, [value])
54
+
55
+ const handleChange = (e: React.ChangeEvent<HTMLSelectElement>) => {
56
+ const targetValue = e.target.value
57
+ typeof onChange == "function" && onChange(targetValue)
58
+ setSelectedOption(targetValue)
59
+ }
60
+ const wrapperStyle = cn({ "opacity-50": isDisabled })
61
+ return (
62
+ <div className={wrapperStyle}>
63
+ {label && (
64
+ <InputLabel
65
+ isPlaceholder
66
+ isActive
67
+ label={label}
68
+ isRequired={isRequired}
69
+ id={id}
70
+ isError={isError}
71
+ isDisabled={isDisabled}
72
+ />
73
+ )}
74
+ <select
75
+ id={id}
76
+ name={name}
77
+ className={cn(
78
+ "block w-full border-gray-300 py-2 pl-3 pr-10 text-base focus:outline-none",
79
+ "rounded focus:border-purple-500 focus:ring-purple-500 sm:text-sm",
80
+ { "border-red-500": isError },
81
+ { "border-gray-300": !isError },
82
+ className
83
+ )}
84
+ onChange={handleChange}
85
+ disabled={isDisabled}
86
+ value={selectedOption}
87
+ >
88
+ {options.map(({ value, label }) => {
89
+ return (
90
+ <option key={value} value={value}>
91
+ {label}
92
+ </option>
93
+ )
94
+ })}
95
+ </select>
96
+ </div>
97
+ )
98
+ }
99
+
100
+ export default Select
@@ -0,0 +1,3 @@
1
+ import Select, { ISelectProps, ISimpleSelectOptions } from "./Select"
2
+ export type { ISelectProps, ISimpleSelectOptions }
3
+ export default Select
@@ -0,0 +1,20 @@
1
+ import type { Meta, StoryObj } from "@storybook/react"
2
+ import TextArea from "./TextArea"
3
+ const meta: Meta<typeof TextArea> = {
4
+ title: "Design System/Molecules/Inputs/TextArea",
5
+ component: TextArea,
6
+ tags: ["autodocs"]
7
+ }
8
+ const dummyText: string = `Checkmate... Life finds a way. Is this my espresso machine? Wh-what is-h-how did you get my espresso machine? You're a very talented young man, with your own clever thoughts and ideas. Do you need a manager? Is this my espresso machine? Wh-what is-h-how did you get my espresso machine?
9
+
10
+ I was part of something special. Just my luck, no ice. You really think you can fly that thing? Must go faster... go, go, go, go, go! God creates dinosaurs. God destroys dinosaurs. God creates Man. Man destroys God. Man creates Dinosaurs. Yeah, but your scientists were so preoccupied with whether or not they could, they didn't stop to think if they should.`
11
+ type Story = StoryObj<typeof TextArea>
12
+ export const DefaultTextArea: Story = {
13
+ args: {
14
+ id: "appDescription",
15
+ name: "description",
16
+ rows: 12,
17
+ placeholder: dummyText
18
+ }
19
+ }
20
+ export default meta
@@ -0,0 +1,67 @@
1
+ import { default as cn } from "classnames"
2
+
3
+ export interface ITextAreaFieldProps extends React.ComponentPropsWithoutRef<"textarea"> {
4
+ /** Callback on change */
5
+ handleChange: (value: string) => void
6
+ /** textarea ID*/
7
+ id: string
8
+ /** textarea Name */
9
+ name: string
10
+ /** Force the focus state on the textarea */
11
+ isFocused?: boolean
12
+ /** Error condition */
13
+ isError?: boolean
14
+ /** Disabled state */
15
+ isDisabled?: boolean
16
+ /** Readonly state */
17
+ isReadonly?: boolean
18
+ /** textarea value */
19
+ value: string
20
+ /** If field is required */
21
+ required?: boolean
22
+ /**Allow Text Area Resize*/
23
+ textAreaResize?: boolean
24
+ className?: string
25
+ }
26
+ const TextAreaField: React.FC<ITextAreaFieldProps> = ({
27
+ id,
28
+ name,
29
+ value,
30
+ isFocused,
31
+ isError,
32
+ isReadonly,
33
+ isDisabled,
34
+ handleChange,
35
+ required,
36
+ placeholder,
37
+ className,
38
+ ...rest
39
+ }) => {
40
+ return (
41
+ <textarea
42
+ {...{
43
+ id,
44
+ name,
45
+ value,
46
+ onChange: (e) => {
47
+ handleChange(e.target.value)
48
+ },
49
+ autoFocus: isFocused,
50
+ readOnly: isReadonly,
51
+ disabled: isDisabled,
52
+ required,
53
+ placeholder: placeholder || " ",
54
+ "aria-invalid": isError,
55
+ "aria-disabled": isDisabled,
56
+ className: cn(
57
+ "peer w-full resize-y auto-resize rounded border border-gray-300 py-2 px-3 pt-2 text-sm font-normal leading-5 outline-offset-0 ring-offset-0 focus:border-purple-600 focus:ring-purple-600",
58
+ isError ? "border-red-600 text-red-600" : "",
59
+ className
60
+ ),
61
+ ...rest
62
+ }}
63
+ />
64
+ )
65
+ }
66
+
67
+ export default TextAreaField
@@ -0,0 +1,3 @@
1
+ import TextAreaField, { ITextAreaFieldProps } from "./TextArea"
2
+ export type { ITextAreaFieldProps }
3
+ export default TextAreaField
@@ -0,0 +1,119 @@
1
+ import Button from "stories/atoms/buttons/Button/Button"
2
+
3
+ import type { Meta, StoryObj } from "@storybook/react"
4
+
5
+ import ToggleSwitch from "./ToggleSwitch"
6
+ const meta: Meta<typeof ToggleSwitch> = {
7
+ title: "Design System/Molecules/Inputs/ToggleSwitch",
8
+ component: ToggleSwitch,
9
+ tags: ["autodocs"]
10
+ }
11
+ type Story = StoryObj<typeof ToggleSwitch>
12
+ export const DefaultToggleSwitch: Story = {
13
+ args: {
14
+ isChecked: false,
15
+ onChange: (v: boolean) => {
16
+ console.log(v, "v")
17
+ },
18
+ label: {
19
+ text: "label me",
20
+ className: "text-lg text-gray-400",
21
+ xPosition: "left",
22
+ },
23
+ variant: "base",
24
+ id: "toggle-switch-1",
25
+ name: "toggle one",
26
+ },
27
+ }
28
+ export const ShortToggleSwitch: Story = {
29
+ args: {
30
+ ...DefaultToggleSwitch.args,
31
+ label: {
32
+ text: "label me too",
33
+ className: "text-lg text-gray-400",
34
+ xPosition: "left",
35
+ },
36
+ variant: "short",
37
+ id: "toggle-switch-2",
38
+ name: "toggle two",
39
+ },
40
+ }
41
+ export const Checked: Story = {
42
+ args: {
43
+ ...DefaultToggleSwitch.args,
44
+ isChecked: true,
45
+ label: {
46
+ text: "label me too",
47
+ className: "text-lg text-gray-400",
48
+ xPosition: "left",
49
+ },
50
+ variant: "base",
51
+ id: "toggle-switch-3",
52
+ name: "toggle three",
53
+ },
54
+ }
55
+ export const WithIcon: Story = {
56
+ args: {
57
+ ...DefaultToggleSwitch.args,
58
+ label: {
59
+ text: "label me three",
60
+ className: "text-lg text-gray-400",
61
+ xPosition: "left",
62
+ },
63
+ withIcon: {
64
+ name: "IconCheck",
65
+ type: "solid",
66
+ },
67
+ variant: "base",
68
+ id: "toggle-switch-4",
69
+ name: "toggle four",
70
+ },
71
+ }
72
+ export const NoLabel: Story = {
73
+ args: {
74
+ ...DefaultToggleSwitch.args,
75
+ label: undefined,
76
+ variant: "base",
77
+ id: "toggle-switch-5",
78
+ name: "toggle five",
79
+ },
80
+ }
81
+ export const LabelOnTheRight: Story = {
82
+ args: {
83
+ ...DefaultToggleSwitch.args,
84
+ variant: "base",
85
+ id: "toggle-switch-6",
86
+ name: "toggle six",
87
+ label: {
88
+ text: "Right on!",
89
+ className: "text-lg text-gray-400",
90
+ xPosition: "right",
91
+ },
92
+ },
93
+ }
94
+ export const JSXLabel: Story = {
95
+ args: {
96
+ ...DefaultToggleSwitch.args,
97
+ variant: "base",
98
+ id: "toggle-switch-6",
99
+ name: "toggle five",
100
+ label: {
101
+ text: (
102
+ <span className={"inline-flex gap-2 items-center "}>
103
+ <Button
104
+ actionType="primary"
105
+ label="Fancy Label"
106
+ onClick={() => {}}
107
+ icon="IconConfetti"
108
+ size="xs"
109
+ className="mr-4"
110
+ />
111
+ </span>
112
+ ),
113
+ className: "text-lg text-gray-400",
114
+ xPosition: "left",
115
+ },
116
+ },
117
+ }
118
+
119
+ export default meta
@@ -0,0 +1,75 @@
1
+ import React, { useEffect, useState } from "react"
2
+ import { default as cn } from "classnames"
3
+ import { Switch } from "@headlessui/react"
4
+ import { DynamicIcon, IDynamicIconProps } from "@/stories/atoms"
5
+ export interface IToggleSwitchProps {
6
+ isChecked: boolean
7
+ onChange: (isChecked: boolean) => void
8
+ label?: {
9
+ text: string | JSX.Element
10
+ className?: string
11
+ xPosition?: "left" | "right"
12
+ }
13
+ screenReaderLabel: string
14
+ name: string
15
+ id: string
16
+ variant: "base" | "short"
17
+ withIcon?: IDynamicIconProps
18
+ }
19
+
20
+ const ToggleSwitch: React.FC<IToggleSwitchProps> = ({
21
+ isChecked,
22
+ onChange,
23
+ label,
24
+ screenReaderLabel,
25
+ name,
26
+ id,
27
+ variant = "base",
28
+ withIcon,
29
+ }) => {
30
+ const [checked, setChecked] = useState<boolean>(isChecked)
31
+ useEffect(() => setChecked(isChecked), [isChecked])
32
+
33
+ return (
34
+ <Switch.Group as={"div"} className={"flex items-center gap-2"}>
35
+ {label && label.xPosition === "left" && (
36
+ <Switch.Label className={label.className}>{label.text}</Switch.Label>
37
+ )}
38
+ <Switch
39
+ name={name}
40
+ id={id}
41
+ checked={checked}
42
+ onChange={(v: boolean) => {
43
+ onChange(v)
44
+ setChecked(v)
45
+ }}
46
+ className={cn(
47
+ { "w-9 h-4": variant === "short", " h-6 w-11": variant === "base" },
48
+ checked ? "bg-purple-600" : "bg-gray-200",
49
+ "relative inline-flex items-center rounded-full focus-visible:ring-2 focus-visible:ring-purple-600 focus-visible:ring-offset-2 focus-within:ring-2 focus-within:ring-purple-600 focus-within:ring-offset-2 focus:ring-2 focus:ring-purple-600 focus:ring-offset-2 active:ring-2 active:ring-purple-600 active:ring-offset-2"
50
+ )}
51
+ >
52
+ <span className="sr-only">{screenReaderLabel}</span>
53
+ <span
54
+ className={cn(
55
+ checked ? "translate-x-[22px]" : "translate-x-[2px]",
56
+ {
57
+ "border border-gray-200 translate-x-0": variant === "short",
58
+ "!translate-x-[22px]": checked && variant === "short",
59
+ },
60
+ " h-5 w-5 transform rounded-full bg-white transition shadow-sm drop-shadow flex items-center justify-center"
61
+ )}
62
+ >
63
+ {withIcon && (
64
+ <DynamicIcon {...withIcon} className={"text-gray-400 m-[2px]"} />
65
+ )}
66
+ </span>
67
+ </Switch>
68
+ {label && label.xPosition === "right" && (
69
+ <Switch.Label className={label.className}>{label.text}</Switch.Label>
70
+ )}
71
+ </Switch.Group>
72
+ )
73
+ }
74
+
75
+ export default ToggleSwitch
@@ -0,0 +1,3 @@
1
+ import ToggleSwitch, { IToggleSwitchProps } from "./ToggleSwitch"
2
+ export type { IToggleSwitchProps }
3
+ export default ToggleSwitch
@@ -0,0 +1,18 @@
1
+
2
+ import type { Meta, StoryObj } from "@storybook/react"
3
+ import Tabs, { ITabsProps } from "./Tabs"
4
+
5
+ const meta: Meta<typeof Tabs> = {
6
+ title: "Design System/molecules/Tabs",
7
+ component: Tabs,
8
+ tags: ["autodocs"],
9
+ argTypes: {}
10
+ }
11
+
12
+ export default meta
13
+ type Story = StoryObj<typeof Tabs>
14
+ export const DefaultTabsStory: Story = {
15
+ args: {
16
+
17
+ }
18
+ }
@@ -0,0 +1,22 @@
1
+
2
+ import React from "react"
3
+ import EmptySectionPlaceholder from "@/stories/organisms/EmptySectionPlaceholder"
4
+
5
+ export interface ITabsProps {}
6
+
7
+ const Tabs: React.FC<ITabsProps> = ({}) => {
8
+ return (
9
+ <EmptySectionPlaceholder
10
+ {...{
11
+ icon: {
12
+ icon: "IconCode"
13
+ },
14
+ mutedText: "Coming Soon! 🚧",
15
+ primaryMessage: "We're working on this component. Be sure to check back soon!",
16
+ actions: []
17
+ }}
18
+ />
19
+ )
20
+ };
21
+
22
+ export default Tabs;
@@ -0,0 +1,3 @@
1
+
2
+ export { default } from './Tabs';
3
+ export * from './Tabs';
@@ -0,0 +1,21 @@
1
+ import type { Meta, StoryObj } from "@storybook/react"
2
+ import AnimatedLabelInput, { IAnimatedLabelInputProps } from "./AnimatedLabelInput"
3
+
4
+ const meta: Meta<typeof AnimatedLabelInput> = {
5
+ title: "Design System/organisms/Animated Label Input",
6
+ component: AnimatedLabelInput,
7
+ tags: ["autodocs"],
8
+ argTypes: {}
9
+ }
10
+
11
+ export default meta
12
+ type Story = StoryObj<typeof AnimatedLabelInput>
13
+ export const DefaultAnimatedLabelInputsStory: Story = {
14
+ args: {
15
+ id: "test",
16
+ label: {
17
+ display: "Label"
18
+ },
19
+ input: {}
20
+ } as IAnimatedLabelInputProps
21
+ }
@@ -0,0 +1,60 @@
1
+ import React from "react"
2
+ import { default as cn } from "classnames"
3
+ import InputField, { IInputFieldProps } from "@/stories/molecules/inputs/InputField"
4
+ import TextAreaField, { ITextAreaFieldProps } from "@/stories/molecules/inputs/textArea/TextArea"
5
+
6
+ interface ILabelProps extends React.ComponentPropsWithoutRef<"label"> {
7
+ display: string
8
+ }
9
+
10
+ export interface IAnimatedLabelInputProps {
11
+ id: string
12
+ containerStyles?: string
13
+ message?: string
14
+ input?: IInputFieldProps
15
+ textarea?: ITextAreaFieldProps
16
+ required?: boolean
17
+ isError?: boolean
18
+ label: ILabelProps
19
+ }
20
+
21
+ const AnimatedLabelInput: React.FC<IAnimatedLabelInputProps> = ({
22
+ id,
23
+ label,
24
+ input,
25
+ message,
26
+ textarea,
27
+ required,
28
+ isError,
29
+ containerStyles
30
+ }) => {
31
+ return (
32
+ <div className={cn("group relative", containerStyles ? containerStyles : "")}>
33
+ {input && <InputField isError={isError} {...input} />}
34
+ {textarea && <TextAreaField isError={isError} {...textarea} />}
35
+ <label
36
+ className={cn(
37
+ "absolute left-1 z-10 ml-[.172rem] inline-block bg-white px-1 text-xs transition-all peer-placeholder-shown:top-2 peer-placeholder-shown:text-sm peer-placeholder-shown:text-gray-600",
38
+ "-top-[9px] group-focus-within:!-top-[12px] group-focus-within:!left-1 group-focus-within:!ml-[.172rem] group-focus-within:!text-xs",
39
+ isError && "!text-red-600"
40
+ )}
41
+ htmlFor={id}
42
+ >
43
+ {label.display}
44
+ {required && <span className="text-red-600">*</span>}
45
+ </label>
46
+
47
+ <div className="flex flex-row space-x-3">
48
+ <div className="grow transition-all">
49
+ {message && (
50
+ <span className={cn("mt-1 block text-sm", isError ? "text-red-500" : "text-gray-500")}>
51
+ {message}
52
+ </span>
53
+ )}
54
+ </div>
55
+ </div>
56
+ </div>
57
+ )
58
+ }
59
+
60
+ export default AnimatedLabelInput
@@ -0,0 +1,3 @@
1
+ import AnimatedLabelInput, { IAnimatedLabelInputProps } from "./AnimatedLabelInput"
2
+ export default AnimatedLabelInput
3
+ export type { IAnimatedLabelInputProps }
@@ -0,0 +1,118 @@
1
+ import type { Meta, StoryObj } from "@storybook/react"
2
+ import ButtonDropdown from "."
3
+ import { IItemProp } from "../DropdownComponent"
4
+
5
+
6
+ const meta: Meta<typeof ButtonDropdown> = {
7
+ title: "Design System/Organisms/Button Dropdown",
8
+ component: ButtonDropdown,
9
+ tags: ["autodocs"],
10
+ argTypes: {}
11
+ }
12
+ const dropdownDataWithIcons: IItemProp[][] = [
13
+ [
14
+ {
15
+ icon: {
16
+ name: "IconClipboardCopy",
17
+ pos: "leading",
18
+ className: "h-5 w-5",
19
+ outline: false
20
+ },
21
+ key: "Copy",
22
+ label: "Copy",
23
+ onClick: () => {
24
+ console.log("Copy action")
25
+ }
26
+ }
27
+ ],
28
+ [
29
+ {
30
+ icon: {
31
+ name: "IconFolderPlus",
32
+ pos: "leading",
33
+ className: "h-5 w-5",
34
+ outline: false
35
+ },
36
+ key: "Add to Batch",
37
+ label: "Add to Batch",
38
+ onClick: () => {
39
+ console.log("Add to Batch action")
40
+ }
41
+ },
42
+ {
43
+ icon: {
44
+ name: "IconEye",
45
+ pos: "leading",
46
+ className: "h-5 w-5",
47
+ outline: false
48
+ },
49
+ key: "View Batch",
50
+ label: "View Batch",
51
+ onClick: () => {
52
+ console.log("View Batch action")
53
+ }
54
+ }
55
+ ],
56
+ [
57
+ {
58
+ icon: {
59
+ name: "IconTrash",
60
+ pos: "leading",
61
+ className: "h-5 w-5",
62
+ outline: false
63
+ },
64
+ key: "Delete",
65
+ label: "Delete",
66
+ onClick: () => {
67
+ console.log("Delete action")
68
+ },
69
+ isEmphasized: true
70
+ }
71
+ ]
72
+ ]
73
+
74
+ export default meta
75
+ type Story = StoryObj<typeof ButtonDropdown>
76
+
77
+ export const Primary: Story = {
78
+ args: {
79
+ button: {
80
+ label: "Primary",
81
+ actionType: "primary"
82
+ },
83
+ dropDown: {
84
+ items: dropdownDataWithIcons,
85
+ label: "Dropdown",
86
+ id: "dropdown-primary"
87
+ },
88
+ placement: "bottom-end"
89
+ }
90
+ }
91
+ export const Secondary: Story = {
92
+ args: {
93
+ button: {
94
+ label: "Secondary",
95
+ actionType: "secondary"
96
+ },
97
+ dropDown: {
98
+ label: "Dropdown",
99
+ id: "dropdown-secondary",
100
+ items: dropdownDataWithIcons
101
+ },
102
+ placement: "bottom-end"
103
+ }
104
+ }
105
+ export const Alternative: Story = {
106
+ args: {
107
+ button: {
108
+ label: "Alternative",
109
+ actionType: "alternative"
110
+ },
111
+ dropDown: {
112
+ label: "Dropdown",
113
+ id: "dropdown-secondary",
114
+ items: dropdownDataWithIcons
115
+ },
116
+ placement: "bottom-end"
117
+ }
118
+ }