ikoncomponents 1.4.8 → 1.4.9

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 (575) hide show
  1. package/dist/commands/init.js +57 -0
  2. package/dist/index.js +3 -116
  3. package/dist/utlis/copyDir.js +7 -0
  4. package/package.json +12 -90
  5. package/templates/default/hooks/use-mobile.ts +19 -0
  6. package/templates/default/ikonShade/accordion.tsx +66 -0
  7. package/templates/default/ikonShade/alert-dialog.tsx +179 -0
  8. package/templates/default/ikonShade/alert.tsx +66 -0
  9. package/templates/default/ikonShade/aspect-ratio.tsx +11 -0
  10. package/templates/default/ikonShade/avatar.tsx +53 -0
  11. package/templates/default/ikonShade/badge.tsx +49 -0
  12. package/templates/default/ikonShade/breadcrumb.tsx +109 -0
  13. package/templates/default/ikonShade/button.tsx +64 -0
  14. package/templates/default/ikonShade/calendar.tsx +227 -0
  15. package/templates/default/ikonShade/card.tsx +92 -0
  16. package/templates/default/ikonShade/checkbox.tsx +33 -0
  17. package/templates/default/ikonShade/collapsible.tsx +33 -0
  18. package/templates/default/ikonShade/command.tsx +184 -0
  19. package/templates/default/ikonShade/date-input.tsx +259 -0
  20. package/templates/default/ikonShade/date-range-picker.tsx +103 -0
  21. package/templates/default/ikonShade/dialog.tsx +143 -0
  22. package/templates/default/ikonShade/drawer.tsx +134 -0
  23. package/templates/default/ikonShade/dropdown-menu.tsx +259 -0
  24. package/templates/default/ikonShade/form.tsx +166 -0
  25. package/templates/default/ikonShade/hover-card.tsx +44 -0
  26. package/templates/default/ikonShade/input-otp.tsx +71 -0
  27. package/templates/default/ikonShade/input.tsx +22 -0
  28. package/templates/default/ikonShade/label.tsx +24 -0
  29. package/templates/default/ikonShade/navigation-menu.tsx +195 -0
  30. package/templates/default/ikonShade/popover.tsx +48 -0
  31. package/templates/default/ikonShade/progress.tsx +40 -0
  32. package/templates/default/ikonShade/radio-group.tsx +45 -0
  33. package/templates/default/ikonShade/scroll-area.tsx +58 -0
  34. package/templates/default/ikonShade/select.tsx +184 -0
  35. package/templates/default/ikonShade/separator.tsx +28 -0
  36. package/templates/default/ikonShade/sheet.tsx +139 -0
  37. package/templates/default/ikonShade/sidebar.tsx +726 -0
  38. package/templates/default/ikonShade/skeleton.tsx +15 -0
  39. package/templates/default/ikonShade/slider.tsx +64 -0
  40. package/templates/default/ikonShade/sonner.tsx +25 -0
  41. package/templates/default/ikonShade/switch.tsx +31 -0
  42. package/templates/default/ikonShade/table.tsx +116 -0
  43. package/templates/default/ikonShade/tabs.tsx +67 -0
  44. package/templates/default/ikonShade/textarea.tsx +18 -0
  45. package/templates/default/ikonShade/toggle-group.tsx +83 -0
  46. package/templates/default/ikonShade/toggle.tsx +47 -0
  47. package/templates/default/ikonShade/tooltip.tsx +65 -0
  48. package/templates/default/ikonShade/workflow.tsx +119 -0
  49. package/templates/default/ikoncomponents/action-menu/index.tsx +108 -0
  50. package/templates/default/ikoncomponents/action-menu/type.ts +18 -0
  51. package/templates/default/ikoncomponents/activity-sheet/index.tsx +63 -0
  52. package/templates/default/ikoncomponents/alert-dialog/dialog-context.tsx +65 -0
  53. package/templates/default/ikoncomponents/alert-dialog/index.tsx +80 -0
  54. package/templates/default/ikoncomponents/app-breadcrumb/BreadcrumbProvider.tsx +68 -0
  55. package/templates/default/ikoncomponents/app-breadcrumb/index.tsx +222 -0
  56. package/templates/default/ikoncomponents/big-calendar/big-calender-event/index.tsx +38 -0
  57. package/templates/default/ikoncomponents/big-calendar/big-calender-toolbar/index.tsx +81 -0
  58. package/templates/default/ikoncomponents/big-calendar/index.css +879 -0
  59. package/templates/default/ikoncomponents/big-calendar/index.tsx +59 -0
  60. package/templates/default/ikoncomponents/big-calendar/type.ts +37 -0
  61. package/templates/default/ikoncomponents/buttons/index.tsx +127 -0
  62. package/templates/default/ikoncomponents/combobox-input/index.tsx +75 -0
  63. package/templates/default/ikoncomponents/combobox-input/type.ts +14 -0
  64. package/templates/default/ikoncomponents/custom-combo-dropdown/index.tsx +242 -0
  65. package/templates/default/ikoncomponents/data-table/datatable-column-filter/index.tsx +80 -0
  66. package/templates/default/ikoncomponents/data-table/datatable-faceted-filter/index.tsx +149 -0
  67. package/templates/default/ikoncomponents/data-table/datatable-filter-menu/index.tsx +98 -0
  68. package/templates/default/ikoncomponents/data-table/datatable-pagination/index.tsx +119 -0
  69. package/templates/default/ikoncomponents/data-table/datatable-toolbar/index.tsx +45 -0
  70. package/templates/default/ikoncomponents/data-table/function.ts +7 -0
  71. package/templates/default/ikoncomponents/data-table/index.tsx +549 -0
  72. package/templates/default/ikoncomponents/data-table/type.ts +75 -0
  73. package/templates/default/ikoncomponents/e-chart/index.tsx +183 -0
  74. package/templates/default/ikoncomponents/file-input/index.tsx +27 -0
  75. package/templates/default/ikoncomponents/fileUpload/index.tsx +121 -0
  76. package/templates/default/ikoncomponents/form-fields/combobox-input/index.tsx +111 -0
  77. package/templates/default/ikoncomponents/form-fields/combobox-input-value/index.tsx +121 -0
  78. package/templates/default/ikoncomponents/form-fields/date-input/index.tsx +80 -0
  79. package/templates/default/ikoncomponents/form-fields/file-input/index.tsx +9 -0
  80. package/templates/default/ikoncomponents/form-fields/input/index.tsx +27 -0
  81. package/{dist/ikoncomponents/form-fields/multi-combobox-input/index.js → templates/default/ikoncomponents/form-fields/multi-combobox-input/index.tsx} +574 -381
  82. package/templates/default/ikoncomponents/form-fields/otp-input/index.tsx +39 -0
  83. package/templates/default/ikoncomponents/form-fields/password-input/index.tsx +52 -0
  84. package/templates/default/ikoncomponents/form-fields/phone-input/index.tsx +7 -0
  85. package/templates/default/ikoncomponents/form-fields/textarea/index.tsx +28 -0
  86. package/templates/default/ikoncomponents/form-fields/types/index.ts +46 -0
  87. package/templates/default/ikoncomponents/glowing-effect/index.tsx +171 -0
  88. package/templates/default/ikoncomponents/icon/index.tsx +22 -0
  89. package/templates/default/ikoncomponents/image-cropper-upload/components/cropperImg.css +19 -0
  90. package/{dist/ikoncomponents/image-cropper-upload/components/newCropper.js → templates/default/ikoncomponents/image-cropper-upload/components/newCropper.tsx} +117 -85
  91. package/templates/default/ikoncomponents/image-cropper-upload/components/newImageUploadForm.tsx +352 -0
  92. package/templates/default/ikoncomponents/image-cropper-upload/cropper-form/index.tsx +250 -0
  93. package/templates/default/ikoncomponents/image-cropper-upload/cropper-form-with-modal/index.tsx +32 -0
  94. package/{dist/ikoncomponents/image-cropper-upload/image-cropper/index.js → templates/default/ikoncomponents/image-cropper-upload/image-cropper/index.tsx} +119 -87
  95. package/templates/default/ikoncomponents/image-cropper-upload/index.tsx +95 -0
  96. package/templates/default/ikoncomponents/image-cropper-upload/utils/index.ts +117 -0
  97. package/templates/default/ikoncomponents/loading-spinner/index.tsx +43 -0
  98. package/templates/default/ikoncomponents/main-layout/RefreshContext.tsx +30 -0
  99. package/templates/default/ikoncomponents/main-layout/SidebarNavContext.tsx +103 -0
  100. package/templates/default/ikoncomponents/main-layout/app-sidebar.tsx +36 -0
  101. package/templates/default/ikoncomponents/main-layout/footer.tsx +21 -0
  102. package/templates/default/ikoncomponents/main-layout/header.tsx +53 -0
  103. package/templates/default/ikoncomponents/main-layout/index.tsx +43 -0
  104. package/templates/default/ikoncomponents/main-layout/main-sidebar.tsx +389 -0
  105. package/templates/default/ikoncomponents/main-layout/nav-main.tsx +103 -0
  106. package/templates/default/ikoncomponents/multi-combobox/index.tsx +345 -0
  107. package/templates/default/ikoncomponents/no-data/index.tsx +11 -0
  108. package/templates/default/ikoncomponents/page-wrapper/index.tsx +30 -0
  109. package/templates/default/ikoncomponents/password-strength-meter/index.tsx +49 -0
  110. package/templates/default/ikoncomponents/phone-input/index.tsx +72 -0
  111. package/templates/default/ikoncomponents/provider-wrapper/index.tsx +32 -0
  112. package/templates/default/ikoncomponents/search-input/index.tsx +18 -0
  113. package/templates/default/ikoncomponents/sheet/index.tsx +34 -0
  114. package/templates/default/ikoncomponents/simple-widget/index.tsx +54 -0
  115. package/templates/default/ikoncomponents/skeleton-loader/skeleton-table.tsx +34 -0
  116. package/templates/default/ikoncomponents/skeleton-loader/skeleton-widget.tsx +13 -0
  117. package/templates/default/ikoncomponents/tabs/index.tsx +139 -0
  118. package/{dist/ikoncomponents/tabs/type.d.ts → templates/default/ikoncomponents/tabs/type.ts} +20 -20
  119. package/{dist/ikoncomponents/theme-toggle-btn/index.js → templates/default/ikoncomponents/theme-toggle-btn/index.tsx} +189 -118
  120. package/templates/default/ikoncomponents/title-progress/index.tsx +41 -0
  121. package/templates/default/ikoncomponents/tooltip/index.tsx +17 -0
  122. package/templates/default/ikoncomponents/twolevel-dropdown/convertToDropdownNodes.tsx +33 -0
  123. package/templates/default/ikoncomponents/twolevel-dropdown/index.tsx +279 -0
  124. package/templates/default/ikoncomponents/upload-tab/index.tsx +237 -0
  125. package/templates/default/ikoncomponents/widgets/index.tsx +81 -0
  126. package/templates/default/ikoncomponents/widgets/type.ts +11 -0
  127. package/templates/default/ikoncomponents/work-in-progress/index.tsx +16 -0
  128. package/{dist/index.d.ts → templates/default/index.ts} +234 -139
  129. package/templates/default/styles.css +1159 -0
  130. package/templates/default/utils/actions/account/index.ts +33 -0
  131. package/templates/default/utils/actions/account/type.ts +4 -0
  132. package/{dist/utils/actions/auth/index.js → templates/default/utils/actions/auth/index.ts} +69 -58
  133. package/templates/default/utils/actions/common/revalidate.ts +18 -0
  134. package/templates/default/utils/actions/common/type.ts +4 -0
  135. package/{dist/utils/actions/common/utils.js → templates/default/utils/actions/common/utils.ts} +28 -25
  136. package/templates/default/utils/actions/software/index.ts +106 -0
  137. package/templates/default/utils/api/accountService/index.ts +103 -0
  138. package/templates/default/utils/api/accountService/type.ts +4 -0
  139. package/templates/default/utils/api/file-upload/index.ts +103 -0
  140. package/templates/default/utils/api/file-upload/type.ts +8 -0
  141. package/{dist/utils/api/ikonBaseApi.js → templates/default/utils/api/ikonBaseApi.ts} +132 -104
  142. package/templates/default/utils/api/loginService/index.ts +108 -0
  143. package/{dist/utils/api/loginService/type.d.ts → templates/default/utils/api/loginService/type.ts} +35 -32
  144. package/templates/default/utils/api/softwareService/index.ts +356 -0
  145. package/templates/default/utils/api/softwareService/type.ts +62 -0
  146. package/{dist/utils/border-radius-provider.js → templates/default/utils/border-radius-provider.tsx} +59 -35
  147. package/templates/default/utils/cn.ts +6 -0
  148. package/{dist/utils/font-provider.js → templates/default/utils/font-provider.tsx} +61 -37
  149. package/templates/default/utils/session/cookieSession.ts +49 -0
  150. package/templates/default/utils/theme-provider/index.tsx +11 -0
  151. package/templates/default/utils/token-management/index.ts +115 -0
  152. package/templates/default/utils/token-management/types.ts +6 -0
  153. package/dist/hooks/use-mobile.d.ts +0 -2
  154. package/dist/hooks/use-mobile.d.ts.map +0 -1
  155. package/dist/hooks/use-mobile.js +0 -15
  156. package/dist/ikoncomponents/action-menu/index.d.ts +0 -6
  157. package/dist/ikoncomponents/action-menu/index.d.ts.map +0 -1
  158. package/dist/ikoncomponents/action-menu/index.js +0 -42
  159. package/dist/ikoncomponents/action-menu/type.d.ts +0 -15
  160. package/dist/ikoncomponents/action-menu/type.d.ts.map +0 -1
  161. package/dist/ikoncomponents/action-menu/type.js +0 -1
  162. package/dist/ikoncomponents/activity-sheet/index.d.ts +0 -12
  163. package/dist/ikoncomponents/activity-sheet/index.d.ts.map +0 -1
  164. package/dist/ikoncomponents/activity-sheet/index.js +0 -23
  165. package/dist/ikoncomponents/alert-dialog/dialog-context.d.ts +0 -22
  166. package/dist/ikoncomponents/alert-dialog/dialog-context.d.ts.map +0 -1
  167. package/dist/ikoncomponents/alert-dialog/dialog-context.js +0 -30
  168. package/dist/ikoncomponents/alert-dialog/index.d.ts +0 -15
  169. package/dist/ikoncomponents/alert-dialog/index.d.ts.map +0 -1
  170. package/dist/ikoncomponents/alert-dialog/index.js +0 -20
  171. package/dist/ikoncomponents/app-breadcrumb/BreadcrumbProvider.d.ts +0 -19
  172. package/dist/ikoncomponents/app-breadcrumb/BreadcrumbProvider.d.ts.map +0 -1
  173. package/dist/ikoncomponents/app-breadcrumb/BreadcrumbProvider.js +0 -43
  174. package/dist/ikoncomponents/app-breadcrumb/index.d.ts +0 -6
  175. package/dist/ikoncomponents/app-breadcrumb/index.d.ts.map +0 -1
  176. package/dist/ikoncomponents/app-breadcrumb/index.js +0 -57
  177. package/dist/ikoncomponents/big-calendar/big-calender-event/index.d.ts +0 -6
  178. package/dist/ikoncomponents/big-calendar/big-calender-event/index.d.ts.map +0 -1
  179. package/dist/ikoncomponents/big-calendar/big-calender-event/index.js +0 -16
  180. package/dist/ikoncomponents/big-calendar/big-calender-toolbar/index.d.ts +0 -3
  181. package/dist/ikoncomponents/big-calendar/big-calender-toolbar/index.d.ts.map +0 -1
  182. package/dist/ikoncomponents/big-calendar/big-calender-toolbar/index.js +0 -39
  183. package/dist/ikoncomponents/big-calendar/index.d.ts +0 -4
  184. package/dist/ikoncomponents/big-calendar/index.d.ts.map +0 -1
  185. package/dist/ikoncomponents/big-calendar/index.js +0 -35
  186. package/dist/ikoncomponents/big-calendar/type.d.ts +0 -32
  187. package/dist/ikoncomponents/big-calendar/type.d.ts.map +0 -1
  188. package/dist/ikoncomponents/big-calendar/type.js +0 -1
  189. package/dist/ikoncomponents/buttons/index.d.ts +0 -19
  190. package/dist/ikoncomponents/buttons/index.d.ts.map +0 -1
  191. package/dist/ikoncomponents/buttons/index.js +0 -38
  192. package/dist/ikoncomponents/combobox-input/index.d.ts +0 -3
  193. package/dist/ikoncomponents/combobox-input/index.d.ts.map +0 -1
  194. package/dist/ikoncomponents/combobox-input/index.js +0 -18
  195. package/dist/ikoncomponents/combobox-input/type.d.ts +0 -14
  196. package/dist/ikoncomponents/combobox-input/type.d.ts.map +0 -1
  197. package/dist/ikoncomponents/combobox-input/type.js +0 -1
  198. package/dist/ikoncomponents/custom-combo-dropdown/index.d.ts +0 -22
  199. package/dist/ikoncomponents/custom-combo-dropdown/index.d.ts.map +0 -1
  200. package/dist/ikoncomponents/custom-combo-dropdown/index.js +0 -85
  201. package/dist/ikoncomponents/data-table/datatable-column-filter/index.d.ts +0 -3
  202. package/dist/ikoncomponents/data-table/datatable-column-filter/index.d.ts.map +0 -1
  203. package/dist/ikoncomponents/data-table/datatable-column-filter/index.js +0 -22
  204. package/dist/ikoncomponents/data-table/datatable-faceted-filter/index.d.ts +0 -3
  205. package/dist/ikoncomponents/data-table/datatable-faceted-filter/index.d.ts.map +0 -1
  206. package/dist/ikoncomponents/data-table/datatable-faceted-filter/index.js +0 -35
  207. package/dist/ikoncomponents/data-table/datatable-filter-menu/index.d.ts +0 -3
  208. package/dist/ikoncomponents/data-table/datatable-filter-menu/index.d.ts.map +0 -1
  209. package/dist/ikoncomponents/data-table/datatable-filter-menu/index.js +0 -38
  210. package/dist/ikoncomponents/data-table/datatable-pagination/index.d.ts +0 -3
  211. package/dist/ikoncomponents/data-table/datatable-pagination/index.d.ts.map +0 -1
  212. package/dist/ikoncomponents/data-table/datatable-pagination/index.js +0 -13
  213. package/dist/ikoncomponents/data-table/datatable-toolbar/index.d.ts +0 -3
  214. package/dist/ikoncomponents/data-table/datatable-toolbar/index.d.ts.map +0 -1
  215. package/dist/ikoncomponents/data-table/datatable-toolbar/index.js +0 -18
  216. package/dist/ikoncomponents/data-table/function.d.ts +0 -2
  217. package/dist/ikoncomponents/data-table/function.d.ts.map +0 -1
  218. package/dist/ikoncomponents/data-table/function.js +0 -6
  219. package/dist/ikoncomponents/data-table/index.d.ts +0 -3
  220. package/dist/ikoncomponents/data-table/index.d.ts.map +0 -1
  221. package/dist/ikoncomponents/data-table/index.js +0 -223
  222. package/dist/ikoncomponents/data-table/type.d.ts +0 -61
  223. package/dist/ikoncomponents/data-table/type.d.ts.map +0 -1
  224. package/dist/ikoncomponents/data-table/type.js +0 -1
  225. package/dist/ikoncomponents/e-chart/index.d.ts +0 -16
  226. package/dist/ikoncomponents/e-chart/index.d.ts.map +0 -1
  227. package/dist/ikoncomponents/e-chart/index.js +0 -115
  228. package/dist/ikoncomponents/file-input/index.d.ts +0 -2
  229. package/dist/ikoncomponents/file-input/index.d.ts.map +0 -1
  230. package/dist/ikoncomponents/file-input/index.js +0 -21
  231. package/dist/ikoncomponents/fileUpload/index.d.ts +0 -16
  232. package/dist/ikoncomponents/fileUpload/index.d.ts.map +0 -1
  233. package/dist/ikoncomponents/fileUpload/index.js +0 -69
  234. package/dist/ikoncomponents/form-fields/combobox-input/index.d.ts +0 -3
  235. package/dist/ikoncomponents/form-fields/combobox-input/index.d.ts.map +0 -1
  236. package/dist/ikoncomponents/form-fields/combobox-input/index.js +0 -21
  237. package/dist/ikoncomponents/form-fields/combobox-input-value/index.d.ts +0 -19
  238. package/dist/ikoncomponents/form-fields/combobox-input-value/index.d.ts.map +0 -1
  239. package/dist/ikoncomponents/form-fields/combobox-input-value/index.js +0 -26
  240. package/dist/ikoncomponents/form-fields/date-input/index.d.ts +0 -3
  241. package/dist/ikoncomponents/form-fields/date-input/index.d.ts.map +0 -1
  242. package/dist/ikoncomponents/form-fields/date-input/index.js +0 -15
  243. package/dist/ikoncomponents/form-fields/file-input/index.d.ts +0 -2
  244. package/dist/ikoncomponents/form-fields/file-input/index.d.ts.map +0 -1
  245. package/dist/ikoncomponents/form-fields/file-input/index.js +0 -4
  246. package/dist/ikoncomponents/form-fields/input/index.d.ts +0 -3
  247. package/dist/ikoncomponents/form-fields/input/index.d.ts.map +0 -1
  248. package/dist/ikoncomponents/form-fields/input/index.js +0 -18
  249. package/dist/ikoncomponents/form-fields/multi-combobox-input/index.d.ts +0 -7
  250. package/dist/ikoncomponents/form-fields/multi-combobox-input/index.d.ts.map +0 -1
  251. package/dist/ikoncomponents/form-fields/otp-input/index.d.ts +0 -3
  252. package/dist/ikoncomponents/form-fields/otp-input/index.d.ts.map +0 -1
  253. package/dist/ikoncomponents/form-fields/otp-input/index.js +0 -18
  254. package/dist/ikoncomponents/form-fields/password-input/index.d.ts +0 -3
  255. package/dist/ikoncomponents/form-fields/password-input/index.d.ts.map +0 -1
  256. package/dist/ikoncomponents/form-fields/password-input/index.js +0 -23
  257. package/dist/ikoncomponents/form-fields/phone-input/index.d.ts +0 -2
  258. package/dist/ikoncomponents/form-fields/phone-input/index.d.ts.map +0 -1
  259. package/dist/ikoncomponents/form-fields/phone-input/index.js +0 -4
  260. package/dist/ikoncomponents/form-fields/textarea/index.d.ts +0 -3
  261. package/dist/ikoncomponents/form-fields/textarea/index.d.ts.map +0 -1
  262. package/dist/ikoncomponents/form-fields/textarea/index.js +0 -18
  263. package/dist/ikoncomponents/form-fields/types/index.d.ts +0 -37
  264. package/dist/ikoncomponents/form-fields/types/index.d.ts.map +0 -1
  265. package/dist/ikoncomponents/form-fields/types/index.js +0 -1
  266. package/dist/ikoncomponents/glowing-effect/index.d.ts +0 -15
  267. package/dist/ikoncomponents/glowing-effect/index.d.ts.map +0 -1
  268. package/dist/ikoncomponents/glowing-effect/index.js +0 -84
  269. package/dist/ikoncomponents/icon/index.d.ts +0 -9
  270. package/dist/ikoncomponents/icon/index.d.ts.map +0 -1
  271. package/dist/ikoncomponents/icon/index.js +0 -23
  272. package/dist/ikoncomponents/image-cropper-upload/components/newCropper.d.ts +0 -16
  273. package/dist/ikoncomponents/image-cropper-upload/components/newCropper.d.ts.map +0 -1
  274. package/dist/ikoncomponents/image-cropper-upload/components/newImageUploadForm.d.ts +0 -8
  275. package/dist/ikoncomponents/image-cropper-upload/components/newImageUploadForm.d.ts.map +0 -1
  276. package/dist/ikoncomponents/image-cropper-upload/components/newImageUploadForm.js +0 -145
  277. package/dist/ikoncomponents/image-cropper-upload/cropper-form/index.d.ts +0 -7
  278. package/dist/ikoncomponents/image-cropper-upload/cropper-form/index.d.ts.map +0 -1
  279. package/dist/ikoncomponents/image-cropper-upload/cropper-form/index.js +0 -92
  280. package/dist/ikoncomponents/image-cropper-upload/cropper-form-with-modal/index.d.ts +0 -7
  281. package/dist/ikoncomponents/image-cropper-upload/cropper-form-with-modal/index.d.ts.map +0 -1
  282. package/dist/ikoncomponents/image-cropper-upload/cropper-form-with-modal/index.js +0 -14
  283. package/dist/ikoncomponents/image-cropper-upload/image-cropper/index.d.ts +0 -15
  284. package/dist/ikoncomponents/image-cropper-upload/image-cropper/index.d.ts.map +0 -1
  285. package/dist/ikoncomponents/image-cropper-upload/index.d.ts +0 -28
  286. package/dist/ikoncomponents/image-cropper-upload/index.d.ts.map +0 -1
  287. package/dist/ikoncomponents/image-cropper-upload/index.js +0 -49
  288. package/dist/ikoncomponents/image-cropper-upload/utils/index.d.ts +0 -17
  289. package/dist/ikoncomponents/image-cropper-upload/utils/index.d.ts.map +0 -1
  290. package/dist/ikoncomponents/image-cropper-upload/utils/index.js +0 -73
  291. package/dist/ikoncomponents/loading-spinner/index.d.ts +0 -10
  292. package/dist/ikoncomponents/loading-spinner/index.d.ts.map +0 -1
  293. package/dist/ikoncomponents/loading-spinner/index.js +0 -19
  294. package/dist/ikoncomponents/main-layout/RefreshContext.d.ts +0 -11
  295. package/dist/ikoncomponents/main-layout/RefreshContext.d.ts.map +0 -1
  296. package/dist/ikoncomponents/main-layout/RefreshContext.js +0 -17
  297. package/dist/ikoncomponents/main-layout/SidebarNavContext.d.ts +0 -34
  298. package/dist/ikoncomponents/main-layout/SidebarNavContext.d.ts.map +0 -1
  299. package/dist/ikoncomponents/main-layout/SidebarNavContext.js +0 -52
  300. package/dist/ikoncomponents/main-layout/app-sidebar.d.ts +0 -4
  301. package/dist/ikoncomponents/main-layout/app-sidebar.d.ts.map +0 -1
  302. package/dist/ikoncomponents/main-layout/app-sidebar.js +0 -24
  303. package/dist/ikoncomponents/main-layout/footer.d.ts +0 -2
  304. package/dist/ikoncomponents/main-layout/footer.d.ts.map +0 -1
  305. package/dist/ikoncomponents/main-layout/footer.js +0 -5
  306. package/dist/ikoncomponents/main-layout/header.d.ts +0 -4
  307. package/dist/ikoncomponents/main-layout/header.d.ts.map +0 -1
  308. package/dist/ikoncomponents/main-layout/header.js +0 -15
  309. package/dist/ikoncomponents/main-layout/index.d.ts +0 -7
  310. package/dist/ikoncomponents/main-layout/index.d.ts.map +0 -1
  311. package/dist/ikoncomponents/main-layout/index.js +0 -12
  312. package/dist/ikoncomponents/main-layout/main-sidebar.d.ts +0 -61
  313. package/dist/ikoncomponents/main-layout/main-sidebar.d.ts.map +0 -1
  314. package/dist/ikoncomponents/main-layout/main-sidebar.js +0 -119
  315. package/dist/ikoncomponents/main-layout/nav-main.d.ts +0 -12
  316. package/dist/ikoncomponents/main-layout/nav-main.d.ts.map +0 -1
  317. package/dist/ikoncomponents/main-layout/nav-main.js +0 -33
  318. package/dist/ikoncomponents/multi-combobox/index.d.ts +0 -14
  319. package/dist/ikoncomponents/multi-combobox/index.d.ts.map +0 -1
  320. package/dist/ikoncomponents/multi-combobox/index.js +0 -202
  321. package/dist/ikoncomponents/no-data/index.d.ts +0 -4
  322. package/dist/ikoncomponents/no-data/index.d.ts.map +0 -1
  323. package/dist/ikoncomponents/no-data/index.js +0 -5
  324. package/dist/ikoncomponents/page-wrapper/index.d.ts +0 -10
  325. package/dist/ikoncomponents/page-wrapper/index.d.ts.map +0 -1
  326. package/dist/ikoncomponents/page-wrapper/index.js +0 -7
  327. package/dist/ikoncomponents/password-strength-meter/index.d.ts +0 -4
  328. package/dist/ikoncomponents/password-strength-meter/index.d.ts.map +0 -1
  329. package/dist/ikoncomponents/password-strength-meter/index.js +0 -40
  330. package/dist/ikoncomponents/phone-input/index.d.ts +0 -2
  331. package/dist/ikoncomponents/phone-input/index.d.ts.map +0 -1
  332. package/dist/ikoncomponents/phone-input/index.js +0 -41
  333. package/dist/ikoncomponents/provider-wrapper/index.d.ts +0 -7
  334. package/dist/ikoncomponents/provider-wrapper/index.d.ts.map +0 -1
  335. package/dist/ikoncomponents/provider-wrapper/index.js +0 -10
  336. package/dist/ikoncomponents/search-input/index.d.ts +0 -2
  337. package/dist/ikoncomponents/search-input/index.d.ts.map +0 -1
  338. package/dist/ikoncomponents/search-input/index.js +0 -19
  339. package/dist/ikoncomponents/sheet/index.d.ts +0 -11
  340. package/dist/ikoncomponents/sheet/index.d.ts.map +0 -1
  341. package/dist/ikoncomponents/sheet/index.js +0 -6
  342. package/dist/ikoncomponents/simple-widget/index.d.ts +0 -15
  343. package/dist/ikoncomponents/simple-widget/index.d.ts.map +0 -1
  344. package/dist/ikoncomponents/simple-widget/index.js +0 -14
  345. package/dist/ikoncomponents/skeleton-loader/skeleton-table.d.ts +0 -6
  346. package/dist/ikoncomponents/skeleton-loader/skeleton-table.d.ts.map +0 -1
  347. package/dist/ikoncomponents/skeleton-loader/skeleton-table.js +0 -6
  348. package/dist/ikoncomponents/skeleton-loader/skeleton-widget.d.ts +0 -4
  349. package/dist/ikoncomponents/skeleton-loader/skeleton-widget.d.ts.map +0 -1
  350. package/dist/ikoncomponents/skeleton-loader/skeleton-widget.js +0 -5
  351. package/dist/ikoncomponents/tabs/index.d.ts +0 -3
  352. package/dist/ikoncomponents/tabs/index.d.ts.map +0 -1
  353. package/dist/ikoncomponents/tabs/index.js +0 -50
  354. package/dist/ikoncomponents/tabs/type.d.ts.map +0 -1
  355. package/dist/ikoncomponents/tabs/type.js +0 -2
  356. package/dist/ikoncomponents/theme-toggle-btn/index.d.ts +0 -2
  357. package/dist/ikoncomponents/theme-toggle-btn/index.d.ts.map +0 -1
  358. package/dist/ikoncomponents/title-progress/index.d.ts +0 -13
  359. package/dist/ikoncomponents/title-progress/index.d.ts.map +0 -1
  360. package/dist/ikoncomponents/title-progress/index.js +0 -10
  361. package/dist/ikoncomponents/tooltip/index.d.ts +0 -6
  362. package/dist/ikoncomponents/tooltip/index.d.ts.map +0 -1
  363. package/dist/ikoncomponents/tooltip/index.js +0 -5
  364. package/dist/ikoncomponents/twolevel-dropdown/convertToDropdownNodes.d.ts +0 -10
  365. package/dist/ikoncomponents/twolevel-dropdown/convertToDropdownNodes.d.ts.map +0 -1
  366. package/dist/ikoncomponents/twolevel-dropdown/convertToDropdownNodes.js +0 -24
  367. package/dist/ikoncomponents/twolevel-dropdown/index.d.ts +0 -32
  368. package/dist/ikoncomponents/twolevel-dropdown/index.d.ts.map +0 -1
  369. package/dist/ikoncomponents/twolevel-dropdown/index.js +0 -143
  370. package/dist/ikoncomponents/upload-tab/index.d.ts +0 -2
  371. package/dist/ikoncomponents/upload-tab/index.d.ts.map +0 -1
  372. package/dist/ikoncomponents/upload-tab/index.js +0 -92
  373. package/dist/ikoncomponents/widgets/index.d.ts +0 -3
  374. package/dist/ikoncomponents/widgets/index.d.ts.map +0 -1
  375. package/dist/ikoncomponents/widgets/index.js +0 -14
  376. package/dist/ikoncomponents/widgets/type.d.ts +0 -11
  377. package/dist/ikoncomponents/widgets/type.d.ts.map +0 -1
  378. package/dist/ikoncomponents/widgets/type.js +0 -2
  379. package/dist/ikoncomponents/work-in-progress/index.d.ts +0 -2
  380. package/dist/ikoncomponents/work-in-progress/index.d.ts.map +0 -1
  381. package/dist/ikoncomponents/work-in-progress/index.js +0 -4
  382. package/dist/index.d.ts.map +0 -1
  383. package/dist/shadcn/accordion.d.ts +0 -8
  384. package/dist/shadcn/accordion.d.ts.map +0 -1
  385. package/dist/shadcn/accordion.js +0 -33
  386. package/dist/shadcn/alert-dialog.d.ts +0 -21
  387. package/dist/shadcn/alert-dialog.d.ts.map +0 -1
  388. package/dist/shadcn/alert-dialog.js +0 -83
  389. package/dist/shadcn/alert.d.ts +0 -10
  390. package/dist/shadcn/alert.d.ts.map +0 -1
  391. package/dist/shadcn/alert.js +0 -38
  392. package/dist/shadcn/aspect-ratio.d.ts +0 -4
  393. package/dist/shadcn/aspect-ratio.d.ts.map +0 -1
  394. package/dist/shadcn/aspect-ratio.js +0 -19
  395. package/dist/shadcn/avatar.d.ts +0 -7
  396. package/dist/shadcn/avatar.d.ts.map +0 -1
  397. package/dist/shadcn/avatar.js +0 -28
  398. package/dist/shadcn/badge.d.ts +0 -10
  399. package/dist/shadcn/badge.d.ts.map +0 -1
  400. package/dist/shadcn/badge.js +0 -35
  401. package/dist/shadcn/breadcrumb.d.ts +0 -12
  402. package/dist/shadcn/breadcrumb.d.ts.map +0 -1
  403. package/dist/shadcn/breadcrumb.js +0 -45
  404. package/dist/shadcn/button.d.ts +0 -11
  405. package/dist/shadcn/button.d.ts.map +0 -1
  406. package/dist/shadcn/button.js +0 -47
  407. package/dist/shadcn/calendar.d.ts +0 -9
  408. package/dist/shadcn/calendar.d.ts.map +0 -1
  409. package/dist/shadcn/calendar.js +0 -61
  410. package/dist/shadcn/card.d.ts +0 -10
  411. package/dist/shadcn/card.d.ts.map +0 -1
  412. package/dist/shadcn/card.js +0 -42
  413. package/dist/shadcn/checkbox.d.ts +0 -5
  414. package/dist/shadcn/checkbox.d.ts.map +0 -1
  415. package/dist/shadcn/checkbox.js +0 -21
  416. package/dist/shadcn/collapsible.d.ts +0 -6
  417. package/dist/shadcn/collapsible.d.ts.map +0 -1
  418. package/dist/shadcn/collapsible.js +0 -27
  419. package/dist/shadcn/command.d.ts +0 -19
  420. package/dist/shadcn/command.d.ts.map +0 -1
  421. package/dist/shadcn/command.js +0 -54
  422. package/dist/shadcn/date-input.d.ts +0 -8
  423. package/dist/shadcn/date-input.d.ts.map +0 -1
  424. package/dist/shadcn/date-input.js +0 -179
  425. package/dist/shadcn/date-range-picker.d.ts +0 -25
  426. package/dist/shadcn/date-range-picker.d.ts.map +0 -1
  427. package/dist/shadcn/date-range-picker.js +0 -45
  428. package/dist/shadcn/dialog.d.ts +0 -16
  429. package/dist/shadcn/dialog.d.ts.map +0 -1
  430. package/dist/shadcn/dialog.js +0 -57
  431. package/dist/shadcn/drawer.d.ts +0 -14
  432. package/dist/shadcn/drawer.d.ts.map +0 -1
  433. package/dist/shadcn/drawer.js +0 -56
  434. package/dist/shadcn/dropdown-menu.d.ts +0 -26
  435. package/dist/shadcn/dropdown-menu.d.ts.map +0 -1
  436. package/dist/shadcn/dropdown-menu.js +0 -77
  437. package/dist/shadcn/form.d.ts +0 -25
  438. package/dist/shadcn/form.d.ts.map +0 -1
  439. package/dist/shadcn/form.js +0 -70
  440. package/dist/shadcn/hover-card.d.ts +0 -7
  441. package/dist/shadcn/hover-card.d.ts.map +0 -1
  442. package/dist/shadcn/hover-card.js +0 -28
  443. package/dist/shadcn/input-otp.d.ts +0 -35
  444. package/dist/shadcn/input-otp.d.ts.map +0 -1
  445. package/dist/shadcn/input-otp.js +0 -40
  446. package/dist/shadcn/input.d.ts +0 -4
  447. package/dist/shadcn/input.d.ts.map +0 -1
  448. package/dist/shadcn/input.js +0 -18
  449. package/dist/shadcn/label.d.ts +0 -5
  450. package/dist/shadcn/label.d.ts.map +0 -1
  451. package/dist/shadcn/label.js +0 -20
  452. package/dist/shadcn/navigation-menu.d.ts +0 -17
  453. package/dist/shadcn/navigation-menu.d.ts.map +0 -1
  454. package/dist/shadcn/navigation-menu.js +0 -74
  455. package/dist/shadcn/popover.d.ts +0 -8
  456. package/dist/shadcn/popover.d.ts.map +0 -1
  457. package/dist/shadcn/popover.js +0 -32
  458. package/dist/shadcn/progress.d.ts +0 -9
  459. package/dist/shadcn/progress.d.ts.map +0 -1
  460. package/dist/shadcn/progress.js +0 -23
  461. package/dist/shadcn/radio-group.d.ts +0 -6
  462. package/dist/shadcn/radio-group.d.ts.map +0 -1
  463. package/dist/shadcn/radio-group.js +0 -25
  464. package/dist/shadcn/scroll-area.d.ts +0 -6
  465. package/dist/shadcn/scroll-area.d.ts.map +0 -1
  466. package/dist/shadcn/scroll-area.js +0 -26
  467. package/dist/shadcn/select.d.ts +0 -16
  468. package/dist/shadcn/select.d.ts.map +0 -1
  469. package/dist/shadcn/select.js +0 -59
  470. package/dist/shadcn/separator.d.ts +0 -5
  471. package/dist/shadcn/separator.d.ts.map +0 -1
  472. package/dist/shadcn/separator.js +0 -20
  473. package/dist/shadcn/sheet.d.ts +0 -14
  474. package/dist/shadcn/sheet.d.ts.map +0 -1
  475. package/dist/shadcn/sheet.js +0 -61
  476. package/dist/shadcn/sidebar.d.ts +0 -70
  477. package/dist/shadcn/sidebar.d.ts.map +0 -1
  478. package/dist/shadcn/sidebar.js +0 -242
  479. package/dist/shadcn/skeleton.d.ts +0 -4
  480. package/dist/shadcn/skeleton.d.ts.map +0 -1
  481. package/dist/shadcn/skeleton.js +0 -18
  482. package/dist/shadcn/slider.d.ts +0 -5
  483. package/dist/shadcn/slider.d.ts.map +0 -1
  484. package/dist/shadcn/slider.js +0 -26
  485. package/dist/shadcn/sonner.d.ts +0 -4
  486. package/dist/shadcn/sonner.d.ts.map +0 -1
  487. package/dist/shadcn/sonner.js +0 -25
  488. package/dist/shadcn/switch.d.ts +0 -5
  489. package/dist/shadcn/switch.d.ts.map +0 -1
  490. package/dist/shadcn/switch.js +0 -20
  491. package/dist/shadcn/table.d.ts +0 -11
  492. package/dist/shadcn/table.d.ts.map +0 -1
  493. package/dist/shadcn/table.js +0 -47
  494. package/dist/shadcn/tabs.d.ts +0 -8
  495. package/dist/shadcn/tabs.d.ts.map +0 -1
  496. package/dist/shadcn/tabs.js +0 -32
  497. package/dist/shadcn/textarea.d.ts +0 -4
  498. package/dist/shadcn/textarea.d.ts.map +0 -1
  499. package/dist/shadcn/textarea.js +0 -18
  500. package/dist/shadcn/toggle-group.d.ts +0 -10
  501. package/dist/shadcn/toggle-group.d.ts.map +0 -1
  502. package/dist/shadcn/toggle-group.js +0 -35
  503. package/dist/shadcn/toggle.d.ts +0 -10
  504. package/dist/shadcn/toggle.d.ts.map +0 -1
  505. package/dist/shadcn/toggle.js +0 -38
  506. package/dist/shadcn/tooltip.d.ts +0 -8
  507. package/dist/shadcn/tooltip.d.ts.map +0 -1
  508. package/dist/shadcn/tooltip.js +0 -32
  509. package/dist/shadcn/workflow.d.ts +0 -21
  510. package/dist/shadcn/workflow.d.ts.map +0 -1
  511. package/dist/shadcn/workflow.js +0 -20
  512. package/dist/styles.css +0 -1302
  513. package/dist/utils/actions/account/index.d.ts +0 -6
  514. package/dist/utils/actions/account/index.d.ts.map +0 -1
  515. package/dist/utils/actions/account/index.js +0 -28
  516. package/dist/utils/actions/account/type.d.ts +0 -5
  517. package/dist/utils/actions/account/type.d.ts.map +0 -1
  518. package/dist/utils/actions/account/type.js +0 -1
  519. package/dist/utils/actions/auth/index.d.ts +0 -8
  520. package/dist/utils/actions/auth/index.d.ts.map +0 -1
  521. package/dist/utils/actions/common/revalidate.d.ts +0 -3
  522. package/dist/utils/actions/common/revalidate.d.ts.map +0 -1
  523. package/dist/utils/actions/common/revalidate.js +0 -14
  524. package/dist/utils/actions/common/type.d.ts +0 -5
  525. package/dist/utils/actions/common/type.d.ts.map +0 -1
  526. package/dist/utils/actions/common/type.js +0 -1
  527. package/dist/utils/actions/common/utils.d.ts +0 -6
  528. package/dist/utils/actions/common/utils.d.ts.map +0 -1
  529. package/dist/utils/actions/software/index.d.ts +0 -12
  530. package/dist/utils/actions/software/index.d.ts.map +0 -1
  531. package/dist/utils/actions/software/index.js +0 -75
  532. package/dist/utils/api/accountService/index.d.ts +0 -24
  533. package/dist/utils/api/accountService/index.d.ts.map +0 -1
  534. package/dist/utils/api/accountService/index.js +0 -64
  535. package/dist/utils/api/accountService/type.d.ts +0 -5
  536. package/dist/utils/api/accountService/type.d.ts.map +0 -1
  537. package/dist/utils/api/accountService/type.js +0 -1
  538. package/dist/utils/api/file-upload/index.d.ts +0 -6
  539. package/dist/utils/api/file-upload/index.d.ts.map +0 -1
  540. package/dist/utils/api/file-upload/index.js +0 -80
  541. package/dist/utils/api/file-upload/type.d.ts +0 -7
  542. package/dist/utils/api/file-upload/type.d.ts.map +0 -1
  543. package/dist/utils/api/file-upload/type.js +0 -1
  544. package/dist/utils/api/ikonBaseApi.d.ts +0 -13
  545. package/dist/utils/api/ikonBaseApi.d.ts.map +0 -1
  546. package/dist/utils/api/loginService/index.d.ts +0 -13
  547. package/dist/utils/api/loginService/index.d.ts.map +0 -1
  548. package/dist/utils/api/loginService/index.js +0 -72
  549. package/dist/utils/api/loginService/type.d.ts.map +0 -1
  550. package/dist/utils/api/loginService/type.js +0 -1
  551. package/dist/utils/api/softwareService/index.d.ts +0 -65
  552. package/dist/utils/api/softwareService/index.d.ts.map +0 -1
  553. package/dist/utils/api/softwareService/index.js +0 -212
  554. package/dist/utils/api/softwareService/type.d.ts +0 -55
  555. package/dist/utils/api/softwareService/type.d.ts.map +0 -1
  556. package/dist/utils/api/softwareService/type.js +0 -1
  557. package/dist/utils/border-radius-provider.d.ts +0 -12
  558. package/dist/utils/border-radius-provider.d.ts.map +0 -1
  559. package/dist/utils/cn.d.ts +0 -3
  560. package/dist/utils/cn.d.ts.map +0 -1
  561. package/dist/utils/cn.js +0 -5
  562. package/dist/utils/font-provider.d.ts +0 -12
  563. package/dist/utils/font-provider.d.ts.map +0 -1
  564. package/dist/utils/session/cookieSession.d.ts +0 -9
  565. package/dist/utils/session/cookieSession.d.ts.map +0 -1
  566. package/dist/utils/session/cookieSession.js +0 -33
  567. package/dist/utils/theme-provider/index.d.ts +0 -4
  568. package/dist/utils/theme-provider/index.d.ts.map +0 -1
  569. package/dist/utils/theme-provider/index.js +0 -18
  570. package/dist/utils/token-management/index.d.ts +0 -11
  571. package/dist/utils/token-management/index.d.ts.map +0 -1
  572. package/dist/utils/token-management/index.js +0 -69
  573. package/dist/utils/token-management/types.d.ts +0 -7
  574. package/dist/utils/token-management/types.d.ts.map +0 -1
  575. package/dist/utils/token-management/types.js +0 -1
