ikoncomponents 1.4.8 → 1.5.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 (576) hide show
  1. package/bin.js +2 -0
  2. package/dist/commands/init.js +57 -0
  3. package/dist/index.js +3 -116
  4. package/dist/utlis/copyDir.js +7 -0
  5. package/package.json +18 -92
  6. package/templates/default/hooks/use-mobile.ts +19 -0
  7. package/templates/default/ikonShade/accordion.tsx +66 -0
  8. package/templates/default/ikonShade/alert-dialog.tsx +179 -0
  9. package/templates/default/ikonShade/alert.tsx +66 -0
  10. package/templates/default/ikonShade/aspect-ratio.tsx +11 -0
  11. package/templates/default/ikonShade/avatar.tsx +53 -0
  12. package/templates/default/ikonShade/badge.tsx +49 -0
  13. package/templates/default/ikonShade/breadcrumb.tsx +109 -0
  14. package/templates/default/ikonShade/button.tsx +64 -0
  15. package/templates/default/ikonShade/calendar.tsx +227 -0
  16. package/templates/default/ikonShade/card.tsx +92 -0
  17. package/templates/default/ikonShade/checkbox.tsx +33 -0
  18. package/templates/default/ikonShade/collapsible.tsx +33 -0
  19. package/templates/default/ikonShade/command.tsx +184 -0
  20. package/templates/default/ikonShade/date-input.tsx +259 -0
  21. package/templates/default/ikonShade/date-range-picker.tsx +103 -0
  22. package/templates/default/ikonShade/dialog.tsx +143 -0
  23. package/templates/default/ikonShade/drawer.tsx +134 -0
  24. package/templates/default/ikonShade/dropdown-menu.tsx +259 -0
  25. package/templates/default/ikonShade/form.tsx +166 -0
  26. package/templates/default/ikonShade/hover-card.tsx +44 -0
  27. package/templates/default/ikonShade/input-otp.tsx +71 -0
  28. package/templates/default/ikonShade/input.tsx +22 -0
  29. package/templates/default/ikonShade/label.tsx +24 -0
  30. package/templates/default/ikonShade/navigation-menu.tsx +195 -0
  31. package/templates/default/ikonShade/popover.tsx +48 -0
  32. package/templates/default/ikonShade/progress.tsx +40 -0
  33. package/templates/default/ikonShade/radio-group.tsx +45 -0
  34. package/templates/default/ikonShade/scroll-area.tsx +58 -0
  35. package/templates/default/ikonShade/select.tsx +184 -0
  36. package/templates/default/ikonShade/separator.tsx +28 -0
  37. package/templates/default/ikonShade/sheet.tsx +139 -0
  38. package/templates/default/ikonShade/sidebar.tsx +726 -0
  39. package/templates/default/ikonShade/skeleton.tsx +15 -0
  40. package/templates/default/ikonShade/slider.tsx +64 -0
  41. package/templates/default/ikonShade/sonner.tsx +25 -0
  42. package/templates/default/ikonShade/switch.tsx +31 -0
  43. package/templates/default/ikonShade/table.tsx +116 -0
  44. package/templates/default/ikonShade/tabs.tsx +67 -0
  45. package/templates/default/ikonShade/textarea.tsx +18 -0
  46. package/templates/default/ikonShade/toggle-group.tsx +83 -0
  47. package/templates/default/ikonShade/toggle.tsx +47 -0
  48. package/templates/default/ikonShade/tooltip.tsx +65 -0
  49. package/templates/default/ikonShade/workflow.tsx +119 -0
  50. package/templates/default/ikoncomponents/action-menu/index.tsx +108 -0
  51. package/templates/default/ikoncomponents/action-menu/type.ts +18 -0
  52. package/templates/default/ikoncomponents/activity-sheet/index.tsx +63 -0
  53. package/templates/default/ikoncomponents/alert-dialog/dialog-context.tsx +65 -0
  54. package/templates/default/ikoncomponents/alert-dialog/index.tsx +80 -0
  55. package/templates/default/ikoncomponents/app-breadcrumb/BreadcrumbProvider.tsx +68 -0
  56. package/templates/default/ikoncomponents/app-breadcrumb/index.tsx +222 -0
  57. package/templates/default/ikoncomponents/big-calendar/big-calender-event/index.tsx +38 -0
  58. package/templates/default/ikoncomponents/big-calendar/big-calender-toolbar/index.tsx +81 -0
  59. package/templates/default/ikoncomponents/big-calendar/index.css +879 -0
  60. package/templates/default/ikoncomponents/big-calendar/index.tsx +59 -0
  61. package/templates/default/ikoncomponents/big-calendar/type.ts +37 -0
  62. package/templates/default/ikoncomponents/buttons/index.tsx +127 -0
  63. package/templates/default/ikoncomponents/combobox-input/index.tsx +75 -0
  64. package/templates/default/ikoncomponents/combobox-input/type.ts +14 -0
  65. package/templates/default/ikoncomponents/custom-combo-dropdown/index.tsx +242 -0
  66. package/templates/default/ikoncomponents/data-table/datatable-column-filter/index.tsx +80 -0
  67. package/templates/default/ikoncomponents/data-table/datatable-faceted-filter/index.tsx +149 -0
  68. package/templates/default/ikoncomponents/data-table/datatable-filter-menu/index.tsx +98 -0
  69. package/templates/default/ikoncomponents/data-table/datatable-pagination/index.tsx +119 -0
  70. package/templates/default/ikoncomponents/data-table/datatable-toolbar/index.tsx +45 -0
  71. package/templates/default/ikoncomponents/data-table/function.ts +7 -0
  72. package/templates/default/ikoncomponents/data-table/index.tsx +549 -0
  73. package/templates/default/ikoncomponents/data-table/type.ts +75 -0
  74. package/templates/default/ikoncomponents/e-chart/index.tsx +183 -0
  75. package/templates/default/ikoncomponents/file-input/index.tsx +27 -0
  76. package/templates/default/ikoncomponents/fileUpload/index.tsx +121 -0
  77. package/templates/default/ikoncomponents/form-fields/combobox-input/index.tsx +111 -0
  78. package/templates/default/ikoncomponents/form-fields/combobox-input-value/index.tsx +121 -0
  79. package/templates/default/ikoncomponents/form-fields/date-input/index.tsx +80 -0
  80. package/templates/default/ikoncomponents/form-fields/file-input/index.tsx +9 -0
  81. package/templates/default/ikoncomponents/form-fields/input/index.tsx +27 -0
  82. package/{dist/ikoncomponents/form-fields/multi-combobox-input/index.js → templates/default/ikoncomponents/form-fields/multi-combobox-input/index.tsx} +574 -381
  83. package/templates/default/ikoncomponents/form-fields/otp-input/index.tsx +39 -0
  84. package/templates/default/ikoncomponents/form-fields/password-input/index.tsx +52 -0
  85. package/templates/default/ikoncomponents/form-fields/phone-input/index.tsx +7 -0
  86. package/templates/default/ikoncomponents/form-fields/textarea/index.tsx +28 -0
  87. package/templates/default/ikoncomponents/form-fields/types/index.ts +46 -0
  88. package/templates/default/ikoncomponents/glowing-effect/index.tsx +171 -0
  89. package/templates/default/ikoncomponents/icon/index.tsx +22 -0
  90. package/templates/default/ikoncomponents/image-cropper-upload/components/cropperImg.css +19 -0
  91. package/{dist/ikoncomponents/image-cropper-upload/components/newCropper.js → templates/default/ikoncomponents/image-cropper-upload/components/newCropper.tsx} +117 -85
  92. package/templates/default/ikoncomponents/image-cropper-upload/components/newImageUploadForm.tsx +352 -0
  93. package/templates/default/ikoncomponents/image-cropper-upload/cropper-form/index.tsx +250 -0
  94. package/templates/default/ikoncomponents/image-cropper-upload/cropper-form-with-modal/index.tsx +32 -0
  95. package/{dist/ikoncomponents/image-cropper-upload/image-cropper/index.js → templates/default/ikoncomponents/image-cropper-upload/image-cropper/index.tsx} +119 -87
  96. package/templates/default/ikoncomponents/image-cropper-upload/index.tsx +95 -0
  97. package/templates/default/ikoncomponents/image-cropper-upload/utils/index.ts +117 -0
  98. package/templates/default/ikoncomponents/loading-spinner/index.tsx +43 -0
  99. package/templates/default/ikoncomponents/main-layout/RefreshContext.tsx +30 -0
  100. package/templates/default/ikoncomponents/main-layout/SidebarNavContext.tsx +103 -0
  101. package/templates/default/ikoncomponents/main-layout/app-sidebar.tsx +36 -0
  102. package/templates/default/ikoncomponents/main-layout/footer.tsx +21 -0
  103. package/templates/default/ikoncomponents/main-layout/header.tsx +53 -0
  104. package/templates/default/ikoncomponents/main-layout/index.tsx +43 -0
  105. package/templates/default/ikoncomponents/main-layout/main-sidebar.tsx +389 -0
  106. package/templates/default/ikoncomponents/main-layout/nav-main.tsx +103 -0
  107. package/templates/default/ikoncomponents/multi-combobox/index.tsx +345 -0
  108. package/templates/default/ikoncomponents/no-data/index.tsx +11 -0
  109. package/templates/default/ikoncomponents/page-wrapper/index.tsx +30 -0
  110. package/templates/default/ikoncomponents/password-strength-meter/index.tsx +49 -0
  111. package/templates/default/ikoncomponents/phone-input/index.tsx +72 -0
  112. package/templates/default/ikoncomponents/provider-wrapper/index.tsx +32 -0
  113. package/templates/default/ikoncomponents/search-input/index.tsx +18 -0
  114. package/templates/default/ikoncomponents/sheet/index.tsx +34 -0
  115. package/templates/default/ikoncomponents/simple-widget/index.tsx +54 -0
  116. package/templates/default/ikoncomponents/skeleton-loader/skeleton-table.tsx +34 -0
  117. package/templates/default/ikoncomponents/skeleton-loader/skeleton-widget.tsx +13 -0
  118. package/templates/default/ikoncomponents/tabs/index.tsx +139 -0
  119. package/{dist/ikoncomponents/tabs/type.d.ts → templates/default/ikoncomponents/tabs/type.ts} +20 -20
  120. package/{dist/ikoncomponents/theme-toggle-btn/index.js → templates/default/ikoncomponents/theme-toggle-btn/index.tsx} +189 -118
  121. package/templates/default/ikoncomponents/title-progress/index.tsx +41 -0
  122. package/templates/default/ikoncomponents/tooltip/index.tsx +17 -0
  123. package/templates/default/ikoncomponents/twolevel-dropdown/convertToDropdownNodes.tsx +33 -0
  124. package/templates/default/ikoncomponents/twolevel-dropdown/index.tsx +279 -0
  125. package/templates/default/ikoncomponents/upload-tab/index.tsx +237 -0
  126. package/templates/default/ikoncomponents/widgets/index.tsx +81 -0
  127. package/templates/default/ikoncomponents/widgets/type.ts +11 -0
  128. package/templates/default/ikoncomponents/work-in-progress/index.tsx +16 -0
  129. package/{dist/index.d.ts → templates/default/index.ts} +234 -139
  130. package/templates/default/styles.css +1159 -0
  131. package/templates/default/utils/actions/account/index.ts +33 -0
  132. package/templates/default/utils/actions/account/type.ts +4 -0
  133. package/{dist/utils/actions/auth/index.js → templates/default/utils/actions/auth/index.ts} +69 -58
  134. package/templates/default/utils/actions/common/revalidate.ts +18 -0
  135. package/templates/default/utils/actions/common/type.ts +4 -0
  136. package/{dist/utils/actions/common/utils.js → templates/default/utils/actions/common/utils.ts} +28 -25
  137. package/templates/default/utils/actions/software/index.ts +106 -0
  138. package/templates/default/utils/api/accountService/index.ts +103 -0
  139. package/templates/default/utils/api/accountService/type.ts +4 -0
  140. package/templates/default/utils/api/file-upload/index.ts +103 -0
  141. package/templates/default/utils/api/file-upload/type.ts +8 -0
  142. package/{dist/utils/api/ikonBaseApi.js → templates/default/utils/api/ikonBaseApi.ts} +132 -104
  143. package/templates/default/utils/api/loginService/index.ts +108 -0
  144. package/{dist/utils/api/loginService/type.d.ts → templates/default/utils/api/loginService/type.ts} +35 -32
  145. package/templates/default/utils/api/softwareService/index.ts +356 -0
  146. package/templates/default/utils/api/softwareService/type.ts +62 -0
  147. package/{dist/utils/border-radius-provider.js → templates/default/utils/border-radius-provider.tsx} +59 -35
  148. package/templates/default/utils/cn.ts +6 -0
  149. package/{dist/utils/font-provider.js → templates/default/utils/font-provider.tsx} +61 -37
  150. package/templates/default/utils/session/cookieSession.ts +49 -0
  151. package/templates/default/utils/theme-provider/index.tsx +11 -0
  152. package/templates/default/utils/token-management/index.ts +115 -0
  153. package/templates/default/utils/token-management/types.ts +6 -0
  154. package/dist/hooks/use-mobile.d.ts +0 -2
  155. package/dist/hooks/use-mobile.d.ts.map +0 -1
  156. package/dist/hooks/use-mobile.js +0 -15
  157. package/dist/ikoncomponents/action-menu/index.d.ts +0 -6
  158. package/dist/ikoncomponents/action-menu/index.d.ts.map +0 -1
  159. package/dist/ikoncomponents/action-menu/index.js +0 -42
  160. package/dist/ikoncomponents/action-menu/type.d.ts +0 -15
  161. package/dist/ikoncomponents/action-menu/type.d.ts.map +0 -1
  162. package/dist/ikoncomponents/action-menu/type.js +0 -1
  163. package/dist/ikoncomponents/activity-sheet/index.d.ts +0 -12
  164. package/dist/ikoncomponents/activity-sheet/index.d.ts.map +0 -1
  165. package/dist/ikoncomponents/activity-sheet/index.js +0 -23
  166. package/dist/ikoncomponents/alert-dialog/dialog-context.d.ts +0 -22
  167. package/dist/ikoncomponents/alert-dialog/dialog-context.d.ts.map +0 -1
  168. package/dist/ikoncomponents/alert-dialog/dialog-context.js +0 -30
  169. package/dist/ikoncomponents/alert-dialog/index.d.ts +0 -15
  170. package/dist/ikoncomponents/alert-dialog/index.d.ts.map +0 -1
  171. package/dist/ikoncomponents/alert-dialog/index.js +0 -20
  172. package/dist/ikoncomponents/app-breadcrumb/BreadcrumbProvider.d.ts +0 -19
  173. package/dist/ikoncomponents/app-breadcrumb/BreadcrumbProvider.d.ts.map +0 -1
  174. package/dist/ikoncomponents/app-breadcrumb/BreadcrumbProvider.js +0 -43
  175. package/dist/ikoncomponents/app-breadcrumb/index.d.ts +0 -6
  176. package/dist/ikoncomponents/app-breadcrumb/index.d.ts.map +0 -1
  177. package/dist/ikoncomponents/app-breadcrumb/index.js +0 -57
  178. package/dist/ikoncomponents/big-calendar/big-calender-event/index.d.ts +0 -6
  179. package/dist/ikoncomponents/big-calendar/big-calender-event/index.d.ts.map +0 -1
  180. package/dist/ikoncomponents/big-calendar/big-calender-event/index.js +0 -16
  181. package/dist/ikoncomponents/big-calendar/big-calender-toolbar/index.d.ts +0 -3
  182. package/dist/ikoncomponents/big-calendar/big-calender-toolbar/index.d.ts.map +0 -1
  183. package/dist/ikoncomponents/big-calendar/big-calender-toolbar/index.js +0 -39
  184. package/dist/ikoncomponents/big-calendar/index.d.ts +0 -4
  185. package/dist/ikoncomponents/big-calendar/index.d.ts.map +0 -1
  186. package/dist/ikoncomponents/big-calendar/index.js +0 -35
  187. package/dist/ikoncomponents/big-calendar/type.d.ts +0 -32
  188. package/dist/ikoncomponents/big-calendar/type.d.ts.map +0 -1
  189. package/dist/ikoncomponents/big-calendar/type.js +0 -1
  190. package/dist/ikoncomponents/buttons/index.d.ts +0 -19
  191. package/dist/ikoncomponents/buttons/index.d.ts.map +0 -1
  192. package/dist/ikoncomponents/buttons/index.js +0 -38
  193. package/dist/ikoncomponents/combobox-input/index.d.ts +0 -3
  194. package/dist/ikoncomponents/combobox-input/index.d.ts.map +0 -1
  195. package/dist/ikoncomponents/combobox-input/index.js +0 -18
  196. package/dist/ikoncomponents/combobox-input/type.d.ts +0 -14
  197. package/dist/ikoncomponents/combobox-input/type.d.ts.map +0 -1
  198. package/dist/ikoncomponents/combobox-input/type.js +0 -1
  199. package/dist/ikoncomponents/custom-combo-dropdown/index.d.ts +0 -22
  200. package/dist/ikoncomponents/custom-combo-dropdown/index.d.ts.map +0 -1
  201. package/dist/ikoncomponents/custom-combo-dropdown/index.js +0 -85
  202. package/dist/ikoncomponents/data-table/datatable-column-filter/index.d.ts +0 -3
  203. package/dist/ikoncomponents/data-table/datatable-column-filter/index.d.ts.map +0 -1
  204. package/dist/ikoncomponents/data-table/datatable-column-filter/index.js +0 -22
  205. package/dist/ikoncomponents/data-table/datatable-faceted-filter/index.d.ts +0 -3
  206. package/dist/ikoncomponents/data-table/datatable-faceted-filter/index.d.ts.map +0 -1
  207. package/dist/ikoncomponents/data-table/datatable-faceted-filter/index.js +0 -35
  208. package/dist/ikoncomponents/data-table/datatable-filter-menu/index.d.ts +0 -3
  209. package/dist/ikoncomponents/data-table/datatable-filter-menu/index.d.ts.map +0 -1
  210. package/dist/ikoncomponents/data-table/datatable-filter-menu/index.js +0 -38
  211. package/dist/ikoncomponents/data-table/datatable-pagination/index.d.ts +0 -3
  212. package/dist/ikoncomponents/data-table/datatable-pagination/index.d.ts.map +0 -1
  213. package/dist/ikoncomponents/data-table/datatable-pagination/index.js +0 -13
  214. package/dist/ikoncomponents/data-table/datatable-toolbar/index.d.ts +0 -3
  215. package/dist/ikoncomponents/data-table/datatable-toolbar/index.d.ts.map +0 -1
  216. package/dist/ikoncomponents/data-table/datatable-toolbar/index.js +0 -18
  217. package/dist/ikoncomponents/data-table/function.d.ts +0 -2
  218. package/dist/ikoncomponents/data-table/function.d.ts.map +0 -1
  219. package/dist/ikoncomponents/data-table/function.js +0 -6
  220. package/dist/ikoncomponents/data-table/index.d.ts +0 -3
  221. package/dist/ikoncomponents/data-table/index.d.ts.map +0 -1
  222. package/dist/ikoncomponents/data-table/index.js +0 -223
  223. package/dist/ikoncomponents/data-table/type.d.ts +0 -61
  224. package/dist/ikoncomponents/data-table/type.d.ts.map +0 -1
  225. package/dist/ikoncomponents/data-table/type.js +0 -1
  226. package/dist/ikoncomponents/e-chart/index.d.ts +0 -16
  227. package/dist/ikoncomponents/e-chart/index.d.ts.map +0 -1
  228. package/dist/ikoncomponents/e-chart/index.js +0 -115
  229. package/dist/ikoncomponents/file-input/index.d.ts +0 -2
  230. package/dist/ikoncomponents/file-input/index.d.ts.map +0 -1
  231. package/dist/ikoncomponents/file-input/index.js +0 -21
  232. package/dist/ikoncomponents/fileUpload/index.d.ts +0 -16
  233. package/dist/ikoncomponents/fileUpload/index.d.ts.map +0 -1
  234. package/dist/ikoncomponents/fileUpload/index.js +0 -69
  235. package/dist/ikoncomponents/form-fields/combobox-input/index.d.ts +0 -3
  236. package/dist/ikoncomponents/form-fields/combobox-input/index.d.ts.map +0 -1
  237. package/dist/ikoncomponents/form-fields/combobox-input/index.js +0 -21
  238. package/dist/ikoncomponents/form-fields/combobox-input-value/index.d.ts +0 -19
  239. package/dist/ikoncomponents/form-fields/combobox-input-value/index.d.ts.map +0 -1
  240. package/dist/ikoncomponents/form-fields/combobox-input-value/index.js +0 -26
  241. package/dist/ikoncomponents/form-fields/date-input/index.d.ts +0 -3
  242. package/dist/ikoncomponents/form-fields/date-input/index.d.ts.map +0 -1
  243. package/dist/ikoncomponents/form-fields/date-input/index.js +0 -15
  244. package/dist/ikoncomponents/form-fields/file-input/index.d.ts +0 -2
  245. package/dist/ikoncomponents/form-fields/file-input/index.d.ts.map +0 -1
  246. package/dist/ikoncomponents/form-fields/file-input/index.js +0 -4
  247. package/dist/ikoncomponents/form-fields/input/index.d.ts +0 -3
  248. package/dist/ikoncomponents/form-fields/input/index.d.ts.map +0 -1
  249. package/dist/ikoncomponents/form-fields/input/index.js +0 -18
  250. package/dist/ikoncomponents/form-fields/multi-combobox-input/index.d.ts +0 -7
  251. package/dist/ikoncomponents/form-fields/multi-combobox-input/index.d.ts.map +0 -1
  252. package/dist/ikoncomponents/form-fields/otp-input/index.d.ts +0 -3
  253. package/dist/ikoncomponents/form-fields/otp-input/index.d.ts.map +0 -1
  254. package/dist/ikoncomponents/form-fields/otp-input/index.js +0 -18
  255. package/dist/ikoncomponents/form-fields/password-input/index.d.ts +0 -3
  256. package/dist/ikoncomponents/form-fields/password-input/index.d.ts.map +0 -1
  257. package/dist/ikoncomponents/form-fields/password-input/index.js +0 -23
  258. package/dist/ikoncomponents/form-fields/phone-input/index.d.ts +0 -2
  259. package/dist/ikoncomponents/form-fields/phone-input/index.d.ts.map +0 -1
  260. package/dist/ikoncomponents/form-fields/phone-input/index.js +0 -4
  261. package/dist/ikoncomponents/form-fields/textarea/index.d.ts +0 -3
  262. package/dist/ikoncomponents/form-fields/textarea/index.d.ts.map +0 -1
  263. package/dist/ikoncomponents/form-fields/textarea/index.js +0 -18
  264. package/dist/ikoncomponents/form-fields/types/index.d.ts +0 -37
  265. package/dist/ikoncomponents/form-fields/types/index.d.ts.map +0 -1
  266. package/dist/ikoncomponents/form-fields/types/index.js +0 -1
  267. package/dist/ikoncomponents/glowing-effect/index.d.ts +0 -15
  268. package/dist/ikoncomponents/glowing-effect/index.d.ts.map +0 -1
  269. package/dist/ikoncomponents/glowing-effect/index.js +0 -84
  270. package/dist/ikoncomponents/icon/index.d.ts +0 -9
  271. package/dist/ikoncomponents/icon/index.d.ts.map +0 -1
  272. package/dist/ikoncomponents/icon/index.js +0 -23
  273. package/dist/ikoncomponents/image-cropper-upload/components/newCropper.d.ts +0 -16
  274. package/dist/ikoncomponents/image-cropper-upload/components/newCropper.d.ts.map +0 -1
  275. package/dist/ikoncomponents/image-cropper-upload/components/newImageUploadForm.d.ts +0 -8
  276. package/dist/ikoncomponents/image-cropper-upload/components/newImageUploadForm.d.ts.map +0 -1
  277. package/dist/ikoncomponents/image-cropper-upload/components/newImageUploadForm.js +0 -145
  278. package/dist/ikoncomponents/image-cropper-upload/cropper-form/index.d.ts +0 -7
  279. package/dist/ikoncomponents/image-cropper-upload/cropper-form/index.d.ts.map +0 -1
  280. package/dist/ikoncomponents/image-cropper-upload/cropper-form/index.js +0 -92
  281. package/dist/ikoncomponents/image-cropper-upload/cropper-form-with-modal/index.d.ts +0 -7
  282. package/dist/ikoncomponents/image-cropper-upload/cropper-form-with-modal/index.d.ts.map +0 -1
  283. package/dist/ikoncomponents/image-cropper-upload/cropper-form-with-modal/index.js +0 -14
  284. package/dist/ikoncomponents/image-cropper-upload/image-cropper/index.d.ts +0 -15
  285. package/dist/ikoncomponents/image-cropper-upload/image-cropper/index.d.ts.map +0 -1
  286. package/dist/ikoncomponents/image-cropper-upload/index.d.ts +0 -28
  287. package/dist/ikoncomponents/image-cropper-upload/index.d.ts.map +0 -1
  288. package/dist/ikoncomponents/image-cropper-upload/index.js +0 -49
  289. package/dist/ikoncomponents/image-cropper-upload/utils/index.d.ts +0 -17
  290. package/dist/ikoncomponents/image-cropper-upload/utils/index.d.ts.map +0 -1
  291. package/dist/ikoncomponents/image-cropper-upload/utils/index.js +0 -73
  292. package/dist/ikoncomponents/loading-spinner/index.d.ts +0 -10
  293. package/dist/ikoncomponents/loading-spinner/index.d.ts.map +0 -1
  294. package/dist/ikoncomponents/loading-spinner/index.js +0 -19
  295. package/dist/ikoncomponents/main-layout/RefreshContext.d.ts +0 -11
  296. package/dist/ikoncomponents/main-layout/RefreshContext.d.ts.map +0 -1
  297. package/dist/ikoncomponents/main-layout/RefreshContext.js +0 -17
  298. package/dist/ikoncomponents/main-layout/SidebarNavContext.d.ts +0 -34
  299. package/dist/ikoncomponents/main-layout/SidebarNavContext.d.ts.map +0 -1
  300. package/dist/ikoncomponents/main-layout/SidebarNavContext.js +0 -52
  301. package/dist/ikoncomponents/main-layout/app-sidebar.d.ts +0 -4
  302. package/dist/ikoncomponents/main-layout/app-sidebar.d.ts.map +0 -1
  303. package/dist/ikoncomponents/main-layout/app-sidebar.js +0 -24
  304. package/dist/ikoncomponents/main-layout/footer.d.ts +0 -2
  305. package/dist/ikoncomponents/main-layout/footer.d.ts.map +0 -1
  306. package/dist/ikoncomponents/main-layout/footer.js +0 -5
  307. package/dist/ikoncomponents/main-layout/header.d.ts +0 -4
  308. package/dist/ikoncomponents/main-layout/header.d.ts.map +0 -1
  309. package/dist/ikoncomponents/main-layout/header.js +0 -15
  310. package/dist/ikoncomponents/main-layout/index.d.ts +0 -7
  311. package/dist/ikoncomponents/main-layout/index.d.ts.map +0 -1
  312. package/dist/ikoncomponents/main-layout/index.js +0 -12
  313. package/dist/ikoncomponents/main-layout/main-sidebar.d.ts +0 -61
  314. package/dist/ikoncomponents/main-layout/main-sidebar.d.ts.map +0 -1
  315. package/dist/ikoncomponents/main-layout/main-sidebar.js +0 -119
  316. package/dist/ikoncomponents/main-layout/nav-main.d.ts +0 -12
  317. package/dist/ikoncomponents/main-layout/nav-main.d.ts.map +0 -1
  318. package/dist/ikoncomponents/main-layout/nav-main.js +0 -33
  319. package/dist/ikoncomponents/multi-combobox/index.d.ts +0 -14
  320. package/dist/ikoncomponents/multi-combobox/index.d.ts.map +0 -1
  321. package/dist/ikoncomponents/multi-combobox/index.js +0 -202
  322. package/dist/ikoncomponents/no-data/index.d.ts +0 -4
  323. package/dist/ikoncomponents/no-data/index.d.ts.map +0 -1
  324. package/dist/ikoncomponents/no-data/index.js +0 -5
  325. package/dist/ikoncomponents/page-wrapper/index.d.ts +0 -10
  326. package/dist/ikoncomponents/page-wrapper/index.d.ts.map +0 -1
  327. package/dist/ikoncomponents/page-wrapper/index.js +0 -7
  328. package/dist/ikoncomponents/password-strength-meter/index.d.ts +0 -4
  329. package/dist/ikoncomponents/password-strength-meter/index.d.ts.map +0 -1
  330. package/dist/ikoncomponents/password-strength-meter/index.js +0 -40
  331. package/dist/ikoncomponents/phone-input/index.d.ts +0 -2
  332. package/dist/ikoncomponents/phone-input/index.d.ts.map +0 -1
  333. package/dist/ikoncomponents/phone-input/index.js +0 -41
  334. package/dist/ikoncomponents/provider-wrapper/index.d.ts +0 -7
  335. package/dist/ikoncomponents/provider-wrapper/index.d.ts.map +0 -1
  336. package/dist/ikoncomponents/provider-wrapper/index.js +0 -10
  337. package/dist/ikoncomponents/search-input/index.d.ts +0 -2
  338. package/dist/ikoncomponents/search-input/index.d.ts.map +0 -1
  339. package/dist/ikoncomponents/search-input/index.js +0 -19
  340. package/dist/ikoncomponents/sheet/index.d.ts +0 -11
  341. package/dist/ikoncomponents/sheet/index.d.ts.map +0 -1
  342. package/dist/ikoncomponents/sheet/index.js +0 -6
  343. package/dist/ikoncomponents/simple-widget/index.d.ts +0 -15
  344. package/dist/ikoncomponents/simple-widget/index.d.ts.map +0 -1
  345. package/dist/ikoncomponents/simple-widget/index.js +0 -14
  346. package/dist/ikoncomponents/skeleton-loader/skeleton-table.d.ts +0 -6
  347. package/dist/ikoncomponents/skeleton-loader/skeleton-table.d.ts.map +0 -1
  348. package/dist/ikoncomponents/skeleton-loader/skeleton-table.js +0 -6
  349. package/dist/ikoncomponents/skeleton-loader/skeleton-widget.d.ts +0 -4
  350. package/dist/ikoncomponents/skeleton-loader/skeleton-widget.d.ts.map +0 -1
  351. package/dist/ikoncomponents/skeleton-loader/skeleton-widget.js +0 -5
  352. package/dist/ikoncomponents/tabs/index.d.ts +0 -3
  353. package/dist/ikoncomponents/tabs/index.d.ts.map +0 -1
  354. package/dist/ikoncomponents/tabs/index.js +0 -50
  355. package/dist/ikoncomponents/tabs/type.d.ts.map +0 -1
  356. package/dist/ikoncomponents/tabs/type.js +0 -2
  357. package/dist/ikoncomponents/theme-toggle-btn/index.d.ts +0 -2
  358. package/dist/ikoncomponents/theme-toggle-btn/index.d.ts.map +0 -1
  359. package/dist/ikoncomponents/title-progress/index.d.ts +0 -13
  360. package/dist/ikoncomponents/title-progress/index.d.ts.map +0 -1
  361. package/dist/ikoncomponents/title-progress/index.js +0 -10
  362. package/dist/ikoncomponents/tooltip/index.d.ts +0 -6
  363. package/dist/ikoncomponents/tooltip/index.d.ts.map +0 -1
  364. package/dist/ikoncomponents/tooltip/index.js +0 -5
  365. package/dist/ikoncomponents/twolevel-dropdown/convertToDropdownNodes.d.ts +0 -10
  366. package/dist/ikoncomponents/twolevel-dropdown/convertToDropdownNodes.d.ts.map +0 -1
  367. package/dist/ikoncomponents/twolevel-dropdown/convertToDropdownNodes.js +0 -24
  368. package/dist/ikoncomponents/twolevel-dropdown/index.d.ts +0 -32
  369. package/dist/ikoncomponents/twolevel-dropdown/index.d.ts.map +0 -1
  370. package/dist/ikoncomponents/twolevel-dropdown/index.js +0 -143
  371. package/dist/ikoncomponents/upload-tab/index.d.ts +0 -2
  372. package/dist/ikoncomponents/upload-tab/index.d.ts.map +0 -1
  373. package/dist/ikoncomponents/upload-tab/index.js +0 -92
  374. package/dist/ikoncomponents/widgets/index.d.ts +0 -3
  375. package/dist/ikoncomponents/widgets/index.d.ts.map +0 -1
  376. package/dist/ikoncomponents/widgets/index.js +0 -14
  377. package/dist/ikoncomponents/widgets/type.d.ts +0 -11
  378. package/dist/ikoncomponents/widgets/type.d.ts.map +0 -1
  379. package/dist/ikoncomponents/widgets/type.js +0 -2
  380. package/dist/ikoncomponents/work-in-progress/index.d.ts +0 -2
  381. package/dist/ikoncomponents/work-in-progress/index.d.ts.map +0 -1
  382. package/dist/ikoncomponents/work-in-progress/index.js +0 -4
  383. package/dist/index.d.ts.map +0 -1
  384. package/dist/shadcn/accordion.d.ts +0 -8
  385. package/dist/shadcn/accordion.d.ts.map +0 -1
  386. package/dist/shadcn/accordion.js +0 -33
  387. package/dist/shadcn/alert-dialog.d.ts +0 -21
  388. package/dist/shadcn/alert-dialog.d.ts.map +0 -1
  389. package/dist/shadcn/alert-dialog.js +0 -83
  390. package/dist/shadcn/alert.d.ts +0 -10
  391. package/dist/shadcn/alert.d.ts.map +0 -1
  392. package/dist/shadcn/alert.js +0 -38
  393. package/dist/shadcn/aspect-ratio.d.ts +0 -4
  394. package/dist/shadcn/aspect-ratio.d.ts.map +0 -1
  395. package/dist/shadcn/aspect-ratio.js +0 -19
  396. package/dist/shadcn/avatar.d.ts +0 -7
  397. package/dist/shadcn/avatar.d.ts.map +0 -1
  398. package/dist/shadcn/avatar.js +0 -28
  399. package/dist/shadcn/badge.d.ts +0 -10
  400. package/dist/shadcn/badge.d.ts.map +0 -1
  401. package/dist/shadcn/badge.js +0 -35
  402. package/dist/shadcn/breadcrumb.d.ts +0 -12
  403. package/dist/shadcn/breadcrumb.d.ts.map +0 -1
  404. package/dist/shadcn/breadcrumb.js +0 -45
  405. package/dist/shadcn/button.d.ts +0 -11
  406. package/dist/shadcn/button.d.ts.map +0 -1
  407. package/dist/shadcn/button.js +0 -47
  408. package/dist/shadcn/calendar.d.ts +0 -9
  409. package/dist/shadcn/calendar.d.ts.map +0 -1
  410. package/dist/shadcn/calendar.js +0 -61
  411. package/dist/shadcn/card.d.ts +0 -10
  412. package/dist/shadcn/card.d.ts.map +0 -1
  413. package/dist/shadcn/card.js +0 -42
  414. package/dist/shadcn/checkbox.d.ts +0 -5
  415. package/dist/shadcn/checkbox.d.ts.map +0 -1
  416. package/dist/shadcn/checkbox.js +0 -21
  417. package/dist/shadcn/collapsible.d.ts +0 -6
  418. package/dist/shadcn/collapsible.d.ts.map +0 -1
  419. package/dist/shadcn/collapsible.js +0 -27
  420. package/dist/shadcn/command.d.ts +0 -19
  421. package/dist/shadcn/command.d.ts.map +0 -1
  422. package/dist/shadcn/command.js +0 -54
  423. package/dist/shadcn/date-input.d.ts +0 -8
  424. package/dist/shadcn/date-input.d.ts.map +0 -1
  425. package/dist/shadcn/date-input.js +0 -179
  426. package/dist/shadcn/date-range-picker.d.ts +0 -25
  427. package/dist/shadcn/date-range-picker.d.ts.map +0 -1
  428. package/dist/shadcn/date-range-picker.js +0 -45
  429. package/dist/shadcn/dialog.d.ts +0 -16
  430. package/dist/shadcn/dialog.d.ts.map +0 -1
  431. package/dist/shadcn/dialog.js +0 -57
  432. package/dist/shadcn/drawer.d.ts +0 -14
  433. package/dist/shadcn/drawer.d.ts.map +0 -1
  434. package/dist/shadcn/drawer.js +0 -56
  435. package/dist/shadcn/dropdown-menu.d.ts +0 -26
  436. package/dist/shadcn/dropdown-menu.d.ts.map +0 -1
  437. package/dist/shadcn/dropdown-menu.js +0 -77
  438. package/dist/shadcn/form.d.ts +0 -25
  439. package/dist/shadcn/form.d.ts.map +0 -1
  440. package/dist/shadcn/form.js +0 -70
  441. package/dist/shadcn/hover-card.d.ts +0 -7
  442. package/dist/shadcn/hover-card.d.ts.map +0 -1
  443. package/dist/shadcn/hover-card.js +0 -28
  444. package/dist/shadcn/input-otp.d.ts +0 -35
  445. package/dist/shadcn/input-otp.d.ts.map +0 -1
  446. package/dist/shadcn/input-otp.js +0 -40
  447. package/dist/shadcn/input.d.ts +0 -4
  448. package/dist/shadcn/input.d.ts.map +0 -1
  449. package/dist/shadcn/input.js +0 -18
  450. package/dist/shadcn/label.d.ts +0 -5
  451. package/dist/shadcn/label.d.ts.map +0 -1
  452. package/dist/shadcn/label.js +0 -20
  453. package/dist/shadcn/navigation-menu.d.ts +0 -17
  454. package/dist/shadcn/navigation-menu.d.ts.map +0 -1
  455. package/dist/shadcn/navigation-menu.js +0 -74
  456. package/dist/shadcn/popover.d.ts +0 -8
  457. package/dist/shadcn/popover.d.ts.map +0 -1
  458. package/dist/shadcn/popover.js +0 -32
  459. package/dist/shadcn/progress.d.ts +0 -9
  460. package/dist/shadcn/progress.d.ts.map +0 -1
  461. package/dist/shadcn/progress.js +0 -23
  462. package/dist/shadcn/radio-group.d.ts +0 -6
  463. package/dist/shadcn/radio-group.d.ts.map +0 -1
  464. package/dist/shadcn/radio-group.js +0 -25
  465. package/dist/shadcn/scroll-area.d.ts +0 -6
  466. package/dist/shadcn/scroll-area.d.ts.map +0 -1
  467. package/dist/shadcn/scroll-area.js +0 -26
  468. package/dist/shadcn/select.d.ts +0 -16
  469. package/dist/shadcn/select.d.ts.map +0 -1
  470. package/dist/shadcn/select.js +0 -59
  471. package/dist/shadcn/separator.d.ts +0 -5
  472. package/dist/shadcn/separator.d.ts.map +0 -1
  473. package/dist/shadcn/separator.js +0 -20
  474. package/dist/shadcn/sheet.d.ts +0 -14
  475. package/dist/shadcn/sheet.d.ts.map +0 -1
  476. package/dist/shadcn/sheet.js +0 -61
  477. package/dist/shadcn/sidebar.d.ts +0 -70
  478. package/dist/shadcn/sidebar.d.ts.map +0 -1
  479. package/dist/shadcn/sidebar.js +0 -242
  480. package/dist/shadcn/skeleton.d.ts +0 -4
  481. package/dist/shadcn/skeleton.d.ts.map +0 -1
  482. package/dist/shadcn/skeleton.js +0 -18
  483. package/dist/shadcn/slider.d.ts +0 -5
  484. package/dist/shadcn/slider.d.ts.map +0 -1
  485. package/dist/shadcn/slider.js +0 -26
  486. package/dist/shadcn/sonner.d.ts +0 -4
  487. package/dist/shadcn/sonner.d.ts.map +0 -1
  488. package/dist/shadcn/sonner.js +0 -25
  489. package/dist/shadcn/switch.d.ts +0 -5
  490. package/dist/shadcn/switch.d.ts.map +0 -1
  491. package/dist/shadcn/switch.js +0 -20
  492. package/dist/shadcn/table.d.ts +0 -11
  493. package/dist/shadcn/table.d.ts.map +0 -1
  494. package/dist/shadcn/table.js +0 -47
  495. package/dist/shadcn/tabs.d.ts +0 -8
  496. package/dist/shadcn/tabs.d.ts.map +0 -1
  497. package/dist/shadcn/tabs.js +0 -32
  498. package/dist/shadcn/textarea.d.ts +0 -4
  499. package/dist/shadcn/textarea.d.ts.map +0 -1
  500. package/dist/shadcn/textarea.js +0 -18
  501. package/dist/shadcn/toggle-group.d.ts +0 -10
  502. package/dist/shadcn/toggle-group.d.ts.map +0 -1
  503. package/dist/shadcn/toggle-group.js +0 -35
  504. package/dist/shadcn/toggle.d.ts +0 -10
  505. package/dist/shadcn/toggle.d.ts.map +0 -1
  506. package/dist/shadcn/toggle.js +0 -38
  507. package/dist/shadcn/tooltip.d.ts +0 -8
  508. package/dist/shadcn/tooltip.d.ts.map +0 -1
  509. package/dist/shadcn/tooltip.js +0 -32
  510. package/dist/shadcn/workflow.d.ts +0 -21
  511. package/dist/shadcn/workflow.d.ts.map +0 -1
  512. package/dist/shadcn/workflow.js +0 -20
  513. package/dist/styles.css +0 -1302
  514. package/dist/utils/actions/account/index.d.ts +0 -6
  515. package/dist/utils/actions/account/index.d.ts.map +0 -1
  516. package/dist/utils/actions/account/index.js +0 -28
  517. package/dist/utils/actions/account/type.d.ts +0 -5
  518. package/dist/utils/actions/account/type.d.ts.map +0 -1
  519. package/dist/utils/actions/account/type.js +0 -1
  520. package/dist/utils/actions/auth/index.d.ts +0 -8
  521. package/dist/utils/actions/auth/index.d.ts.map +0 -1
  522. package/dist/utils/actions/common/revalidate.d.ts +0 -3
  523. package/dist/utils/actions/common/revalidate.d.ts.map +0 -1
  524. package/dist/utils/actions/common/revalidate.js +0 -14
  525. package/dist/utils/actions/common/type.d.ts +0 -5
  526. package/dist/utils/actions/common/type.d.ts.map +0 -1
  527. package/dist/utils/actions/common/type.js +0 -1
  528. package/dist/utils/actions/common/utils.d.ts +0 -6
  529. package/dist/utils/actions/common/utils.d.ts.map +0 -1
  530. package/dist/utils/actions/software/index.d.ts +0 -12
  531. package/dist/utils/actions/software/index.d.ts.map +0 -1
  532. package/dist/utils/actions/software/index.js +0 -75
  533. package/dist/utils/api/accountService/index.d.ts +0 -24
  534. package/dist/utils/api/accountService/index.d.ts.map +0 -1
  535. package/dist/utils/api/accountService/index.js +0 -64
  536. package/dist/utils/api/accountService/type.d.ts +0 -5
  537. package/dist/utils/api/accountService/type.d.ts.map +0 -1
  538. package/dist/utils/api/accountService/type.js +0 -1
  539. package/dist/utils/api/file-upload/index.d.ts +0 -6
  540. package/dist/utils/api/file-upload/index.d.ts.map +0 -1
  541. package/dist/utils/api/file-upload/index.js +0 -80
  542. package/dist/utils/api/file-upload/type.d.ts +0 -7
  543. package/dist/utils/api/file-upload/type.d.ts.map +0 -1
  544. package/dist/utils/api/file-upload/type.js +0 -1
  545. package/dist/utils/api/ikonBaseApi.d.ts +0 -13
  546. package/dist/utils/api/ikonBaseApi.d.ts.map +0 -1
  547. package/dist/utils/api/loginService/index.d.ts +0 -13
  548. package/dist/utils/api/loginService/index.d.ts.map +0 -1
  549. package/dist/utils/api/loginService/index.js +0 -72
  550. package/dist/utils/api/loginService/type.d.ts.map +0 -1
  551. package/dist/utils/api/loginService/type.js +0 -1
  552. package/dist/utils/api/softwareService/index.d.ts +0 -65
  553. package/dist/utils/api/softwareService/index.d.ts.map +0 -1
  554. package/dist/utils/api/softwareService/index.js +0 -212
  555. package/dist/utils/api/softwareService/type.d.ts +0 -55
  556. package/dist/utils/api/softwareService/type.d.ts.map +0 -1
  557. package/dist/utils/api/softwareService/type.js +0 -1
  558. package/dist/utils/border-radius-provider.d.ts +0 -12
  559. package/dist/utils/border-radius-provider.d.ts.map +0 -1
  560. package/dist/utils/cn.d.ts +0 -3
  561. package/dist/utils/cn.d.ts.map +0 -1
  562. package/dist/utils/cn.js +0 -5
  563. package/dist/utils/font-provider.d.ts +0 -12
  564. package/dist/utils/font-provider.d.ts.map +0 -1
  565. package/dist/utils/session/cookieSession.d.ts +0 -9
  566. package/dist/utils/session/cookieSession.d.ts.map +0 -1
  567. package/dist/utils/session/cookieSession.js +0 -33
  568. package/dist/utils/theme-provider/index.d.ts +0 -4
  569. package/dist/utils/theme-provider/index.d.ts.map +0 -1
  570. package/dist/utils/theme-provider/index.js +0 -18
  571. package/dist/utils/token-management/index.d.ts +0 -11
  572. package/dist/utils/token-management/index.d.ts.map +0 -1
  573. package/dist/utils/token-management/index.js +0 -69
  574. package/dist/utils/token-management/types.d.ts +0 -7
  575. package/dist/utils/token-management/types.d.ts.map +0 -1
  576. package/dist/utils/token-management/types.js +0 -1
