ikoncomponents 1.5.7 → 1.5.8

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 (424) hide show
  1. package/README.md +36 -36
  2. package/bin.js +2 -0
  3. package/dist/commands/init.js +63 -0
  4. package/dist/index.js +14 -116
  5. package/dist/utlis/copyDir.js +7 -0
  6. package/package.json +17 -91
  7. package/templates/default/hooks/use-mobile.ts +19 -0
  8. package/templates/default/ikonS/accordion.tsx +66 -0
  9. package/templates/default/ikonS/alert-dialog.tsx +179 -0
  10. package/templates/default/ikonS/alert.tsx +66 -0
  11. package/templates/default/ikonS/aspect-ratio.tsx +11 -0
  12. package/templates/default/ikonS/avatar.tsx +53 -0
  13. package/templates/default/ikonS/badge.tsx +49 -0
  14. package/templates/default/ikonS/breadcrumb.tsx +109 -0
  15. package/templates/default/ikonS/button.tsx +64 -0
  16. package/templates/default/ikonS/calendar.tsx +227 -0
  17. package/templates/default/ikonS/card.tsx +92 -0
  18. package/templates/default/ikonS/checkbox.tsx +33 -0
  19. package/templates/default/ikonS/collapsible.tsx +33 -0
  20. package/templates/default/ikonS/command.tsx +184 -0
  21. package/templates/default/ikonS/date-input.tsx +259 -0
  22. package/templates/default/ikonS/date-range-picker.tsx +103 -0
  23. package/templates/default/ikonS/dialog.tsx +143 -0
  24. package/templates/default/ikonS/drawer.tsx +134 -0
  25. package/templates/default/ikonS/dropdown-menu.tsx +259 -0
  26. package/templates/default/ikonS/form.tsx +166 -0
  27. package/templates/default/ikonS/hover-card.tsx +44 -0
  28. package/templates/default/ikonS/input-otp.tsx +71 -0
  29. package/templates/default/ikonS/input.tsx +22 -0
  30. package/templates/default/ikonS/label.tsx +24 -0
  31. package/templates/default/ikonS/navigation-menu.tsx +195 -0
  32. package/templates/default/ikonS/popover.tsx +48 -0
  33. package/templates/default/ikonS/progress.tsx +40 -0
  34. package/templates/default/ikonS/radio-group.tsx +45 -0
  35. package/templates/default/ikonS/scroll-area.tsx +58 -0
  36. package/templates/default/ikonS/select.tsx +184 -0
  37. package/templates/default/ikonS/separator.tsx +28 -0
  38. package/templates/default/ikonS/sheet.tsx +139 -0
  39. package/templates/default/ikonS/sidebar.tsx +726 -0
  40. package/templates/default/ikonS/skeleton.tsx +15 -0
  41. package/templates/default/ikonS/slider.tsx +64 -0
  42. package/templates/default/ikonS/sonner.tsx +25 -0
  43. package/templates/default/ikonS/switch.tsx +31 -0
  44. package/templates/default/ikonS/table.tsx +116 -0
  45. package/templates/default/ikonS/tabs.tsx +67 -0
  46. package/templates/default/ikonS/textarea.tsx +18 -0
  47. package/templates/default/ikonS/toggle-group.tsx +83 -0
  48. package/templates/default/ikonS/toggle.tsx +47 -0
  49. package/templates/default/ikonS/tooltip.tsx +65 -0
  50. package/templates/default/ikonS/workflow.tsx +119 -0
  51. package/templates/default/ikoncomponents/action-menu/index.tsx +108 -0
  52. package/templates/default/ikoncomponents/action-menu/type.ts +18 -0
  53. package/templates/default/ikoncomponents/activity-sheet/index.tsx +63 -0
  54. package/templates/default/ikoncomponents/alert-dialog/dialog-context.tsx +65 -0
  55. package/templates/default/ikoncomponents/alert-dialog/index.tsx +80 -0
  56. package/templates/default/ikoncomponents/app-breadcrumb/BreadcrumbProvider.tsx +68 -0
  57. package/templates/default/ikoncomponents/app-breadcrumb/index.tsx +222 -0
  58. package/templates/default/ikoncomponents/big-calendar/big-calender-event/index.tsx +38 -0
  59. package/templates/default/ikoncomponents/big-calendar/big-calender-toolbar/index.tsx +81 -0
  60. package/templates/default/ikoncomponents/big-calendar/index.css +879 -0
  61. package/templates/default/ikoncomponents/big-calendar/index.tsx +59 -0
  62. package/templates/default/ikoncomponents/big-calendar/type.ts +37 -0
  63. package/templates/default/ikoncomponents/buttons/index.tsx +127 -0
  64. package/templates/default/ikoncomponents/combobox-input/index.tsx +75 -0
  65. package/templates/default/ikoncomponents/combobox-input/type.ts +14 -0
  66. package/templates/default/ikoncomponents/custom-combo-dropdown/index.tsx +242 -0
  67. package/templates/default/ikoncomponents/data-table/datatable-column-filter/index.tsx +80 -0
  68. package/templates/default/ikoncomponents/data-table/datatable-faceted-filter/index.tsx +149 -0
  69. package/templates/default/ikoncomponents/data-table/datatable-filter-menu/index.tsx +98 -0
  70. package/templates/default/ikoncomponents/data-table/datatable-pagination/index.tsx +119 -0
  71. package/templates/default/ikoncomponents/data-table/datatable-toolbar/index.tsx +45 -0
  72. package/templates/default/ikoncomponents/data-table/function.ts +7 -0
  73. package/templates/default/ikoncomponents/data-table/index.tsx +549 -0
  74. package/templates/default/ikoncomponents/data-table/type.ts +75 -0
  75. package/templates/default/ikoncomponents/e-chart/index.tsx +183 -0
  76. package/templates/default/ikoncomponents/file-input/index.tsx +27 -0
  77. package/templates/default/ikoncomponents/fileUpload/index.tsx +121 -0
  78. package/templates/default/ikoncomponents/form-fields/combobox-input/index.tsx +111 -0
  79. package/templates/default/ikoncomponents/form-fields/combobox-input-value/index.tsx +121 -0
  80. package/templates/default/ikoncomponents/form-fields/date-input/index.tsx +80 -0
  81. package/templates/default/ikoncomponents/form-fields/file-input/index.tsx +9 -0
  82. package/templates/default/ikoncomponents/form-fields/input/index.tsx +27 -0
  83. package/{dist/ikoncomponents/form-fields/multi-combobox-input/index.js → templates/default/ikoncomponents/form-fields/multi-combobox-input/index.tsx} +574 -381
  84. package/templates/default/ikoncomponents/form-fields/otp-input/index.tsx +39 -0
  85. package/templates/default/ikoncomponents/form-fields/password-input/index.tsx +52 -0
  86. package/templates/default/ikoncomponents/form-fields/phone-input/index.tsx +7 -0
  87. package/templates/default/ikoncomponents/form-fields/textarea/index.tsx +28 -0
  88. package/templates/default/ikoncomponents/form-fields/types/index.ts +46 -0
  89. package/templates/default/ikoncomponents/glowing-effect/index.tsx +171 -0
  90. package/templates/default/ikoncomponents/icon/index.tsx +22 -0
  91. package/templates/default/ikoncomponents/image-cropper-upload/components/cropperImg.css +19 -0
  92. package/{dist/ikoncomponents/image-cropper-upload/components/newCropper.js → templates/default/ikoncomponents/image-cropper-upload/components/newCropper.tsx} +117 -85
  93. package/templates/default/ikoncomponents/image-cropper-upload/components/newImageUploadForm.tsx +352 -0
  94. package/templates/default/ikoncomponents/image-cropper-upload/cropper-form/index.tsx +250 -0
  95. package/templates/default/ikoncomponents/image-cropper-upload/cropper-form-with-modal/index.tsx +32 -0
  96. package/{dist/ikoncomponents/image-cropper-upload/image-cropper/index.js → templates/default/ikoncomponents/image-cropper-upload/image-cropper/index.tsx} +119 -87
  97. package/templates/default/ikoncomponents/image-cropper-upload/index.tsx +95 -0
  98. package/templates/default/ikoncomponents/image-cropper-upload/utils/index.ts +117 -0
  99. package/templates/default/ikoncomponents/loading-spinner/index.tsx +43 -0
  100. package/templates/default/ikoncomponents/main-layout/RefreshContext.tsx +30 -0
  101. package/templates/default/ikoncomponents/main-layout/SidebarNavContext.tsx +103 -0
  102. package/templates/default/ikoncomponents/main-layout/app-sidebar.tsx +36 -0
  103. package/templates/default/ikoncomponents/main-layout/footer.tsx +21 -0
  104. package/templates/default/ikoncomponents/main-layout/header.tsx +53 -0
  105. package/templates/default/ikoncomponents/main-layout/index.tsx +38 -0
  106. package/templates/default/ikoncomponents/main-layout/main-sidebar.tsx +389 -0
  107. package/templates/default/ikoncomponents/main-layout/nav-main.tsx +103 -0
  108. package/templates/default/ikoncomponents/multi-combobox/index.tsx +345 -0
  109. package/templates/default/ikoncomponents/no-data/index.tsx +11 -0
  110. package/templates/default/ikoncomponents/page-wrapper/index.tsx +30 -0
  111. package/templates/default/ikoncomponents/password-strength-meter/index.tsx +49 -0
  112. package/templates/default/ikoncomponents/phone-input/index.tsx +72 -0
  113. package/templates/default/ikoncomponents/provider-wrapper/index.tsx +32 -0
  114. package/templates/default/ikoncomponents/search-input/index.tsx +18 -0
  115. package/templates/default/ikoncomponents/sheet/index.tsx +34 -0
  116. package/templates/default/ikoncomponents/simple-widget/index.tsx +54 -0
  117. package/templates/default/ikoncomponents/skeleton-loader/skeleton-table.tsx +34 -0
  118. package/templates/default/ikoncomponents/skeleton-loader/skeleton-widget.tsx +13 -0
  119. package/templates/default/ikoncomponents/tabs/index.tsx +139 -0
  120. package/{dist/ikoncomponents/tabs/type.d.ts → templates/default/ikoncomponents/tabs/type.ts} +20 -19
  121. package/{dist/ikoncomponents/theme-toggle-btn/index.js → templates/default/ikoncomponents/theme-toggle-btn/index.tsx} +189 -118
  122. package/templates/default/ikoncomponents/title-progress/index.tsx +41 -0
  123. package/templates/default/ikoncomponents/tooltip/index.tsx +17 -0
  124. package/templates/default/ikoncomponents/twolevel-dropdown/convertToDropdownNodes.tsx +33 -0
  125. package/templates/default/ikoncomponents/twolevel-dropdown/index.tsx +279 -0
  126. package/templates/default/ikoncomponents/upload-tab/index.tsx +237 -0
  127. package/templates/default/ikoncomponents/widgets/index.tsx +81 -0
  128. package/templates/default/ikoncomponents/widgets/type.ts +11 -0
  129. package/templates/default/ikoncomponents/work-in-progress/index.tsx +16 -0
  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 +106 -0
  144. package/{dist/utils/api/loginService/type.d.ts → templates/default/utils/api/loginService/type.ts} +35 -31
  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 -1
  155. package/dist/hooks/use-mobile.js +0 -15
  156. package/dist/ikoncomponents/action-menu/index.d.ts +0 -5
  157. package/dist/ikoncomponents/action-menu/index.js +0 -42
  158. package/dist/ikoncomponents/action-menu/type.d.ts +0 -14
  159. package/dist/ikoncomponents/action-menu/type.js +0 -1
  160. package/dist/ikoncomponents/activity-sheet/index.d.ts +0 -11
  161. package/dist/ikoncomponents/activity-sheet/index.js +0 -23
  162. package/dist/ikoncomponents/alert-dialog/dialog-context.d.ts +0 -21
  163. package/dist/ikoncomponents/alert-dialog/dialog-context.js +0 -30
  164. package/dist/ikoncomponents/alert-dialog/index.d.ts +0 -14
  165. package/dist/ikoncomponents/alert-dialog/index.js +0 -20
  166. package/dist/ikoncomponents/app-breadcrumb/BreadcrumbProvider.d.ts +0 -18
  167. package/dist/ikoncomponents/app-breadcrumb/BreadcrumbProvider.js +0 -43
  168. package/dist/ikoncomponents/app-breadcrumb/index.d.ts +0 -5
  169. package/dist/ikoncomponents/app-breadcrumb/index.js +0 -57
  170. package/dist/ikoncomponents/big-calendar/big-calender-event/index.d.ts +0 -5
  171. package/dist/ikoncomponents/big-calendar/big-calender-event/index.js +0 -16
  172. package/dist/ikoncomponents/big-calendar/big-calender-toolbar/index.d.ts +0 -2
  173. package/dist/ikoncomponents/big-calendar/big-calender-toolbar/index.js +0 -39
  174. package/dist/ikoncomponents/big-calendar/index.d.ts +0 -3
  175. package/dist/ikoncomponents/big-calendar/index.js +0 -35
  176. package/dist/ikoncomponents/big-calendar/type.d.ts +0 -31
  177. package/dist/ikoncomponents/big-calendar/type.js +0 -1
  178. package/dist/ikoncomponents/buttons/index.d.ts +0 -18
  179. package/dist/ikoncomponents/buttons/index.js +0 -38
  180. package/dist/ikoncomponents/combobox-input/index.d.ts +0 -2
  181. package/dist/ikoncomponents/combobox-input/index.js +0 -18
  182. package/dist/ikoncomponents/combobox-input/type.d.ts +0 -13
  183. package/dist/ikoncomponents/combobox-input/type.js +0 -1
  184. package/dist/ikoncomponents/custom-combo-dropdown/index.d.ts +0 -21
  185. package/dist/ikoncomponents/custom-combo-dropdown/index.js +0 -85
  186. package/dist/ikoncomponents/data-table/datatable-column-filter/index.d.ts +0 -2
  187. package/dist/ikoncomponents/data-table/datatable-column-filter/index.js +0 -22
  188. package/dist/ikoncomponents/data-table/datatable-faceted-filter/index.d.ts +0 -2
  189. package/dist/ikoncomponents/data-table/datatable-faceted-filter/index.js +0 -35
  190. package/dist/ikoncomponents/data-table/datatable-filter-menu/index.d.ts +0 -2
  191. package/dist/ikoncomponents/data-table/datatable-filter-menu/index.js +0 -38
  192. package/dist/ikoncomponents/data-table/datatable-pagination/index.d.ts +0 -2
  193. package/dist/ikoncomponents/data-table/datatable-pagination/index.js +0 -13
  194. package/dist/ikoncomponents/data-table/datatable-toolbar/index.d.ts +0 -2
  195. package/dist/ikoncomponents/data-table/datatable-toolbar/index.js +0 -18
  196. package/dist/ikoncomponents/data-table/function.d.ts +0 -1
  197. package/dist/ikoncomponents/data-table/function.js +0 -6
  198. package/dist/ikoncomponents/data-table/index.d.ts +0 -2
  199. package/dist/ikoncomponents/data-table/index.js +0 -223
  200. package/dist/ikoncomponents/data-table/type.d.ts +0 -60
  201. package/dist/ikoncomponents/data-table/type.js +0 -1
  202. package/dist/ikoncomponents/e-chart/index.d.ts +0 -15
  203. package/dist/ikoncomponents/e-chart/index.js +0 -115
  204. package/dist/ikoncomponents/file-input/index.d.ts +0 -1
  205. package/dist/ikoncomponents/file-input/index.js +0 -21
  206. package/dist/ikoncomponents/fileUpload/index.d.ts +0 -15
  207. package/dist/ikoncomponents/fileUpload/index.js +0 -69
  208. package/dist/ikoncomponents/form-fields/combobox-input/index.d.ts +0 -2
  209. package/dist/ikoncomponents/form-fields/combobox-input/index.js +0 -21
  210. package/dist/ikoncomponents/form-fields/combobox-input-value/index.d.ts +0 -18
  211. package/dist/ikoncomponents/form-fields/combobox-input-value/index.js +0 -26
  212. package/dist/ikoncomponents/form-fields/date-input/index.d.ts +0 -2
  213. package/dist/ikoncomponents/form-fields/date-input/index.js +0 -15
  214. package/dist/ikoncomponents/form-fields/file-input/index.d.ts +0 -1
  215. package/dist/ikoncomponents/form-fields/file-input/index.js +0 -4
  216. package/dist/ikoncomponents/form-fields/input/index.d.ts +0 -2
  217. package/dist/ikoncomponents/form-fields/input/index.js +0 -18
  218. package/dist/ikoncomponents/form-fields/multi-combobox-input/index.d.ts +0 -6
  219. package/dist/ikoncomponents/form-fields/otp-input/index.d.ts +0 -2
  220. package/dist/ikoncomponents/form-fields/otp-input/index.js +0 -18
  221. package/dist/ikoncomponents/form-fields/phone-input/index.d.ts +0 -1
  222. package/dist/ikoncomponents/form-fields/phone-input/index.js +0 -4
  223. package/dist/ikoncomponents/form-fields/textarea/index.d.ts +0 -2
  224. package/dist/ikoncomponents/form-fields/textarea/index.js +0 -18
  225. package/dist/ikoncomponents/form-fields/types/index.d.ts +0 -36
  226. package/dist/ikoncomponents/form-fields/types/index.js +0 -1
  227. package/dist/ikoncomponents/glowing-effect/index.d.ts +0 -14
  228. package/dist/ikoncomponents/glowing-effect/index.js +0 -84
  229. package/dist/ikoncomponents/icon/index.d.ts +0 -8
  230. package/dist/ikoncomponents/icon/index.js +0 -23
  231. package/dist/ikoncomponents/image-cropper-upload/components/newCropper.d.ts +0 -15
  232. package/dist/ikoncomponents/image-cropper-upload/components/newImageUploadForm.d.ts +0 -7
  233. package/dist/ikoncomponents/image-cropper-upload/components/newImageUploadForm.js +0 -145
  234. package/dist/ikoncomponents/image-cropper-upload/cropper-form/index.d.ts +0 -6
  235. package/dist/ikoncomponents/image-cropper-upload/cropper-form/index.js +0 -92
  236. package/dist/ikoncomponents/image-cropper-upload/cropper-form-with-modal/index.d.ts +0 -6
  237. package/dist/ikoncomponents/image-cropper-upload/cropper-form-with-modal/index.js +0 -14
  238. package/dist/ikoncomponents/image-cropper-upload/image-cropper/index.d.ts +0 -14
  239. package/dist/ikoncomponents/image-cropper-upload/index.d.ts +0 -27
  240. package/dist/ikoncomponents/image-cropper-upload/index.js +0 -49
  241. package/dist/ikoncomponents/image-cropper-upload/utils/index.d.ts +0 -16
  242. package/dist/ikoncomponents/image-cropper-upload/utils/index.js +0 -73
  243. package/dist/ikoncomponents/loading-spinner/index.d.ts +0 -9
  244. package/dist/ikoncomponents/loading-spinner/index.js +0 -19
  245. package/dist/ikoncomponents/main-layout/RefreshContext.d.ts +0 -10
  246. package/dist/ikoncomponents/main-layout/RefreshContext.js +0 -17
  247. package/dist/ikoncomponents/main-layout/SidebarNavContext.d.ts +0 -33
  248. package/dist/ikoncomponents/main-layout/SidebarNavContext.js +0 -52
  249. package/dist/ikoncomponents/main-layout/app-sidebar.d.ts +0 -3
  250. package/dist/ikoncomponents/main-layout/app-sidebar.js +0 -24
  251. package/dist/ikoncomponents/main-layout/footer.d.ts +0 -1
  252. package/dist/ikoncomponents/main-layout/footer.js +0 -5
  253. package/dist/ikoncomponents/main-layout/header.d.ts +0 -3
  254. package/dist/ikoncomponents/main-layout/header.js +0 -15
  255. package/dist/ikoncomponents/main-layout/index.d.ts +0 -6
  256. package/dist/ikoncomponents/main-layout/index.js +0 -11
  257. package/dist/ikoncomponents/main-layout/main-sidebar.d.ts +0 -60
  258. package/dist/ikoncomponents/main-layout/main-sidebar.js +0 -119
  259. package/dist/ikoncomponents/main-layout/nav-main.d.ts +0 -11
  260. package/dist/ikoncomponents/main-layout/nav-main.js +0 -33
  261. package/dist/ikoncomponents/multi-combobox/index.d.ts +0 -13
  262. package/dist/ikoncomponents/multi-combobox/index.js +0 -202
  263. package/dist/ikoncomponents/no-data/index.d.ts +0 -3
  264. package/dist/ikoncomponents/no-data/index.js +0 -5
  265. package/dist/ikoncomponents/page-wrapper/index.d.ts +0 -9
  266. package/dist/ikoncomponents/page-wrapper/index.js +0 -7
  267. package/dist/ikoncomponents/password-strength-meter/index.d.ts +0 -3
  268. package/dist/ikoncomponents/password-strength-meter/index.js +0 -40
  269. package/dist/ikoncomponents/phone-input/index.d.ts +0 -1
  270. package/dist/ikoncomponents/phone-input/index.js +0 -41
  271. package/dist/ikoncomponents/provider-wrapper/index.d.ts +0 -6
  272. package/dist/ikoncomponents/provider-wrapper/index.js +0 -11
  273. package/dist/ikoncomponents/search-input/index.d.ts +0 -1
  274. package/dist/ikoncomponents/search-input/index.js +0 -19
  275. package/dist/ikoncomponents/sheet/index.d.ts +0 -10
  276. package/dist/ikoncomponents/sheet/index.js +0 -6
  277. package/dist/ikoncomponents/simple-widget/index.d.ts +0 -14
  278. package/dist/ikoncomponents/simple-widget/index.js +0 -14
  279. package/dist/ikoncomponents/skeleton-loader/skeleton-table.d.ts +0 -5
  280. package/dist/ikoncomponents/skeleton-loader/skeleton-table.js +0 -6
  281. package/dist/ikoncomponents/skeleton-loader/skeleton-widget.d.ts +0 -3
  282. package/dist/ikoncomponents/skeleton-loader/skeleton-widget.js +0 -5
  283. package/dist/ikoncomponents/tabs/index.d.ts +0 -2
  284. package/dist/ikoncomponents/tabs/index.js +0 -50
  285. package/dist/ikoncomponents/tabs/type.js +0 -2
  286. package/dist/ikoncomponents/theme-toggle-btn/index.d.ts +0 -1
  287. package/dist/ikoncomponents/title-progress/index.d.ts +0 -12
  288. package/dist/ikoncomponents/title-progress/index.js +0 -10
  289. package/dist/ikoncomponents/tooltip/index.d.ts +0 -5
  290. package/dist/ikoncomponents/tooltip/index.js +0 -5
  291. package/dist/ikoncomponents/twolevel-dropdown/index.d.ts +0 -31
  292. package/dist/ikoncomponents/twolevel-dropdown/index.js +0 -143
  293. package/dist/ikoncomponents/upload-tab/index.d.ts +0 -1
  294. package/dist/ikoncomponents/upload-tab/index.js +0 -92
  295. package/dist/ikoncomponents/widgets/index.d.ts +0 -2
  296. package/dist/ikoncomponents/widgets/index.js +0 -14
  297. package/dist/ikoncomponents/widgets/type.d.ts +0 -10
  298. package/dist/ikoncomponents/widgets/type.js +0 -2
  299. package/dist/ikoncomponents/work-in-progress/index.d.ts +0 -1
  300. package/dist/ikoncomponents/work-in-progress/index.js +0 -4
  301. package/dist/index.d.ts +0 -138
  302. package/dist/shadcn/accordion.d.ts +0 -7
  303. package/dist/shadcn/accordion.js +0 -33
  304. package/dist/shadcn/alert-dialog.d.ts +0 -20
  305. package/dist/shadcn/alert-dialog.js +0 -83
  306. package/dist/shadcn/alert.d.ts +0 -9
  307. package/dist/shadcn/alert.js +0 -38
  308. package/dist/shadcn/aspect-ratio.d.ts +0 -3
  309. package/dist/shadcn/aspect-ratio.js +0 -19
  310. package/dist/shadcn/avatar.d.ts +0 -6
  311. package/dist/shadcn/avatar.js +0 -28
  312. package/dist/shadcn/badge.d.ts +0 -9
  313. package/dist/shadcn/badge.js +0 -35
  314. package/dist/shadcn/breadcrumb.d.ts +0 -11
  315. package/dist/shadcn/breadcrumb.js +0 -45
  316. package/dist/shadcn/button.d.ts +0 -10
  317. package/dist/shadcn/button.js +0 -47
  318. package/dist/shadcn/calendar.d.ts +0 -8
  319. package/dist/shadcn/calendar.js +0 -61
  320. package/dist/shadcn/card.d.ts +0 -9
  321. package/dist/shadcn/card.js +0 -42
  322. package/dist/shadcn/checkbox.d.ts +0 -4
  323. package/dist/shadcn/checkbox.js +0 -21
  324. package/dist/shadcn/collapsible.d.ts +0 -5
  325. package/dist/shadcn/collapsible.js +0 -27
  326. package/dist/shadcn/command.d.ts +0 -18
  327. package/dist/shadcn/command.js +0 -54
  328. package/dist/shadcn/date-input.d.ts +0 -7
  329. package/dist/shadcn/date-input.js +0 -179
  330. package/dist/shadcn/date-range-picker.d.ts +0 -24
  331. package/dist/shadcn/date-range-picker.js +0 -45
  332. package/dist/shadcn/dialog.d.ts +0 -15
  333. package/dist/shadcn/dialog.js +0 -57
  334. package/dist/shadcn/drawer.d.ts +0 -13
  335. package/dist/shadcn/drawer.js +0 -56
  336. package/dist/shadcn/dropdown-menu.d.ts +0 -25
  337. package/dist/shadcn/dropdown-menu.js +0 -77
  338. package/dist/shadcn/form.d.ts +0 -24
  339. package/dist/shadcn/form.js +0 -70
  340. package/dist/shadcn/hover-card.d.ts +0 -6
  341. package/dist/shadcn/hover-card.js +0 -28
  342. package/dist/shadcn/input-otp.d.ts +0 -34
  343. package/dist/shadcn/input-otp.js +0 -40
  344. package/dist/shadcn/input.d.ts +0 -3
  345. package/dist/shadcn/input.js +0 -18
  346. package/dist/shadcn/label.d.ts +0 -4
  347. package/dist/shadcn/label.js +0 -20
  348. package/dist/shadcn/navigation-menu.d.ts +0 -16
  349. package/dist/shadcn/navigation-menu.js +0 -74
  350. package/dist/shadcn/popover.d.ts +0 -7
  351. package/dist/shadcn/popover.js +0 -32
  352. package/dist/shadcn/progress.d.ts +0 -8
  353. package/dist/shadcn/progress.js +0 -23
  354. package/dist/shadcn/radio-group.d.ts +0 -5
  355. package/dist/shadcn/radio-group.js +0 -25
  356. package/dist/shadcn/scroll-area.d.ts +0 -5
  357. package/dist/shadcn/scroll-area.js +0 -26
  358. package/dist/shadcn/select.d.ts +0 -15
  359. package/dist/shadcn/select.js +0 -59
  360. package/dist/shadcn/separator.d.ts +0 -4
  361. package/dist/shadcn/separator.js +0 -20
  362. package/dist/shadcn/sheet.d.ts +0 -13
  363. package/dist/shadcn/sheet.js +0 -61
  364. package/dist/shadcn/sidebar.d.ts +0 -69
  365. package/dist/shadcn/sidebar.js +0 -242
  366. package/dist/shadcn/skeleton.d.ts +0 -3
  367. package/dist/shadcn/skeleton.js +0 -18
  368. package/dist/shadcn/slider.d.ts +0 -4
  369. package/dist/shadcn/slider.js +0 -26
  370. package/dist/shadcn/sonner.d.ts +0 -3
  371. package/dist/shadcn/sonner.js +0 -25
  372. package/dist/shadcn/switch.d.ts +0 -4
  373. package/dist/shadcn/switch.js +0 -20
  374. package/dist/shadcn/table.d.ts +0 -10
  375. package/dist/shadcn/table.js +0 -47
  376. package/dist/shadcn/tabs.d.ts +0 -7
  377. package/dist/shadcn/tabs.js +0 -32
  378. package/dist/shadcn/textarea.d.ts +0 -3
  379. package/dist/shadcn/textarea.js +0 -18
  380. package/dist/shadcn/toggle-group.d.ts +0 -9
  381. package/dist/shadcn/toggle-group.js +0 -35
  382. package/dist/shadcn/toggle.d.ts +0 -9
  383. package/dist/shadcn/toggle.js +0 -38
  384. package/dist/shadcn/tooltip.d.ts +0 -7
  385. package/dist/shadcn/tooltip.js +0 -32
  386. package/dist/shadcn/workflow.d.ts +0 -20
  387. package/dist/shadcn/workflow.js +0 -20
  388. package/dist/styles.css +0 -6163
  389. package/dist/utils/actions/account/index.d.ts +0 -5
  390. package/dist/utils/actions/account/index.js +0 -28
  391. package/dist/utils/actions/account/type.d.ts +0 -4
  392. package/dist/utils/actions/account/type.js +0 -1
  393. package/dist/utils/actions/auth/index.d.ts +0 -7
  394. package/dist/utils/actions/common/utils.d.ts +0 -5
  395. package/dist/utils/actions/software/index.d.ts +0 -11
  396. package/dist/utils/actions/software/index.js +0 -75
  397. package/dist/utils/api/accountService/index.d.ts +0 -23
  398. package/dist/utils/api/accountService/index.js +0 -64
  399. package/dist/utils/api/accountService/type.d.ts +0 -4
  400. package/dist/utils/api/accountService/type.js +0 -1
  401. package/dist/utils/api/file-upload/index.d.ts +0 -5
  402. package/dist/utils/api/file-upload/index.js +0 -80
  403. package/dist/utils/api/file-upload/type.d.ts +0 -6
  404. package/dist/utils/api/file-upload/type.js +0 -1
  405. package/dist/utils/api/ikonBaseApi.d.ts +0 -12
  406. package/dist/utils/api/loginService/index.d.ts +0 -12
  407. package/dist/utils/api/loginService/index.js +0 -72
  408. package/dist/utils/api/loginService/type.js +0 -1
  409. package/dist/utils/api/softwareService/index.d.ts +0 -64
  410. package/dist/utils/api/softwareService/index.js +0 -212
  411. package/dist/utils/api/softwareService/type.d.ts +0 -54
  412. package/dist/utils/api/softwareService/type.js +0 -1
  413. package/dist/utils/border-radius-provider.d.ts +0 -11
  414. package/dist/utils/cn.d.ts +0 -2
  415. package/dist/utils/cn.js +0 -5
  416. package/dist/utils/font-provider.d.ts +0 -11
  417. package/dist/utils/session/cookieSession.d.ts +0 -8
  418. package/dist/utils/session/cookieSession.js +0 -33
  419. package/dist/utils/theme-provider/index.d.ts +0 -3
  420. package/dist/utils/theme-provider/index.js +0 -18
  421. package/dist/utils/token-management/index.d.ts +0 -10
  422. package/dist/utils/token-management/index.js +0 -69
  423. package/dist/utils/token-management/types.d.ts +0 -6
  424. package/dist/utils/token-management/types.js +0 -1
