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