package/dist/styles.css DELETED
@@ -1,1302 +0,0 @@
1
-
2
-
3
-
4
- * {
5
- border-color: hsl(var(--border));
6
- outline-color: hsl(var(--ring) / 0.5);
7
- }
8
-
9
-
10
-
11
- body {
12
- background-color: hsl(var(--background));
13
- color: hsl(var(--foreground));
14
-
15
- }
16
-
17
-
18
-
19
- .rbc-btn-group {
20
- font-size: 14px;
21
- }
22
-
23
-
24
-
25
- .custom-buttons {
26
- font-size: 14px;
27
- }
28
-
29
-
30
-
31
- .rbc-date-cell.rbc-now,
32
- .rbc-time-slot.rbc-now,
33
- .rbc-show-more,
34
- .rbc-header {
35
- font-weight: normal !important;
36
- }
37
-
38
-
39
-
40
- .rbc-btn {
41
- color: inherit;
42
- font: inherit;
43
- margin: 0;
44
- }
45
-
46
-
47
-
48
- button.rbc-btn {
49
- overflow: visible;
50
- text-transform: none;
51
- -webkit-appearance: button;
52
- -moz-appearance: button;
53
- appearance: button;
54
- cursor: pointer;
55
- }
56
-
57
-
58
-
59
- button[disabled].rbc-btn {
60
- cursor: not-allowed;
61
- }
62
-
63
-
64
-
65
- button.rbc-input::-moz-focus-inner {
66
- border: 0;
67
- padding: 0;
68
- }
69
-
70
-
71
-
72
- .rbc-calendar {
73
- box-sizing: border-box;
74
- height: 100%;
75
- display: flex;
76
- font-size: 15px;
77
- flex-direction: column;
78
- align-items: stretch;
79
- }
80
-
81
-
82
-
83
- .rbc-m-b-negative-3 {
84
- margin-bottom: -3px;
85
- }
86
-
87
-
88
-
89
- .rbc-h-full {
90
- height: 100%;
91
- }
92
-
93
-
94
-
95
- .rbc-calendar *,
96
- .rbc-calendar *:before,
97
- .rbc-calendar *:after {
98
- box-sizing: inherit;
99
- }
100
-
101
-
102
-
103
- .rbc-abs-full,
104
- .rbc-row-bg {
105
- overflow: hidden;
106
- position: absolute;
107
- top: 0;
108
- left: 0;
109
- right: 0;
110
- bottom: 0;
111
- }
112
-
113
-
114
-
115
- .rbc-ellipsis,
116
- .rbc-show-more,
117
- .rbc-row-segment .rbc-event-content,
118
- .rbc-event-label {
119
- display: block;
120
- overflow: hidden;
121
- text-overflow: ellipsis;
122
- white-space: nowrap;
123
- }
124
-
125
-
126
-
127
- .rbc-rtl {
128
- direction: rtl;
129
- }
130
-
131
-
132
-
133
- .rbc-off-range {
134
- color: var(--foreground) !important;
135
- }
136
-
137
-
138
-
139
- .rbc-off-range-bg {
140
- background: var(--foreground) !important;
141
- opacity: 0.1 !important;
142
- }
143
-
144
-
145
-
146
- .rbc-header {
147
- overflow: hidden;
148
- flex: 1 0 0%;
149
- text-overflow: ellipsis;
150
- white-space: nowrap;
151
- padding: 0 3px;
152
- text-align: center;
153
- vertical-align: middle;
154
- font-weight: bold;
155
- font-size: 90%;
156
- min-height: 0;
157
- border-bottom: 1px solid hsl(var(--border));
158
- }
159
-
160
-
161
-
162
- .rbc-header+.rbc-header {
163
- border-left: 1px solid hsl(var(--border));
164
- }
165
-
166
-
167
-
168
- .rbc-rtl .rbc-header+.rbc-header {
169
- border-left-width: 0;
170
- border-right: 1px solid hsl(var(--border));
171
- }
172
-
173
-
174
-
175
- .rbc-header>a,
176
- .rbc-header>a:active,
177
- .rbc-header>a:visited {
178
- color: inherit;
179
- text-decoration: none;
180
- }
181
-
182
-
183
-
184
- .rbc-button-link {
185
- color: inherit;
186
- background: none;
187
- margin: 0;
188
- padding: 0;
189
- border: none;
190
- cursor: pointer;
191
- -webkit-user-select: text;
192
- -moz-user-select: text;
193
- user-select: text;
194
- }
195
-
196
-
197
-
198
- .rbc-row-content {
199
- position: relative;
200
- -moz-user-select: none;
201
- user-select: none;
202
- -webkit-user-select: none;
203
- z-index: 4;
204
- }
205
-
206
-
207
-
208
- .rbc-row-content-scrollable {
209
- display: flex;
210
- flex-direction: column;
211
- height: 100%;
212
- }
213
-
214
-
215
-
216
- .rbc-row-content-scrollable .rbc-row-content-scroll-container {
217
- height: 100%;
218
- overflow-y: scroll;
219
- /* IE and Edge */
220
- /* Firefox */
221
- -ms-overflow-style: none;
222
- /* IE and Edge */
223
- scrollbar-width: none;
224
- /* Firefox */
225
- /* Hide scrollbar for Chrome, Safari and Opera */
226
- }
227
-
228
-
229
-
230
- .rbc-row-content-scrollable .rbc-row-content-scroll-container::-webkit-scrollbar {
231
- display: none;
232
- }
233
-
234
-
235
-
236
- .rbc-today {
237
- background-color: oklch(100% 0.00011 271.152 / 0) !important;
238
- border: 3px solid var(--foreground) !important;
239
- }
240
-
241
-
242
-
243
- .rbc-toolbar {
244
- display: flex;
245
- flex-wrap: wrap;
246
- justify-content: center;
247
- align-items: center;
248
- margin-bottom: 10px;
249
- font-size: 16px;
250
- }
251
-
252
-
253
-
254
- .rbc-toolbar .rbc-toolbar-label {
255
- flex-grow: 1;
256
- padding: 0 10px;
257
- text-align: center;
258
- }
259
-
260
-
261
-
262
- .rbc-toolbar button {
263
- color: #373a3c;
264
- display: inline-block;
265
- margin: 0;
266
- text-align: center;
267
- vertical-align: middle;
268
- background: none;
269
- background-image: none;
270
- border: 1px solid hsl(var(--border));
271
- padding: 0.375rem 1rem;
272
- border-radius: 4px;
273
- line-height: normal;
274
- white-space: nowrap;
275
- }
276
-
277
-
278
-
279
- .rbc-toolbar button:active,
280
- .rbc-toolbar button.rbc-active {
281
- background-image: none;
282
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
283
- background-color: #e6e6e6;
284
- border-color: #adadad;
285
- }
286
-
287
-
288
-
289
- .rbc-toolbar button:active:hover,
290
- .rbc-toolbar button:active:focus,
291
- .rbc-toolbar button.rbc-active:hover,
292
- .rbc-toolbar button.rbc-active:focus {
293
- color: #373a3c;
294
- background-color: #d4d4d4;
295
- border-color: #8c8c8c;
296
- }
297
-
298
-
299
-
300
- .rbc-toolbar button:focus {
301
- color: #373a3c;
302
- background-color: #e6e6e6;
303
- border-color: #adadad;
304
- }
305
-
306
-
307
-
308
- .rbc-toolbar button:hover {
309
- color: #373a3c;
310
- background-color: #e6e6e6;
311
- border-color: #adadad;
312
- }
313
-
314
-
315
-
316
- .rbc-btn-group {
317
- display: inline-block;
318
- white-space: nowrap;
319
- }
320
-
321
-
322
-
323
- .rbc-btn-group>button:first-child:not(:last-child) {
324
- border-top-right-radius: 0;
325
- border-bottom-right-radius: 0;
326
- }
327
-
328
-
329
-
330
- .rbc-btn-group>button:last-child:not(:first-child) {
331
- border-top-left-radius: 0;
332
- border-bottom-left-radius: 0;
333
- }
334
-
335
-
336
-
337
- .rbc-rtl .rbc-btn-group>button:first-child:not(:last-child) {
338
- border-radius: 4px;
339
- border-top-left-radius: 0;
340
- border-bottom-left-radius: 0;
341
- }
342
-
343
-
344
-
345
- .rbc-rtl .rbc-btn-group>button:last-child:not(:first-child) {
346
- border-radius: 4px;
347
- border-top-right-radius: 0;
348
- border-bottom-right-radius: 0;
349
- }
350
-
351
-
352
-
353
- .rbc-btn-group>button:not(:first-child):not(:last-child) {
354
- border-radius: 0;
355
- }
356
-
357
-
358
-
359
- .rbc-btn-group button+button {
360
- margin-left: -1px;
361
- }
362
-
363
-
364
-
365
- .rbc-rtl .rbc-btn-group button+button {
366
- margin-left: 0;
367
- margin-right: -1px;
368
- }
369
-
370
-
371
-
372
- .rbc-btn-group+.rbc-btn-group,
373
- .rbc-btn-group+button {
374
- margin-left: 10px;
375
- }
376
-
377
-
378
-
379
- @media (max-width: 767px) {
380
- .rbc-toolbar {
381
- flex-direction: column;
382
- }
383
- }
384
-
385
-
386
-
387
- .rbc-event,
388
- .rbc-day-slot .rbc-background-event {
389
- border: none;
390
- box-sizing: border-box;
391
- box-shadow: none;
392
- margin: 0;
393
- padding: 2px 5px;
394
- background-color: hsl(var(--input));
395
- border-radius: 5px;
396
- color: #fff;
397
- cursor: pointer;
398
- width: 100%;
399
- text-align: left;
400
- }
401
-
402
-
403
-
404
- .rbc-slot-selecting .rbc-event,
405
- .rbc-slot-selecting .rbc-day-slot .rbc-background-event,
406
- .rbc-day-slot .rbc-slot-selecting .rbc-background-event {
407
- cursor: inherit;
408
- pointer-events: none;
409
- }
410
-
411
-
412
-
413
- .rbc-event.rbc-selected,
414
- .rbc-day-slot .rbc-selected.rbc-background-event {
415
- background-color: #265985;
416
- }
417
-
418
-
419
-
420
- .rbc-event:focus,
421
- .rbc-day-slot .rbc-background-event:focus {
422
- outline: 5px auto #3b99fc;
423
- }
424
-
425
-
426
-
427
- .rbc-event-label {
428
- font-size: 80%;
429
- }
430
-
431
-
432
-
433
- .rbc-event-overlaps {
434
- box-shadow: -1px 1px 5px 0px rgba(51, 51, 51, 0.5);
435
- }
436
-
437
-
438
-
439
- .rbc-event-continues-prior {
440
- border-top-left-radius: 0;
441
- border-bottom-left-radius: 0;
442
- }
443
-
444
-
445
-
446
- .rbc-event-continues-after {
447
- border-top-right-radius: 0;
448
- border-bottom-right-radius: 0;
449
- }
450
-
451
-
452
-
453
- .rbc-event-continues-earlier {
454
- border-top-left-radius: 0;
455
- border-top-right-radius: 0;
456
- }
457
-
458
-
459
-
460
- .rbc-event-continues-later {
461
- border-bottom-left-radius: 0;
462
- border-bottom-right-radius: 0;
463
- }
464
-
465
-
466
-
467
- .rbc-row {
468
- display: flex;
469
- flex-direction: row;
470
- }
471
-
472
-
473
-
474
- .rbc-row-segment {
475
- padding: 0 1px 1px 1px;
476
- }
477
-
478
-
479
-
480
- .rbc-selected-cell {
481
- background-color: rgba(0, 0, 0, 0.1);
482
- }
483
-
484
-
485
-
486
- .rbc-show-more {
487
- background-color: rgba(255, 255, 255, 0) !important;
488
- color: var(--foreground) !important;
489
- z-index: 4;
490
- font-weight: bold;
491
- font-size: 85%;
492
- height: auto;
493
- line-height: normal;
494
- color: hsl(var(--input));
495
- }
496
-
497
-
498
-
499
- .rbc-show-more:hover,
500
- .rbc-show-more:focus {
501
- color: #265985;
502
- }
503
-
504
-
505
-
506
- .rbc-month-view {
507
- position: relative;
508
- border: 1px solid hsl(var(--border));
509
- display: flex;
510
- flex-direction: column;
511
- flex: 1 0 0;
512
- width: 100%;
513
- -moz-user-select: none;
514
- user-select: none;
515
- -webkit-user-select: none;
516
- height: 100%;
517
- }
518
-
519
-
520
-
521
- .rbc-month-header {
522
- display: flex;
523
- flex-direction: row;
524
- }
525
-
526
-
527
-
528
- .rbc-month-row {
529
- display: flex;
530
- position: relative;
531
- flex-direction: column;
532
- flex: 1 0 0;
533
- flex-basis: 0px;
534
- overflow: hidden;
535
- height: 100%;
536
- }
537
-
538
-
539
-
540
- .rbc-month-row+.rbc-month-row {
541
- border-top: 1px solid hsl(var(--border));
542
- }
543
-
544
-
545
-
546
- .rbc-date-cell {
547
- flex: 1 1 0;
548
- min-width: 0;
549
- padding-right: 5px;
550
- text-align: right;
551
- }
552
-
553
-
554
-
555
- .rbc-date-cell.rbc-now {
556
- font-weight: bold;
557
- }
558
-
559
-
560
-
561
- .rbc-date-cell>a,
562
- .rbc-date-cell>a:active,
563
- .rbc-date-cell>a:visited {
564
- color: inherit;
565
- text-decoration: none;
566
- }
567
-
568
-
569
-
570
- .rbc-row-bg {
571
- display: flex;
572
- flex-direction: row;
573
- flex: 1 0 0;
574
- overflow: hidden;
575
- right: 1px;
576
- }
577
-
578
-
579
-
580
- .rbc-day-bg {
581
- flex: 1 0 0%;
582
- }
583
-
584
-
585
-
586
- .rbc-day-bg+.rbc-day-bg {
587
- border-left: 1px solid hsl(var(--border));
588
- }
589
-
590
-
591
-
592
- .rbc-rtl .rbc-day-bg+.rbc-day-bg {
593
- border-left-width: 0;
594
- border-right: 1px solid hsl(var(--border));
595
- }
596
-
597
-
598
-
599
- .rbc-overlay {
600
- position: absolute;
601
- z-index: 5;
602
- border: 1px solid #e5e5e5;
603
- background-color: #fff;
604
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
605
- padding: 10px;
606
- }
607
-
608
-
609
-
610
- .rbc-overlay>*+* {
611
- margin-top: 1px;
612
- }
613
-
614
-
615
-
616
- .rbc-overlay-header {
617
- border-bottom: 1px solid #e5e5e5;
618
- margin: -10px -10px 5px -10px;
619
- padding: 2px 10px;
620
- }
621
-
622
-
623
-
624
- .rbc-agenda-view {
625
- display: flex;
626
- flex-direction: column;
627
- flex: 1 0 0;
628
- overflow: auto;
629
- }
630
-
631
-
632
-
633
- .rbc-agenda-view table.rbc-agenda-table {
634
- width: 100%;
635
- border: 1px solid hsl(var(--border));
636
- border-spacing: 0;
637
- border-collapse: collapse;
638
- }
639
-
640
-
641
-
642
- .rbc-agenda-view table.rbc-agenda-table tbody>tr>td {
643
- padding: 5px 10px;
644
- vertical-align: top;
645
- }
646
-
647
-
648
-
649
- .rbc-agenda-view table.rbc-agenda-table .rbc-agenda-time-cell {
650
- padding-left: 15px;
651
- padding-right: 15px;
652
- text-transform: lowercase;
653
- }
654
-
655
-
656
-
657
- .rbc-agenda-view table.rbc-agenda-table tbody>tr>td+td {
658
- border-left: 1px solid hsl(var(--border));
659
- }
660
-
661
-
662
-
663
- .rbc-rtl .rbc-agenda-view table.rbc-agenda-table tbody>tr>td+td {
664
- border-left-width: 0;
665
- border-right: 1px solid hsl(var(--border));
666
- }
667
-
668
-
669
-
670
- .rbc-agenda-view table.rbc-agenda-table tbody>tr+tr {
671
- border-top: 1px solid hsl(var(--border));
672
- }
673
-
674
-
675
-
676
- .rbc-agenda-view table.rbc-agenda-table thead>tr>th {
677
- padding: 3px 5px;
678
- text-align: left;
679
- border-bottom: 1px solid hsl(var(--border));
680
- }
681
-
682
-
683
-
684
- .rbc-rtl .rbc-agenda-view table.rbc-agenda-table thead>tr>th {
685
- text-align: right;
686
- }
687
-
688
-
689
-
690
- .rbc-agenda-time-cell {
691
- text-transform: lowercase;
692
- }
693
-
694
-
695
-
696
- .rbc-agenda-time-cell .rbc-continues-after:after {
697
- content: " »";
698
- }
699
-
700
-
701
-
702
- .rbc-agenda-time-cell .rbc-continues-prior:before {
703
- content: "« ";
704
- }
705
-
706
-
707
-
708
- .rbc-agenda-date-cell,
709
- .rbc-agenda-time-cell {
710
- white-space: nowrap;
711
- }
712
-
713
-
714
-
715
- .rbc-agenda-event-cell {
716
- width: 100%;
717
- }
718
-
719
-
720
-
721
- .rbc-time-column {
722
- display: flex;
723
- flex-direction: column;
724
- min-height: 100%;
725
- }
726
-
727
-
728
-
729
- .rbc-time-column .rbc-timeslot-group {
730
- flex: 1;
731
- }
732
-
733
-
734
-
735
- .rbc-timeslot-group {
736
- border-bottom: 1px solid hsl(var(--border));
737
- min-height: 40px;
738
- display: flex;
739
- flex-flow: column nowrap;
740
- }
741
-
742
-
743
-
744
- .rbc-time-gutter,
745
- .rbc-header-gutter {
746
- flex: none;
747
- }
748
-
749
-
750
-
751
- .rbc-label {
752
- padding: 0 5px;
753
- }
754
-
755
-
756
-
757
- .rbc-day-slot {
758
- position: relative;
759
- }
760
-
761
-
762
-
763
- .rbc-day-slot .rbc-events-container {
764
- bottom: 0;
765
- left: 0;
766
- position: absolute;
767
- right: 0;
768
- margin-right: 10px;
769
- top: 0;
770
- }
771
-
772
-
773
-
774
- .rbc-day-slot .rbc-events-container.rbc-rtl {
775
- left: 10px;
776
- right: 0;
777
- }
778
-
779
-
780
-
781
- .rbc-day-slot .rbc-event,
782
- .rbc-day-slot .rbc-background-event {
783
- border: 1px solid #265985;
784
- display: flex;
785
- max-height: 100%;
786
- min-height: 20px;
787
- flex-flow: column wrap;
788
- align-items: flex-start;
789
- overflow: hidden;
790
- position: absolute;
791
- }
792
-
793
-
794
-
795
- .rbc-day-slot .rbc-background-event {
796
- opacity: 0.75;
797
- }
798
-
799
-
800
-
801
- .rbc-day-slot .rbc-event-label {
802
- flex: none;
803
- padding-right: 5px;
804
- width: auto;
805
- }
806
-
807
-
808
-
809
- .rbc-day-slot .rbc-event-content {
810
- width: 100%;
811
- flex: 1 1 0;
812
- word-wrap: break-word;
813
- line-height: 1;
814
- height: 100%;
815
- min-height: 1em;
816
- }
817
-
818
-
819
-
820
- .rbc-day-slot .rbc-time-slot {
821
- border-top: 1px solid hsl(var(--border));
822
- }
823
-
824
-
825
-
826
- .rbc-time-view-resources .rbc-time-gutter,
827
- .rbc-time-view-resources .rbc-time-header-gutter {
828
- position: sticky;
829
- left: 0;
830
- background-color: white;
831
- border-right: 1px solid hsl(var(--border));
832
- z-index: 10;
833
- margin-right: -1px;
834
- }
835
-
836
-
837
-
838
- .rbc-time-view-resources .rbc-time-header {
839
- overflow: hidden;
840
- }
841
-
842
-
843
-
844
- .rbc-time-view-resources .rbc-time-header-content {
845
- min-width: auto;
846
- flex: 1 0 0;
847
- flex-basis: 0px;
848
- }
849
-
850
-
851
-
852
- .rbc-time-view-resources .rbc-time-header-cell-single-day {
853
- display: none;
854
- }
855
-
856
-
857
-
858
- .rbc-time-view-resources .rbc-day-slot {
859
- min-width: 140px;
860
- }
861
-
862
-
863
-
864
- .rbc-time-view-resources .rbc-header,
865
- .rbc-time-view-resources .rbc-day-bg {
866
- width: 140px;
867
- flex: 1 1 0;
868
- flex-basis: 0 px;
869
- }
870
-
871
-
872
-
873
- .rbc-time-header-content+.rbc-time-header-content {
874
- margin-left: -1px;
875
- }
876
-
877
-
878
-
879
- .rbc-time-slot {
880
- flex: 1 0 0;
881
- }
882
-
883
-
884
-
885
- .rbc-time-slot.rbc-now {
886
- font-weight: bold;
887
- }
888
-
889
-
890
-
891
- .rbc-day-header {
892
- text-align: center;
893
- }
894
-
895
-
896
-
897
- .rbc-slot-selection {
898
- z-index: 10;
899
- position: absolute;
900
- background-color: rgba(0, 0, 0, 0.5);
901
- color: white;
902
- font-size: 75%;
903
- width: 100%;
904
- padding: 3px;
905
- }
906
-
907
-
908
-
909
- .rbc-slot-selecting {
910
- cursor: move;
911
- }
912
-
913
-
914
-
915
- .rbc-time-view {
916
- display: flex;
917
- flex-direction: column;
918
- flex: 1;
919
- width: 100%;
920
- border: 1px solid hsl(var(--border));
921
- min-height: 0;
922
- }
923
-
924
-
925
-
926
- .rbc-time-view .rbc-time-gutter {
927
- white-space: nowrap;
928
- text-align: right;
929
- }
930
-
931
-
932
-
933
- .rbc-time-view .rbc-allday-cell {
934
- box-sizing: content-box;
935
- width: 100%;
936
- height: 100%;
937
- position: relative;
938
- }
939
-
940
-
941
-
942
- .rbc-time-view .rbc-allday-cell+.rbc-allday-cell {
943
- border-left: 1px solid hsl(var(--border));
944
- }
945
-
946
-
947
-
948
- .rbc-time-view .rbc-allday-events {
949
- position: relative;
950
- z-index: 4;
951
- }
952
-
953
-
954
-
955
- .rbc-time-view .rbc-row {
956
- box-sizing: border-box;
957
- min-height: 20px;
958
- }
959
-
960
-
961
-
962
- .rbc-time-header {
963
- display: flex;
964
- flex: 0 0 auto;
965
- flex-direction: row;
966
- }
967
-
968
-
969
-
970
- .rbc-time-header.rbc-overflowing {
971
- border-right: 1px solid hsl(var(--border));
972
- }
973
-
974
-
975
-
976
- .rbc-rtl .rbc-time-header.rbc-overflowing {
977
- border-right-width: 0;
978
- border-left: 1px solid hsl(var(--border));
979
- }
980
-
981
-
982
-
983
- .rbc-time-header>.rbc-row:first-child {
984
- border-bottom: 1px solid hsl(var(--border));
985
- }
986
-
987
-
988
-
989
- .rbc-time-header>.rbc-row.rbc-row-resource {
990
- border-bottom: 1px solid hsl(var(--border));
991
- }
992
-
993
-
994
-
995
- .rbc-time-header-cell-single-day {
996
- display: none;
997
- }
998
-
999
-
1000
-
1001
- .rbc-time-header-content {
1002
- flex: 1;
1003
- display: flex;
1004
- min-width: 0;
1005
- flex-direction: column;
1006
- border-left: 1px solid hsl(var(--border));
1007
- }
1008
-
1009
-
1010
-
1011
- .rbc-rtl .rbc-time-header-content {
1012
- border-left-width: 0;
1013
- border-right: 1px solid hsl(var(--border));
1014
- }
1015
-
1016
-
1017
-
1018
- .rbc-time-header-content>.rbc-row.rbc-row-resource {
1019
- border-bottom: 1px solid hsl(var(--border));
1020
- flex-shrink: 0;
1021
- }
1022
-
1023
-
1024
-
1025
- .rbc-time-content {
1026
- display: flex;
1027
- flex: 1 0 0%;
1028
- align-items: flex-start;
1029
- width: 100%;
1030
- border-top: 2px solid hsl(var(--border));
1031
- overflow-y: auto;
1032
- position: relative;
1033
- }
1034
-
1035
-
1036
-
1037
- .rbc-time-content>.rbc-time-gutter {
1038
- flex: none;
1039
- }
1040
-
1041
-
1042
-
1043
- .rbc-time-content>*+*>* {
1044
- border-left: 1px solid hsl(var(--border));
1045
- }
1046
-
1047
-
1048
-
1049
- .rbc-rtl .rbc-time-content>*+*>* {
1050
- border-left-width: 0;
1051
- border-right: 1px solid hsl(var(--border));
1052
- }
1053
-
1054
-
1055
-
1056
- .rbc-time-content>.rbc-day-slot {
1057
- width: 100%;
1058
- -moz-user-select: none;
1059
- user-select: none;
1060
- -webkit-user-select: none;
1061
- }
1062
-
1063
-
1064
-
1065
- .rbc-current-time-indicator {
1066
- position: absolute;
1067
- z-index: 3;
1068
- left: 0;
1069
- right: 0;
1070
- height: 1px;
1071
- background-color: #74ad31;
1072
- pointer-events: none;
1073
- }
1074
-
1075
-
1076
-
1077
- .rbc-resource-grouping.rbc-time-header-content {
1078
- display: flex;
1079
- flex-direction: column;
1080
- }
1081
-
1082
-
1083
-
1084
- .rbc-resource-grouping .rbc-row .rbc-header {
1085
- width: 141px;
1086
- }
1087
-
1088
-
1089
-
1090
- .scrollbar-hidden {
1091
- -ms-overflow-style: none;
1092
- scrollbar-width: none;
1093
- }
1094
-
1095
-
1096
-
1097
- .scrollbar-hidden::-webkit-scrollbar {
1098
- display: none;
1099
- }
1100
-
1101
-
1102
-
1103
- input[type="color"]::-webkit-color-swatch-wrapper {
1104
- padding: 0;
1105
- }
1106
-
1107
-
1108
-
1109
- input[type="color"]::-webkit-color-swatch {
1110
- border: none;
1111
- border-radius: 50%;
1112
- }
1113
-
1114
-
1115
-
1116
- @custom-variant dark (&:is(.dark *));
1117
-
1118
-
1119
-
1120
- @custom-variant blue-dark (&:is(.blue-dark *));
1121
-
1122
-
1123
-
1124
- @theme inline {
1125
- --color-background: var(--background);
1126
- --color-foreground: var(--foreground);
1127
- --font-sans: var(--font-geist-sans);
1128
- --font-mono: var(--font-geist-mono);
1129
- --color-sidebar-ring: var(--sidebar-ring);
1130
- --color-sidebar-border: var(--sidebar-border);
1131
- --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
1132
- --color-sidebar-accent: var(--sidebar-accent);
1133
- --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
1134
- --color-sidebar-primary: var(--sidebar-primary);
1135
- --color-sidebar-foreground: var(--sidebar-foreground);
1136
- --color-sidebar: var(--sidebar);
1137
- --color-chart-5: var(--chart-5);
1138
- --color-chart-4: var(--chart-4);
1139
- --color-chart-3: var(--chart-3);
1140
- --color-chart-2: var(--chart-2);
1141
- --color-chart-1: var(--chart-1);
1142
- --color-ring: var(--ring);
1143
- --color-input: var(--input);
1144
- --color-border: var(--border);
1145
- --color-destructive: var(--destructive);
1146
- --color-accent-foreground: var(--accent-foreground);
1147
- --color-accent: var(--accent);
1148
- --color-muted-foreground: var(--muted-foreground);
1149
- --color-muted: var(--muted);
1150
- --color-secondary-foreground: var(--secondary-foreground);
1151
- --color-secondary: var(--secondary);
1152
- --color-primary-foreground: var(--primary-foreground);
1153
- --color-primary: var(--primary);
1154
- --color-popover-foreground: var(--popover-foreground);
1155
- --color-popover: var(--popover);
1156
- --color-card-foreground: var(--card-foreground);
1157
- --color-card: var(--card);
1158
- --color-btn-outlined: var(--btn-outlined);
1159
- --radius-sm: calc(var(--radius) - 4px);
1160
- --radius-md: calc(var(--radius) - 2px);
1161
- --radius-lg: var(--radius);
1162
- --radius-xl: calc(var(--radius) + 4px);
1163
- }
1164
-
1165
-
1166
-
1167
- :root {
1168
- --radius: 0.625rem;
1169
- --background: oklch(1 0 0);
1170
- --foreground: oklch(0.145 0 0);
1171
- --card: oklch(1 0 0);
1172
- --card-foreground: oklch(0.145 0 0);
1173
- --btn-outlined: oklch(1 0 0);
1174
- --popover: oklch(1 0 0);
1175
- --popover-foreground: oklch(0.145 0 0);
1176
- --primary: oklch(0.205 0 0);
1177
- --primary-foreground: oklch(0.985 0 0);
1178
- --secondary: oklch(0.97 0 0);
1179
- --secondary-foreground: oklch(0.205 0 0);
1180
- --muted: oklch(0.97 0 0);
1181
- --muted-foreground: oklch(0.556 0 0);
1182
- --accent: oklch(0.97 0 0);
1183
- --accent-foreground: oklch(0.205 0 0);
1184
- --destructive: oklch(0.577 0.245 27.325);
1185
- --border: oklch(0.922 0 0);
1186
- --input: oklch(0.922 0 0);
1187
- --ring: oklch(75.966% 0.0034 15.833);
1188
- --chart-1: oklch(0.646 0.222 41.116);
1189
- --chart-2: oklch(0.6 0.118 184.704);
1190
- --chart-3: oklch(0.398 0.07 227.392);
1191
- --chart-4: oklch(0.828 0.189 84.429);
1192
- --chart-5: oklch(0.769 0.188 70.08);
1193
- --sidebar: oklch(0.985 0 0);
1194
- --sidebar-foreground: oklch(0.145 0 0);
1195
- --sidebar-primary: oklch(0.205 0 0);
1196
- --sidebar-primary-foreground: oklch(0.985 0 0);
1197
- --sidebar-accent: oklch(0.97 0 0);
1198
- --sidebar-accent-foreground: oklch(0.205 0 0);
1199
- --sidebar-border: oklch(0.922 0 0);
1200
- --sidebar-ring: oklch(0.708 0 0);
1201
- --progress-foreground: oklch(9.414% 0.02562 23.372 / 0.753);
1202
- --progress-background: var(--ring);
1203
- --keross-skeleton-bg: oklch(44.967% 0.00521 16.812 / 0.589);
1204
- --hover-back: var(--ring);
1205
- --calender-foreground: oklch(12.382% 0.00233 17.142);
1206
- --contrast-color: oklch(12.382% 0.00233 17.142);
1207
- --btn-secondary: #00000007;
1208
- --btn-default: oklch(0.985 0 0);
1209
- }
1210
-
1211
-
1212
-
1213
- .dark {
1214
- --background: #050505;
1215
- --foreground: oklch(0.985 0 0);
1216
- --card: oklch(0.2046 0 0);
1217
- --card-foreground: oklch(0.985 0 0);
1218
- --btn-outlined: oklch(0.1149 0.023 259.21);
1219
- --popover: oklch(0.2458 0 0);
1220
- --popover-foreground: oklch(0.985 0 0);
1221
- --primary: oklch(0.922 0 0);
1222
- --primary-foreground: oklch(0.205 0 0);
1223
- --secondary: oklch(0.1913 0 0);
1224
- --secondary-foreground: oklch(0.985 0 0);
1225
- --muted: oklch(0.269 0 0);
1226
- --muted-foreground: oklch(0.708 0 0);
1227
- --accent: oklch(98.511% 0.00011 271.152);
1228
- --accent-foreground: #050505;
1229
- --calender-foreground: oklch(98.511% 0.00011 271.152);
1230
- --destructive: #f43f5e;
1231
- --border: #454545;
1232
- --input: oklch(1 0 0 / 15%);
1233
- --ring: oklch(0.556 0 0);
1234
- --chart-1: #151515;
1235
- --chart-2: oklch(0.696 0.17 162.48);
1236
- --chart-3: oklch(0.769 0.188 70.08);
1237
- --chart-4: oklch(0.627 0.265 303.9);
1238
- --chart-5: oklch(0.645 0.246 16.439);
1239
- --sidebar: oklch(0.205 0 0);
1240
- --sidebar-foreground: oklch(0.985 0 0);
1241
- --sidebar-primary: oklch(0.488 0.243 264.376);
1242
- --sidebar-primary-foreground: oklch(0.985 0 0);
1243
- --sidebar-accent: oklch(0.269 0 0);
1244
- --sidebar-accent-foreground: oklch(0.985 0 0);
1245
- --sidebar-border: oklch(1 0 0 / 10%);
1246
- --sidebar-ring: oklch(0.556 0 0);
1247
- --input-background-custom: #151515;
1248
- --progress-foreground: #f5f5f5;
1249
- --progress-background: #404040;
1250
- --keross-skeleton-bg: var(--accent);
1251
- --hover-back: #171717;
1252
- --contrast-color: oklch(12.382% 0.00233 17.142);
1253
- --btn-secondary: #151515;
1254
- --btn-default: #151515;
1255
- }
1256
-
1257
-
1258
-
1259
- .blue-dark {
1260
- --background: oklch(0.2084 0.0417 266.36);
1261
- --foreground: oklch(0.985 0 0);
1262
- --card: oklch(0.2042 0.0395 267.53);
1263
- --card-foreground: oklch(0.985 0 0);
1264
- --btn-outlined: oklch(0.1897 0.0364 266.07);
1265
- --popover: oklch(0.1915 0.0416 266.02);
1266
- --popover-foreground: oklch(0.985 0 0);
1267
- --primary: oklch(0.922 0 0);
1268
- --primary-foreground: oklch(0.205 0 0);
1269
- --secondary: oklch(0.2581 0.0378 266.31);
1270
- --secondary-foreground: oklch(0.985 0 0);
1271
- --muted: oklch(0.269 0 0);
1272
- --muted-foreground: oklch(0.708 0 0);
1273
- --accent: oklch(0.488 0.243 264.376);
1274
- --accent-foreground: oklch(0.985 0 0);
1275
- --calender-foreground: oklch(0.488 0.243 264.376);
1276
- --destructive: #f43f5e;
1277
- --border: #494f5e;
1278
- --input: oklch(1 0 0 / 15%);
1279
- --ring: #0c1324;
1280
- --chart-1: oklch(0.488 0.243 264.376);
1281
- --chart-2: oklch(0.696 0.17 162.48);
1282
- --chart-3: oklch(0.769 0.188 70.08);
1283
- --chart-4: oklch(0.627 0.265 303.9);
1284
- --chart-5: oklch(0.645 0.246 16.439);
1285
- --sidebar: #1b2336;
1286
- --sidebar-foreground: oklch(0.985 0 0);
1287
- --sidebar-primary: oklch(0.488 0.243 264.376);
1288
- --sidebar-primary-foreground: oklch(0.985 0 0);
1289
- --sidebar-accent: oklch(0.269 0 0);
1290
- --sidebar-accent-foreground: oklch(0.985 0 0);
1291
- --sidebar-border: oklch(1 0 0 / 10%);
1292
- --sidebar-ring: oklch(0.556 0 0);
1293
- --keross-checkbox-bg: var(--foreground);
1294
- --keross-skeleton-bg: oklch(1 0 0 / 15%);
1295
- --progress-foreground: #f5f5f5;
1296
- --progress-background: #1d283a;
1297
- --hover-back: oklch(0.2505 0.0528 266.07);
1298
- --contrast-color: oklch(92.502% 0.00431 15.893);
1299
- --btn-secondary: #00000033;
1300
- --btn-default: oklch(0.985 0 0);
1301
- }
1302
-