@@ -1,139 +1,234 @@
1
- import "./styles.css";
2
- export * from "./shadcn/accordion";
3
- export * from "./shadcn/alert-dialog";
4
- export * from "./shadcn/alert";
5
- export * from "./shadcn/avatar";
6
- export * from "./shadcn/badge";
7
- export * from "./shadcn/button";
8
- export * from "./shadcn/calendar";
9
- export * from "./shadcn/card";
10
- export * from "./shadcn/checkbox";
11
- export * from "./shadcn/command";
12
- export * from "./shadcn/date-input";
13
- export * from "./shadcn/date-range-picker";
14
- export * from "./shadcn/dialog";
15
- export * from "./shadcn/dropdown-menu";
16
- export * from "./shadcn/hover-card";
17
- export * from "./shadcn/input";
18
- export * from "./shadcn/label";
19
- export * from "./shadcn/navigation-menu";
20
- export * from "./shadcn/popover";
21
- export * from "./shadcn/progress";
22
- export * from "./shadcn/radio-group";
23
- export * from "./shadcn/scroll-area";
24
- export * from "./shadcn/select";
25
- export * from "./shadcn/separator";
26
- export * from "./shadcn/sheet";
27
- export * from "./shadcn/sidebar";
28
- export * from "./shadcn/skeleton";
29
- export * from "./shadcn/slider";
30
- export * from "./shadcn/sonner";
31
- export * from "./shadcn/switch";
32
- export * from "./shadcn/table";
33
- export * from "./shadcn/tabs";
34
- export * from "./shadcn/textarea";
35
- export * from "./shadcn/tooltip";
36
- export * from "./shadcn/workflow";
37
- export * from "./shadcn/aspect-ratio";
38
- export * from "./shadcn/breadcrumb";
39
- export * from "./shadcn/collapsible";
40
- export * from "./shadcn/drawer";
41
- export * from "./shadcn/form";
42
- export * from "./shadcn/input-otp";
43
- export * from "./shadcn/toggle-group";
44
- export * from "./shadcn/toggle";
45
- export { ActionMenu } from "./ikoncomponents/action-menu";
46
- export type { ActionMenuProps, ExtraActionParams, } from "./ikoncomponents/action-menu/type";
47
- export { CustomAlertDialog } from "./ikoncomponents/alert-dialog";
48
- export { useDialog, DialogProvider, } from "./ikoncomponents/alert-dialog/dialog-context";
49
- export { TextButton, TextButtonWithTooltip, IconTextButton, IconTextButtonWithTooltip, IconButton, IconButtonWithTooltip, } from "./ikoncomponents/buttons";
50
- export type { ButtonProps, ButtonWithTooltipProps, } from "./ikoncomponents/buttons";
51
- export { ComboboxInput } from "./ikoncomponents/combobox-input";
52
- export type { ComboBoxInputProps, ComboboxItemProps, } from "./ikoncomponents/combobox-input/type";
53
- export { DataTableColumnFilter } from "./ikoncomponents/data-table/datatable-column-filter";
54
- export { DataTableFacetedFilter } from "./ikoncomponents/data-table/datatable-faceted-filter";
55
- export { DataTableFilterMenu } from "./ikoncomponents/data-table/datatable-filter-menu";
56
- export { convertFileToObject, FileUploader, getImageFromObject, } from "./ikoncomponents/fileUpload";
57
- export type { FileUploaderProps } from "./ikoncomponents/fileUpload";
58
- export { DataTablePagination } from "./ikoncomponents/data-table/datatable-pagination";
59
- export { DataTableToolbar } from "./ikoncomponents/data-table/datatable-toolbar";
60
- export { getDataTableColumnTitle } from "./ikoncomponents/data-table/function";
61
- export { DataTable } from "./ikoncomponents/data-table";
62
- export type { DataTableProps, DTColumnsProps, DTExtraParamsProps, DTActionMenuProps, DataTableViewOptionsProps, DTToolBarProps, DataTableFilterProps, DataTableFacetedFilterProps, DataTablePaginationProps, DragDropHeaderProp, } from "./ikoncomponents/data-table/type";
63
- export { EChart } from "./ikoncomponents/e-chart";
64
- export { FileInput } from "./ikoncomponents/file-input";
65
- export { GlowingEffect } from "./ikoncomponents/glowing-effect";
66
- export { Icon } from "./ikoncomponents/icon";
67
- export { LoadingSpinner } from "./ikoncomponents/loading-spinner";
68
- export type { ISVGProps, LoadingSpinnerProps, } from "./ikoncomponents/loading-spinner";
69
- export { MultiCombobox } from "./ikoncomponents/multi-combobox";
70
- export { NoDataComponent } from "./ikoncomponents/no-data";
71
- export { PageWrapper } from "./ikoncomponents/page-wrapper";
72
- export { PasswordStrengthMeter } from "./ikoncomponents/password-strength-meter";
73
- export { PhoneInput } from "./ikoncomponents/phone-input";
74
- export { SearchInput } from "./ikoncomponents/search-input";
75
- export { SheetComponent } from "./ikoncomponents/sheet";
76
- export { SimpleWidget } from "./ikoncomponents/simple-widget";
77
- export { CustomTabs } from "./ikoncomponents/tabs";
78
- export type { TabArray, TabProps } from "./ikoncomponents/tabs/type";
79
- export { ThemeToggleBtn } from "./ikoncomponents/theme-toggle-btn";
80
- export { TitleProgress } from "./ikoncomponents/title-progress";
81
- export { TooltipComponent } from "./ikoncomponents/tooltip";
82
- export { FrameworkItemDropdown } from "./ikoncomponents/twolevel-dropdown";
83
- export type { FrameworkEntry, TreeNode, ParentEntry, ProcessedFrameworkData, } from "./ikoncomponents/twolevel-dropdown";
84
- export { Widgets } from "./ikoncomponents/widgets";
85
- export type { WidgetProps, WidgetsFunctionProps, } from "./ikoncomponents/widgets/type";
86
- export { BigCalendar } from "./ikoncomponents/big-calendar";
87
- export type { BigCalendarProps, ExtraParamsEvent, BigCalendarEventProps, BigCalenderToolbarProps, } from "./ikoncomponents/big-calendar/type";
88
- export { BreadcrumbProvider, useBreadcrumb, } from "./ikoncomponents/app-breadcrumb/BreadcrumbProvider";
89
- export type { BreadcrumbItemProps } from "./ikoncomponents/app-breadcrumb/BreadcrumbProvider";
90
- export { AppBreadcrumb, RenderAppBreadcrumb, } from "./ikoncomponents/app-breadcrumb";
91
- export { FormComboboxInput } from "./ikoncomponents/form-fields/combobox-input";
92
- export { FormComboboxInputWithValue } from "./ikoncomponents/form-fields/combobox-input-value";
93
- export { FormDateInput } from "./ikoncomponents/form-fields/date-input";
94
- export { FormFileInput } from "./ikoncomponents/form-fields/file-input";
95
- export { FormInput } from "./ikoncomponents/form-fields/input";
96
- export { FormMultiComboboxInput } from "./ikoncomponents/form-fields/multi-combobox-input";
97
- export { FormOtpInput } from "./ikoncomponents/form-fields/otp-input";
98
- export { FormPhoneInput } from "./ikoncomponents/form-fields/phone-input";
99
- export { FormTextarea } from "./ikoncomponents/form-fields/textarea";
100
- export type { FormFieldProps, FormInputProps, FormTextareaProps, FormDateInputProps, FormComboboxInputProps, FormComboboxItemProps, } from "./ikoncomponents/form-fields/types";
101
- export { GradeTableLoader } from "./ikoncomponents/skeleton-loader/skeleton-table";
102
- export type { GradeTableLoaderProps } from "./ikoncomponents/skeleton-loader/skeleton-table";
103
- export { SkeletonWidget } from "./ikoncomponents/skeleton-loader/skeleton-widget";
104
- export { UploadTab } from "./ikoncomponents/upload-tab";
105
- export { AppSidebar } from "./ikoncomponents/main-layout/app-sidebar";
106
- export { Footer } from "./ikoncomponents/main-layout/footer";
107
- export { Header } from "./ikoncomponents/main-layout/header";
108
- export type { Account, Software, } from "./ikoncomponents/main-layout/main-sidebar";
109
- export { MainSidebar } from "./ikoncomponents/main-layout/main-sidebar";
110
- export { NavMain, RenderSidebarNav, AddSidebarNav } from "./ikoncomponents/main-layout/nav-main";
111
- export type { SidebarNavSubItem, SidebarNavItem, SidebarNavContextType, } from "./ikoncomponents/main-layout/SidebarNavContext";
112
- export { SidebarNavProvider, useSidebarNav, } from "./ikoncomponents/main-layout/SidebarNavContext";
113
- export { MainLayout } from "./ikoncomponents/main-layout";
114
- export { ProviderWrapper } from "./ikoncomponents/provider-wrapper";
115
- export { ActivitySheet } from "./ikoncomponents/activity-sheet";
116
- export type { ActivityLogProps } from "./ikoncomponents/activity-sheet";
117
- export { ImageCropperProvider, useImageCropper, } from "./ikoncomponents/image-cropper-upload";
118
- export type { ImageCropperProps, OriginalImageProps, AspectRatioWiseImagesProps, ImageCropperContextProps, } from "./ikoncomponents/image-cropper-upload";
119
- export { ImageCropper } from "./ikoncomponents/image-cropper-upload/image-cropper";
120
- export type { CropperImgProps } from "./ikoncomponents/image-cropper-upload/image-cropper";
121
- export { CropperFormWithModal } from "./ikoncomponents/image-cropper-upload/cropper-form-with-modal";
122
- export { CropperForm } from "./ikoncomponents/image-cropper-upload/cropper-form";
123
- export { NewCropperImg } from "./ikoncomponents/image-cropper-upload/components/newCropper";
124
- export type { CropperImgProps as NewCropperImgProps } from "./ikoncomponents/image-cropper-upload/components/newCropper";
125
- export { NewImageForm } from "./ikoncomponents/image-cropper-upload/components/newImageUploadForm";
126
- export type { ImageFormProps } from "./ikoncomponents/image-cropper-upload/components/newImageUploadForm";
127
- export { WorkInProgress } from "./ikoncomponents/work-in-progress";
128
- export { CustomComboboxInput } from "./ikoncomponents/custom-combo-dropdown";
129
- export { ThemeProvider } from "./utils/theme-provider";
130
- export { RadiusProvider, useRadius } from "./utils/border-radius-provider";
131
- export { FontProvider, useFont } from "./utils/font-provider";
132
- export { cn } from "./utils/cn";
133
- export type { CookieSessionOptionsProps } from "./utils/session/cookieSession";
134
- export { setCookieSession, getCookieSession, clearCookieSession, clearAllCookieSession, } from "./utils/session/cookieSession";
135
- export { getValidAccessToken, refreshAccessToken, decodeAccessToken, logOut, } from "./utils/token-management";
136
- export type { TokenResponse } from "./utils/token-management/types";
137
- export { useIsMobile } from "./hooks/use-mobile";
138
- export { useRefresh } from "./ikoncomponents/main-layout/RefreshContext";
139
- //# sourceMappingURL=index.d.ts.map
1
+ import "./styles.css"; // just imports, no processing
2
+ export * from "./ikonShade/accordion";
3
+ export * from "./ikonShade/alert-dialog";
4
+ export * from "./ikonShade/alert";
5
+ export * from "./ikonShade/avatar";
6
+ export * from "./ikonShade/badge";
7
+ export * from "./ikonShade/button";
8
+ export * from "./ikonShade/calendar";
9
+ export * from "./ikonShade/card";
10
+ export * from "./ikonShade/checkbox";
11
+ export * from "./ikonShade/command";
12
+ export * from "./ikonShade/date-input";
13
+ export * from "./ikonShade/date-range-picker";
14
+ export * from "./ikonShade/dialog";
15
+ export * from "./ikonShade/dropdown-menu";
16
+ export * from "./ikonShade/hover-card";
17
+ export * from "./ikonShade/input";
18
+ export * from "./ikonShade/label";
19
+ export * from "./ikonShade/navigation-menu";
20
+ export * from "./ikonShade/popover";
21
+ export * from "./ikonShade/progress";
22
+ export * from "./ikonShade/radio-group";
23
+ export * from "./ikonShade/scroll-area";
24
+ export * from "./ikonShade/select";
25
+ export * from "./ikonShade/separator";
26
+ export * from "./ikonShade/sheet";
27
+ export * from "./ikonShade/sidebar";
28
+ export * from "./ikonShade/skeleton";
29
+ export * from "./ikonShade/slider";
30
+ export * from "./ikonShade/sonner";
31
+ export * from "./ikonShade/switch";
32
+ export * from "./ikonShade/table";
33
+ export * from "./ikonShade/tabs";
34
+ export * from "./ikonShade/textarea";
35
+ export * from "./ikonShade/tooltip";
36
+ export * from "./ikonShade/workflow";
37
+
38
+ export * from "./ikonShade/aspect-ratio";
39
+ export * from "./ikonShade/breadcrumb";
40
+ export * from "./ikonShade/collapsible";
41
+ export * from "./ikonShade/drawer";
42
+ export * from "./ikonShade/form";
43
+ export * from "./ikonShade/input-otp";
44
+ export * from "./ikonShade/toggle-group";
45
+ export * from "./ikonShade/toggle";
46
+
47
+ export { ActionMenu } from "./ikoncomponents/action-menu";
48
+ export type {
49
+ ActionMenuProps,
50
+ ExtraActionParams,
51
+ } from "./ikoncomponents/action-menu/type";
52
+ export { CustomAlertDialog } from "./ikoncomponents/alert-dialog";
53
+ export {
54
+ useDialog,
55
+ DialogProvider,
56
+ } from "./ikoncomponents/alert-dialog/dialog-context";
57
+ export {
58
+ TextButton,
59
+ TextButtonWithTooltip,
60
+ IconTextButton,
61
+ IconTextButtonWithTooltip,
62
+ IconButton,
63
+ IconButtonWithTooltip,
64
+ } from "./ikoncomponents/buttons";
65
+ export type {
66
+ ButtonProps,
67
+ ButtonWithTooltipProps,
68
+ } from "./ikoncomponents/buttons";
69
+ export { ComboboxInput } from "./ikoncomponents/combobox-input";
70
+ export type {
71
+ ComboBoxInputProps,
72
+ ComboboxItemProps,
73
+ } from "./ikoncomponents/combobox-input/type";
74
+ export { DataTableColumnFilter } from "./ikoncomponents/data-table/datatable-column-filter";
75
+ export { DataTableFacetedFilter } from "./ikoncomponents/data-table/datatable-faceted-filter";
76
+ export { DataTableFilterMenu } from "./ikoncomponents/data-table/datatable-filter-menu";
77
+ export {
78
+ convertFileToObject,
79
+ FileUploader,
80
+ getImageFromObject,
81
+ } from "./ikoncomponents/fileUpload";
82
+ export type { FileUploaderProps } from "./ikoncomponents/fileUpload";
83
+ export { DataTablePagination } from "./ikoncomponents/data-table/datatable-pagination";
84
+ export { DataTableToolbar } from "./ikoncomponents/data-table/datatable-toolbar";
85
+ export { getDataTableColumnTitle } from "./ikoncomponents/data-table/function";
86
+ export { DataTable } from "./ikoncomponents/data-table";
87
+ export type {
88
+ DataTableProps,
89
+ DTColumnsProps,
90
+ DTExtraParamsProps,
91
+ DTActionMenuProps,
92
+ DataTableViewOptionsProps,
93
+ DTToolBarProps,
94
+ DataTableFilterProps,
95
+ DataTableFacetedFilterProps,
96
+ DataTablePaginationProps,
97
+ DragDropHeaderProp,
98
+ } from "./ikoncomponents/data-table/type";
99
+ export { EChart } from "./ikoncomponents/e-chart";
100
+ export { FileInput } from "./ikoncomponents/file-input";
101
+ export { GlowingEffect } from "./ikoncomponents/glowing-effect";
102
+ export { Icon } from "./ikoncomponents/icon";
103
+ export { LoadingSpinner } from "./ikoncomponents/loading-spinner";
104
+ export type {
105
+ ISVGProps,
106
+ LoadingSpinnerProps,
107
+ } from "./ikoncomponents/loading-spinner";
108
+ export { MultiCombobox } from "./ikoncomponents/multi-combobox";
109
+ export { NoDataComponent } from "./ikoncomponents/no-data";
110
+ export { PageWrapper } from "./ikoncomponents/page-wrapper";
111
+ export { PasswordStrengthMeter } from "./ikoncomponents/password-strength-meter";
112
+ export { PhoneInput } from "./ikoncomponents/phone-input";
113
+ export { SearchInput } from "./ikoncomponents/search-input";
114
+ export { SheetComponent } from "./ikoncomponents/sheet";
115
+ export { SimpleWidget } from "./ikoncomponents/simple-widget";
116
+ export { CustomTabs } from "./ikoncomponents/tabs";
117
+ export type { TabArray, TabProps } from "./ikoncomponents/tabs/type";
118
+ export { ThemeToggleBtn } from "./ikoncomponents/theme-toggle-btn";
119
+ export { TitleProgress } from "./ikoncomponents/title-progress";
120
+ export { TooltipComponent } from "./ikoncomponents/tooltip";
121
+ export { FrameworkItemDropdown } from "./ikoncomponents/twolevel-dropdown";
122
+ export type {
123
+ FrameworkEntry,
124
+ TreeNode,
125
+ ParentEntry,
126
+ ProcessedFrameworkData,
127
+ } from "./ikoncomponents/twolevel-dropdown";
128
+ export { Widgets } from "./ikoncomponents/widgets";
129
+ export type {
130
+ WidgetProps,
131
+ WidgetsFunctionProps,
132
+ } from "./ikoncomponents/widgets/type";
133
+ export { BigCalendar } from "./ikoncomponents/big-calendar";
134
+ export type {
135
+ BigCalendarProps,
136
+ ExtraParamsEvent,
137
+ BigCalendarEventProps,
138
+ BigCalenderToolbarProps,
139
+ } from "./ikoncomponents/big-calendar/type";
140
+
141
+ export {
142
+ BreadcrumbProvider,
143
+ useBreadcrumb,
144
+ } from "./ikoncomponents/app-breadcrumb/BreadcrumbProvider";
145
+ export type { BreadcrumbItemProps } from "./ikoncomponents/app-breadcrumb/BreadcrumbProvider";
146
+ export {
147
+ AppBreadcrumb,
148
+ RenderAppBreadcrumb,
149
+ } from "./ikoncomponents/app-breadcrumb";
150
+ export { FormComboboxInput } from "./ikoncomponents/form-fields/combobox-input";
151
+ export { FormComboboxInputWithValue } from "./ikoncomponents/form-fields/combobox-input-value";
152
+ export { FormDateInput } from "./ikoncomponents/form-fields/date-input";
153
+ export { FormFileInput } from "./ikoncomponents/form-fields/file-input";
154
+ export { FormInput } from "./ikoncomponents/form-fields/input";
155
+ export { FormMultiComboboxInput } from "./ikoncomponents/form-fields/multi-combobox-input";
156
+ export { FormOtpInput } from "./ikoncomponents/form-fields/otp-input";
157
+ export { FormPhoneInput } from "./ikoncomponents/form-fields/phone-input";
158
+ export { FormTextarea } from "./ikoncomponents/form-fields/textarea";
159
+ export type {
160
+ FormFieldProps,
161
+ FormInputProps,
162
+ FormTextareaProps,
163
+ FormDateInputProps,
164
+ FormComboboxInputProps,
165
+ FormComboboxItemProps,
166
+ } from "./ikoncomponents/form-fields/types";
167
+ export { GradeTableLoader } from "./ikoncomponents/skeleton-loader/skeleton-table";
168
+ export type { GradeTableLoaderProps } from "./ikoncomponents/skeleton-loader/skeleton-table";
169
+ export { SkeletonWidget } from "./ikoncomponents/skeleton-loader/skeleton-widget";
170
+ export { UploadTab } from "./ikoncomponents/upload-tab";
171
+ export { AppSidebar } from "./ikoncomponents/main-layout/app-sidebar";
172
+ export { Footer } from "./ikoncomponents/main-layout/footer";
173
+ export { Header } from "./ikoncomponents/main-layout/header";
174
+ export type {
175
+ Account,
176
+ Software,
177
+ } from "./ikoncomponents/main-layout/main-sidebar";
178
+ export { MainSidebar } from "./ikoncomponents/main-layout/main-sidebar";
179
+ export { NavMain,RenderSidebarNav,AddSidebarNav } from "./ikoncomponents/main-layout/nav-main";
180
+ export type {
181
+ SidebarNavSubItem,
182
+ SidebarNavItem,
183
+ SidebarNavContextType,
184
+ } from "./ikoncomponents/main-layout/SidebarNavContext";
185
+ export {
186
+ SidebarNavProvider,
187
+ useSidebarNav,
188
+ } from "./ikoncomponents/main-layout/SidebarNavContext";
189
+ export { MainLayout } from "./ikoncomponents/main-layout";
190
+ export { ProviderWrapper } from "./ikoncomponents/provider-wrapper";
191
+ export { ActivitySheet } from "./ikoncomponents/activity-sheet";
192
+ export type { ActivityLogProps } from "./ikoncomponents/activity-sheet";
193
+ export {
194
+ ImageCropperProvider,
195
+ useImageCropper,
196
+ } from "./ikoncomponents/image-cropper-upload";
197
+ export type {
198
+ ImageCropperProps,
199
+ OriginalImageProps,
200
+ AspectRatioWiseImagesProps,
201
+ ImageCropperContextProps,
202
+ } from "./ikoncomponents/image-cropper-upload";
203
+ export { ImageCropper } from "./ikoncomponents/image-cropper-upload/image-cropper";
204
+ export type { CropperImgProps } from "./ikoncomponents/image-cropper-upload/image-cropper";
205
+ export { CropperFormWithModal } from "./ikoncomponents/image-cropper-upload/cropper-form-with-modal";
206
+ export { CropperForm } from "./ikoncomponents/image-cropper-upload/cropper-form";
207
+ export { NewCropperImg } from "./ikoncomponents/image-cropper-upload/components/newCropper";
208
+ export type { CropperImgProps as NewCropperImgProps } from "./ikoncomponents/image-cropper-upload/components/newCropper";
209
+ export { NewImageForm } from "./ikoncomponents/image-cropper-upload/components/newImageUploadForm";
210
+ export type { ImageFormProps } from "./ikoncomponents/image-cropper-upload/components/newImageUploadForm";
211
+ export { WorkInProgress } from "./ikoncomponents/work-in-progress";
212
+ export { CustomComboboxInput } from "./ikoncomponents/custom-combo-dropdown"
213
+
214
+ export { ThemeProvider } from "./utils/theme-provider";
215
+ export { RadiusProvider, useRadius } from "./utils/border-radius-provider";
216
+ export { FontProvider, useFont } from "./utils/font-provider";
217
+ export { cn } from "./utils/cn";
218
+ export type { CookieSessionOptionsProps } from "./utils/session/cookieSession";
219
+ export {
220
+ setCookieSession,
221
+ getCookieSession,
222
+ clearCookieSession,
223
+ clearAllCookieSession,
224
+ } from "./utils/session/cookieSession";
225
+ export {
226
+ getValidAccessToken,
227
+ refreshAccessToken,
228
+ decodeAccessToken,
229
+ logOut,
230
+ } from "./utils/token-management";
231
+ export type { TokenResponse } from "./utils/token-management/types";
232
+
233
+ export { useIsMobile } from "./hooks/use-mobile";
234
+ export {useRefresh} from "./ikoncomponents/main-layout/RefreshContext";