1mpacto-react-ui 0.2.0-beta.9 → 1.0.0

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 (294) hide show
  1. package/dist/assets/_colors.scss +80 -0
  2. package/dist/assets/_mixins.scss +44 -17
  3. package/dist/assets/_typography.scss +582 -0
  4. package/dist/assets/colors.css +40 -0
  5. package/dist/assets/core.css +1 -1
  6. package/dist/assets/fontfamily.css +1 -1
  7. package/dist/assets/fonts/PlusJakartaSans-Italic.ttf +0 -0
  8. package/dist/assets/fonts/PlusJakartaSans.ttf +0 -0
  9. package/dist/assets/icons/arrow-narrow-down.svg +3 -3
  10. package/dist/assets/style.css +1 -1
  11. package/dist/assets/toast.css +98 -194
  12. package/dist/assets/typography.css +96 -0
  13. package/dist/index.cjs +147 -144
  14. package/dist/index.d.ts +1 -0
  15. package/dist/index.mjs +27706 -27060
  16. package/dist/package.json.d.ts +131 -132
  17. package/dist/src/components/Alert/index.d.ts +1 -0
  18. package/dist/src/components/Badges/Badges.config.d.ts +57 -0
  19. package/dist/src/components/Badges/Badges.d.ts +1 -0
  20. package/dist/src/components/Badges/Badges.stories.d.ts +117 -2
  21. package/dist/src/components/Breadcrumbs/Breadcrumbs.config.d.ts +113 -0
  22. package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +2 -1
  23. package/dist/src/components/Breadcrumbs/Breadcrumbs.stories.d.ts +221 -6
  24. package/dist/src/components/Button/Button.config.d.ts +70 -0
  25. package/dist/src/components/Button/Button.d.ts +1 -0
  26. package/dist/src/components/Button/Button.stories.d.ts +129 -4
  27. package/dist/src/components/ButtonIcon/ButtonIcon.config.d.ts +53 -0
  28. package/dist/src/components/ButtonIcon/ButtonIcon.d.ts +1 -0
  29. package/dist/src/components/ButtonIcon/ButtonIcon.stories.d.ts +123 -4
  30. package/dist/src/components/ButtonPopover/ButtonPopover.d.ts +1 -0
  31. package/dist/src/components/ButtonPopover/ButtonPopover.stories.d.ts +258 -2
  32. package/dist/src/components/Calendar/Calendar.d.ts +3 -1
  33. package/dist/src/components/Calendar/Calendar.stories.d.ts +283 -2
  34. package/dist/src/components/Calendar/CalendarButton.d.ts +1 -0
  35. package/dist/src/components/Calendar/CalendarCell.d.ts +1 -0
  36. package/dist/src/components/Calendar/CalendarMonth.d.ts +1 -0
  37. package/dist/src/components/Calendar/CalendarRange.d.ts +1 -0
  38. package/dist/src/components/Calendar/CalendarYear.d.ts +1 -0
  39. package/dist/src/components/Chart/DoughnutChart.d.ts +1 -0
  40. package/dist/src/components/Chart/GradientBarChart.d.ts +1 -0
  41. package/dist/src/components/Chart/GradientBarChart.stories.d.ts +71 -4
  42. package/dist/src/components/Chart/GradientLineChart.d.ts +1 -0
  43. package/dist/src/components/Chart/GradientLineChart.stories.d.ts +82 -4
  44. package/dist/src/components/Chart/LineChart.d.ts +1 -0
  45. package/dist/src/components/Chart/LineChart.stories.d.ts +35 -2
  46. package/dist/src/components/Chips/Chips.config.d.ts +35 -0
  47. package/dist/src/components/Chips/Chips.d.ts +1 -0
  48. package/dist/src/components/Chips/Chips.stories.d.ts +137 -2
  49. package/dist/src/components/Collapse/Collapse.d.ts +1 -0
  50. package/dist/src/components/Collapse/Collapse.stories.d.ts +89 -2
  51. package/dist/src/components/Collapse/CollapseV2.d.ts +1 -0
  52. package/dist/src/components/Collapse/CollapseV2.stories.d.ts +59 -2
  53. package/dist/src/components/Colors/Colors.stories.d.ts +2 -1
  54. package/dist/src/components/DatePicker/DatePicker.d.ts +1 -0
  55. package/dist/src/components/DatePicker/DatePicker.stories.d.ts +221 -2
  56. package/dist/src/components/DatePicker/DateRangePicker.d.ts +1 -0
  57. package/dist/src/components/DatePicker/FilterDate.d.ts +2 -1
  58. package/dist/src/components/DatePicker/FilterDate.stories.d.ts +232 -3
  59. package/dist/src/components/DatePicker/MonthYearPicker.d.ts +1 -0
  60. package/dist/src/components/DatePicker/MonthYearPicker.stories.d.ts +198 -2
  61. package/dist/src/components/ErrorMessage/ErrorMessage.config.d.ts +8 -0
  62. package/dist/src/components/ErrorMessage/ErrorMessage.d.ts +1 -0
  63. package/dist/src/components/ErrorMessage/ErrorMessage.stories.d.ts +39 -2
  64. package/dist/src/components/FilterContainer/FilterContainer.d.ts +1 -0
  65. package/dist/src/components/FilterContainer/FilterContainer.stories.d.ts +165 -0
  66. package/dist/src/components/Input/InputFloatingInner.config.d.ts +9 -0
  67. package/dist/src/components/Input/InputFloatingInner.d.ts +1 -0
  68. package/dist/src/components/Input/InputFloatingInner.stories.d.ts +177 -6
  69. package/dist/src/components/Input/InputInnerLabel.config.d.ts +8 -0
  70. package/dist/src/components/Input/InputInnerLabel.d.ts +5 -0
  71. package/dist/src/components/Input/InputInnerLabel.stories.d.ts +205 -0
  72. package/dist/src/components/Input/InputNative.config.d.ts +9 -0
  73. package/dist/src/components/Input/InputNative.d.ts +1 -0
  74. package/dist/src/components/Input/InputNative.stories.d.ts +149 -5
  75. package/dist/src/components/Input/InputReguler.config.d.ts +9 -0
  76. package/dist/src/components/Input/InputReguler.d.ts +1 -0
  77. package/dist/src/components/Input/InputReguler.stories.d.ts +177 -6
  78. package/dist/src/components/Modal/ModalDialog.config.d.ts +9 -0
  79. package/dist/src/components/Modal/ModalDialog.d.ts +1 -0
  80. package/dist/src/components/Modal/ModalDialog.stories.d.ts +121 -2
  81. package/dist/src/components/NumberFormat/NumberFormat.d.ts +1 -0
  82. package/dist/src/components/NumberFormat/NumberFormat.stories.d.ts +373 -18
  83. package/dist/src/components/Pagination/Pagination.config.d.ts +5 -0
  84. package/dist/src/components/Pagination/Pagination.d.ts +2 -1
  85. package/dist/src/components/Pagination/Pagination.stories.d.ts +200 -3
  86. package/dist/src/components/Popover/Popover.d.ts +1 -0
  87. package/dist/src/components/Popover/Popover.stories.d.ts +216 -7
  88. package/dist/src/components/PortalComponent/PortalComponent.d.ts +1 -0
  89. package/dist/src/components/PortalComponent/PortalComponent.stories.d.ts +61 -0
  90. package/dist/src/components/RadioCheckbox/CheckboxTable.d.ts +1 -0
  91. package/dist/src/components/RadioCheckbox/RadioCheckbox.config.d.ts +41 -0
  92. package/dist/src/components/RadioCheckbox/RadioCheckbox.d.ts +1 -0
  93. package/dist/src/components/RadioCheckbox/RadioCheckbox.stories.d.ts +230 -8
  94. package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.config.d.ts +25 -0
  95. package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.d.ts +1 -0
  96. package/dist/src/components/RadioCheckbox/RadioCheckboxLabel.stories.d.ts +196 -4
  97. package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.config.d.ts +26 -0
  98. package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.d.ts +2 -1
  99. package/dist/src/components/SelectDropdownContainer/SelectDropdownContainer.stories.d.ts +5 -4
  100. package/dist/src/components/SelectDropdownContainer/styleConfig.d.ts +5 -1
  101. package/dist/src/components/Sidebar/ItemSidebar.config.d.ts +34 -0
  102. package/dist/src/components/Sidebar/ItemSidebar.d.ts +1 -0
  103. package/dist/src/components/Sidebar/Sidebar.config.d.ts +16 -0
  104. package/dist/src/components/Sidebar/Sidebar.d.ts +2 -1
  105. package/dist/src/components/Sidebar/Sidebar.stories.d.ts +6 -5
  106. package/dist/src/components/Step/Step.d.ts +1 -0
  107. package/dist/src/components/Step/Step.stories.d.ts +135 -2
  108. package/dist/src/components/Step/StepIndicator.d.ts +1 -0
  109. package/dist/src/components/Step/StepIndicator.stories.d.ts +148 -2
  110. package/dist/src/components/Switch/Switch.config.d.ts +26 -0
  111. package/dist/src/components/Switch/Switch.d.ts +1 -0
  112. package/dist/src/components/Switch/Switch.stories.d.ts +128 -2
  113. package/dist/src/components/Table/Table.config.d.ts +5 -0
  114. package/dist/src/components/Table/Table.d.ts +3 -3
  115. package/dist/src/components/Table/Table.stories.d.ts +71 -52
  116. package/dist/src/components/Table/TableSubMobile.d.ts +4 -0
  117. package/dist/src/components/Tabs/TabPanel.d.ts +1 -0
  118. package/dist/src/components/Tabs/Tabs.config.d.ts +31 -0
  119. package/dist/src/components/Tabs/Tabs.d.ts +2 -1
  120. package/dist/src/components/Tabs/Tabs.stories.d.ts +220 -3
  121. package/dist/src/components/TextEditor/TextEditor.d.ts +1 -0
  122. package/dist/src/components/TextEditor/TextEditor.stories.d.ts +59 -10
  123. package/dist/src/components/Textarea/Textarea.config.d.ts +31 -0
  124. package/dist/src/components/Textarea/Textarea.d.ts +1 -0
  125. package/dist/src/components/Textarea/Textarea.stories.d.ts +250 -3
  126. package/dist/src/components/Textarea/TextareaFloatingInner.config.d.ts +6 -0
  127. package/dist/src/components/Textarea/TextareaFloatingInner.d.ts +1 -0
  128. package/dist/src/components/Textarea/TextareaFloatingInner.stories.d.ts +260 -3
  129. package/dist/src/components/Textarea/TextareaInnerLabel.config.d.ts +7 -0
  130. package/dist/src/components/Textarea/TextareaInnerLabel.d.ts +5 -0
  131. package/dist/src/components/Textarea/TextareaInnerLabel.stories.d.ts +259 -0
  132. package/dist/src/components/TimeRange/TimeRange.d.ts +4 -0
  133. package/dist/src/components/TimeRange/TimeRange.stories.d.ts +186 -0
  134. package/dist/src/components/Timeline/Timeline.d.ts +1 -0
  135. package/dist/src/components/Timeline/Timeline.stories.d.ts +40 -2
  136. package/dist/src/components/Tooltip/Tooltip.d.ts +1 -0
  137. package/dist/src/components/Tooltip/Tooltip.stories.d.ts +159 -2
  138. package/dist/src/components/TruncateComponent/TruncateComponent.d.ts +1 -0
  139. package/dist/src/components/TruncateComponent/TruncateComponent.stories.d.ts +106 -2
  140. package/dist/src/components/Typography/Typography.stories.d.ts +2 -1
  141. package/dist/src/components/Upload/UploadFile.d.ts +1 -0
  142. package/dist/src/components/Upload/UploadFile.stories.d.ts +127 -2
  143. package/dist/src/components/Upload/UploadImage.d.ts +2 -1
  144. package/dist/src/components/Upload/UploadImage.stories.d.ts +145 -3
  145. package/dist/src/components/Upload/UploadMultipleFile.d.ts +2 -1
  146. package/dist/src/components/Upload/UploadMultipleFile.stories.d.ts +190 -3
  147. package/dist/src/components/Virtualization/ListVirtualization.d.ts +1 -0
  148. package/dist/src/components/Virtualization/ListVirtualization.stories.d.ts +279 -2
  149. package/dist/src/components/Virtualization/TableVirtualization.d.ts +1 -0
  150. package/dist/src/components/Virtualization/TableVirtualization.stories.d.ts +296 -2
  151. package/dist/src/components/index.d.ts +15 -8
  152. package/dist/src/components/screens/Screens.stories.d.ts +14 -0
  153. package/dist/src/config/bigNumber/index.d.ts +1 -0
  154. package/dist/src/config/components/borderRadius.d.ts +1 -0
  155. package/dist/src/config/components/font.d.ts +7 -0
  156. package/dist/src/config/components/gap.d.ts +1 -0
  157. package/dist/src/config/components/tinymce.d.ts +1 -0
  158. package/dist/src/config/components/typography.d.ts +3 -49
  159. package/dist/src/config/tailwind/index.d.ts +3 -1
  160. package/dist/src/config/tailwind/nativeScreen.d.ts +3 -0
  161. package/dist/src/config/tailwind/typography.d.ts +1 -0
  162. package/dist/src/hooks/index.d.ts +6 -3
  163. package/dist/src/hooks/useCombinedResizeObserver.d.ts +1 -0
  164. package/dist/src/hooks/useCountdown.d.ts +6 -3
  165. package/dist/src/hooks/useDeepCompareEffect.d.ts +1 -0
  166. package/dist/src/hooks/useEventListener.d.ts +1 -0
  167. package/dist/src/hooks/useMasonry.d.ts +1 -0
  168. package/dist/src/hooks/useMergeRefs.d.ts +1 -0
  169. package/dist/src/hooks/useOtpInput.d.ts +43 -0
  170. package/dist/src/hooks/useStateRef.d.ts +1 -0
  171. package/dist/src/interfaces/components/Alert/index.d.ts +1 -0
  172. package/dist/src/interfaces/components/Badges/index.d.ts +3 -1
  173. package/dist/src/interfaces/components/Breadcrumbs/index.d.ts +7 -2
  174. package/dist/src/interfaces/components/Button/index.d.ts +3 -2
  175. package/dist/src/interfaces/components/ButtonIcon/index.d.ts +1 -0
  176. package/dist/src/interfaces/components/ButtonPopover/index.d.ts +1 -0
  177. package/dist/src/interfaces/components/Calendar/index.d.ts +21 -3
  178. package/dist/src/interfaces/components/Chart/index.d.ts +1 -0
  179. package/dist/src/interfaces/components/Checkbox/index.d.ts +1 -0
  180. package/dist/src/interfaces/components/Chips/index.d.ts +3 -1
  181. package/dist/src/interfaces/components/Collapse/index.d.ts +1 -0
  182. package/dist/src/interfaces/components/DatePicker/index.d.ts +4 -1
  183. package/dist/src/interfaces/components/ErrorMessage/index.d.ts +1 -1
  184. package/dist/src/interfaces/components/FilterContainer/index.d.ts +1 -0
  185. package/dist/src/interfaces/components/Input/index.d.ts +14 -0
  186. package/dist/src/interfaces/components/Modal/index.d.ts +1 -0
  187. package/dist/src/interfaces/components/NumberFormat/index.d.ts +1 -0
  188. package/dist/src/interfaces/components/Pagination/index.d.ts +3 -0
  189. package/dist/src/interfaces/components/Popover/index.d.ts +4 -1
  190. package/dist/src/interfaces/components/RadioCheckbox/RadioCheckbox.d.ts +4 -2
  191. package/dist/src/interfaces/components/RadioCheckbox/RadioCheckboxLabel.d.ts +3 -1
  192. package/dist/src/interfaces/components/SelectDropdownContainer/index.d.ts +2 -1
  193. package/dist/src/interfaces/components/Sidebar/index.d.ts +4 -1
  194. package/dist/src/interfaces/components/Step/index.d.ts +1 -0
  195. package/dist/src/interfaces/components/Switch/index.d.ts +1 -1
  196. package/dist/src/interfaces/components/Table/index.d.ts +39 -6
  197. package/dist/src/interfaces/components/Tabs/index.d.ts +5 -1
  198. package/dist/src/interfaces/components/TextEditor/index.d.ts +1 -0
  199. package/dist/src/interfaces/components/Textarea/index.d.ts +14 -0
  200. package/dist/src/interfaces/components/TimeRange/index.d.ts +29 -0
  201. package/dist/src/interfaces/components/Timeline/index.d.ts +1 -0
  202. package/dist/src/interfaces/components/Tooltip/index.d.ts +1 -0
  203. package/dist/src/interfaces/components/UploadFile/index.d.ts +4 -0
  204. package/dist/src/interfaces/components/Virtualization/ListVirtualization.d.ts +1 -0
  205. package/dist/src/interfaces/components/Virtualization/TableVirtualization.d.ts +1 -0
  206. package/dist/src/main.d.ts +1 -0
  207. package/dist/src/utils/common.d.ts +5 -4
  208. package/dist/src/utils/constant.d.ts +1 -0
  209. package/dist/tinymce/CHANGELOG.md +3785 -3785
  210. package/dist/tinymce/js/tinymce/langs/README.md +3 -3
  211. package/dist/tinymce/js/tinymce/license.md +6 -6
  212. package/dist/tinymce/js/tinymce/notices.txt +21 -21
  213. package/dist/tinymce/js/tinymce/plugins/codesample/plugin.min.js +8 -8
  214. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ar.js +92 -92
  215. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/bg_BG.js +92 -92
  216. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ca.js +92 -92
  217. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/cs.js +92 -92
  218. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/da.js +92 -92
  219. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/de.js +92 -92
  220. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/el.js +92 -92
  221. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/en.js +92 -92
  222. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/es.js +92 -92
  223. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/eu.js +92 -92
  224. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fa.js +92 -92
  225. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fi.js +92 -92
  226. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/fr_FR.js +92 -92
  227. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/he_IL.js +92 -92
  228. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hi.js +92 -92
  229. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hr.js +92 -92
  230. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/hu_HU.js +92 -92
  231. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/id.js +92 -92
  232. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/it.js +92 -92
  233. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ja.js +92 -92
  234. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/kk.js +92 -92
  235. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ko_KR.js +92 -92
  236. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ms.js +92 -92
  237. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/nb_NO.js +92 -92
  238. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/nl.js +92 -92
  239. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pl.js +92 -92
  240. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pt_BR.js +92 -92
  241. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/pt_PT.js +92 -92
  242. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ro.js +92 -92
  243. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/ru.js +92 -92
  244. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sk.js +92 -92
  245. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sl_SI.js +92 -92
  246. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/sv_SE.js +92 -92
  247. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/th_TH.js +92 -92
  248. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/tr.js +92 -92
  249. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/uk.js +92 -92
  250. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/vi.js +92 -92
  251. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/zh_CN.js +86 -86
  252. package/dist/tinymce/js/tinymce/plugins/help/js/i18n/keynav/zh_TW.js +92 -92
  253. package/dist/tinymce/js/tinymce/skins/content/dark/content.js +9 -9
  254. package/dist/tinymce/js/tinymce/skins/content/dark/content.min.css +10 -10
  255. package/dist/tinymce/js/tinymce/skins/content/default/content.js +9 -9
  256. package/dist/tinymce/js/tinymce/skins/content/default/content.min.css +10 -10
  257. package/dist/tinymce/js/tinymce/skins/content/document/content.js +9 -9
  258. package/dist/tinymce/js/tinymce/skins/content/document/content.min.css +10 -10
  259. package/dist/tinymce/js/tinymce/skins/content/tinymce-5/content.js +9 -9
  260. package/dist/tinymce/js/tinymce/skins/content/tinymce-5/content.min.css +10 -10
  261. package/dist/tinymce/js/tinymce/skins/content/tinymce-5-dark/content.js +9 -9
  262. package/dist/tinymce/js/tinymce/skins/content/tinymce-5-dark/content.min.css +10 -10
  263. package/dist/tinymce/js/tinymce/skins/content/writer/content.js +9 -9
  264. package/dist/tinymce/js/tinymce/skins/content/writer/content.min.css +10 -10
  265. package/dist/tinymce/js/tinymce/skins/ui/oxide/content.inline.js +9 -9
  266. package/dist/tinymce/js/tinymce/skins/ui/oxide/content.inline.min.css +10 -10
  267. package/dist/tinymce/js/tinymce/skins/ui/oxide/content.js +9 -9
  268. package/dist/tinymce/js/tinymce/skins/ui/oxide/content.min.css +10 -10
  269. package/dist/tinymce/js/tinymce/skins/ui/oxide/skin.min.css +1 -1
  270. package/dist/tinymce/js/tinymce/skins/ui/oxide/skin.shadowdom.min.css +1 -1
  271. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.inline.js +9 -9
  272. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.inline.min.css +10 -10
  273. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.js +9 -9
  274. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/content.min.css +10 -10
  275. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/skin.min.css +1 -1
  276. package/dist/tinymce/js/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +1 -1
  277. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.inline.js +9 -9
  278. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.inline.min.css +10 -10
  279. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.js +9 -9
  280. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/content.min.css +10 -10
  281. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/skin.min.css +1 -1
  282. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css +1 -1
  283. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.inline.js +9 -9
  284. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.inline.min.css +10 -10
  285. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.js +9 -9
  286. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/content.min.css +10 -10
  287. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/skin.min.css +1 -1
  288. package/dist/tinymce/js/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css +1 -1
  289. package/dist/tinymce/js/tinymce/tinymce.d.ts +3350 -3350
  290. package/dist/tinymce/js/tinymce/tinymce.min.js +10 -10
  291. package/dist/types-external/table.d.ts +15 -12
  292. package/package.json +131 -132
  293. package/dist/index.cjs.map +0 -1
  294. package/dist/index.mjs.map +0 -1
