ingeniuscliq-core 0.4.14 → 0.4.16

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 (669) hide show
  1. package/README.md +417 -0
  2. package/dist/_virtual/index.js +5 -0
  3. package/dist/_virtual/index2.js +3 -0
  4. package/dist/_virtual/use-sync-external-store-shim.development.js +3 -0
  5. package/dist/_virtual/use-sync-external-store-shim.production.js +3 -0
  6. package/dist/assets/logo.svg.js +3 -0
  7. package/dist/classes/CoreBuilder.d.ts +1 -0
  8. package/dist/classes/CoreBuilder.d.ts.map +1 -0
  9. package/dist/classes/CoreBuilder.js +4 -0
  10. package/dist/classes/index.d.ts +1 -0
  11. package/dist/classes/index.d.ts.map +1 -0
  12. package/dist/components/common/carousel/CustomCarousel.d.ts +2 -1
  13. package/dist/components/common/carousel/CustomCarousel.d.ts.map +1 -0
  14. package/dist/components/common/carousel/CustomCarousel.tsx +26 -0
  15. package/dist/components/common/carousel/CustomCarouselSection.d.ts +2 -1
  16. package/dist/components/common/carousel/CustomCarouselSection.d.ts.map +1 -0
  17. package/dist/components/common/carousel/CustomCarouselSection.tsx +41 -0
  18. package/dist/components/common/carousel/index.d.ts +3 -2
  19. package/dist/components/common/carousel/index.d.ts.map +1 -0
  20. package/dist/components/common/form/CustomFormField.d.ts +4 -2
  21. package/dist/components/common/form/CustomFormField.d.ts.map +1 -0
  22. package/dist/components/common/form/CustomFormField.tsx +29 -0
  23. package/dist/components/common/form/FormCheckbox.d.ts +5 -1
  24. package/dist/components/common/form/FormCheckbox.d.ts.map +1 -0
  25. package/dist/components/common/form/FormCheckbox.tsx +57 -0
  26. package/dist/components/common/form/FormInput.d.ts +4 -1
  27. package/dist/components/common/form/FormInput.d.ts.map +1 -0
  28. package/dist/components/common/form/FormInput.tsx +60 -0
  29. package/dist/components/common/form/FormSelect.d.ts +8 -2
  30. package/dist/components/common/form/FormSelect.d.ts.map +1 -0
  31. package/dist/components/common/form/FormSelect.tsx +78 -0
  32. package/dist/components/common/form/FormTextArea.d.ts +6 -4
  33. package/dist/components/common/form/FormTextArea.d.ts.map +1 -0
  34. package/dist/components/common/form/FormTextArea.tsx +57 -0
  35. package/dist/components/common/form/FormWrapper.d.ts +2 -1
  36. package/dist/components/common/form/FormWrapper.d.ts.map +1 -0
  37. package/dist/components/common/form/FormWrapper.tsx +21 -0
  38. package/dist/components/common/form/index.d.ts +4 -3
  39. package/dist/components/common/form/index.d.ts.map +1 -0
  40. package/dist/components/common/index.d.ts +2 -0
  41. package/dist/components/common/index.d.ts.map +1 -0
  42. package/dist/components/common/logo/Logo.d.ts +2 -1
  43. package/dist/components/common/logo/Logo.d.ts.map +1 -0
  44. package/dist/components/common/logo/Logo.tsx +40 -0
  45. package/dist/components/common/logo/index.d.ts +1 -0
  46. package/dist/components/common/logo/index.d.ts.map +1 -0
  47. package/dist/components/common/pagination/CustomPagination.d.ts +2 -1
  48. package/dist/components/common/pagination/CustomPagination.d.ts.map +1 -0
  49. package/dist/components/common/pagination/CustomPagination.tsx +64 -0
  50. package/dist/components/common/pagination/index.d.ts +1 -0
  51. package/dist/components/common/pagination/index.d.ts.map +1 -0
  52. package/dist/components/common/select/CustomSelect.d.ts +2 -1
  53. package/dist/components/common/select/CustomSelect.d.ts.map +1 -0
  54. package/dist/components/common/select/CustomSelect.tsx +27 -0
  55. package/dist/components/common/select/index.d.ts +1 -0
  56. package/dist/components/common/select/index.d.ts.map +1 -0
  57. package/dist/components/common/spinner/Spinner.d.ts +1 -0
  58. package/dist/components/common/spinner/Spinner.d.ts.map +1 -0
  59. package/dist/components/common/spinner/Spinner.tsx +32 -0
  60. package/dist/components/common/spinner/index.d.ts +1 -0
  61. package/dist/components/common/spinner/index.d.ts.map +1 -0
  62. package/dist/components/common/stepper/Stepper.d.ts +18 -0
  63. package/dist/components/common/stepper/Stepper.d.ts.map +1 -0
  64. package/dist/components/common/stepper/Stepper.tsx +59 -0
  65. package/dist/components/common/stepper/index.d.ts +2 -0
  66. package/dist/components/common/stepper/index.d.ts.map +1 -0
  67. package/dist/components/index.d.ts +5 -4
  68. package/dist/components/index.d.ts.map +1 -0
  69. package/dist/components/layouts/CoreBaseLayout.d.ts +3 -1
  70. package/dist/components/layouts/CoreBaseLayout.d.ts.map +1 -0
  71. package/dist/components/layouts/CoreBaseLayout.tsx +19 -0
  72. package/dist/components/layouts/index.d.ts +1 -0
  73. package/dist/components/layouts/index.d.ts.map +1 -0
  74. package/dist/components/templates/CoreHomeLayout.d.ts +1 -0
  75. package/dist/components/templates/CoreHomeLayout.d.ts.map +1 -0
  76. package/dist/components/templates/CoreHomeLayout.tsx +8 -0
  77. package/dist/components/templates/CorePreviewLayout.d.ts +2 -1
  78. package/dist/components/templates/CorePreviewLayout.d.ts.map +1 -0
  79. package/dist/components/templates/CorePreviewLayout.tsx +27 -0
  80. package/dist/components/templates/index.d.ts +1 -0
  81. package/dist/components/templates/index.d.ts.map +1 -0
  82. package/dist/components/ui/accordion.d.ts +5 -4
  83. package/dist/components/ui/accordion.d.ts.map +1 -0
  84. package/dist/components/ui/accordion.tsx +44 -0
  85. package/dist/components/ui/alert-dialog.d.ts +18 -11
  86. package/dist/components/ui/alert-dialog.d.ts.map +1 -0
  87. package/dist/components/ui/alert-dialog.tsx +106 -0
  88. package/dist/components/ui/alert.d.ts +5 -5
  89. package/dist/components/ui/alert.d.ts.map +1 -0
  90. package/dist/components/ui/alert.tsx +49 -0
  91. package/dist/components/ui/avatar.d.ts +4 -3
  92. package/dist/components/ui/avatar.d.ts.map +1 -0
  93. package/dist/components/ui/avatar.tsx +40 -0
  94. package/dist/components/ui/badge.d.ts +5 -3
  95. package/dist/components/ui/badge.d.ts.map +1 -0
  96. package/dist/components/ui/badge.tsx +26 -0
  97. package/dist/components/ui/breadcrumb.d.ts +17 -8
  98. package/dist/components/ui/breadcrumb.d.ts.map +1 -0
  99. package/dist/components/ui/breadcrumb.tsx +88 -0
  100. package/dist/components/ui/button.d.ts +5 -3
  101. package/dist/components/ui/button.d.ts.map +1 -0
  102. package/dist/components/ui/button.tsx +47 -0
  103. package/dist/components/ui/card.d.ts +9 -8
  104. package/dist/components/ui/card.d.ts.map +1 -0
  105. package/dist/components/ui/card.tsx +68 -0
  106. package/dist/components/ui/carousel.d.ts +6 -6
  107. package/dist/components/ui/carousel.d.ts.map +1 -0
  108. package/dist/components/ui/carousel.tsx +191 -0
  109. package/dist/components/ui/checkbox.d.ts +2 -1
  110. package/dist/components/ui/checkbox.d.ts.map +1 -0
  111. package/dist/components/ui/checkbox.tsx +28 -0
  112. package/dist/components/ui/dialog.d.ts +19 -12
  113. package/dist/components/ui/dialog.d.ts.map +1 -0
  114. package/dist/components/ui/dialog.tsx +95 -0
  115. package/dist/components/ui/dropdown-menu.d.ts +24 -20
  116. package/dist/components/ui/dropdown-menu.d.ts.map +1 -0
  117. package/dist/components/ui/dropdown-menu.tsx +140 -0
  118. package/dist/components/ui/form.d.ts +6 -6
  119. package/dist/components/ui/form.d.ts.map +1 -0
  120. package/dist/components/ui/form.tsx +102 -0
  121. package/dist/components/ui/index.d.ts +2 -6
  122. package/dist/components/ui/index.d.ts.map +1 -0
  123. package/dist/components/ui/input.d.ts +3 -3
  124. package/dist/components/ui/input.d.ts.map +1 -0
  125. package/dist/components/ui/input.tsx +25 -0
  126. package/dist/components/ui/label.d.ts +3 -1
  127. package/dist/components/ui/label.d.ts.map +1 -0
  128. package/dist/components/ui/label.tsx +20 -0
  129. package/dist/components/ui/pagination.d.ts +27 -12
  130. package/dist/components/ui/pagination.d.ts.map +1 -0
  131. package/dist/components/ui/pagination.tsx +122 -0
  132. package/dist/components/ui/popover.d.ts +5 -4
  133. package/dist/components/ui/popover.d.ts.map +1 -0
  134. package/dist/components/ui/popover.tsx +24 -0
  135. package/dist/components/ui/radio-group.d.ts +3 -2
  136. package/dist/components/ui/radio-group.d.ts.map +1 -0
  137. package/dist/components/ui/radio-group.tsx +34 -0
  138. package/dist/components/ui/select.d.ts +13 -12
  139. package/dist/components/ui/select.d.ts.map +1 -0
  140. package/dist/components/ui/select.tsx +128 -0
  141. package/dist/components/ui/separator.d.ts +2 -1
  142. package/dist/components/ui/separator.d.ts.map +1 -0
  143. package/dist/components/ui/separator.tsx +24 -0
  144. package/dist/components/ui/sheet.d.ts +26 -11
  145. package/dist/components/ui/sheet.d.ts.map +1 -0
  146. package/dist/components/ui/sheet.tsx +106 -0
  147. package/dist/components/ui/skeleton.d.ts +3 -1
  148. package/dist/components/ui/skeleton.d.ts.map +1 -0
  149. package/dist/components/ui/skeleton.tsx +17 -0
  150. package/dist/components/ui/slider.d.ts +2 -1
  151. package/dist/components/ui/slider.d.ts.map +1 -0
  152. package/dist/components/ui/slider.tsx +31 -0
  153. package/dist/components/ui/stepper.d.ts +40 -32
  154. package/dist/components/ui/stepper.d.ts.map +1 -0
  155. package/dist/components/ui/stepper.tsx +452 -0
  156. package/dist/components/ui/switch.d.ts +2 -1
  157. package/dist/components/ui/switch.d.ts.map +1 -0
  158. package/dist/components/ui/switch.tsx +27 -0
  159. package/dist/components/ui/table.d.ts +9 -8
  160. package/dist/components/ui/table.d.ts.map +1 -0
  161. package/dist/components/ui/table.tsx +80 -0
  162. package/dist/components/ui/tabs.d.ts +5 -4
  163. package/dist/components/ui/tabs.d.ts.map +1 -0
  164. package/dist/components/ui/tabs.tsx +45 -0
  165. package/dist/components/ui/textarea.d.ts +2 -1
  166. package/dist/components/ui/textarea.d.ts.map +1 -0
  167. package/dist/components/ui/textarea.tsx +22 -0
  168. package/dist/components/ui/tooltip.d.ts +5 -4
  169. package/dist/components/ui/tooltip.d.ts.map +1 -0
  170. package/dist/components/ui/tooltip.tsx +23 -0
  171. package/dist/constants/index.d.ts +2 -1
  172. package/dist/constants/index.d.ts.map +1 -0
  173. package/dist/helpers/axiosGlobal.d.ts +7 -5
  174. package/dist/helpers/axiosGlobal.d.ts.map +1 -0
  175. package/dist/helpers/axiosGlobal.js +66 -0
  176. package/dist/helpers/image.d.ts +1 -0
  177. package/dist/helpers/image.d.ts.map +1 -0
  178. package/dist/helpers/image.js +11 -0
  179. package/dist/helpers/index.d.ts +1 -2
  180. package/dist/helpers/index.d.ts.map +1 -0
  181. package/dist/helpers/numbers.d.ts +1 -0
  182. package/dist/helpers/numbers.d.ts.map +1 -0
  183. package/dist/helpers/numbers.js +8 -0
  184. package/dist/helpers/strings.d.ts +1 -0
  185. package/dist/helpers/strings.d.ts.map +1 -0
  186. package/dist/helpers/strings.js +6 -0
  187. package/dist/hooks/index.d.ts +1 -0
  188. package/dist/hooks/index.d.ts.map +1 -0
  189. package/dist/hooks/use-mobile.d.ts +1 -0
  190. package/dist/hooks/use-mobile.d.ts.map +1 -0
  191. package/dist/hooks/use-mobile.js +16 -0
  192. package/dist/hooks/useLanguage.d.ts +5 -0
  193. package/dist/hooks/useLanguage.d.ts.map +1 -0
  194. package/dist/hooks/useLanguage.js +32 -0
  195. package/dist/hooks/useNotification.d.ts +1 -0
  196. package/dist/hooks/useNotification.d.ts.map +1 -0
  197. package/dist/hooks/useNotification.js +17 -0
  198. package/dist/i18n/config.d.ts +82 -68
  199. package/dist/i18n/config.d.ts.map +1 -0
  200. package/dist/i18n/config.js +58 -0
  201. package/dist/i18n/index.d.ts +3 -0
  202. package/dist/i18n/index.d.ts.map +1 -0
  203. package/dist/i18n/locales/en.json.js +12 -0
  204. package/dist/i18n/locales/es.json.js +12 -0
  205. package/dist/i18n/locales/fields/en.json.js +52 -0
  206. package/dist/i18n/locales/fields/es.json.js +52 -0
  207. package/dist/i18n/locales/messages/en.json.js +14 -0
  208. package/dist/i18n/locales/messages/es.json.js +14 -0
  209. package/dist/i18n/utils/getModuleNamespace.d.ts +16 -0
  210. package/dist/i18n/utils/getModuleNamespace.d.ts.map +1 -0
  211. package/dist/i18n/utils/getModuleNamespace.js +10 -0
  212. package/dist/i18n/utils/loadModuleTranslations.d.ts +5 -0
  213. package/dist/i18n/utils/loadModuleTranslations.d.ts.map +1 -0
  214. package/dist/i18n/utils/loadModuleTranslations.js +21 -0
  215. package/dist/index.d.ts +2 -0
  216. package/dist/index.d.ts.map +1 -0
  217. package/dist/index.js +87 -20192
  218. package/dist/ingeniuscliq-core.css +1240 -0
  219. package/dist/lib/utils.d.ts +1 -0
  220. package/dist/lib/utils.d.ts.map +1 -0
  221. package/dist/lib/utils.js +8 -0
  222. package/dist/modules/CoreAuth/classes/CoreAuthBuilder.d.ts +5 -3
  223. package/dist/modules/CoreAuth/classes/CoreAuthBuilder.d.ts.map +1 -0
  224. package/dist/modules/CoreAuth/classes/CoreAuthBuilder.js +185 -0
  225. package/dist/modules/CoreAuth/classes/index.d.ts +1 -0
  226. package/dist/modules/CoreAuth/classes/index.d.ts.map +1 -0
  227. package/dist/modules/CoreAuth/constants/auth.d.ts +1 -0
  228. package/dist/modules/CoreAuth/constants/auth.d.ts.map +1 -0
  229. package/dist/modules/CoreAuth/constants/auth.js +6 -0
  230. package/dist/modules/CoreAuth/constants/index.d.ts +1 -0
  231. package/dist/modules/CoreAuth/constants/index.d.ts.map +1 -0
  232. package/dist/modules/CoreAuth/context/AuthContext.d.ts +12 -0
  233. package/dist/modules/CoreAuth/context/AuthContext.d.ts.map +1 -0
  234. package/dist/modules/CoreAuth/context/AuthContext.tsx +4 -0
  235. package/dist/modules/CoreAuth/context/index.d.ts +2 -0
  236. package/dist/modules/CoreAuth/context/index.d.ts.map +1 -0
  237. package/dist/modules/CoreAuth/hooks/index.d.ts +1 -0
  238. package/dist/modules/CoreAuth/hooks/index.d.ts.map +1 -0
  239. package/dist/modules/CoreAuth/hooks/useAuth.d.ts +10 -9
  240. package/dist/modules/CoreAuth/hooks/useAuth.d.ts.map +1 -0
  241. package/dist/modules/CoreAuth/hooks/useAuth.js +38 -0
  242. package/dist/modules/CoreAuth/index.d.ts +8 -1
  243. package/dist/modules/CoreAuth/index.d.ts.map +1 -0
  244. package/dist/modules/CoreAuth/index.js +11 -0
  245. package/dist/modules/CoreAuth/locale/en.json.js +4 -0
  246. package/dist/modules/CoreAuth/locale/es.json.js +4 -0
  247. package/dist/modules/CoreAuth/registry/hooks/index.d.ts +1 -0
  248. package/dist/modules/CoreAuth/registry/hooks/index.d.ts.map +1 -0
  249. package/dist/modules/CoreAuth/registry/index.d.ts +1 -0
  250. package/dist/modules/CoreAuth/registry/index.d.ts.map +1 -0
  251. package/dist/modules/CoreAuth/registry/types/index.d.ts +1 -0
  252. package/dist/modules/CoreAuth/registry/types/index.d.ts.map +1 -0
  253. package/dist/modules/CoreAuth/services/base.d.ts +24 -5
  254. package/dist/modules/CoreAuth/services/base.d.ts.map +1 -0
  255. package/dist/modules/CoreAuth/services/base.js +53 -0
  256. package/dist/modules/CoreAuth/services/index.d.ts +1 -0
  257. package/dist/modules/CoreAuth/services/index.d.ts.map +1 -0
  258. package/dist/modules/CoreAuth/stores/authStore.d.ts +15 -8
  259. package/dist/modules/CoreAuth/stores/authStore.d.ts.map +1 -0
  260. package/dist/modules/CoreAuth/stores/authStore.js +13 -0
  261. package/dist/modules/CoreAuth/stores/index.d.ts +1 -0
  262. package/dist/modules/CoreAuth/stores/index.d.ts.map +1 -0
  263. package/dist/modules/CoreAuth/types/CoreAuth.d.ts +10 -6
  264. package/dist/modules/CoreAuth/types/CoreAuth.d.ts.map +1 -0
  265. package/dist/modules/CoreAuth/types/index.d.ts +1 -0
  266. package/dist/modules/CoreAuth/types/index.d.ts.map +1 -0
  267. package/dist/modules/CoreCustomization/classes/CoreCustomizationBuilder.d.ts +8 -8
  268. package/dist/modules/CoreCustomization/classes/CoreCustomizationBuilder.d.ts.map +1 -0
  269. package/dist/modules/CoreCustomization/classes/CoreCustomizationBuilder.js +82 -0
  270. package/dist/modules/CoreCustomization/classes/index.d.ts +1 -0
  271. package/dist/modules/CoreCustomization/classes/index.d.ts.map +1 -0
  272. package/dist/modules/CoreCustomization/index.d.ts +4 -1
  273. package/dist/modules/CoreCustomization/index.d.ts.map +1 -0
  274. package/dist/modules/CoreCustomization/index.js +9 -0
  275. package/dist/modules/CoreCustomization/locale/en.json.js +4 -0
  276. package/dist/modules/CoreCustomization/locale/es.json.js +4 -0
  277. package/dist/modules/CoreCustomization/registry/index.d.ts +1 -0
  278. package/dist/modules/CoreCustomization/registry/index.d.ts.map +1 -0
  279. package/dist/modules/CoreCustomization/registry/types/index.d.ts +1 -0
  280. package/dist/modules/CoreCustomization/registry/types/index.d.ts.map +1 -0
  281. package/dist/modules/CoreCustomization/services/base.d.ts +8 -1
  282. package/dist/modules/CoreCustomization/services/base.d.ts.map +1 -0
  283. package/dist/modules/CoreCustomization/services/base.js +21 -0
  284. package/dist/modules/CoreCustomization/services/index.d.ts +1 -0
  285. package/dist/modules/CoreCustomization/services/index.d.ts.map +1 -0
  286. package/dist/modules/CoreCustomization/types/CoreCustomization.d.ts +1 -0
  287. package/dist/modules/CoreCustomization/types/CoreCustomization.d.ts.map +1 -0
  288. package/dist/modules/CoreCustomization/types/index.d.ts +1 -0
  289. package/dist/modules/CoreCustomization/types/index.d.ts.map +1 -0
  290. package/dist/modules/CoreOrder/classes/CoreOrderBuilder.d.ts +4 -3
  291. package/dist/modules/CoreOrder/classes/CoreOrderBuilder.d.ts.map +1 -0
  292. package/dist/modules/CoreOrder/classes/CoreOrderBuilder.js +113 -0
  293. package/dist/modules/CoreOrder/classes/index.d.ts +1 -0
  294. package/dist/modules/CoreOrder/classes/index.d.ts.map +1 -0
  295. package/dist/modules/CoreOrder/index.d.ts +4 -1
  296. package/dist/modules/CoreOrder/index.d.ts.map +1 -0
  297. package/dist/modules/CoreOrder/index.js +9 -0
  298. package/dist/modules/CoreOrder/locale/en.json.js +4 -0
  299. package/dist/modules/CoreOrder/locale/es.json.js +4 -0
  300. package/dist/modules/CoreOrder/registry/hooks/index.d.ts +1 -0
  301. package/dist/modules/CoreOrder/registry/hooks/index.d.ts.map +1 -0
  302. package/dist/modules/CoreOrder/registry/index.d.ts +1 -0
  303. package/dist/modules/CoreOrder/registry/index.d.ts.map +1 -0
  304. package/dist/modules/CoreOrder/registry/types/index.d.ts +1 -0
  305. package/dist/modules/CoreOrder/registry/types/index.d.ts.map +1 -0
  306. package/dist/modules/CoreOrder/services/base.d.ts +17 -1
  307. package/dist/modules/CoreOrder/services/base.d.ts.map +1 -0
  308. package/dist/modules/CoreOrder/services/base.js +27 -0
  309. package/dist/modules/CoreOrder/services/index.d.ts +1 -0
  310. package/dist/modules/CoreOrder/services/index.d.ts.map +1 -0
  311. package/dist/modules/CoreOrder/types/CoreOrder.d.ts +1 -0
  312. package/dist/modules/CoreOrder/types/CoreOrder.d.ts.map +1 -0
  313. package/dist/modules/CoreOrder/types/index.d.ts +1 -0
  314. package/dist/modules/CoreOrder/types/index.d.ts.map +1 -0
  315. package/dist/modules/CoreOrder/types/interfaces/OrderActions.d.ts +1 -0
  316. package/dist/modules/CoreOrder/types/interfaces/OrderActions.d.ts.map +1 -0
  317. package/dist/modules/CoreOrder/types/interfaces/index.d.ts +1 -0
  318. package/dist/modules/CoreOrder/types/interfaces/index.d.ts.map +1 -0
  319. package/dist/modules/CorePayForm/classes/CorePayFormBuilder.d.ts +12 -11
  320. package/dist/modules/CorePayForm/classes/CorePayFormBuilder.d.ts.map +1 -0
  321. package/dist/modules/CorePayForm/classes/CorePayFormBuilder.js +67 -0
  322. package/dist/modules/CorePayForm/classes/index.d.ts +1 -0
  323. package/dist/modules/CorePayForm/classes/index.d.ts.map +1 -0
  324. package/dist/modules/CorePayForm/index.d.ts +4 -1
  325. package/dist/modules/CorePayForm/index.d.ts.map +1 -0
  326. package/dist/modules/CorePayForm/index.js +9 -0
  327. package/dist/modules/CorePayForm/locale/en.json.js +4 -0
  328. package/dist/modules/CorePayForm/locale/es.json.js +4 -0
  329. package/dist/modules/CorePayForm/registry/hooks/index.d.ts +1 -0
  330. package/dist/modules/CorePayForm/registry/hooks/index.d.ts.map +1 -0
  331. package/dist/modules/CorePayForm/registry/index.d.ts +1 -0
  332. package/dist/modules/CorePayForm/registry/index.d.ts.map +1 -0
  333. package/dist/modules/CorePayForm/registry/types/index.d.ts +1 -0
  334. package/dist/modules/CorePayForm/registry/types/index.d.ts.map +1 -0
  335. package/dist/modules/CorePayForm/services/base.d.ts +12 -1
  336. package/dist/modules/CorePayForm/services/base.d.ts.map +1 -0
  337. package/dist/modules/CorePayForm/services/base.js +21 -0
  338. package/dist/modules/CorePayForm/services/index.d.ts +1 -0
  339. package/dist/modules/CorePayForm/services/index.d.ts.map +1 -0
  340. package/dist/modules/CorePayForm/types/CorePayForm.d.ts +1 -0
  341. package/dist/modules/CorePayForm/types/CorePayForm.d.ts.map +1 -0
  342. package/dist/modules/CorePayForm/types/index.d.ts +1 -0
  343. package/dist/modules/CorePayForm/types/index.d.ts.map +1 -0
  344. package/dist/modules/CoreProduct/classes/CoreProductBuilder.d.ts +5 -4
  345. package/dist/modules/CoreProduct/classes/CoreProductBuilder.d.ts.map +1 -0
  346. package/dist/modules/CoreProduct/classes/CoreProductBuilder.js +120 -0
  347. package/dist/modules/CoreProduct/classes/index.d.ts +1 -0
  348. package/dist/modules/CoreProduct/classes/index.d.ts.map +1 -0
  349. package/dist/modules/CoreProduct/index.d.ts +4 -1
  350. package/dist/modules/CoreProduct/index.d.ts.map +1 -0
  351. package/dist/modules/CoreProduct/index.js +9 -0
  352. package/dist/modules/CoreProduct/locale/en.json.js +14 -0
  353. package/dist/modules/CoreProduct/locale/es.json.js +14 -0
  354. package/dist/modules/CoreProduct/registry/index.d.ts +1 -0
  355. package/dist/modules/CoreProduct/registry/index.d.ts.map +1 -0
  356. package/dist/modules/CoreProduct/registry/types/index.d.ts +1 -0
  357. package/dist/modules/CoreProduct/registry/types/index.d.ts.map +1 -0
  358. package/dist/modules/CoreProduct/services/base.d.ts +20 -7
  359. package/dist/modules/CoreProduct/services/base.d.ts.map +1 -0
  360. package/dist/modules/CoreProduct/services/base.js +35 -0
  361. package/dist/modules/CoreProduct/services/index.d.ts +1 -0
  362. package/dist/modules/CoreProduct/services/index.d.ts.map +1 -0
  363. package/dist/modules/CoreProduct/types/CoreProduct.d.ts +1 -0
  364. package/dist/modules/CoreProduct/types/CoreProduct.d.ts.map +1 -0
  365. package/dist/modules/CoreProduct/types/CoreProductCategory.d.ts +1 -0
  366. package/dist/modules/CoreProduct/types/CoreProductCategory.d.ts.map +1 -0
  367. package/dist/modules/CoreProduct/types/index.d.ts +1 -0
  368. package/dist/modules/CoreProduct/types/index.d.ts.map +1 -0
  369. package/dist/modules/CoreShipment/classes/CoreShipmentBuilder.d.ts +6 -5
  370. package/dist/modules/CoreShipment/classes/CoreShipmentBuilder.d.ts.map +1 -0
  371. package/dist/modules/CoreShipment/classes/CoreShipmentBuilder.js +172 -0
  372. package/dist/modules/CoreShipment/classes/index.d.ts +1 -0
  373. package/dist/modules/CoreShipment/classes/index.d.ts.map +1 -0
  374. package/dist/modules/CoreShipment/index.d.ts +4 -1
  375. package/dist/modules/CoreShipment/index.d.ts.map +1 -0
  376. package/dist/modules/CoreShipment/index.js +9 -0
  377. package/dist/modules/CoreShipment/locale/en.json.js +14 -0
  378. package/dist/modules/CoreShipment/locale/es.json.js +14 -0
  379. package/dist/modules/CoreShipment/registry/classes/index.d.ts +1 -0
  380. package/dist/modules/CoreShipment/registry/classes/index.d.ts.map +1 -0
  381. package/dist/modules/CoreShipment/registry/index.d.ts +1 -0
  382. package/dist/modules/CoreShipment/registry/index.d.ts.map +1 -0
  383. package/dist/modules/CoreShipment/registry/services/index.d.ts +1 -0
  384. package/dist/modules/CoreShipment/registry/services/index.d.ts.map +1 -0
  385. package/dist/modules/CoreShipment/registry/types/index.d.ts +1 -0
  386. package/dist/modules/CoreShipment/registry/types/index.d.ts.map +1 -0
  387. package/dist/modules/CoreShipment/services/base.d.ts +30 -2
  388. package/dist/modules/CoreShipment/services/base.d.ts.map +1 -0
  389. package/dist/modules/CoreShipment/services/base.js +63 -0
  390. package/dist/modules/CoreShipment/services/index.d.ts +1 -0
  391. package/dist/modules/CoreShipment/services/index.d.ts.map +1 -0
  392. package/dist/modules/CoreShipment/types/CoreShipment.d.ts +1 -0
  393. package/dist/modules/CoreShipment/types/CoreShipment.d.ts.map +1 -0
  394. package/dist/modules/CoreShipment/types/CoreShipment.js +7 -0
  395. package/dist/modules/CoreShipment/types/index.d.ts +1 -0
  396. package/dist/modules/CoreShipment/types/index.d.ts.map +1 -0
  397. package/dist/modules/CoreShopCart/classes/CoreShopCartBuilder.d.ts +16 -5
  398. package/dist/modules/CoreShopCart/classes/CoreShopCartBuilder.d.ts.map +1 -0
  399. package/dist/modules/CoreShopCart/classes/CoreShopCartBuilder.js +166 -0
  400. package/dist/modules/CoreShopCart/classes/index.d.ts +1 -0
  401. package/dist/modules/CoreShopCart/classes/index.d.ts.map +1 -0
  402. package/dist/modules/CoreShopCart/constants/index.d.ts +1 -0
  403. package/dist/modules/CoreShopCart/constants/index.d.ts.map +1 -0
  404. package/dist/modules/CoreShopCart/constants/shopCart.d.ts +1 -0
  405. package/dist/modules/CoreShopCart/constants/shopCart.d.ts.map +1 -0
  406. package/dist/modules/CoreShopCart/constants/shopCart.js +8 -0
  407. package/dist/modules/CoreShopCart/index.d.ts +1 -0
  408. package/dist/modules/CoreShopCart/index.d.ts.map +1 -0
  409. package/dist/modules/CoreShopCart/index.js +8 -0
  410. package/dist/modules/CoreShopCart/locale/en.json.js +4 -0
  411. package/dist/modules/CoreShopCart/locale/es.json.js +4 -0
  412. package/dist/modules/CoreShopCart/registry/hooks/index.d.ts +1 -0
  413. package/dist/modules/CoreShopCart/registry/hooks/index.d.ts.map +1 -0
  414. package/dist/modules/CoreShopCart/registry/index.d.ts +1 -0
  415. package/dist/modules/CoreShopCart/registry/index.d.ts.map +1 -0
  416. package/dist/modules/CoreShopCart/registry/types/index.d.ts +1 -0
  417. package/dist/modules/CoreShopCart/registry/types/index.d.ts.map +1 -0
  418. package/dist/modules/CoreShopCart/services/base.d.ts +23 -4
  419. package/dist/modules/CoreShopCart/services/base.d.ts.map +1 -0
  420. package/dist/modules/CoreShopCart/services/base.js +53 -0
  421. package/dist/modules/CoreShopCart/services/index.d.ts +1 -0
  422. package/dist/modules/CoreShopCart/services/index.d.ts.map +1 -0
  423. package/dist/modules/CoreShopCart/types/CoreShopCart.d.ts +1 -0
  424. package/dist/modules/CoreShopCart/types/CoreShopCart.d.ts.map +1 -0
  425. package/dist/modules/CoreShopCart/types/index.d.ts +1 -0
  426. package/dist/modules/CoreShopCart/types/index.d.ts.map +1 -0
  427. package/dist/modules/CoreShopCart/types/interfaces/CartActions.d.ts +1 -0
  428. package/dist/modules/CoreShopCart/types/interfaces/CartActions.d.ts.map +1 -0
  429. package/dist/modules/CoreShopCart/types/interfaces/index.d.ts +1 -0
  430. package/dist/modules/CoreShopCart/types/interfaces/index.d.ts.map +1 -0
  431. package/dist/modules/index.d.ts +1 -0
  432. package/dist/modules/index.d.ts.map +1 -0
  433. package/dist/modules/registry/hooks/index.d.ts +1 -0
  434. package/dist/modules/registry/hooks/index.d.ts.map +1 -0
  435. package/dist/modules/registry/index.d.ts +1 -0
  436. package/dist/modules/registry/index.d.ts.map +1 -0
  437. package/dist/modules/registry/types/index.d.ts +1 -0
  438. package/dist/modules/registry/types/index.d.ts.map +1 -0
  439. package/dist/node_modules/@floating-ui/core/dist/floating-ui.core.js +814 -0
  440. package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +751 -0
  441. package/dist/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +350 -0
  442. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +161 -0
  443. package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +137 -0
  444. package/dist/node_modules/@radix-ui/number/dist/index.js +6 -0
  445. package/dist/node_modules/@radix-ui/primitive/dist/index.js +11 -0
  446. package/dist/node_modules/@radix-ui/react-accordion/dist/index.js +305 -0
  447. package/dist/node_modules/@radix-ui/react-alert-dialog/dist/index.js +147 -0
  448. package/dist/node_modules/@radix-ui/react-arrow/dist/index.js +25 -0
  449. package/dist/node_modules/@radix-ui/react-avatar/dist/index.js +118 -0
  450. package/dist/node_modules/@radix-ui/react-checkbox/dist/index.js +270 -0
  451. package/dist/node_modules/@radix-ui/react-collapsible/dist/index.js +145 -0
  452. package/dist/node_modules/@radix-ui/react-collection/dist/index.js +70 -0
  453. package/dist/node_modules/@radix-ui/react-compose-refs/dist/index.js +39 -0
  454. package/dist/node_modules/@radix-ui/react-context/dist/index.js +79 -0
  455. package/dist/node_modules/@radix-ui/react-dialog/dist/index.js +321 -0
  456. package/dist/node_modules/@radix-ui/react-direction/dist/index.js +11 -0
  457. package/dist/node_modules/@radix-ui/react-dismissable-layer/dist/index.js +211 -0
  458. package/dist/node_modules/@radix-ui/react-dropdown-menu/dist/index.js +267 -0
  459. package/dist/node_modules/@radix-ui/react-focus-guards/dist/index.js +29 -0
  460. package/dist/node_modules/@radix-ui/react-focus-scope/dist/index.js +207 -0
  461. package/dist/node_modules/@radix-ui/react-id/dist/index.js +15 -0
  462. package/dist/node_modules/@radix-ui/react-label/dist/index.js +24 -0
  463. package/dist/node_modules/@radix-ui/react-menu/dist/index.js +834 -0
  464. package/dist/node_modules/@radix-ui/react-popover/dist/index.js +299 -0
  465. package/dist/node_modules/@radix-ui/react-popper/dist/index.js +283 -0
  466. package/dist/node_modules/@radix-ui/react-portal/dist/index.js +17 -0
  467. package/dist/node_modules/@radix-ui/react-presence/dist/index.js +130 -0
  468. package/dist/node_modules/@radix-ui/react-primitive/dist/index.js +43 -0
  469. package/dist/node_modules/@radix-ui/react-radio-group/dist/index.js +282 -0
  470. package/dist/node_modules/@radix-ui/react-roving-focus/dist/index.js +223 -0
  471. package/dist/node_modules/@radix-ui/react-select/dist/index.js +1156 -0
  472. package/dist/node_modules/@radix-ui/react-separator/dist/index.js +30 -0
  473. package/dist/node_modules/@radix-ui/react-slider/dist/index.js +554 -0
  474. package/dist/node_modules/@radix-ui/react-slot/dist/index.js +99 -0
  475. package/dist/node_modules/@radix-ui/react-switch/dist/index.js +152 -0
  476. package/dist/node_modules/@radix-ui/react-tabs/dist/index.js +187 -0
  477. package/dist/node_modules/@radix-ui/react-tooltip/dist/index.js +482 -0
  478. package/dist/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +12 -0
  479. package/dist/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +70 -0
  480. package/dist/node_modules/@radix-ui/react-use-escape-keydown/dist/index.js +18 -0
  481. package/dist/node_modules/@radix-ui/react-use-is-hydrated/dist/index.js +16 -0
  482. package/dist/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +7 -0
  483. package/dist/node_modules/@radix-ui/react-use-previous/dist/index.js +15 -0
  484. package/dist/node_modules/@radix-ui/react-use-size/dist/index.js +40 -0
  485. package/dist/node_modules/@radix-ui/react-visually-hidden/dist/index.js +35 -0
  486. package/dist/node_modules/@stepperize/core/dist/index.js +3 -0
  487. package/dist/node_modules/@stepperize/react/dist/index.js +6 -0
  488. package/dist/node_modules/aria-hidden/dist/es2015/index.js +137 -0
  489. package/dist/node_modules/axios/index.js +25 -0
  490. package/dist/node_modules/axios/lib/adapters/adapters.js +81 -0
  491. package/dist/node_modules/axios/lib/adapters/fetch.js +229 -0
  492. package/dist/node_modules/axios/lib/adapters/xhr.js +199 -0
  493. package/dist/node_modules/axios/lib/axios.js +86 -0
  494. package/dist/node_modules/axios/lib/cancel/CancelToken.js +133 -0
  495. package/dist/node_modules/axios/lib/cancel/CanceledError.js +23 -0
  496. package/dist/node_modules/axios/lib/cancel/isCancel.js +5 -0
  497. package/dist/node_modules/axios/lib/core/Axios.js +238 -0
  498. package/dist/node_modules/axios/lib/core/AxiosError.js +101 -0
  499. package/dist/node_modules/axios/lib/core/AxiosHeaders.js +312 -0
  500. package/dist/node_modules/axios/lib/core/InterceptorManager.js +69 -0
  501. package/dist/node_modules/axios/lib/core/buildFullPath.js +22 -0
  502. package/dist/node_modules/axios/lib/core/dispatchRequest.js +81 -0
  503. package/dist/node_modules/axios/lib/core/mergeConfig.js +106 -0
  504. package/dist/node_modules/axios/lib/core/settle.js +27 -0
  505. package/dist/node_modules/axios/lib/core/transformData.js +28 -0
  506. package/dist/node_modules/axios/lib/defaults/index.js +159 -0
  507. package/dist/node_modules/axios/lib/defaults/transitional.js +7 -0
  508. package/dist/node_modules/axios/lib/env/data.js +3 -0
  509. package/dist/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +56 -0
  510. package/dist/node_modules/axios/lib/helpers/HttpStatusCode.js +71 -0
  511. package/dist/node_modules/axios/lib/helpers/bind.js +7 -0
  512. package/dist/node_modules/axios/lib/helpers/buildURL.js +69 -0
  513. package/dist/node_modules/axios/lib/helpers/combineURLs.js +15 -0
  514. package/dist/node_modules/axios/lib/helpers/composeSignals.js +48 -0
  515. package/dist/node_modules/axios/lib/helpers/cookies.js +43 -0
  516. package/dist/node_modules/axios/lib/helpers/formDataToJSON.js +93 -0
  517. package/dist/node_modules/axios/lib/helpers/isAbsoluteURL.js +15 -0
  518. package/dist/node_modules/axios/lib/helpers/isAxiosError.js +14 -0
  519. package/dist/node_modules/axios/lib/helpers/isURLSameOrigin.js +16 -0
  520. package/dist/node_modules/axios/lib/helpers/null.js +4 -0
  521. package/dist/node_modules/axios/lib/helpers/parseHeaders.js +55 -0
  522. package/dist/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
  523. package/dist/node_modules/axios/lib/helpers/progressEventReducer.js +46 -0
  524. package/dist/node_modules/axios/lib/helpers/resolveConfig.js +58 -0
  525. package/dist/node_modules/axios/lib/helpers/speedometer.js +53 -0
  526. package/dist/node_modules/axios/lib/helpers/spread.js +28 -0
  527. package/dist/node_modules/axios/lib/helpers/throttle.js +44 -0
  528. package/dist/node_modules/axios/lib/helpers/toFormData.js +219 -0
  529. package/dist/node_modules/axios/lib/helpers/toURLEncodedForm.js +19 -0
  530. package/dist/node_modules/axios/lib/helpers/trackStream.js +88 -0
  531. package/dist/node_modules/axios/lib/helpers/validator.js +99 -0
  532. package/dist/node_modules/axios/lib/platform/browser/classes/Blob.js +3 -0
  533. package/dist/node_modules/axios/lib/platform/browser/classes/FormData.js +3 -0
  534. package/dist/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +5 -0
  535. package/dist/node_modules/axios/lib/platform/browser/index.js +15 -0
  536. package/dist/node_modules/axios/lib/platform/common/utils.js +45 -0
  537. package/dist/node_modules/axios/lib/platform/index.js +9 -0
  538. package/dist/node_modules/axios/lib/utils.js +780 -0
  539. package/dist/node_modules/class-variance-authority/dist/index.js +44 -0
  540. package/dist/node_modules/clsx/dist/clsx.js +3 -0
  541. package/dist/node_modules/embla-carousel/esm/embla-carousel.esm.js +1669 -0
  542. package/dist/node_modules/embla-carousel-react/esm/embla-carousel-react.esm.js +37 -0
  543. package/dist/node_modules/embla-carousel-reactive-utils/esm/embla-carousel-reactive-utils.esm.js +38 -0
  544. package/dist/node_modules/get-nonce/dist/es2015/index.js +8 -0
  545. package/dist/node_modules/lucide-react/dist/esm/Icon.js +43 -0
  546. package/dist/node_modules/lucide-react/dist/esm/createLucideIcon.js +30 -0
  547. package/dist/node_modules/lucide-react/dist/esm/defaultAttributes.js +20 -0
  548. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-left.js +17 -0
  549. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-right.js +17 -0
  550. package/dist/node_modules/lucide-react/dist/esm/icons/check.js +14 -0
  551. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-down.js +14 -0
  552. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-left.js +14 -0
  553. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-right.js +14 -0
  554. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-up.js +14 -0
  555. package/dist/node_modules/lucide-react/dist/esm/icons/circle.js +14 -0
  556. package/dist/node_modules/lucide-react/dist/esm/icons/ellipsis.js +18 -0
  557. package/dist/node_modules/lucide-react/dist/esm/icons/x.js +17 -0
  558. package/dist/node_modules/lucide-react/dist/esm/shared/src/utils.js +28 -0
  559. package/dist/node_modules/react-hook-form/dist/index.esm.js +560 -0
  560. package/dist/node_modules/react-i18next/dist/es/IcuTransUtils/htmlEntityDecoder.js +210 -0
  561. package/dist/node_modules/react-i18next/dist/es/context.js +18 -0
  562. package/dist/node_modules/react-i18next/dist/es/defaults.js +22 -0
  563. package/dist/node_modules/react-i18next/dist/es/i18nInstance.js +7 -0
  564. package/dist/node_modules/react-i18next/dist/es/initReactI18next.js +12 -0
  565. package/dist/node_modules/react-i18next/dist/es/unescape.js +27 -0
  566. package/dist/node_modules/react-i18next/dist/es/useTranslation.js +157 -0
  567. package/dist/node_modules/react-i18next/dist/es/utils.js +63 -0
  568. package/dist/node_modules/react-remove-scroll/dist/es2015/Combination.js +9 -0
  569. package/dist/node_modules/react-remove-scroll/dist/es2015/SideEffect.js +167 -0
  570. package/dist/node_modules/react-remove-scroll/dist/es2015/UI.js +38 -0
  571. package/dist/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js +21 -0
  572. package/dist/node_modules/react-remove-scroll/dist/es2015/handleScroll.js +110 -0
  573. package/dist/node_modules/react-remove-scroll/dist/es2015/medium.js +5 -0
  574. package/dist/node_modules/react-remove-scroll/dist/es2015/sidecar.js +7 -0
  575. package/dist/node_modules/react-remove-scroll-bar/dist/es2015/component.js +56 -0
  576. package/dist/node_modules/react-remove-scroll-bar/dist/es2015/constants.js +10 -0
  577. package/dist/node_modules/react-remove-scroll-bar/dist/es2015/utils.js +31 -0
  578. package/dist/node_modules/react-style-singleton/dist/es2015/component.js +19 -0
  579. package/dist/node_modules/react-style-singleton/dist/es2015/hook.js +25 -0
  580. package/dist/node_modules/react-style-singleton/dist/es2015/singleton.js +51 -0
  581. package/dist/node_modules/sonner/dist/index.js +299 -0
  582. package/dist/node_modules/tslib/tslib.es6.js +56 -0
  583. package/dist/node_modules/use-callback-ref/dist/es2015/assignRef.js +24 -0
  584. package/dist/node_modules/use-callback-ref/dist/es2015/useMergeRef.js +48 -0
  585. package/dist/node_modules/use-callback-ref/dist/es2015/useRef.js +42 -0
  586. package/dist/node_modules/use-sidecar/dist/es2015/exports.js +21 -0
  587. package/dist/node_modules/use-sidecar/dist/es2015/medium.js +77 -0
  588. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.js +106 -0
  589. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.js +77 -0
  590. package/dist/node_modules/use-sync-external-store/shim/index.js +19 -0
  591. package/dist/node_modules/zustand/esm/middleware.js +188 -0
  592. package/dist/node_modules/zustand/esm/react.js +22 -0
  593. package/dist/node_modules/zustand/esm/vanilla.js +24 -0
  594. package/dist/services/base.d.ts +1 -0
  595. package/dist/services/base.d.ts.map +1 -0
  596. package/dist/services/base.js +67 -0
  597. package/dist/services/factory.d.ts +14 -0
  598. package/dist/services/factory.d.ts.map +1 -0
  599. package/dist/services/factory.js +39 -0
  600. package/dist/services/index.d.ts +2 -0
  601. package/dist/services/index.d.ts.map +1 -0
  602. package/dist/stores/customizationStore.d.ts +5 -27
  603. package/dist/stores/customizationStore.d.ts.map +1 -0
  604. package/dist/stores/customizationStore.js +7 -0
  605. package/dist/stores/index.d.ts +1 -0
  606. package/dist/stores/index.d.ts.map +1 -0
  607. package/dist/styles/index.d.ts +1 -0
  608. package/dist/styles/index.d.ts.map +1 -0
  609. package/dist/types/BaseResponseActions.d.ts +1 -0
  610. package/dist/types/BaseResponseActions.d.ts.map +1 -0
  611. package/dist/types/BaseStore.d.ts +1 -0
  612. package/dist/types/BaseStore.d.ts.map +1 -0
  613. package/dist/types/BaseType.d.ts +1 -0
  614. package/dist/types/BaseType.d.ts.map +1 -0
  615. package/dist/types/CoreImage.d.ts +1 -0
  616. package/dist/types/CoreImage.d.ts.map +1 -0
  617. package/dist/types/CoreMenu.d.ts +1 -0
  618. package/dist/types/CoreMenu.d.ts.map +1 -0
  619. package/dist/types/contracts/BaseApiResponse.d.ts +1 -0
  620. package/dist/types/contracts/BaseApiResponse.d.ts.map +1 -0
  621. package/dist/types/contracts/BasePagination.d.ts +1 -0
  622. package/dist/types/contracts/BasePagination.d.ts.map +1 -0
  623. package/dist/types/contracts/index.d.ts +1 -0
  624. package/dist/types/contracts/index.d.ts.map +1 -0
  625. package/dist/types/index.d.ts +1 -0
  626. package/dist/types/index.d.ts.map +1 -0
  627. package/dist/types/interfaces/BaseImageType.d.ts +1 -0
  628. package/dist/types/interfaces/BaseImageType.d.ts.map +1 -0
  629. package/dist/types/interfaces/BaseSlugType.d.ts +1 -0
  630. package/dist/types/interfaces/BaseSlugType.d.ts.map +1 -0
  631. package/dist/types/interfaces/BaseVisibleType.d.ts +1 -0
  632. package/dist/types/interfaces/BaseVisibleType.d.ts.map +1 -0
  633. package/dist/types/interfaces/index.d.ts +1 -0
  634. package/dist/types/interfaces/index.d.ts.map +1 -0
  635. package/dist/types/ui/carousel.d.ts +1 -0
  636. package/dist/types/ui/carousel.d.ts.map +1 -0
  637. package/dist/types/ui/index.d.ts +1 -0
  638. package/dist/types/ui/index.d.ts.map +1 -0
  639. package/dist/types/ui/main.d.ts +1 -0
  640. package/dist/types/ui/main.d.ts.map +1 -0
  641. package/dist/types/ui/template.d.ts +1 -0
  642. package/dist/types/ui/template.d.ts.map +1 -0
  643. package/dist/ui/index.d.ts +1 -0
  644. package/dist/ui/index.d.ts.map +1 -0
  645. package/dist/vite-env.d.ts +11 -0
  646. package/package.json +22 -15
  647. package/core/commands/common/constants.js +0 -10
  648. package/core/commands/helpers/index.js +0 -15
  649. package/core/commands/helpers/strings.js +0 -4
  650. package/core/commands/templates/locale.js +0 -14
  651. package/core/commands/templates/service.js +0 -12
  652. package/core/commands/templates/type.js +0 -10
  653. package/dist/assets/index.d.ts +0 -8
  654. package/dist/components/ui/calendar.d.ts +0 -4
  655. package/dist/components/ui/drawer.d.ts +0 -13
  656. package/dist/components/ui/navigation-menu.d.ts +0 -14
  657. package/dist/components/ui/sidebar.d.ts +0 -69
  658. package/dist/components/ui/sonner.d.ts +0 -3
  659. package/dist/constants/menu.d.ts +0 -2
  660. package/dist/helpers/template.d.ts +0 -2
  661. package/dist/helpers/tenant.d.ts +0 -2
  662. package/dist/index.css +0 -1
  663. package/dist/modules/CoreCustomization/registry/hooks/index.d.ts +0 -0
  664. package/dist/modules/CoreProduct/registry/hooks/index.d.ts +0 -0
  665. /package/{core → src/core}/commands/create-core-module.js +0 -0
  666. /package/{core → src/core}/commands/create-module.js +0 -0
  667. /package/{core → src/core}/commands/create-template.js +0 -0
  668. /package/{core → src/core}/commands/rollback-core-module.js +0 -0
  669. /package/{core → src/core}/commands/rollback-module.js +0 -0