@@ -0,0 +1,879 @@
1
+ .rbc-btn-group {
2
+ font-size: 14px;
3
+ }
4
+
5
+ .custom-buttons {
6
+ font-size: 14px;
7
+ }
8
+
9
+ .rbc-date-cell.rbc-now,
10
+ .rbc-time-slot.rbc-now,
11
+ .rbc-show-more,
12
+ .rbc-header {
13
+ font-weight: normal !important;
14
+ }
15
+
16
+ .rbc-btn {
17
+ color: inherit;
18
+ font: inherit;
19
+ margin: 0;
20
+ }
21
+
22
+ button.rbc-btn {
23
+ overflow: visible;
24
+ text-transform: none;
25
+ -webkit-appearance: button;
26
+ -moz-appearance: button;
27
+ appearance: button;
28
+ cursor: pointer;
29
+ }
30
+
31
+ button[disabled].rbc-btn {
32
+ cursor: not-allowed;
33
+ }
34
+
35
+ button.rbc-input::-moz-focus-inner {
36
+ border: 0;
37
+ padding: 0;
38
+ }
39
+
40
+ .rbc-calendar {
41
+ -webkit-box-sizing: border-box;
42
+ box-sizing: border-box;
43
+ height: 100%;
44
+ display: -webkit-box;
45
+ display: -ms-flexbox;
46
+ display: flex;
47
+ font-size: 15px;
48
+ -webkit-box-orient: vertical;
49
+ -webkit-box-direction: normal;
50
+ -ms-flex-direction: column;
51
+ flex-direction: column;
52
+ -webkit-box-align: stretch;
53
+ -ms-flex-align: stretch;
54
+ align-items: stretch;
55
+ }
56
+
57
+ .rbc-m-b-negative-3 {
58
+ margin-bottom: -3px;
59
+ }
60
+
61
+ .rbc-h-full {
62
+ height: 100%;
63
+ }
64
+
65
+ .rbc-calendar *,
66
+ .rbc-calendar *:before,
67
+ .rbc-calendar *:after {
68
+ -webkit-box-sizing: inherit;
69
+ box-sizing: inherit;
70
+ }
71
+
72
+ .rbc-abs-full,
73
+ .rbc-row-bg {
74
+ overflow: hidden;
75
+ position: absolute;
76
+ top: 0;
77
+ left: 0;
78
+ right: 0;
79
+ bottom: 0;
80
+ }
81
+
82
+ .rbc-ellipsis,
83
+ .rbc-show-more,
84
+ .rbc-row-segment .rbc-event-content,
85
+ .rbc-event-label {
86
+ display: block;
87
+ overflow: hidden;
88
+ text-overflow: ellipsis;
89
+ white-space: nowrap;
90
+ }
91
+
92
+ .rbc-rtl {
93
+ direction: rtl;
94
+ }
95
+
96
+ .rbc-off-range {
97
+ color: #999999;
98
+ }
99
+
100
+ .rbc-off-range-bg {
101
+ background: hsl(var(--muted));
102
+ }
103
+
104
+ .rbc-header {
105
+ overflow: hidden;
106
+ -webkit-box-flex: 1;
107
+ -ms-flex: 1 0 0%;
108
+ flex: 1 0 0%;
109
+ text-overflow: ellipsis;
110
+ white-space: nowrap;
111
+ padding: 0 3px;
112
+ text-align: center;
113
+ vertical-align: middle;
114
+ font-weight: bold;
115
+ font-size: 90%;
116
+ min-height: 0;
117
+ border-bottom: 1px solid hsl(var(--border));
118
+ }
119
+ .rbc-header + .rbc-header {
120
+ border-left: 1px solid hsl(var(--border));
121
+ }
122
+ .rbc-rtl .rbc-header + .rbc-header {
123
+ border-left-width: 0;
124
+ border-right: 1px solid hsl(var(--border));
125
+ }
126
+ .rbc-header > a,
127
+ .rbc-header > a:active,
128
+ .rbc-header > a:visited {
129
+ color: inherit;
130
+ text-decoration: none;
131
+ }
132
+
133
+ .rbc-button-link {
134
+ color: inherit;
135
+ background: none;
136
+ margin: 0;
137
+ padding: 0;
138
+ border: none;
139
+ cursor: pointer;
140
+ -webkit-user-select: text;
141
+ -moz-user-select: text;
142
+ -ms-user-select: text;
143
+ user-select: text;
144
+ }
145
+
146
+ .rbc-row-content {
147
+ position: relative;
148
+ -moz-user-select: none;
149
+ -ms-user-select: none;
150
+ user-select: none;
151
+ -webkit-user-select: none;
152
+ z-index: 4;
153
+ }
154
+
155
+ .rbc-row-content-scrollable {
156
+ display: -webkit-box;
157
+ display: -ms-flexbox;
158
+ display: flex;
159
+ -webkit-box-orient: vertical;
160
+ -webkit-box-direction: normal;
161
+ -ms-flex-direction: column;
162
+ flex-direction: column;
163
+ height: 100%;
164
+ }
165
+ .rbc-row-content-scrollable .rbc-row-content-scroll-container {
166
+ height: 100%;
167
+ overflow-y: scroll; /* IE and Edge */ /* Firefox */
168
+ -ms-overflow-style: none; /* IE and Edge */
169
+ scrollbar-width: none; /* Firefox */
170
+ /* Hide scrollbar for Chrome, Safari and Opera */
171
+ }
172
+ .rbc-row-content-scrollable
173
+ .rbc-row-content-scroll-container::-webkit-scrollbar {
174
+ display: none;
175
+ }
176
+
177
+ .rbc-today {
178
+ background-color: hsl(var(--accent));
179
+ color: hsl(var(--accent-forground));
180
+ }
181
+
182
+ .rbc-toolbar {
183
+ display: -webkit-box;
184
+ display: -ms-flexbox;
185
+ display: flex;
186
+ -ms-flex-wrap: wrap;
187
+ flex-wrap: wrap;
188
+ -webkit-box-pack: center;
189
+ -ms-flex-pack: center;
190
+ justify-content: center;
191
+ -webkit-box-align: center;
192
+ -ms-flex-align: center;
193
+ align-items: center;
194
+ margin-bottom: 10px;
195
+ font-size: 16px;
196
+ }
197
+ .rbc-toolbar .rbc-toolbar-label {
198
+ -webkit-box-flex: 1;
199
+ -ms-flex-positive: 1;
200
+ flex-grow: 1;
201
+ padding: 0 10px;
202
+ text-align: center;
203
+ }
204
+ .rbc-toolbar button {
205
+ color: #373a3c;
206
+ display: inline-block;
207
+ margin: 0;
208
+ text-align: center;
209
+ vertical-align: middle;
210
+ background: none;
211
+ background-image: none;
212
+ border: 1px solid hsl(var(--border));
213
+ padding: 0.375rem 1rem;
214
+ border-radius: 4px;
215
+ line-height: normal;
216
+ white-space: nowrap;
217
+ }
218
+ .rbc-toolbar button:active,
219
+ .rbc-toolbar button.rbc-active {
220
+ background-image: none;
221
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
222
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
223
+ background-color: #e6e6e6;
224
+ border-color: #adadad;
225
+ }
226
+ .rbc-toolbar button:active:hover,
227
+ .rbc-toolbar button:active:focus,
228
+ .rbc-toolbar button.rbc-active:hover,
229
+ .rbc-toolbar button.rbc-active:focus {
230
+ color: #373a3c;
231
+ background-color: #d4d4d4;
232
+ border-color: #8c8c8c;
233
+ }
234
+ .rbc-toolbar button:focus {
235
+ color: #373a3c;
236
+ background-color: #e6e6e6;
237
+ border-color: #adadad;
238
+ }
239
+ .rbc-toolbar button:hover {
240
+ color: #373a3c;
241
+ background-color: #e6e6e6;
242
+ border-color: #adadad;
243
+ }
244
+
245
+ .rbc-btn-group {
246
+ display: inline-block;
247
+ white-space: nowrap;
248
+ }
249
+ .rbc-btn-group > button:first-child:not(:last-child) {
250
+ border-top-right-radius: 0;
251
+ border-bottom-right-radius: 0;
252
+ }
253
+ .rbc-btn-group > button:last-child:not(:first-child) {
254
+ border-top-left-radius: 0;
255
+ border-bottom-left-radius: 0;
256
+ }
257
+ .rbc-rtl .rbc-btn-group > button:first-child:not(:last-child) {
258
+ border-radius: 4px;
259
+ border-top-left-radius: 0;
260
+ border-bottom-left-radius: 0;
261
+ }
262
+ .rbc-rtl .rbc-btn-group > button:last-child:not(:first-child) {
263
+ border-radius: 4px;
264
+ border-top-right-radius: 0;
265
+ border-bottom-right-radius: 0;
266
+ }
267
+ .rbc-btn-group > button:not(:first-child):not(:last-child) {
268
+ border-radius: 0;
269
+ }
270
+ .rbc-btn-group button + button {
271
+ margin-left: -1px;
272
+ }
273
+ .rbc-rtl .rbc-btn-group button + button {
274
+ margin-left: 0;
275
+ margin-right: -1px;
276
+ }
277
+ .rbc-btn-group + .rbc-btn-group,
278
+ .rbc-btn-group + button {
279
+ margin-left: 10px;
280
+ }
281
+
282
+ @media (max-width: 767px) {
283
+ .rbc-toolbar {
284
+ -webkit-box-orient: vertical;
285
+ -webkit-box-direction: normal;
286
+ -ms-flex-direction: column;
287
+ flex-direction: column;
288
+ }
289
+ }
290
+
291
+ .rbc-event,
292
+ .rbc-day-slot .rbc-background-event {
293
+ border: none;
294
+ -webkit-box-sizing: border-box;
295
+ box-sizing: border-box;
296
+ -webkit-box-shadow: none;
297
+ box-shadow: none;
298
+ margin: 0;
299
+ padding: 2px 5px;
300
+ background-color: hsl(var(--input));
301
+ border-radius: 5px;
302
+ color: #fff;
303
+ cursor: pointer;
304
+ width: 100%;
305
+ text-align: left;
306
+ }
307
+ .rbc-slot-selecting .rbc-event,
308
+ .rbc-slot-selecting .rbc-day-slot .rbc-background-event,
309
+ .rbc-day-slot .rbc-slot-selecting .rbc-background-event {
310
+ cursor: inherit;
311
+ pointer-events: none;
312
+ }
313
+ .rbc-event.rbc-selected,
314
+ .rbc-day-slot .rbc-selected.rbc-background-event {
315
+ background-color: #265985;
316
+ }
317
+ .rbc-event:focus,
318
+ .rbc-day-slot .rbc-background-event:focus {
319
+ outline: 5px auto #3b99fc;
320
+ }
321
+
322
+ .rbc-event-label {
323
+ font-size: 80%;
324
+ }
325
+
326
+ .rbc-event-overlaps {
327
+ -webkit-box-shadow: -1px 1px 5px 0px rgba(51, 51, 51, 0.5);
328
+ box-shadow: -1px 1px 5px 0px rgba(51, 51, 51, 0.5);
329
+ }
330
+
331
+ .rbc-event-continues-prior {
332
+ border-top-left-radius: 0;
333
+ border-bottom-left-radius: 0;
334
+ }
335
+
336
+ .rbc-event-continues-after {
337
+ border-top-right-radius: 0;
338
+ border-bottom-right-radius: 0;
339
+ }
340
+
341
+ .rbc-event-continues-earlier {
342
+ border-top-left-radius: 0;
343
+ border-top-right-radius: 0;
344
+ }
345
+
346
+ .rbc-event-continues-later {
347
+ border-bottom-left-radius: 0;
348
+ border-bottom-right-radius: 0;
349
+ }
350
+
351
+ .rbc-row {
352
+ display: -webkit-box;
353
+ display: -ms-flexbox;
354
+ display: flex;
355
+ -webkit-box-orient: horizontal;
356
+ -webkit-box-direction: normal;
357
+ -ms-flex-direction: row;
358
+ flex-direction: row;
359
+ }
360
+
361
+ .rbc-row-segment {
362
+ padding: 0 1px 1px 1px;
363
+ }
364
+ .rbc-selected-cell {
365
+ background-color: rgba(0, 0, 0, 0.1);
366
+ }
367
+
368
+ .rbc-show-more {
369
+ background-color: rgba(255, 255, 255, 0.3);
370
+ z-index: 4;
371
+ font-weight: bold;
372
+ font-size: 85%;
373
+ height: auto;
374
+ line-height: normal;
375
+ color: hsl(var(--input));
376
+ }
377
+ .rbc-show-more:hover,
378
+ .rbc-show-more:focus {
379
+ color: #265985;
380
+ }
381
+
382
+ .rbc-month-view {
383
+ position: relative;
384
+ border: 1px solid hsl(var(--border));
385
+ display: -webkit-box;
386
+ display: -ms-flexbox;
387
+ display: flex;
388
+ -webkit-box-orient: vertical;
389
+ -webkit-box-direction: normal;
390
+ -ms-flex-direction: column;
391
+ flex-direction: column;
392
+ -webkit-box-flex: 1;
393
+ -ms-flex: 1 0 0px;
394
+ flex: 1 0 0;
395
+ width: 100%;
396
+ -moz-user-select: none;
397
+ -ms-user-select: none;
398
+ user-select: none;
399
+ -webkit-user-select: none;
400
+ height: 100%;
401
+ }
402
+
403
+ .rbc-month-header {
404
+ display: -webkit-box;
405
+ display: -ms-flexbox;
406
+ display: flex;
407
+ -webkit-box-orient: horizontal;
408
+ -webkit-box-direction: normal;
409
+ -ms-flex-direction: row;
410
+ flex-direction: row;
411
+ }
412
+
413
+ .rbc-month-row {
414
+ display: -webkit-box;
415
+ display: -ms-flexbox;
416
+ display: flex;
417
+ position: relative;
418
+ -webkit-box-orient: vertical;
419
+ -webkit-box-direction: normal;
420
+ -ms-flex-direction: column;
421
+ flex-direction: column;
422
+ -webkit-box-flex: 1;
423
+ -ms-flex: 1 0 0px;
424
+ flex: 1 0 0;
425
+ -ms-flex-preferred-size: 0px;
426
+ flex-basis: 0px;
427
+ overflow: hidden;
428
+ height: 100%;
429
+ }
430
+ .rbc-month-row + .rbc-month-row {
431
+ border-top: 1px solid hsl(var(--border));
432
+ }
433
+
434
+ .rbc-date-cell {
435
+ -webkit-box-flex: 1;
436
+ -ms-flex: 1 1 0px;
437
+ flex: 1 1 0;
438
+ min-width: 0;
439
+ padding-right: 5px;
440
+ text-align: right;
441
+ }
442
+ .rbc-date-cell.rbc-now {
443
+ font-weight: bold;
444
+ }
445
+ .rbc-date-cell > a,
446
+ .rbc-date-cell > a:active,
447
+ .rbc-date-cell > a:visited {
448
+ color: inherit;
449
+ text-decoration: none;
450
+ }
451
+
452
+ .rbc-row-bg {
453
+ display: -webkit-box;
454
+ display: -ms-flexbox;
455
+ display: flex;
456
+ -webkit-box-orient: horizontal;
457
+ -webkit-box-direction: normal;
458
+ -ms-flex-direction: row;
459
+ flex-direction: row;
460
+ -webkit-box-flex: 1;
461
+ -ms-flex: 1 0 0px;
462
+ flex: 1 0 0;
463
+ overflow: hidden;
464
+ right: 1px;
465
+ }
466
+
467
+ .rbc-day-bg {
468
+ -webkit-box-flex: 1;
469
+ -ms-flex: 1 0 0%;
470
+ flex: 1 0 0%;
471
+ }
472
+ .rbc-day-bg + .rbc-day-bg {
473
+ border-left: 1px solid hsl(var(--border));
474
+ }
475
+ .rbc-rtl .rbc-day-bg + .rbc-day-bg {
476
+ border-left-width: 0;
477
+ border-right: 1px solid hsl(var(--border));
478
+ }
479
+
480
+ .rbc-overlay {
481
+ position: absolute;
482
+ z-index: 5;
483
+ border: 1px solid #e5e5e5;
484
+ background-color: #fff;
485
+ -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
486
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
487
+ padding: 10px;
488
+ }
489
+ .rbc-overlay > * + * {
490
+ margin-top: 1px;
491
+ }
492
+
493
+ .rbc-overlay-header {
494
+ border-bottom: 1px solid #e5e5e5;
495
+ margin: -10px -10px 5px -10px;
496
+ padding: 2px 10px;
497
+ }
498
+
499
+ .rbc-agenda-view {
500
+ display: -webkit-box;
501
+ display: -ms-flexbox;
502
+ display: flex;
503
+ -webkit-box-orient: vertical;
504
+ -webkit-box-direction: normal;
505
+ -ms-flex-direction: column;
506
+ flex-direction: column;
507
+ -webkit-box-flex: 1;
508
+ -ms-flex: 1 0 0px;
509
+ flex: 1 0 0;
510
+ overflow: auto;
511
+ }
512
+ .rbc-agenda-view table.rbc-agenda-table {
513
+ width: 100%;
514
+ border: 1px solid hsl(var(--border));
515
+ border-spacing: 0;
516
+ border-collapse: collapse;
517
+ }
518
+ .rbc-agenda-view table.rbc-agenda-table tbody > tr > td {
519
+ padding: 5px 10px;
520
+ vertical-align: top;
521
+ }
522
+ .rbc-agenda-view table.rbc-agenda-table .rbc-agenda-time-cell {
523
+ padding-left: 15px;
524
+ padding-right: 15px;
525
+ text-transform: lowercase;
526
+ }
527
+ .rbc-agenda-view table.rbc-agenda-table tbody > tr > td + td {
528
+ border-left: 1px solid hsl(var(--border));
529
+ }
530
+ .rbc-rtl .rbc-agenda-view table.rbc-agenda-table tbody > tr > td + td {
531
+ border-left-width: 0;
532
+ border-right: 1px solid hsl(var(--border));
533
+ }
534
+ .rbc-agenda-view table.rbc-agenda-table tbody > tr + tr {
535
+ border-top: 1px solid hsl(var(--border));
536
+ }
537
+ .rbc-agenda-view table.rbc-agenda-table thead > tr > th {
538
+ padding: 3px 5px;
539
+ text-align: left;
540
+ border-bottom: 1px solid hsl(var(--border));
541
+ }
542
+ .rbc-rtl .rbc-agenda-view table.rbc-agenda-table thead > tr > th {
543
+ text-align: right;
544
+ }
545
+
546
+ .rbc-agenda-time-cell {
547
+ text-transform: lowercase;
548
+ }
549
+ .rbc-agenda-time-cell .rbc-continues-after:after {
550
+ content: " »";
551
+ }
552
+ .rbc-agenda-time-cell .rbc-continues-prior:before {
553
+ content: "« ";
554
+ }
555
+
556
+ .rbc-agenda-date-cell,
557
+ .rbc-agenda-time-cell {
558
+ white-space: nowrap;
559
+ }
560
+
561
+ .rbc-agenda-event-cell {
562
+ width: 100%;
563
+ }
564
+
565
+ .rbc-time-column {
566
+ display: -webkit-box;
567
+ display: -ms-flexbox;
568
+ display: flex;
569
+ -webkit-box-orient: vertical;
570
+ -webkit-box-direction: normal;
571
+ -ms-flex-direction: column;
572
+ flex-direction: column;
573
+ min-height: 100%;
574
+ }
575
+ .rbc-time-column .rbc-timeslot-group {
576
+ -webkit-box-flex: 1;
577
+ -ms-flex: 1;
578
+ flex: 1;
579
+ }
580
+
581
+ .rbc-timeslot-group {
582
+ border-bottom: 1px solid hsl(var(--border));
583
+ min-height: 40px;
584
+ display: -webkit-box;
585
+ display: -ms-flexbox;
586
+ display: flex;
587
+ -webkit-box-orient: vertical;
588
+ -webkit-box-direction: normal;
589
+ -ms-flex-flow: column nowrap;
590
+ flex-flow: column nowrap;
591
+ }
592
+
593
+ .rbc-time-gutter,
594
+ .rbc-header-gutter {
595
+ -webkit-box-flex: 0;
596
+ -ms-flex: none;
597
+ flex: none;
598
+ }
599
+
600
+ .rbc-label {
601
+ padding: 0 5px;
602
+ }
603
+
604
+ .rbc-day-slot {
605
+ position: relative;
606
+ }
607
+ .rbc-day-slot .rbc-events-container {
608
+ bottom: 0;
609
+ left: 0;
610
+ position: absolute;
611
+ right: 0;
612
+ margin-right: 10px;
613
+ top: 0;
614
+ }
615
+ .rbc-day-slot .rbc-events-container.rbc-rtl {
616
+ left: 10px;
617
+ right: 0;
618
+ }
619
+ .rbc-day-slot .rbc-event,
620
+ .rbc-day-slot .rbc-background-event {
621
+ border: 1px solid #265985;
622
+ display: -webkit-box;
623
+ display: -ms-flexbox;
624
+ display: flex;
625
+ max-height: 100%;
626
+ min-height: 20px;
627
+ -webkit-box-orient: vertical;
628
+ -webkit-box-direction: normal;
629
+ -ms-flex-flow: column wrap;
630
+ flex-flow: column wrap;
631
+ -webkit-box-align: start;
632
+ -ms-flex-align: start;
633
+ align-items: flex-start;
634
+ overflow: hidden;
635
+ position: absolute;
636
+ }
637
+ .rbc-day-slot .rbc-background-event {
638
+ opacity: 0.75;
639
+ }
640
+ .rbc-day-slot .rbc-event-label {
641
+ -webkit-box-flex: 0;
642
+ -ms-flex: none;
643
+ flex: none;
644
+ padding-right: 5px;
645
+ width: auto;
646
+ }
647
+ .rbc-day-slot .rbc-event-content {
648
+ width: 100%;
649
+ -webkit-box-flex: 1;
650
+ -ms-flex: 1 1 0px;
651
+ flex: 1 1 0;
652
+ word-wrap: break-word;
653
+ line-height: 1;
654
+ height: 100%;
655
+ min-height: 1em;
656
+ }
657
+ .rbc-day-slot .rbc-time-slot {
658
+ border-top: 1px solid hsl(var(--border));
659
+ }
660
+
661
+ .rbc-time-view-resources .rbc-time-gutter,
662
+ .rbc-time-view-resources .rbc-time-header-gutter {
663
+ position: sticky;
664
+ left: 0;
665
+ background-color: white;
666
+ border-right: 1px solid hsl(var(--border));
667
+ z-index: 10;
668
+ margin-right: -1px;
669
+ }
670
+ .rbc-time-view-resources .rbc-time-header {
671
+ overflow: hidden;
672
+ }
673
+ .rbc-time-view-resources .rbc-time-header-content {
674
+ min-width: auto;
675
+ -webkit-box-flex: 1;
676
+ -ms-flex: 1 0 0px;
677
+ flex: 1 0 0;
678
+ -ms-flex-preferred-size: 0px;
679
+ flex-basis: 0px;
680
+ }
681
+ .rbc-time-view-resources .rbc-time-header-cell-single-day {
682
+ display: none;
683
+ }
684
+ .rbc-time-view-resources .rbc-day-slot {
685
+ min-width: 140px;
686
+ }
687
+ .rbc-time-view-resources .rbc-header,
688
+ .rbc-time-view-resources .rbc-day-bg {
689
+ width: 140px;
690
+ -webkit-box-flex: 1;
691
+ -ms-flex: 1 1 0px;
692
+ flex: 1 1 0;
693
+ -ms-flex-preferred-size: 0 px;
694
+ flex-basis: 0 px;
695
+ }
696
+
697
+ .rbc-time-header-content + .rbc-time-header-content {
698
+ margin-left: -1px;
699
+ }
700
+
701
+ .rbc-time-slot {
702
+ -webkit-box-flex: 1;
703
+ -ms-flex: 1 0 0px;
704
+ flex: 1 0 0;
705
+ }
706
+ .rbc-time-slot.rbc-now {
707
+ font-weight: bold;
708
+ }
709
+
710
+ .rbc-day-header {
711
+ text-align: center;
712
+ }
713
+
714
+ .rbc-slot-selection {
715
+ z-index: 10;
716
+ position: absolute;
717
+ background-color: rgba(0, 0, 0, 0.5);
718
+ color: white;
719
+ font-size: 75%;
720
+ width: 100%;
721
+ padding: 3px;
722
+ }
723
+
724
+ .rbc-slot-selecting {
725
+ cursor: move;
726
+ }
727
+
728
+ .rbc-time-view {
729
+ display: -webkit-box;
730
+ display: -ms-flexbox;
731
+ display: flex;
732
+ -webkit-box-orient: vertical;
733
+ -webkit-box-direction: normal;
734
+ -ms-flex-direction: column;
735
+ flex-direction: column;
736
+ -webkit-box-flex: 1;
737
+ -ms-flex: 1;
738
+ flex: 1;
739
+ width: 100%;
740
+ border: 1px solid hsl(var(--border));
741
+ min-height: 0;
742
+ }
743
+ .rbc-time-view .rbc-time-gutter {
744
+ white-space: nowrap;
745
+ text-align: right;
746
+ }
747
+ .rbc-time-view .rbc-allday-cell {
748
+ -webkit-box-sizing: content-box;
749
+ box-sizing: content-box;
750
+ width: 100%;
751
+ height: 100%;
752
+ position: relative;
753
+ }
754
+ .rbc-time-view .rbc-allday-cell + .rbc-allday-cell {
755
+ border-left: 1px solid hsl(var(--border));
756
+ }
757
+ .rbc-time-view .rbc-allday-events {
758
+ position: relative;
759
+ z-index: 4;
760
+ }
761
+ .rbc-time-view .rbc-row {
762
+ -webkit-box-sizing: border-box;
763
+ box-sizing: border-box;
764
+ min-height: 20px;
765
+ }
766
+
767
+ .rbc-time-header {
768
+ display: -webkit-box;
769
+ display: -ms-flexbox;
770
+ display: flex;
771
+ -webkit-box-flex: 0;
772
+ -ms-flex: 0 0 auto;
773
+ flex: 0 0 auto;
774
+ -webkit-box-orient: horizontal;
775
+ -webkit-box-direction: normal;
776
+ -ms-flex-direction: row;
777
+ flex-direction: row;
778
+ }
779
+ .rbc-time-header.rbc-overflowing {
780
+ border-right: 1px solid hsl(var(--border));
781
+ }
782
+ .rbc-rtl .rbc-time-header.rbc-overflowing {
783
+ border-right-width: 0;
784
+ border-left: 1px solid hsl(var(--border));
785
+ }
786
+ .rbc-time-header > .rbc-row:first-child {
787
+ border-bottom: 1px solid hsl(var(--border));
788
+ }
789
+ .rbc-time-header > .rbc-row.rbc-row-resource {
790
+ border-bottom: 1px solid hsl(var(--border));
791
+ }
792
+
793
+ .rbc-time-header-cell-single-day {
794
+ display: none;
795
+ }
796
+
797
+ .rbc-time-header-content {
798
+ -webkit-box-flex: 1;
799
+ -ms-flex: 1;
800
+ flex: 1;
801
+ display: -webkit-box;
802
+ display: -ms-flexbox;
803
+ display: flex;
804
+ min-width: 0;
805
+ -webkit-box-orient: vertical;
806
+ -webkit-box-direction: normal;
807
+ -ms-flex-direction: column;
808
+ flex-direction: column;
809
+ border-left: 1px solid hsl(var(--border));
810
+ }
811
+ .rbc-rtl .rbc-time-header-content {
812
+ border-left-width: 0;
813
+ border-right: 1px solid hsl(var(--border));
814
+ }
815
+ .rbc-time-header-content > .rbc-row.rbc-row-resource {
816
+ border-bottom: 1px solid hsl(var(--border));
817
+ -ms-flex-negative: 0;
818
+ flex-shrink: 0;
819
+ }
820
+
821
+ .rbc-time-content {
822
+ display: -webkit-box;
823
+ display: -ms-flexbox;
824
+ display: flex;
825
+ -webkit-box-flex: 1;
826
+ -ms-flex: 1 0 0%;
827
+ flex: 1 0 0%;
828
+ -webkit-box-align: start;
829
+ -ms-flex-align: start;
830
+ align-items: flex-start;
831
+ width: 100%;
832
+ border-top: 2px solid hsl(var(--border));
833
+ overflow-y: auto;
834
+ position: relative;
835
+ }
836
+ .rbc-time-content > .rbc-time-gutter {
837
+ -webkit-box-flex: 0;
838
+ -ms-flex: none;
839
+ flex: none;
840
+ }
841
+ .rbc-time-content > * + * > * {
842
+ border-left: 1px solid hsl(var(--border));
843
+ }
844
+ .rbc-rtl .rbc-time-content > * + * > * {
845
+ border-left-width: 0;
846
+ border-right: 1px solid hsl(var(--border));
847
+ }
848
+ .rbc-time-content > .rbc-day-slot {
849
+ width: 100%;
850
+ -moz-user-select: none;
851
+ -ms-user-select: none;
852
+ user-select: none;
853
+ -webkit-user-select: none;
854
+ }
855
+
856
+ .rbc-current-time-indicator {
857
+ position: absolute;
858
+ z-index: 3;
859
+ left: 0;
860
+ right: 0;
861
+ height: 1px;
862
+ background-color: #74ad31;
863
+ pointer-events: none;
864
+ }
865
+
866
+ .rbc-resource-grouping.rbc-time-header-content {
867
+ display: -webkit-box;
868
+ display: -ms-flexbox;
869
+ display: flex;
870
+ -webkit-box-orient: vertical;
871
+ -webkit-box-direction: normal;
872
+ -ms-flex-direction: column;
873
+ flex-direction: column;
874
+ }
875
+ .rbc-resource-grouping .rbc-row .rbc-header {
876
+ width: 141px;
877
+ }
878
+
879
+ /*# sourceMappingURL=react-big-calendar.css.map */