@@ -1,4 +1,5 @@
1
- import { StoryObj } from '@storybook/react-vite';
1
+ import { StoryObj } from '@storybook/react';
2
+
2
3
  declare const meta: {
3
4
  title: string;
4
5
  component: ({ activeStep, countStep, classNameActiveStepIndicator, classNameContainer, classNameDesc, classNameStepIndicator, id, locationStepIndicator, widthStepIndicator, dynamicWidthStepIndicator, gapStepIndicator, classNameStepIndicatorContainer, }: import('../../interfaces/components/Step').IStepIndicator) => import("react/jsx-runtime").JSX.Element;
@@ -6,7 +7,152 @@ declare const meta: {
6
7
  layout: string;
7
8
  };
8
9
  tags: string[];
9
- argTypes: {};
10
+ argTypes: {
11
+ countStep: {
12
+ control: "number";
13
+ description: string;
14
+ table: {
15
+ category: string;
16
+ type: {
17
+ summary: string;
18
+ };
19
+ defaultValue: {
20
+ summary: string;
21
+ };
22
+ };
23
+ };
24
+ locationStepIndicator: {
25
+ control: {
26
+ type: "select";
27
+ };
28
+ options: string[];
29
+ description: string;
30
+ table: {
31
+ category: string;
32
+ type: {
33
+ summary: string;
34
+ };
35
+ defaultValue: {
36
+ summary: string;
37
+ };
38
+ };
39
+ };
40
+ activeStep: {
41
+ control: "number";
42
+ description: string;
43
+ table: {
44
+ category: string;
45
+ type: {
46
+ summary: string;
47
+ };
48
+ defaultValue: {
49
+ summary: string;
50
+ };
51
+ };
52
+ };
53
+ widthStepIndicator: {
54
+ control: "text";
55
+ description: string;
56
+ table: {
57
+ category: string;
58
+ type: {
59
+ summary: string;
60
+ };
61
+ defaultValue: {
62
+ summary: string;
63
+ };
64
+ };
65
+ };
66
+ dynamicWidthStepIndicator: {
67
+ control: "boolean";
68
+ description: string;
69
+ table: {
70
+ category: string;
71
+ type: {
72
+ summary: string;
73
+ };
74
+ defaultValue: {
75
+ summary: string;
76
+ };
77
+ };
78
+ };
79
+ gapStepIndicator: {
80
+ control: "text";
81
+ description: string;
82
+ table: {
83
+ category: string;
84
+ type: {
85
+ summary: string;
86
+ };
87
+ defaultValue: {
88
+ summary: string;
89
+ };
90
+ };
91
+ };
92
+ classNameContainer: {
93
+ control: "text";
94
+ description: string;
95
+ table: {
96
+ category: string;
97
+ type: {
98
+ summary: string;
99
+ };
100
+ };
101
+ };
102
+ classNameStepIndicatorContainer: {
103
+ control: "text";
104
+ description: string;
105
+ table: {
106
+ category: string;
107
+ type: {
108
+ summary: string;
109
+ };
110
+ };
111
+ };
112
+ classNameStepIndicator: {
113
+ control: "text";
114
+ description: string;
115
+ table: {
116
+ category: string;
117
+ type: {
118
+ summary: string;
119
+ };
120
+ };
121
+ };
122
+ classNameActiveStepIndicator: {
123
+ control: "text";
124
+ description: string;
125
+ table: {
126
+ category: string;
127
+ type: {
128
+ summary: string;
129
+ };
130
+ };
131
+ };
132
+ classNameDesc: {
133
+ control: "text";
134
+ description: string;
135
+ table: {
136
+ category: string;
137
+ type: {
138
+ summary: string;
139
+ };
140
+ };
141
+ };
142
+ id: {
143
+ control: "text";
144
+ description: string;
145
+ table: {
146
+ category: string;
147
+ type: {
148
+ summary: string;
149
+ };
150
+ defaultValue: {
151
+ summary: string;
152
+ };
153
+ };
154
+ };
155
+ };
10
156
  };