@@ -0,0 +1,1240 @@
1
+ div.spinner {
2
+ position: relative;
3
+ width: var(--spinner-size);
4
+ height: var(--spinner-size);
5
+ display: inline-block;
6
+ margin-left: 50%;
7
+ margin-right: 50%;
8
+ padding: 10px;
9
+ border-radius: 10px;
10
+ }
11
+
12
+ div.spinner div {
13
+ width: 6%;
14
+ height: 16%;
15
+ background: var(--spinner-color);
16
+ position: absolute;
17
+ left: 49%;
18
+ top: 43%;
19
+ opacity: 0;
20
+ border-radius: 50px;
21
+ box-shadow: 0 0 3px rgba(0,0,0,0.2);
22
+ animation: fade 1s linear infinite;
23
+ }
24
+
25
+ @keyframes fade {
26
+ from {opacity: 1;}
27
+ to {opacity: 0.25;}
28
+ }
29
+
30
+ div.spinner div.bar1 {
31
+ transform:rotate(0deg) translate(0, -130%);
32
+ animation-delay: 0s;
33
+ }
34
+
35
+ div.spinner div.bar2 {
36
+ transform:rotate(30deg) translate(0, -130%);
37
+ animation-delay: -0.9167s;
38
+ }
39
+
40
+ div.spinner div.bar3 {
41
+ transform:rotate(60deg) translate(0, -130%);
42
+ animation-delay: -0.833s;
43
+ }
44
+ div.spinner div.bar4 {
45
+ transform:rotate(90deg) translate(0, -130%);
46
+ animation-delay: -0.7497s;
47
+ }
48
+ div.spinner div.bar5 {
49
+ transform:rotate(120deg) translate(0, -130%);
50
+ animation-delay: -0.667s;
51
+ }
52
+ div.spinner div.bar6 {
53
+ transform:rotate(150deg) translate(0, -130%);
54
+ animation-delay: -0.5837s;
55
+ }
56
+ div.spinner div.bar7 {
57
+ transform:rotate(180deg) translate(0, -130%);
58
+ animation-delay: -0.5s;
59
+ }
60
+ div.spinner div.bar8 {
61
+ transform:rotate(210deg) translate(0, -130%);
62
+ animation-delay: -0.4167s;
63
+ }
64
+ div.spinner div.bar9 {
65
+ transform:rotate(240deg) translate(0, -130%);
66
+ animation-delay: -0.333s;
67
+ }
68
+ div.spinner div.bar10 {
69
+ transform:rotate(270deg) translate(0, -130%);
70
+ animation-delay: -0.2497s;
71
+ }
72
+ div.spinner div.bar11 {
73
+ transform:rotate(300deg) translate(0, -130%);
74
+ animation-delay: -0.167s;
75
+ }
76
+ div.spinner div.bar12 {
77
+ transform:rotate(330deg) translate(0, -130%);
78
+ animation-delay: -0.0833s;
79
+ }
80
+ @layer theme, base, components, utilities;
81
+
82
+ @layer theme {
83
+ @theme default {
84
+ --font-sans:
85
+ ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
86
+ "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
87
+ --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
88
+ --font-mono:
89
+ ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
90
+ "Courier New", monospace;
91
+
92
+ --color-red-50: oklch(97.1% 0.013 17.38);
93
+ --color-red-100: oklch(93.6% 0.032 17.717);
94
+ --color-red-200: oklch(88.5% 0.062 18.334);
95
+ --color-red-300: oklch(80.8% 0.114 19.571);
96
+ --color-red-400: oklch(70.4% 0.191 22.216);
97
+ --color-red-500: oklch(63.7% 0.237 25.331);
98
+ --color-red-600: oklch(57.7% 0.245 27.325);
99
+ --color-red-700: oklch(50.5% 0.213 27.518);
100
+ --color-red-800: oklch(44.4% 0.177 26.899);
101
+ --color-red-900: oklch(39.6% 0.141 25.723);
102
+ --color-red-950: oklch(25.8% 0.092 26.042);
103
+
104
+ --color-orange-50: oklch(98% 0.016 73.684);
105
+ --color-orange-100: oklch(95.4% 0.038 75.164);
106
+ --color-orange-200: oklch(90.1% 0.076 70.697);
107
+ --color-orange-300: oklch(83.7% 0.128 66.29);
108
+ --color-orange-400: oklch(75% 0.183 55.934);
109
+ --color-orange-500: oklch(70.5% 0.213 47.604);
110
+ --color-orange-600: oklch(64.6% 0.222 41.116);
111
+ --color-orange-700: oklch(55.3% 0.195 38.402);
112
+ --color-orange-800: oklch(47% 0.157 37.304);
113
+ --color-orange-900: oklch(40.8% 0.123 38.172);
114
+ --color-orange-950: oklch(26.6% 0.079 36.259);
115
+
116
+ --color-amber-50: oklch(98.7% 0.022 95.277);
117
+ --color-amber-100: oklch(96.2% 0.059 95.617);
118
+ --color-amber-200: oklch(92.4% 0.12 95.746);
119
+ --color-amber-300: oklch(87.9% 0.169 91.605);
120
+ --color-amber-400: oklch(82.8% 0.189 84.429);
121
+ --color-amber-500: oklch(76.9% 0.188 70.08);
122
+ --color-amber-600: oklch(66.6% 0.179 58.318);
123
+ --color-amber-700: oklch(55.5% 0.163 48.998);
124
+ --color-amber-800: oklch(47.3% 0.137 46.201);
125
+ --color-amber-900: oklch(41.4% 0.112 45.904);
126
+ --color-amber-950: oklch(27.9% 0.077 45.635);
127
+
128
+ --color-yellow-50: oklch(98.7% 0.026 102.212);
129
+ --color-yellow-100: oklch(97.3% 0.071 103.193);
130
+ --color-yellow-200: oklch(94.5% 0.129 101.54);
131
+ --color-yellow-300: oklch(90.5% 0.182 98.111);
132
+ --color-yellow-400: oklch(85.2% 0.199 91.936);
133
+ --color-yellow-500: oklch(79.5% 0.184 86.047);
134
+ --color-yellow-600: oklch(68.1% 0.162 75.834);
135
+ --color-yellow-700: oklch(55.4% 0.135 66.442);
136
+ --color-yellow-800: oklch(47.6% 0.114 61.907);
137
+ --color-yellow-900: oklch(42.1% 0.095 57.708);
138
+ --color-yellow-950: oklch(28.6% 0.066 53.813);
139
+
140
+ --color-lime-50: oklch(98.6% 0.031 120.757);
141
+ --color-lime-100: oklch(96.7% 0.067 122.328);
142
+ --color-lime-200: oklch(93.8% 0.127 124.321);
143
+ --color-lime-300: oklch(89.7% 0.196 126.665);
144
+ --color-lime-400: oklch(84.1% 0.238 128.85);
145
+ --color-lime-500: oklch(76.8% 0.233 130.85);
146
+ --color-lime-600: oklch(64.8% 0.2 131.684);
147
+ --color-lime-700: oklch(53.2% 0.157 131.589);
148
+ --color-lime-800: oklch(45.3% 0.124 130.933);
149
+ --color-lime-900: oklch(40.5% 0.101 131.063);
150
+ --color-lime-950: oklch(27.4% 0.072 132.109);
151
+
152
+ --color-green-50: oklch(98.2% 0.018 155.826);
153
+ --color-green-100: oklch(96.2% 0.044 156.743);
154
+ --color-green-200: oklch(92.5% 0.084 155.995);
155
+ --color-green-300: oklch(87.1% 0.15 154.449);
156
+ --color-green-400: oklch(79.2% 0.209 151.711);
157
+ --color-green-500: oklch(72.3% 0.219 149.579);
158
+ --color-green-600: oklch(62.7% 0.194 149.214);
159
+ --color-green-700: oklch(52.7% 0.154 150.069);
160
+ --color-green-800: oklch(44.8% 0.119 151.328);
161
+ --color-green-900: oklch(39.3% 0.095 152.535);
162
+ --color-green-950: oklch(26.6% 0.065 152.934);
163
+
164
+ --color-emerald-50: oklch(97.9% 0.021 166.113);
165
+ --color-emerald-100: oklch(95% 0.052 163.051);
166
+ --color-emerald-200: oklch(90.5% 0.093 164.15);
167
+ --color-emerald-300: oklch(84.5% 0.143 164.978);
168
+ --color-emerald-400: oklch(76.5% 0.177 163.223);
169
+ --color-emerald-500: oklch(69.6% 0.17 162.48);
170
+ --color-emerald-600: oklch(59.6% 0.145 163.225);
171
+ --color-emerald-700: oklch(50.8% 0.118 165.612);
172
+ --color-emerald-800: oklch(43.2% 0.095 166.913);
173
+ --color-emerald-900: oklch(37.8% 0.077 168.94);
174
+ --color-emerald-950: oklch(26.2% 0.051 172.552);
175
+
176
+ --color-teal-50: oklch(98.4% 0.014 180.72);
177
+ --color-teal-100: oklch(95.3% 0.051 180.801);
178
+ --color-teal-200: oklch(91% 0.096 180.426);
179
+ --color-teal-300: oklch(85.5% 0.138 181.071);
180
+ --color-teal-400: oklch(77.7% 0.152 181.912);
181
+ --color-teal-500: oklch(70.4% 0.14 182.503);
182
+ --color-teal-600: oklch(60% 0.118 184.704);
183
+ --color-teal-700: oklch(51.1% 0.096 186.391);
184
+ --color-teal-800: oklch(43.7% 0.078 188.216);
185
+ --color-teal-900: oklch(38.6% 0.063 188.416);
186
+ --color-teal-950: oklch(27.7% 0.046 192.524);
187
+
188
+ --color-cyan-50: oklch(98.4% 0.019 200.873);
189
+ --color-cyan-100: oklch(95.6% 0.045 203.388);
190
+ --color-cyan-200: oklch(91.7% 0.08 205.041);
191
+ --color-cyan-300: oklch(86.5% 0.127 207.078);
192
+ --color-cyan-400: oklch(78.9% 0.154 211.53);
193
+ --color-cyan-500: oklch(71.5% 0.143 215.221);
194
+ --color-cyan-600: oklch(60.9% 0.126 221.723);
195
+ --color-cyan-700: oklch(52% 0.105 223.128);
196
+ --color-cyan-800: oklch(45% 0.085 224.283);
197
+ --color-cyan-900: oklch(39.8% 0.07 227.392);
198
+ --color-cyan-950: oklch(30.2% 0.056 229.695);
199
+
200
+ --color-sky-50: oklch(97.7% 0.013 236.62);
201
+ --color-sky-100: oklch(95.1% 0.026 236.824);
202
+ --color-sky-200: oklch(90.1% 0.058 230.902);
203
+ --color-sky-300: oklch(82.8% 0.111 230.318);
204
+ --color-sky-400: oklch(74.6% 0.16 232.661);
205
+ --color-sky-500: oklch(68.5% 0.169 237.323);
206
+ --color-sky-600: oklch(58.8% 0.158 241.966);
207
+ --color-sky-700: oklch(50% 0.134 242.749);
208
+ --color-sky-800: oklch(44.3% 0.11 240.79);
209
+ --color-sky-900: oklch(39.1% 0.09 240.876);
210
+ --color-sky-950: oklch(29.3% 0.066 243.157);
211
+
212
+ --color-blue-50: oklch(97% 0.014 254.604);
213
+ --color-blue-100: oklch(93.2% 0.032 255.585);
214
+ --color-blue-200: oklch(88.2% 0.059 254.128);
215
+ --color-blue-300: oklch(80.9% 0.105 251.813);
216
+ --color-blue-400: oklch(70.7% 0.165 254.624);
217
+ --color-blue-500: oklch(62.3% 0.214 259.815);
218
+ --color-blue-600: oklch(54.6% 0.245 262.881);
219
+ --color-blue-700: oklch(48.8% 0.243 264.376);
220
+ --color-blue-800: oklch(42.4% 0.199 265.638);
221
+ --color-blue-900: oklch(37.9% 0.146 265.522);
222
+ --color-blue-950: oklch(28.2% 0.091 267.935);
223
+
224
+ --color-indigo-50: oklch(96.2% 0.018 272.314);
225
+ --color-indigo-100: oklch(93% 0.034 272.788);
226
+ --color-indigo-200: oklch(87% 0.065 274.039);
227
+ --color-indigo-300: oklch(78.5% 0.115 274.713);
228
+ --color-indigo-400: oklch(67.3% 0.182 276.935);
229
+ --color-indigo-500: oklch(58.5% 0.233 277.117);
230
+ --color-indigo-600: oklch(51.1% 0.262 276.966);
231
+ --color-indigo-700: oklch(45.7% 0.24 277.023);
232
+ --color-indigo-800: oklch(39.8% 0.195 277.366);
233
+ --color-indigo-900: oklch(35.9% 0.144 278.697);
234
+ --color-indigo-950: oklch(25.7% 0.09 281.288);
235
+
236
+ --color-violet-50: oklch(96.9% 0.016 293.756);
237
+ --color-violet-100: oklch(94.3% 0.029 294.588);
238
+ --color-violet-200: oklch(89.4% 0.057 293.283);
239
+ --color-violet-300: oklch(81.1% 0.111 293.571);
240
+ --color-violet-400: oklch(70.2% 0.183 293.541);
241
+ --color-violet-500: oklch(60.6% 0.25 292.717);
242
+ --color-violet-600: oklch(54.1% 0.281 293.009);
243
+ --color-violet-700: oklch(49.1% 0.27 292.581);
244
+ --color-violet-800: oklch(43.2% 0.232 292.759);
245
+ --color-violet-900: oklch(38% 0.189 293.745);
246
+ --color-violet-950: oklch(28.3% 0.141 291.089);
247
+
248
+ --color-purple-50: oklch(97.7% 0.014 308.299);
249
+ --color-purple-100: oklch(94.6% 0.033 307.174);
250
+ --color-purple-200: oklch(90.2% 0.063 306.703);
251
+ --color-purple-300: oklch(82.7% 0.119 306.383);
252
+ --color-purple-400: oklch(71.4% 0.203 305.504);
253
+ --color-purple-500: oklch(62.7% 0.265 303.9);
254
+ --color-purple-600: oklch(55.8% 0.288 302.321);
255
+ --color-purple-700: oklch(49.6% 0.265 301.924);
256
+ --color-purple-800: oklch(43.8% 0.218 303.724);
257
+ --color-purple-900: oklch(38.1% 0.176 304.987);
258
+ --color-purple-950: oklch(29.1% 0.149 302.717);
259
+
260
+ --color-fuchsia-50: oklch(97.7% 0.017 320.058);
261
+ --color-fuchsia-100: oklch(95.2% 0.037 318.852);
262
+ --color-fuchsia-200: oklch(90.3% 0.076 319.62);
263
+ --color-fuchsia-300: oklch(83.3% 0.145 321.434);
264
+ --color-fuchsia-400: oklch(74% 0.238 322.16);
265
+ --color-fuchsia-500: oklch(66.7% 0.295 322.15);
266
+ --color-fuchsia-600: oklch(59.1% 0.293 322.896);
267
+ --color-fuchsia-700: oklch(51.8% 0.253 323.949);
268
+ --color-fuchsia-800: oklch(45.2% 0.211 324.591);
269
+ --color-fuchsia-900: oklch(40.1% 0.17 325.612);
270
+ --color-fuchsia-950: oklch(29.3% 0.136 325.661);
271
+
272
+ --color-pink-50: oklch(97.1% 0.014 343.198);
273
+ --color-pink-100: oklch(94.8% 0.028 342.258);
274
+ --color-pink-200: oklch(89.9% 0.061 343.231);
275
+ --color-pink-300: oklch(82.3% 0.12 346.018);
276
+ --color-pink-400: oklch(71.8% 0.202 349.761);
277
+ --color-pink-500: oklch(65.6% 0.241 354.308);
278
+ --color-pink-600: oklch(59.2% 0.249 0.584);
279
+ --color-pink-700: oklch(52.5% 0.223 3.958);
280
+ --color-pink-800: oklch(45.9% 0.187 3.815);
281
+ --color-pink-900: oklch(40.8% 0.153 2.432);
282
+ --color-pink-950: oklch(28.4% 0.109 3.907);
283
+
284
+ --color-rose-50: oklch(96.9% 0.015 12.422);
285
+ --color-rose-100: oklch(94.1% 0.03 12.58);
286
+ --color-rose-200: oklch(89.2% 0.058 10.001);
287
+ --color-rose-300: oklch(81% 0.117 11.638);
288
+ --color-rose-400: oklch(71.2% 0.194 13.428);
289
+ --color-rose-500: oklch(64.5% 0.246 16.439);
290
+ --color-rose-600: oklch(58.6% 0.253 17.585);
291
+ --color-rose-700: oklch(51.4% 0.222 16.935);
292
+ --color-rose-800: oklch(45.5% 0.188 13.697);
293
+ --color-rose-900: oklch(41% 0.159 10.272);
294
+ --color-rose-950: oklch(27.1% 0.105 12.094);
295
+
296
+ --color-slate-50: oklch(98.4% 0.003 247.858);
297
+ --color-slate-100: oklch(96.8% 0.007 247.896);
298
+ --color-slate-200: oklch(92.9% 0.013 255.508);
299
+ --color-slate-300: oklch(86.9% 0.022 252.894);
300
+ --color-slate-400: oklch(70.4% 0.04 256.788);
301
+ --color-slate-500: oklch(55.4% 0.046 257.417);
302
+ --color-slate-600: oklch(44.6% 0.043 257.281);
303
+ --color-slate-700: oklch(37.2% 0.044 257.287);
304
+ --color-slate-800: oklch(27.9% 0.041 260.031);
305
+ --color-slate-900: oklch(20.8% 0.042 265.755);
306
+ --color-slate-950: oklch(12.9% 0.042 264.695);
307
+
308
+ --color-gray-50: oklch(98.5% 0.002 247.839);
309
+ --color-gray-100: oklch(96.7% 0.003 264.542);
310
+ --color-gray-200: oklch(92.8% 0.006 264.531);
311
+ --color-gray-300: oklch(87.2% 0.01 258.338);
312
+ --color-gray-400: oklch(70.7% 0.022 261.325);
313
+ --color-gray-500: oklch(55.1% 0.027 264.364);
314
+ --color-gray-600: oklch(44.6% 0.03 256.802);
315
+ --color-gray-700: oklch(37.3% 0.034 259.733);
316
+ --color-gray-800: oklch(27.8% 0.033 256.848);
317
+ --color-gray-900: oklch(21% 0.034 264.665);
318
+ --color-gray-950: oklch(13% 0.028 261.692);
319
+
320
+ --color-zinc-50: oklch(98.5% 0 0);
321
+ --color-zinc-100: oklch(96.7% 0.001 286.375);
322
+ --color-zinc-200: oklch(92% 0.004 286.32);
323
+ --color-zinc-300: oklch(87.1% 0.006 286.286);
324
+ --color-zinc-400: oklch(70.5% 0.015 286.067);
325
+ --color-zinc-500: oklch(55.2% 0.016 285.938);
326
+ --color-zinc-600: oklch(44.2% 0.017 285.786);
327
+ --color-zinc-700: oklch(37% 0.013 285.805);
328
+ --color-zinc-800: oklch(27.4% 0.006 286.033);
329
+ --color-zinc-900: oklch(21% 0.006 285.885);
330
+ --color-zinc-950: oklch(14.1% 0.005 285.823);
331
+
332
+ --color-neutral-50: oklch(98.5% 0 0);
333
+ --color-neutral-100: oklch(97% 0 0);
334
+ --color-neutral-200: oklch(92.2% 0 0);
335
+ --color-neutral-300: oklch(87% 0 0);
336
+ --color-neutral-400: oklch(70.8% 0 0);
337
+ --color-neutral-500: oklch(55.6% 0 0);
338
+ --color-neutral-600: oklch(43.9% 0 0);
339
+ --color-neutral-700: oklch(37.1% 0 0);
340
+ --color-neutral-800: oklch(26.9% 0 0);
341
+ --color-neutral-900: oklch(20.5% 0 0);
342
+ --color-neutral-950: oklch(14.5% 0 0);
343
+
344
+ --color-stone-50: oklch(98.5% 0.001 106.423);
345
+ --color-stone-100: oklch(97% 0.001 106.424);
346
+ --color-stone-200: oklch(92.3% 0.003 48.717);
347
+ --color-stone-300: oklch(86.9% 0.005 56.366);
348
+ --color-stone-400: oklch(70.9% 0.01 56.259);
349
+ --color-stone-500: oklch(55.3% 0.013 58.071);
350
+ --color-stone-600: oklch(44.4% 0.011 73.639);
351
+ --color-stone-700: oklch(37.4% 0.01 67.558);
352
+ --color-stone-800: oklch(26.8% 0.007 34.298);
353
+ --color-stone-900: oklch(21.6% 0.006 56.043);
354
+ --color-stone-950: oklch(14.7% 0.004 49.25);
355
+
356
+ --color-black: #000;
357
+ --color-white: #fff;
358
+
359
+ --spacing: 0.25rem;
360
+
361
+ --breakpoint-sm: 40rem;
362
+ --breakpoint-md: 48rem;
363
+ --breakpoint-lg: 64rem;
364
+ --breakpoint-xl: 80rem;
365
+ --breakpoint-2xl: 96rem;
366
+
367
+ --container-3xs: 16rem;
368
+ --container-2xs: 18rem;
369
+ --container-xs: 20rem;
370
+ --container-sm: 24rem;
371
+ --container-md: 28rem;
372
+ --container-lg: 32rem;
373
+ --container-xl: 36rem;
374
+ --container-2xl: 42rem;
375
+ --container-3xl: 48rem;
376
+ --container-4xl: 56rem;
377
+ --container-5xl: 64rem;
378
+ --container-6xl: 72rem;
379
+ --container-7xl: 80rem;
380
+
381
+ --text-xs: 0.75rem;
382
+ --text-xs--line-height: calc(1 / 0.75);
383
+ --text-sm: 0.875rem;
384
+ --text-sm--line-height: calc(1.25 / 0.875);
385
+ --text-base: 1rem;
386
+ --text-base--line-height: calc(1.5 / 1);
387
+ --text-lg: 1.125rem;
388
+ --text-lg--line-height: calc(1.75 / 1.125);
389
+ --text-xl: 1.25rem;
390
+ --text-xl--line-height: calc(1.75 / 1.25);
391
+ --text-2xl: 1.5rem;
392
+ --text-2xl--line-height: calc(2 / 1.5);
393
+ --text-3xl: 1.875rem;
394
+ --text-3xl--line-height: calc(2.25 / 1.875);
395
+ --text-4xl: 2.25rem;
396
+ --text-4xl--line-height: calc(2.5 / 2.25);
397
+ --text-5xl: 3rem;
398
+ --text-5xl--line-height: 1;
399
+ --text-6xl: 3.75rem;
400
+ --text-6xl--line-height: 1;
401
+ --text-7xl: 4.5rem;
402
+ --text-7xl--line-height: 1;
403
+ --text-8xl: 6rem;
404
+ --text-8xl--line-height: 1;
405
+ --text-9xl: 8rem;
406
+ --text-9xl--line-height: 1;
407
+
408
+ --font-weight-thin: 100;
409
+ --font-weight-extralight: 200;
410
+ --font-weight-light: 300;
411
+ --font-weight-normal: 400;
412
+ --font-weight-medium: 500;
413
+ --font-weight-semibold: 600;
414
+ --font-weight-bold: 700;
415
+ --font-weight-extrabold: 800;
416
+ --font-weight-black: 900;
417
+
418
+ --tracking-tighter: -0.05em;
419
+ --tracking-tight: -0.025em;
420
+ --tracking-normal: 0em;
421
+ --tracking-wide: 0.025em;
422
+ --tracking-wider: 0.05em;
423
+ --tracking-widest: 0.1em;
424
+
425
+ --leading-tight: 1.25;
426
+ --leading-snug: 1.375;
427
+ --leading-normal: 1.5;
428
+ --leading-relaxed: 1.625;
429
+ --leading-loose: 2;
430
+
431
+ --radius-xs: 0.125rem;
432
+ --radius-sm: 0.25rem;
433
+ --radius-md: 0.375rem;
434
+ --radius-lg: 0.5rem;
435
+ --radius-xl: 0.75rem;
436
+ --radius-2xl: 1rem;
437
+ --radius-3xl: 1.5rem;
438
+ --radius-4xl: 2rem;
439
+
440
+ --shadow-2xs: 0 1px rgb(0 0 0 / 0.05);
441
+ --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
442
+ --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
443
+ --shadow-md:
444
+ 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
445
+ --shadow-lg:
446
+ 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
447
+ --shadow-xl:
448
+ 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
449
+ --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
450
+
451
+ --inset-shadow-2xs: inset 0 1px rgb(0 0 0 / 0.05);
452
+ --inset-shadow-xs: inset 0 1px 1px rgb(0 0 0 / 0.05);
453
+ --inset-shadow-sm: inset 0 2px 4px rgb(0 0 0 / 0.05);
454
+
455
+ --drop-shadow-xs: 0 1px 1px rgb(0 0 0 / 0.05);
456
+ --drop-shadow-sm: 0 1px 2px rgb(0 0 0 / 0.15);
457
+ --drop-shadow-md: 0 3px 3px rgb(0 0 0 / 0.12);
458
+ --drop-shadow-lg: 0 4px 4px rgb(0 0 0 / 0.15);
459
+ --drop-shadow-xl: 0 9px 7px rgb(0 0 0 / 0.1);
460
+ --drop-shadow-2xl: 0 25px 25px rgb(0 0 0 / 0.15);
461
+
462
+ --text-shadow-2xs: 0px 1px 0px rgb(0 0 0 / 0.15);
463
+ --text-shadow-xs: 0px 1px 1px rgb(0 0 0 / 0.2);
464
+ --text-shadow-sm:
465
+ 0px 1px 0px rgb(0 0 0 / 0.075), 0px 1px 1px rgb(0 0 0 / 0.075),
466
+ 0px 2px 2px rgb(0 0 0 / 0.075);
467
+ --text-shadow-md:
468
+ 0px 1px 1px rgb(0 0 0 / 0.1), 0px 1px 2px rgb(0 0 0 / 0.1),
469
+ 0px 2px 4px rgb(0 0 0 / 0.1);
470
+ --text-shadow-lg:
471
+ 0px 1px 2px rgb(0 0 0 / 0.1), 0px 3px 2px rgb(0 0 0 / 0.1),
472
+ 0px 4px 8px rgb(0 0 0 / 0.1);
473
+
474
+ --ease-in: cubic-bezier(0.4, 0, 1, 1);
475
+ --ease-out: cubic-bezier(0, 0, 0.2, 1);
476
+ --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
477
+
478
+ --animate-spin: spin 1s linear infinite;
479
+ --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
480
+ --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
481
+ --animate-bounce: bounce 1s infinite;
482
+
483
+ @keyframes spin {
484
+ to {
485
+ transform: rotate(360deg);
486
+ }
487
+ }
488
+
489
+ @keyframes ping {
490
+ 75%,
491
+ 100% {
492
+ transform: scale(2);
493
+ opacity: 0;
494
+ }
495
+ }
496
+
497
+ @keyframes pulse {
498
+ 50% {
499
+ opacity: 0.5;
500
+ }
501
+ }
502
+
503
+ @keyframes bounce {
504
+ 0%,
505
+ 100% {
506
+ transform: translateY(-25%);
507
+ animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
508
+ }
509
+
510
+ 50% {
511
+ transform: none;
512
+ animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
513
+ }
514
+ }
515
+
516
+ --blur-xs: 4px;
517
+ --blur-sm: 8px;
518
+ --blur-md: 12px;
519
+ --blur-lg: 16px;
520
+ --blur-xl: 24px;
521
+ --blur-2xl: 40px;
522
+ --blur-3xl: 64px;
523
+
524
+ --perspective-dramatic: 100px;
525
+ --perspective-near: 300px;
526
+ --perspective-normal: 500px;
527
+ --perspective-midrange: 800px;
528
+ --perspective-distant: 1200px;
529
+
530
+ --aspect-video: 16 / 9;
531
+
532
+ --default-transition-duration: 150ms;
533
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
534
+ --default-font-family: --theme(--font-sans, initial);
535
+ --default-font-feature-settings: --theme(
536
+ --font-sans--font-feature-settings,
537
+ initial
538
+ );
539
+ --default-font-variation-settings: --theme(
540
+ --font-sans--font-variation-settings,
541
+ initial
542
+ );
543
+ --default-mono-font-family: --theme(--font-mono, initial);
544
+ --default-mono-font-feature-settings: --theme(
545
+ --font-mono--font-feature-settings,
546
+ initial
547
+ );
548
+ --default-mono-font-variation-settings: --theme(
549
+ --font-mono--font-variation-settings,
550
+ initial
551
+ );
552
+ }
553
+
554
+ /* Deprecated */
555
+ @theme default inline reference {
556
+ --blur: 8px;
557
+ --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
558
+ --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
559
+ --drop-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06);
560
+ --radius: 0.25rem;
561
+ --max-width-prose: 65ch;
562
+ }
563
+ }
564
+
565
+ @layer base {
566
+ /*
567
+ 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
568
+ 2. Remove default margins and padding
569
+ 3. Reset all borders.
570
+ */
571
+
572
+ *,
573
+ ::after,
574
+ ::before,
575
+ ::backdrop,
576
+ ::file-selector-button {
577
+ box-sizing: border-box; /* 1 */
578
+ margin: 0; /* 2 */
579
+ padding: 0; /* 2 */
580
+ border: 0 solid; /* 3 */
581
+ }
582
+
583
+ /*
584
+ 1. Use a consistent sensible line-height in all browsers.
585
+ 2. Prevent adjustments of font size after orientation changes in iOS.
586
+ 3. Use a more readable tab size.
587
+ 4. Use the user's configured `sans` font-family by default.
588
+ 5. Use the user's configured `sans` font-feature-settings by default.
589
+ 6. Use the user's configured `sans` font-variation-settings by default.
590
+ 7. Disable tap highlights on iOS.
591
+ */
592
+
593
+ html,
594
+ :host {
595
+ line-height: 1.5; /* 1 */
596
+ -webkit-text-size-adjust: 100%; /* 2 */
597
+ tab-size: 4; /* 3 */
598
+ font-family: --theme(
599
+ --default-font-family,
600
+ ui-sans-serif,
601
+ system-ui,
602
+ sans-serif,
603
+ "Apple Color Emoji",
604
+ "Segoe UI Emoji",
605
+ "Segoe UI Symbol",
606
+ "Noto Color Emoji"
607
+ ); /* 4 */
608
+ font-feature-settings: --theme(
609
+ --default-font-feature-settings,
610
+ normal
611
+ ); /* 5 */
612
+ font-variation-settings: --theme(
613
+ --default-font-variation-settings,
614
+ normal
615
+ ); /* 6 */
616
+ -webkit-tap-highlight-color: transparent; /* 7 */
617
+ }
618
+
619
+ /*
620
+ 1. Add the correct height in Firefox.
621
+ 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
622
+ 3. Reset the default border style to a 1px solid border.
623
+ */
624
+
625
+ hr {
626
+ height: 0; /* 1 */
627
+ color: inherit; /* 2 */
628
+ border-top-width: 1px; /* 3 */
629
+ }
630
+
631
+ /*
632
+ Add the correct text decoration in Chrome, Edge, and Safari.
633
+ */
634
+
635
+ abbr:where([title]) {
636
+ -webkit-text-decoration: underline dotted;
637
+ text-decoration: underline dotted;
638
+ }
639
+
640
+ /*
641
+ Remove the default font size and weight for headings.
642
+ */
643
+
644
+ h1,
645
+ h2,
646
+ h3,
647
+ h4,
648
+ h5,
649
+ h6 {
650
+ font-size: inherit;
651
+ font-weight: inherit;
652
+ }
653
+
654
+ /*
655
+ Reset links to optimize for opt-in styling instead of opt-out.
656
+ */
657
+
658
+ a {
659
+ color: inherit;
660
+ -webkit-text-decoration: inherit;
661
+ text-decoration: inherit;
662
+ }
663
+
664
+ /*
665
+ Add the correct font weight in Edge and Safari.
666
+ */
667
+
668
+ b,
669
+ strong {
670
+ font-weight: bolder;
671
+ }
672
+
673
+ /*
674
+ 1. Use the user's configured `mono` font-family by default.
675
+ 2. Use the user's configured `mono` font-feature-settings by default.
676
+ 3. Use the user's configured `mono` font-variation-settings by default.
677
+ 4. Correct the odd `em` font sizing in all browsers.
678
+ */
679
+
680
+ code,
681
+ kbd,
682
+ samp,
683
+ pre {
684
+ font-family: --theme(
685
+ --default-mono-font-family,
686
+ ui-monospace,
687
+ SFMono-Regular,
688
+ Menlo,
689
+ Monaco,
690
+ Consolas,
691
+ "Liberation Mono",
692
+ "Courier New",
693
+ monospace
694
+ ); /* 1 */
695
+ font-feature-settings: --theme(
696
+ --default-mono-font-feature-settings,
697
+ normal
698
+ ); /* 2 */
699
+ font-variation-settings: --theme(
700
+ --default-mono-font-variation-settings,
701
+ normal
702
+ ); /* 3 */
703
+ font-size: 1em; /* 4 */
704
+ }
705
+
706
+ /*
707
+ Add the correct font size in all browsers.
708
+ */
709
+
710
+ small {
711
+ font-size: 80%;
712
+ }
713
+
714
+ /*
715
+ Prevent `sub` and `sup` elements from affecting the line height in all browsers.
716
+ */
717
+
718
+ sub,
719
+ sup {
720
+ font-size: 75%;
721
+ line-height: 0;
722
+ position: relative;
723
+ vertical-align: baseline;
724
+ }
725
+
726
+ sub {
727
+ bottom: -0.25em;
728
+ }
729
+
730
+ sup {
731
+ top: -0.5em;
732
+ }
733
+
734
+ /*
735
+ 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
736
+ 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
737
+ 3. Remove gaps between table borders by default.
738
+ */
739
+
740
+ table {
741
+ text-indent: 0; /* 1 */
742
+ border-color: inherit; /* 2 */
743
+ border-collapse: collapse; /* 3 */
744
+ }
745
+
746
+ /*
747
+ Use the modern Firefox focus style for all focusable elements.
748
+ */
749
+
750
+ :-moz-focusring {
751
+ outline: auto;
752
+ }
753
+
754
+ /*
755
+ Add the correct vertical alignment in Chrome and Firefox.
756
+ */
757
+
758
+ progress {
759
+ vertical-align: baseline;
760
+ }
761
+
762
+ /*
763
+ Add the correct display in Chrome and Safari.
764
+ */
765
+
766
+ summary {
767
+ display: list-item;
768
+ }
769
+
770
+ /*
771
+ Make lists unstyled by default.
772
+ */
773
+
774
+ ol,
775
+ ul,
776
+ menu {
777
+ list-style: none;
778
+ }
779
+
780
+ /*
781
+ 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
782
+ 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
783
+ This can trigger a poorly considered lint error in some tools but is included by design.
784
+ */
785
+
786
+ img,
787
+ svg,
788
+ video,
789
+ canvas,
790
+ audio,
791
+ iframe,
792
+ embed,
793
+ object {
794
+ display: block; /* 1 */
795
+ vertical-align: middle; /* 2 */
796
+ }
797
+
798
+ /*
799
+ Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
800
+ */
801
+
802
+ img,
803
+ video {
804
+ max-width: 100%;
805
+ height: auto;
806
+ }
807
+
808
+ /*
809
+ 1. Inherit font styles in all browsers.
810
+ 2. Remove border radius in all browsers.
811
+ 3. Remove background color in all browsers.
812
+ 4. Ensure consistent opacity for disabled states in all browsers.
813
+ */
814
+
815
+ button,
816
+ input,
817
+ select,
818
+ optgroup,
819
+ textarea,
820
+ ::file-selector-button {
821
+ font: inherit; /* 1 */
822
+ font-feature-settings: inherit; /* 1 */
823
+ font-variation-settings: inherit; /* 1 */
824
+ letter-spacing: inherit; /* 1 */
825
+ color: inherit; /* 1 */
826
+ border-radius: 0; /* 2 */
827
+ background-color: transparent; /* 3 */
828
+ opacity: 1; /* 4 */
829
+ }
830
+
831
+ /*
832
+ Restore default font weight.
833
+ */
834
+
835
+ :where(select:is([multiple], [size])) optgroup {
836
+ font-weight: bolder;
837
+ }
838
+
839
+ /*
840
+ Restore indentation.
841
+ */
842
+
843
+ :where(select:is([multiple], [size])) optgroup option {
844
+ padding-inline-start: 20px;
845
+ }
846
+
847
+ /*
848
+ Restore space after button.
849
+ */
850
+
851
+ ::file-selector-button {
852
+ margin-inline-end: 4px;
853
+ }
854
+
855
+ /*
856
+ Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
857
+ */
858
+
859
+ ::placeholder {
860
+ opacity: 1;
861
+ }
862
+
863
+ /*
864
+ Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not
865
+ crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194)
866
+ */
867
+
868
+ @supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or
869
+ (contain-intrinsic-size: 1px) /* Safari 17+ */ {
870
+ ::placeholder {
871
+ color: color-mix(in oklab, currentcolor 50%, transparent);
872
+ }
873
+ }
874
+
875
+ /*
876
+ Prevent resizing textareas horizontally by default.
877
+ */
878
+
879
+ textarea {
880
+ resize: vertical;
881
+ }
882
+
883
+ /*
884
+ Remove the inner padding in Chrome and Safari on macOS.
885
+ */
886
+
887
+ ::-webkit-search-decoration {
888
+ -webkit-appearance: none;
889
+ }
890
+
891
+ /*
892
+ 1. Ensure date/time inputs have the same height when empty in iOS Safari.
893
+ 2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
894
+ */
895
+
896
+ ::-webkit-date-and-time-value {
897
+ min-height: 1lh; /* 1 */
898
+ text-align: inherit; /* 2 */
899
+ }
900
+
901
+ /*
902
+ Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.
903
+ */
904
+
905
+ ::-webkit-datetime-edit {
906
+ display: inline-flex;
907
+ }
908
+
909
+ /*
910
+ Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
911
+ */
912
+
913
+ ::-webkit-datetime-edit-fields-wrapper {
914
+ padding: 0;
915
+ }
916
+
917
+ ::-webkit-datetime-edit,
918
+ ::-webkit-datetime-edit-year-field,
919
+ ::-webkit-datetime-edit-month-field,
920
+ ::-webkit-datetime-edit-day-field,
921
+ ::-webkit-datetime-edit-hour-field,
922
+ ::-webkit-datetime-edit-minute-field,
923
+ ::-webkit-datetime-edit-second-field,
924
+ ::-webkit-datetime-edit-millisecond-field,
925
+ ::-webkit-datetime-edit-meridiem-field {
926
+ padding-block: 0;
927
+ }
928
+
929
+ /*
930
+ Center dropdown marker shown on inputs with paired `<datalist>`s in Chrome. (https://github.com/tailwindlabs/tailwindcss/issues/18499)
931
+ */
932
+
933
+ ::-webkit-calendar-picker-indicator {
934
+ line-height: 1;
935
+ }
936
+
937
+ /*
938
+ Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
939
+ */
940
+
941
+ :-moz-ui-invalid {
942
+ box-shadow: none;
943
+ }
944
+
945
+ /*
946
+ Correct the inability to style the border radius in iOS Safari.
947
+ */
948
+
949
+ button,
950
+ input:where([type="button"], [type="reset"], [type="submit"]),
951
+ ::file-selector-button {
952
+ appearance: button;
953
+ }
954
+
955
+ /*
956
+ Correct the cursor style of increment and decrement buttons in Safari.
957
+ */
958
+
959
+ ::-webkit-inner-spin-button,
960
+ ::-webkit-outer-spin-button {
961
+ height: auto;
962
+ }
963
+
964
+ /*
965
+ Make elements with the HTML hidden attribute stay hidden by default.
966
+ */
967
+
968
+ [hidden]:where(:not([hidden="until-found"])) {
969
+ display: none !important;
970
+ }
971
+ }
972
+
973
+ @layer utilities {
974
+ @tailwind utilities;
975
+ }
976
+
977
+ @property --tw-animation-delay{syntax:"*";inherits:false;initial-value:0s}
978
+
979
+ @property --tw-animation-direction{syntax:"*";inherits:false;initial-value:normal}
980
+
981
+ @property --tw-animation-duration{syntax:"*";inherits:false}
982
+
983
+ @property --tw-animation-fill-mode{syntax:"*";inherits:false;initial-value:none}
984
+
985
+ @property --tw-animation-iteration-count{syntax:"*";inherits:false;initial-value:1}
986
+
987
+ @property --tw-enter-blur{syntax:"*";inherits:false;initial-value:0}
988
+
989
+ @property --tw-enter-opacity{syntax:"*";inherits:false;initial-value:1}
990
+
991
+ @property --tw-enter-rotate{syntax:"*";inherits:false;initial-value:0}
992
+
993
+ @property --tw-enter-scale{syntax:"*";inherits:false;initial-value:1}
994
+
995
+ @property --tw-enter-translate-x{syntax:"*";inherits:false;initial-value:0}
996
+
997
+ @property --tw-enter-translate-y{syntax:"*";inherits:false;initial-value:0}
998
+
999
+ @property --tw-exit-blur{syntax:"*";inherits:false;initial-value:0}
1000
+
1001
+ @property --tw-exit-opacity{syntax:"*";inherits:false;initial-value:1}
1002
+
1003
+ @property --tw-exit-rotate{syntax:"*";inherits:false;initial-value:0}
1004
+
1005
+ @property --tw-exit-scale{syntax:"*";inherits:false;initial-value:1}
1006
+
1007
+ @property --tw-exit-translate-x{syntax:"*";inherits:false;initial-value:0}
1008
+
1009
+ @property --tw-exit-translate-y{syntax:"*";inherits:false;initial-value:0}
1010
+
1011
+ @theme inline{--animation-delay-0: 0s; --animation-delay-75: 75ms; --animation-delay-100: .1s; --animation-delay-150: .15s; --animation-delay-200: .2s; --animation-delay-300: .3s; --animation-delay-500: .5s; --animation-delay-700: .7s; --animation-delay-1000: 1s; --animation-repeat-0: 0; --animation-repeat-1: 1; --animation-repeat-infinite: infinite; --animation-direction-normal: normal; --animation-direction-reverse: reverse; --animation-direction-alternate: alternate; --animation-direction-alternate-reverse: alternate-reverse; --animation-fill-mode-none: none; --animation-fill-mode-forwards: forwards; --animation-fill-mode-backwards: backwards; --animation-fill-mode-both: both; --percentage-0: 0; --percentage-5: .05; --percentage-10: .1; --percentage-15: .15; --percentage-20: .2; --percentage-25: .25; --percentage-30: .3; --percentage-35: .35; --percentage-40: .4; --percentage-45: .45; --percentage-50: .5; --percentage-55: .55; --percentage-60: .6; --percentage-65: .65; --percentage-70: .7; --percentage-75: .75; --percentage-80: .8; --percentage-85: .85; --percentage-90: .9; --percentage-95: .95; --percentage-100: 1; --percentage-translate-full: 1; --animate-in: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none); --animate-out: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none); @keyframes enter { from { opacity: var(--tw-enter-opacity,1); transform: translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0)scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0)); filter: blur(var(--tw-enter-blur,0)); }}@keyframes exit { to { opacity: var(--tw-exit-opacity,1); transform: translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0)scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0)); filter: blur(var(--tw-exit-blur,0)); }}--animate-accordion-down: accordion-down var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none); --animate-accordion-up: accordion-up var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none); --animate-collapsible-down: collapsible-down var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none); --animate-collapsible-up: collapsible-up var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none); @keyframes accordion-down { from { height: 0; }to { height: var(--radix-accordion-content-height,var(--bits-accordion-content-height,var(--reka-accordion-content-height,var(--kb-accordion-content-height,var(--ngp-accordion-content-height,auto))))); }}@keyframes accordion-up { from { height: var(--radix-accordion-content-height,var(--bits-accordion-content-height,var(--reka-accordion-content-height,var(--kb-accordion-content-height,var(--ngp-accordion-content-height,auto))))); }to { height: 0; }}@keyframes collapsible-down { from { height: 0; }to { height: var(--radix-collapsible-content-height,var(--bits-collapsible-content-height,var(--reka-collapsible-content-height,var(--kb-collapsible-content-height,auto)))); }}@keyframes collapsible-up { from { height: var(--radix-collapsible-content-height,var(--bits-collapsible-content-height,var(--reka-collapsible-content-height,var(--kb-collapsible-content-height,auto)))); }to { height: 0; }}--animate-caret-blink: caret-blink 1.25s ease-out infinite; @keyframes caret-blink { 0%,70%,100% { opacity: 1; }20%,50% { opacity: 0; }}}
1012
+
1013
+ @utility animation-duration-*{--tw-animation-duration: calc(--value(number)*1ms); --tw-animation-duration: --value(--animation-duration-*,[duration],"initial",[*]); animation-duration: calc(--value(number)*1ms); animation-duration: --value(--animation-duration-*,[duration],"initial",[*]);}
1014
+
1015
+ @utility delay-*{animation-delay: calc(--value(number)*1ms); animation-delay: --value(--animation-delay-*,[duration],"initial",[*]); --tw-animation-delay: calc(--value(number)*1ms); --tw-animation-delay: --value(--animation-delay-*,[duration],"initial",[*]);}
1016
+
1017
+ @utility repeat-*{animation-iteration-count: --value(--animation-repeat-*,number,"initial",[*]); --tw-animation-iteration-count: --value(--animation-repeat-*,number,"initial",[*]);}
1018
+
1019
+ @utility direction-*{animation-direction: --value(--animation-direction-*,"initial",[*]); --tw-animation-direction: --value(--animation-direction-*,"initial",[*]);}
1020
+
1021
+ @utility fill-mode-*{animation-fill-mode: --value(--animation-fill-mode-*,"initial",[*]); --tw-animation-fill-mode: --value(--animation-fill-mode-*,"initial",[*]);}
1022
+
1023
+ @utility running{animation-play-state: running;}
1024
+
1025
+ @utility paused{animation-play-state: paused;}
1026
+
1027
+ @utility play-state-*{animation-play-state: --value("initial",[*]);}
1028
+
1029
+ @utility blur-in{--tw-enter-blur: 20px;}
1030
+
1031
+ @utility blur-in-*{--tw-enter-blur: calc(--value(number)*1px); --tw-enter-blur: --value(--blur-*,[*]);}
1032
+
1033
+ @utility blur-out{--tw-exit-blur: 20px;}
1034
+
1035
+ @utility blur-out-*{--tw-exit-blur: calc(--value(number)*1px); --tw-exit-blur: --value(--blur-*,[*]);}
1036
+
1037
+ @utility fade-in{--tw-enter-opacity: 0;}
1038
+
1039
+ @utility fade-in-*{--tw-enter-opacity: calc(--value(number)/100); --tw-enter-opacity: --value(--percentage-*,[*]);}
1040
+
1041
+ @utility fade-out{--tw-exit-opacity: 0;}
1042
+
1043
+ @utility fade-out-*{--tw-exit-opacity: calc(--value(number)/100); --tw-exit-opacity: --value(--percentage-*,[*]);}
1044
+
1045
+ @utility zoom-in{--tw-enter-scale: 0;}
1046
+
1047
+ @utility zoom-in-*{--tw-enter-scale: calc(--value(number)*1%); --tw-enter-scale: calc(--value(ratio)); --tw-enter-scale: --value(--percentage-*,[*]);}
1048
+
1049
+ @utility -zoom-in-*{--tw-enter-scale: calc(--value(number)*-1%); --tw-enter-scale: calc(--value(ratio)*-1); --tw-enter-scale: --value(--percentage-*,[*]);}
1050
+
1051
+ @utility zoom-out{--tw-exit-scale: 0;}
1052
+
1053
+ @utility zoom-out-*{--tw-exit-scale: calc(--value(number)*1%); --tw-exit-scale: calc(--value(ratio)); --tw-exit-scale: --value(--percentage-*,[*]);}
1054
+
1055
+ @utility -zoom-out-*{--tw-exit-scale: calc(--value(number)*-1%); --tw-exit-scale: calc(--value(ratio)*-1); --tw-exit-scale: --value(--percentage-*,[*]);}
1056
+
1057
+ @utility spin-in{--tw-enter-rotate: 30deg;}
1058
+
1059
+ @utility spin-in-*{--tw-enter-rotate: calc(--value(number)*1deg); --tw-enter-rotate: calc(--value(ratio)*360deg); --tw-enter-rotate: --value(--rotate-*,[*]);}
1060
+
1061
+ @utility -spin-in{--tw-enter-rotate: -30deg;}
1062
+
1063
+ @utility -spin-in-*{--tw-enter-rotate: calc(--value(number)*-1deg); --tw-enter-rotate: calc(--value(ratio)*-360deg); --tw-enter-rotate: --value(--rotate-*,[*]);}
1064
+
1065
+ @utility spin-out{--tw-exit-rotate: 30deg;}
1066
+
1067
+ @utility spin-out-*{--tw-exit-rotate: calc(--value(number)*1deg); --tw-exit-rotate: calc(--value(ratio)*360deg); --tw-exit-rotate: --value(--rotate-*,[*]);}
1068
+
1069
+ @utility -spin-out{--tw-exit-rotate: -30deg;}
1070
+
1071
+ @utility -spin-out-*{--tw-exit-rotate: calc(--value(number)*-1deg); --tw-exit-rotate: calc(--value(ratio)*-360deg); --tw-exit-rotate: --value(--rotate-*,[*]);}
1072
+
1073
+ @utility slide-in-from-top{--tw-enter-translate-y: -100%;}
1074
+
1075
+ @utility slide-in-from-top-*{--tw-enter-translate-y: calc(--value(integer)*var(--spacing)*-1); --tw-enter-translate-y: calc(--value(--percentage-*,--percentage-translate-*)*-100%); --tw-enter-translate-y: calc(--value(ratio)*-100%); --tw-enter-translate-y: calc(--value(--translate-*,[percentage],[length])*-1);}
1076
+
1077
+ @utility slide-in-from-bottom{--tw-enter-translate-y: 100%;}
1078
+
1079
+ @utility slide-in-from-bottom-*{--tw-enter-translate-y: calc(--value(integer)*var(--spacing)); --tw-enter-translate-y: calc(--value(--percentage-*,--percentage-translate-*)*100%); --tw-enter-translate-y: calc(--value(ratio)*100%); --tw-enter-translate-y: --value(--translate-*,[percentage],[length]);}
1080
+
1081
+ @utility slide-in-from-left{--tw-enter-translate-x: -100%;}
1082
+
1083
+ @utility slide-in-from-left-*{--tw-enter-translate-x: calc(--value(integer)*var(--spacing)*-1); --tw-enter-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*-100%); --tw-enter-translate-x: calc(--value(ratio)*-100%); --tw-enter-translate-x: calc(--value(--translate-*,[percentage],[length])*-1);}
1084
+
1085
+ @utility slide-in-from-right{--tw-enter-translate-x: 100%;}
1086
+
1087
+ @utility slide-in-from-right-*{--tw-enter-translate-x: calc(--value(integer)*var(--spacing)); --tw-enter-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*100%); --tw-enter-translate-x: calc(--value(ratio)*100%); --tw-enter-translate-x: --value(--translate-*,[percentage],[length]);}
1088
+
1089
+ @utility slide-in-from-start{&:dir(ltr){ --tw-enter-translate-x: -100%; }&:dir(rtl){ --tw-enter-translate-x: 100%; }}
1090
+
1091
+ @utility slide-in-from-start-*{&:where(:dir(ltr),[dir="ltr"],[dir="ltr"]*){ --tw-enter-translate-x: calc(--value(integer)*var(--spacing)*-1); --tw-enter-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*-100%); --tw-enter-translate-x: calc(--value(ratio)*-100%); --tw-enter-translate-x: calc(--value(--translate-*,[percentage],[length])*-1); }&:where(:dir(rtl),[dir="rtl"],[dir="rtl"]*){ --tw-enter-translate-x: calc(--value(integer)*var(--spacing)); --tw-enter-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*100%); --tw-enter-translate-x: calc(--value(ratio)*100%); --tw-enter-translate-x: --value(--translate-*,[percentage],[length]); }}
1092
+
1093
+ @utility slide-in-from-end{&:dir(ltr){ --tw-enter-translate-x: 100%; }&:dir(rtl){ --tw-enter-translate-x: -100%; }}
1094
+
1095
+ @utility slide-in-from-end-*{&:where(:dir(ltr),[dir="ltr"],[dir="ltr"]*){ --tw-enter-translate-x: calc(--value(integer)*var(--spacing)); --tw-enter-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*100%); --tw-enter-translate-x: calc(--value(ratio)*100%); --tw-enter-translate-x: --value(--translate-*,[percentage],[length]); }&:where(:dir(rtl),[dir="rtl"],[dir="rtl"]*){ --tw-enter-translate-x: calc(--value(integer)*var(--spacing)*-1); --tw-enter-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*-100%); --tw-enter-translate-x: calc(--value(ratio)*-100%); --tw-enter-translate-x: calc(--value(--translate-*,[percentage],[length])*-1); }}
1096
+
1097
+ @utility slide-out-to-top{--tw-exit-translate-y: -100%;}
1098
+
1099
+ @utility slide-out-to-top-*{--tw-exit-translate-y: calc(--value(integer)*var(--spacing)*-1); --tw-exit-translate-y: calc(--value(--percentage-*,--percentage-translate-*)*-100%); --tw-exit-translate-y: calc(--value(ratio)*-100%); --tw-exit-translate-y: calc(--value(--translate-*,[percentage],[length])*-1);}
1100
+
1101
+ @utility slide-out-to-bottom{--tw-exit-translate-y: 100%;}
1102
+
1103
+ @utility slide-out-to-bottom-*{--tw-exit-translate-y: calc(--value(integer)*var(--spacing)); --tw-exit-translate-y: calc(--value(--percentage-*,--percentage-translate-*)*100%); --tw-exit-translate-y: calc(--value(ratio)*100%); --tw-exit-translate-y: --value(--translate-*,[percentage],[length]);}
1104
+
1105
+ @utility slide-out-to-left{--tw-exit-translate-x: -100%;}
1106
+
1107
+ @utility slide-out-to-left-*{--tw-exit-translate-x: calc(--value(integer)*var(--spacing)*-1); --tw-exit-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*-100%); --tw-exit-translate-x: calc(--value(ratio)*-100%); --tw-exit-translate-x: calc(--value(--translate-*,[percentage],[length])*-1);}
1108
+
1109
+ @utility slide-out-to-right{--tw-exit-translate-x: 100%;}
1110
+
1111
+ @utility slide-out-to-right-*{--tw-exit-translate-x: calc(--value(integer)*var(--spacing)); --tw-exit-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*100%); --tw-exit-translate-x: calc(--value(ratio)*100%); --tw-exit-translate-x: --value(--translate-*,[percentage],[length]);}
1112
+
1113
+ @utility slide-out-to-start{&:dir(ltr){ --tw-exit-translate-x: -100%; }&:dir(rtl){ --tw-exit-translate-x: 100%; }}
1114
+
1115
+ @utility slide-out-to-start-*{&:where(:dir(ltr),[dir="ltr"],[dir="ltr"]*){ --tw-exit-translate-x: calc(--value(integer)*var(--spacing)*-1); --tw-exit-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*-100%); --tw-exit-translate-x: calc(--value(ratio)*-100%); --tw-exit-translate-x: calc(--value(--translate-*,[percentage],[length])*-1); }&:where(:dir(rtl),[dir="rtl"],[dir="rtl"]*){ --tw-exit-translate-x: calc(--value(integer)*var(--spacing)); --tw-exit-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*100%); --tw-exit-translate-x: calc(--value(ratio)*100%); --tw-exit-translate-x: --value(--translate-*,[percentage],[length]); }}
1116
+
1117
+ @utility slide-out-to-end{&:dir(ltr){ --tw-exit-translate-x: 100%; }&:dir(rtl){ --tw-exit-translate-x: -100%; }}
1118
+
1119
+ @utility slide-out-to-end-*{&:where(:dir(ltr),[dir="ltr"],[dir="ltr"]*){ --tw-exit-translate-x: calc(--value(integer)*var(--spacing)); --tw-exit-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*100%); --tw-exit-translate-x: calc(--value(ratio)*100%); --tw-exit-translate-x: --value(--translate-*,[percentage],[length]); }&:where(:dir(rtl),[dir="rtl"],[dir="rtl"]*){ --tw-exit-translate-x: calc(--value(integer)*var(--spacing)*-1); --tw-exit-translate-x: calc(--value(--percentage-*,--percentage-translate-*)*-100%); --tw-exit-translate-x: calc(--value(ratio)*-100%); --tw-exit-translate-x: calc(--value(--translate-*,[percentage],[length])*-1); }}
1120
+
1121
+ @custom-variant dark (&:is(.dark *));
1122
+
1123
+ :root {
1124
+ --background: oklch(1 0 0);
1125
+ --foreground: oklch(0.145 0 0);
1126
+ --card: oklch(1 0 0);
1127
+ --card-foreground: oklch(0.145 0 0);
1128
+ --popover: oklch(1 0 0);
1129
+ --popover-foreground: oklch(0.145 0 0);
1130
+ --primary: oklch(0.205 0 0);
1131
+ --primary-foreground: oklch(0.985 0 0);
1132
+ --secondary: oklch(0.97 0 0);
1133
+ --secondary-foreground: oklch(0.205 0 0);
1134
+ --muted: oklch(0.97 0 0);
1135
+ --muted-foreground: oklch(0.556 0 0);
1136
+ --accent: oklch(0.97 0 0);
1137
+ --accent-foreground: oklch(0.205 0 0);
1138
+ --destructive: oklch(0.577 0.245 27.325);
1139
+ --destructive-foreground: oklch(0.577 0.245 27.325);
1140
+ --border: oklch(0.922 0 0);
1141
+ --input: oklch(0.922 0 0);
1142
+ --ring: oklch(0.708 0 0);
1143
+ --chart-1: oklch(0.646 0.222 41.116);
1144
+ --chart-2: oklch(0.6 0.118 184.704);
1145
+ --chart-3: oklch(0.398 0.07 227.392);
1146
+ --chart-4: oklch(0.828 0.189 84.429);
1147
+ --chart-5: oklch(0.769 0.188 70.08);
1148
+ --radius: 0.625rem;
1149
+ --sidebar: oklch(0.985 0 0);
1150
+ --sidebar-foreground: oklch(0.145 0 0);
1151
+ --sidebar-primary: oklch(0.205 0 0);
1152
+ --sidebar-primary-foreground: oklch(0.985 0 0);
1153
+ --sidebar-accent: oklch(0.97 0 0);
1154
+ --sidebar-accent-foreground: oklch(0.205 0 0);
1155
+ --sidebar-border: oklch(0.922 0 0);
1156
+ --sidebar-ring: oklch(0.708 0 0);
1157
+ }
1158
+
1159
+ .dark {
1160
+ --background: oklch(0.145 0 0);
1161
+ --foreground: oklch(0.985 0 0);
1162
+ --card: oklch(0.145 0 0);
1163
+ --card-foreground: oklch(0.985 0 0);
1164
+ --popover: oklch(0.145 0 0);
1165
+ --popover-foreground: oklch(0.985 0 0);
1166
+ --primary: oklch(0.985 0 0);
1167
+ --primary-foreground: oklch(0.205 0 0);
1168
+ --secondary: oklch(0.269 0 0);
1169
+ --secondary-foreground: oklch(0.985 0 0);
1170
+ --muted: oklch(0.269 0 0);
1171
+ --muted-foreground: oklch(0.708 0 0);
1172
+ --accent: oklch(0.269 0 0);
1173
+ --accent-foreground: oklch(0.985 0 0);
1174
+ --destructive: oklch(0.396 0.141 25.723);
1175
+ --destructive-foreground: oklch(0.637 0.237 25.331);
1176
+ --border: oklch(0.269 0 0);
1177
+ --input: oklch(0.269 0 0);
1178
+ --ring: oklch(0.439 0 0);
1179
+ --chart-1: oklch(0.488 0.243 264.376);
1180
+ --chart-2: oklch(0.696 0.17 162.48);
1181
+ --chart-3: oklch(0.769 0.188 70.08);
1182
+ --chart-4: oklch(0.627 0.265 303.9);
1183
+ --chart-5: oklch(0.645 0.246 16.439);
1184
+ --sidebar: oklch(0.205 0 0);
1185
+ --sidebar-foreground: oklch(0.985 0 0);
1186
+ --sidebar-primary: oklch(0.488 0.243 264.376);
1187
+ --sidebar-primary-foreground: oklch(0.985 0 0);
1188
+ --sidebar-accent: oklch(0.269 0 0);
1189
+ --sidebar-accent-foreground: oklch(0.985 0 0);
1190
+ --sidebar-border: oklch(0.269 0 0);
1191
+ --sidebar-ring: oklch(0.439 0 0);
1192
+ }
1193
+
1194
+ @theme inline {
1195
+ --color-background: var(--background);
1196
+ --color-foreground: var(--foreground);
1197
+ --color-card: var(--card);
1198
+ --color-card-foreground: var(--card-foreground);
1199
+ --color-popover: var(--popover);
1200
+ --color-popover-foreground: var(--popover-foreground);
1201
+ --color-primary: var(--primary);
1202
+ --color-primary-foreground: var(--primary-foreground);
1203
+ --color-secondary: var(--secondary);
1204
+ --color-secondary-foreground: var(--secondary-foreground);
1205
+ --color-muted: var(--muted);
1206
+ --color-muted-foreground: var(--muted-foreground);
1207
+ --color-accent: var(--accent);
1208
+ --color-accent-foreground: var(--accent-foreground);
1209
+ --color-destructive: var(--destructive);
1210
+ --color-destructive-foreground: var(--destructive-foreground);
1211
+ --color-border: var(--border);
1212
+ --color-input: var(--input);
1213
+ --color-ring: var(--ring);
1214
+ --color-chart-1: var(--chart-1);
1215
+ --color-chart-2: var(--chart-2);
1216
+ --color-chart-3: var(--chart-3);
1217
+ --color-chart-4: var(--chart-4);
1218
+ --color-chart-5: var(--chart-5);
1219
+ --radius-sm: calc(var(--radius) - 4px);
1220
+ --radius-md: calc(var(--radius) - 2px);
1221
+ --radius-lg: var(--radius);
1222
+ --radius-xl: calc(var(--radius) + 4px);
1223
+ --color-sidebar: var(--sidebar);
1224
+ --color-sidebar-foreground: var(--sidebar-foreground);
1225
+ --color-sidebar-primary: var(--sidebar-primary);
1226
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
1227
+ --color-sidebar-accent: var(--sidebar-accent);
1228
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
1229
+ --color-sidebar-border: var(--sidebar-border);
1230
+ --color-sidebar-ring: var(--sidebar-ring);
1231
+ }
1232
+
1233
+ @layer base {
1234
+ * {
1235
+ @apply border-border outline-ring/50;
1236
+ }
1237
+ body {
1238
+ @apply bg-background text-foreground;
1239
+ }
1240
+ }