11
157
  export default meta;
12
158
  type Story = StoryObj<typeof meta>;
@@ -0,0 +1,26 @@
1
+ export declare const configSwitch: {
2
+ size: {
3
+ large: string;
4
+ regular: string;
5
+ small: string;
6
+ };
7
+ kind: {
8
+ laba: string;
9
+ payhere: string;
10
+ bill: string;
11
+ };
12
+ text: {
13
+ title: {
14
+ laba: string;
15
+ payhere: string;
16
+ bill: string;
17
+ };
18
+ desc: {
19
+ laba: string;
20
+ payhere: string;
21
+ bill: string;
22
+ };
23
+ };
24
+ };
25
+ export declare const keysConfigSwitchSize: string[];
26
+ export declare const keysConfigSwitchKind: string[];
@@ -1,3 +1,4 @@
1
1
  import { ISwitch } from '../../interfaces/components/Switch';
2
+
2
3
  declare const Switch: ({ value, disabled, title, description, size, kind, id, className, classNameTitle, classNameDesc, onChange, }: ISwitch) => import("react/jsx-runtime").JSX.Element;
3
4
  export default Switch;
@@ -1,4 +1,5 @@
1
- import { StoryObj } from '@storybook/react-vite';
1
+ import { StoryObj } from '@storybook/react';
2
+
2
3
  declare const meta: {
3
4
  title: string;
4
5
  component: ({ value, disabled, title, description, size, kind, id, className, classNameTitle, classNameDesc, onChange, }: import('../../interfaces/components/Switch').ISwitch) => import("react/jsx-runtime").JSX.Element;
@@ -7,8 +8,133 @@ declare const meta: {
7
8
  };
8
9
  tags: string[];
9
10
  argTypes: {
11
+ value: {
12
+ control: "boolean";
13
+ description: string;
14
+ table: {
15
+ category: string;
16
+ type: {
17
+ summary: string;
18
+ };
19
+ defaultValue: {
20
+ summary: string;
21
+ };
22
+ };
23
+ };
24
+ disabled: {
25
+ control: "boolean";
26
+ description: string;
27
+ table: {
28
+ category: string;
29
+ type: {
30
+ summary: string;
31
+ };
32
+ defaultValue: {
33
+ summary: string;
34
+ };
35
+ };
36
+ };
37
+ size: {
38
+ control: {
39
+ type: "select";
40
+ };
41
+ options: string[];
42
+ description: string;
43
+ table: {
44
+ category: string;
45
+ type: {
46
+ summary: string;
47
+ };
48
+ defaultValue: {
49
+ summary: string;
50
+ };
51
+ };
52
+ };
53
+ kind: {
54
+ control: {
55
+ type: "select";
56
+ };
57
+ options: string[];
58
+ description: string;
59
+ table: {
60
+ category: string;
61
+ type: {
62
+ summary: string;
63
+ };
64
+ defaultValue: {
65
+ summary: string;
66
+ };
67
+ };
68
+ };
10
69
  className: {
11
- type: "string";
70
+ control: "text";
71
+ description: string;
72
+ table: {
73
+ category: string;
74
+ type: {
75
+ summary: string;
76
+ };
77
+ };
78
+ };
79
+ classNameTitle: {
80
+ control: "text";
81
+ description: string;
82
+ table: {
83
+ category: string;
84
+ type: {
85
+ summary: string;
86
+ };
87
+ };
88
+ };
89
+ classNameDesc: {
90
+ control: "text";
91
+ description: string;
92
+ table: {
93
+ category: string;
94
+ type: {
95
+ summary: string;
96
+ };
97
+ };
98
+ };
99
+ title: {
100
+ control: "text";
101
+ description: string;
102
+ table: {
103
+ category: string;
104
+ type: {
105
+ summary: string;
106
+ };
107
+ };
108
+ };
109
+ description: {
110
+ control: "text";
111
+ description: string;
112
+ table: {
113
+ category: string;
114
+ type: {
115
+ summary: string;
116
+ };
117
+ };
118
+ };
119
+ onChange: {
120
+ action: string;
121
+ description: string;
122
+ table: {
123
+ category: string;
124
+ type: {
125
+ summary: string;
126
+ };
127
+ };
128
+ };
129
+ id: {
130
+ control: "text";
131
+ description: string;
132
+ table: {
133
+ category: string;
134
+ type: {
135
+ summary: string;
136
+ };
137
+ };
12
138
  };
13
139
  };
14
140
  args: {
@@ -0,0 +1,5 @@
1
+ import { ITableConfig } from '../../interfaces/components/Table';
2
+
3
+ export declare const ConfigTable: () => ITableConfig;
4
+ export declare const keysConfigTableKind: string[];
5
+ export declare const keysConfigTableVariant: string[];
@@ -1,7 +1,7 @@
1
1
  import { default as React } from 'react';
2
- import { ITable, IVirtualizationHead, IVirtualizationTable, ITableConfig } from '../../interfaces/components/Table';
3
- export declare const ConfigTable: () => ITableConfig;
2
+ import { ITable, IVirtualizationHead, IVirtualizationTable } from '../../interfaces/components/Table';
3
+
4
4
  export declare const VirtualizationHead: React.ForwardRefExoticComponent<Omit<IVirtualizationHead, "ref"> & React.RefAttributes<HTMLTableSectionElement>>;
5
5
  export declare const VirtualizationTable: ({ style, context, ...props }: IVirtualizationTable) => import("react/jsx-runtime").JSX.Element;
6
- declare const Table: <T>({ tableInstance, classNameWrapperTable, classNameTable, collapseAll, handlerRowClick, privillageRowClick, virtualization, virtualizationProps, headerId, tbodyTrId, maxHeight, idCalculateHeight, kind, componentSortASC, componentSortDESC, scrollTop, emptyPlaceholder, variant, renderSubComponent, }: ITable<T>) => import("react/jsx-runtime").JSX.Element;
6
+ declare const Table: <T>({ tableInstance, classNameWrapperTable, classNameTable, collapseAll, handlerRowClick, privillageRowClick, virtualization, virtualizationProps, headerId, tbodyTrId, maxHeight, idCalculateHeight, kind, componentSortASC, componentSortDESC, scrollTop, emptyPlaceholder, variant, renderSubComponent, columnBreakpoints, }: ITable<T>) => import("react/jsx-runtime").JSX.Element;
7
7
  export default Table;
@@ -1,16 +1,15 @@
1
- import { StoryObj } from '@storybook/react-vite';
1
+ import { StoryObj } from '@storybook/react';
2
+
2
3
  declare const meta: {
3
4
  title: string;
4
- component: <T>({ tableInstance, classNameWrapperTable, classNameTable, collapseAll, handlerRowClick, privillageRowClick, virtualization, virtualizationProps, headerId, tbodyTrId, maxHeight, idCalculateHeight, kind, componentSortASC, componentSortDESC, scrollTop, emptyPlaceholder, variant, renderSubComponent, }: import('../../interfaces/components/Table').ITable<T>) => import("react/jsx-runtime").JSX.Element;
5
+ component: <T>({ tableInstance, classNameWrapperTable, classNameTable, collapseAll, handlerRowClick, privillageRowClick, virtualization, virtualizationProps, headerId, tbodyTrId, maxHeight, idCalculateHeight, kind, componentSortASC, componentSortDESC, scrollTop, emptyPlaceholder, variant, renderSubComponent, columnBreakpoints, }: import('../../interfaces/components/Table').ITable<T>) => import("react/jsx-runtime").JSX.Element;
5
6
  parameters: {
6
7
  layout: string;
7
8
  };
8
9
  tags: string[];
9
10
  argTypes: {
10
11
  tableInstance: {
11
- control: {
12
- disable: true;
13
- };
12
+ control: "object";
14
13
  description: string;
15
14
  table: {
16
15
  category: string;
@@ -45,8 +44,11 @@ declare const meta: {
45
44
  };
46
45
  };
47
46
  };
48
- collapseAll: {
49
- control: "boolean";
47
+ kind: {
48
+ control: {
49
+ type: "select";
50
+ };
51
+ options: string[];
50
52
  description: string;
51
53
  table: {
52
54
  category: string;
@@ -58,20 +60,24 @@ declare const meta: {
58
60
  };
59
61
  };
60
62
  };
61
- handlerRowClick: {
63
+ variant: {
62
64
  control: {
63
- disable: true;
65
+ type: "select";
64
66
  };
67
+ options: string[];
65
68
  description: string;
66
69
  table: {
67
70
  category: string;
68
71
  type: {
69
72
  summary: string;
70
73
  };
74
+ defaultValue: {
75
+ summary: string;
76
+ };
71
77
  };
72
78
  };
73
- privillageRowClick: {
74
- control: "boolean";
79
+ maxHeight: {
80
+ control: "number";
75
81
  description: string;
76
82
  table: {
77
83
  category: string;
@@ -83,8 +89,8 @@ declare const meta: {
83
89
  };
84
90
  };
85
91
  };
86
- virtualization: {
87
- control: "boolean";
92
+ columnBreakpoints: {
93
+ control: "object";
88
94
  description: string;
89
95
  table: {
90
96
  category: string;
@@ -96,20 +102,21 @@ declare const meta: {
96
102
  };
97
103
  };
98
104
  };
99
- virtualizationProps: {
100
- control: {
101
- disable: true;
102
- };
105
+ collapseAll: {
106
+ control: "boolean";
103
107
  description: string;
104
108
  table: {
105
109
  category: string;
106
110
  type: {
107
111
  summary: string;
108
112
  };
113
+ defaultValue: {
114
+ summary: string;
115
+ };
109
116
  };
110
117
  };
111
- headerId: {
112
- control: "text";
118
+ privillageRowClick: {
119
+ control: "boolean";
113
120
  description: string;
114
121
  table: {
115
122
  category: string;
@@ -121,10 +128,8 @@ declare const meta: {
121
128
  };
122
129
  };
123
130
  };
124
- tbodyTrId: {
125
- control: {
126
- disable: true;
127
- };
131
+ virtualization: {
132
+ control: "boolean";
128
133
  description: string;
129
134
  table: {
130
135
  category: string;
@@ -136,8 +141,8 @@ declare const meta: {
136
141
  };
137
142
  };
138
143
  };
139
- maxHeight: {
140
- control: "number";
144
+ virtualizationProps: {
145
+ control: "object";
141
146
  description: string;
142
147
  table: {
143
148
  category: string;
@@ -162,11 +167,8 @@ declare const meta: {
162
167
  };
163
168
  };
164
169
  };
165
- kind: {
166
- control: {
167
- type: "select";
168
- };
169
- options: string[];
170
+ scrollTop: {
171
+ control: "boolean";
170
172
  description: string;
171
173
  table: {
172
174
  category: string;
@@ -178,45 +180,47 @@ declare const meta: {
178
180
  };
179
181
  };
180
182
  };
181
- variant: {
182
- control: {
183
- type: "select";
184
- };
185
- options: string[];
183
+ componentSortASC: {
184
+ control: "object";
186
185
  description: string;
187
186
  table: {
188
187
  category: string;
189
188
  type: {
190
189
  summary: string;
191
190
  };
191
+ defaultValue: {
192
+ summary: string;
193
+ };
192
194
  };
193
195
  };
194
- componentSortASC: {
195
- control: {
196
- disable: true;
197
- };
196
+ componentSortDESC: {
197
+ control: "object";
198
198
  description: string;
199
199
  table: {
200
200
  category: string;
201
201
  type: {
202
202
  summary: string;
203
203
  };
204
+ defaultValue: {
205
+ summary: string;
206
+ };
204
207
  };
205
208
  };
206
- componentSortDESC: {
207
- control: {
208
- disable: true;
209
- };
209
+ emptyPlaceholder: {
210
+ control: "object";
210
211
  description: string;
211
212
  table: {
212
213
  category: string;
213
214
  type: {
214
215
  summary: string;
215
216
  };
217
+ defaultValue: {
218
+ summary: string;
219
+ };
216
220
  };
217
221
  };
218
- scrollTop: {
219
- control: "boolean";
222
+ renderSubComponent: {
223
+ action: string;
220
224
  description: string;
221
225
  table: {
222
226
  category: string;
@@ -228,28 +232,43 @@ declare const meta: {
228
232
  };
229
233
  };
230
234
  };
231
- emptyPlaceholder: {
232
- control: {
233
- disable: true;
234
- };
235
+ handlerRowClick: {
236
+ action: string;
235
237
  description: string;
236
238
  table: {
237
239
  category: string;
238
240
  type: {
239
241
  summary: string;
240
242
  };
243
+ defaultValue: {
244
+ summary: string;
245
+ };
241
246
  };
242
247
  };
243
- renderSubComponent: {
244
- control: {
245
- disable: true;
248
+ headerId: {
249
+ control: "text";
250
+ description: string;
251
+ table: {
252
+ category: string;
253
+ type: {
254
+ summary: string;
255
+ };
256
+ defaultValue: {
257
+ summary: string;
258
+ };
246
259
  };
260
+ };
261
+ tbodyTrId: {
262
+ action: string;
247
263
  description: string;
248
264
  table: {
249
265
  category: string;
250
266
  type: {
251
267
  summary: string;
252
268
  };
269
+ defaultValue: {
270
+ summary: string;
271
+ };
253
272
  };
254
273
  };
255
274
  };
@@ -0,0 +1,4 @@
1
+ import { TTableRenderSubComponent } from '../../interfaces/components/Table';
2
+
3
+ declare const TableSubComponent: TTableRenderSubComponent<unknown>;
4
+ export default TableSubComponent;
@@ -1,4 +1,5 @@
1
1
  import { ReactNode } from 'react';
2
+
2
3
  interface ITabPanel {
3
4
  children: ReactNode | ReactNode[];
4
5
  id?: string;
@@ -0,0 +1,31 @@
1
+ export declare const configTabs: {
2
+ tabsVariant: {
3
+ 'original-laba-blue-10': string;
4
+ 'container-payhere-brand-base': string;
5
+ 'container-payhere-brand-base-bg_white': string;
6
+ 'container-laba-blue-10': string;
7
+ 'container-laba-blue-10-bg_white': string;
8
+ 'container-laba-blue-10-bg_blue-01': string;
9
+ 'original-bill-secondary-800': string;
10
+ };
11
+ size: {
12
+ 'tabs-m': string;
13
+ 'tabs-s': string;
14
+ 'tabs-medium': string;
15
+ 'tabs-small': string;
16
+ };
17
+ borderRadius: {
18
+ '0px': string;
19
+ '2px': string;
20
+ '4px': string;
21
+ '6px': string;
22
+ '8px': string;
23
+ '12px': string;
24
+ '16px': string;
25
+ '24px': string;
26
+ full: string;
27
+ };
28
+ isContainer: string[];
29
+ };
30
+ export declare const keysConfigTabsVariant: string[];
31
+ export declare const keysConfigTabsSize: string[];
@@ -1,3 +1,4 @@
1
1
  import { ITabs } from '../../interfaces/components/Tabs';
2
- declare const Tabs: ({ id, value, keyValueTab, tabsList, className, classNameContainer, classNameButton, variant, size, borderRadius, disabled, animation, mountedExecuteChange, typeButton, onChange, }: ITabs) => import("react/jsx-runtime").JSX.Element;
2
+
3
+ declare const Tabs: ({ id, value, keyValueTab, tabsList, className, classNameContainer, classNameButton, variant, size, borderRadius, disabled, animation, mountedExecuteChange, typeButton, onChange, locale, }: ITabs) => import("react/jsx-runtime").JSX.Element;
3
4
  export default Tabs;