@axzydev/axzy_ui_system 1.2.13 → 1.2.15

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 (260) hide show
  1. package/README.md +43 -0
  2. package/dist/index.cjs +6503 -6398
  3. package/dist/index.cjs.map +1 -1
  4. package/dist/index.css +1 -1
  5. package/dist/index.css.map +1 -1
  6. package/dist/index.d.cts +169 -110
  7. package/dist/index.d.ts +169 -110
  8. package/dist/index.js +6519 -6414
  9. package/dist/index.js.map +1 -1
  10. package/package.json +4 -2
  11. package/src/App.tsx +86 -81
  12. package/src/components/{avatar → atoms/avatar}/avatar.doc.mdx +2 -2
  13. package/src/components/{avatar → atoms/avatar}/avatar.stories.tsx +1 -2
  14. package/src/components/{avatar → atoms/avatar}/avatar.tsx +1 -1
  15. package/src/components/{badget → atoms/badget}/badget.doc.mdx +4 -4
  16. package/src/components/{badget → atoms/badget}/badget.props.ts +1 -1
  17. package/src/components/{badget → atoms/badget}/badget.stories.tsx +1 -2
  18. package/src/components/{badget → atoms/badget}/badget.tsx +3 -3
  19. package/src/components/{button → atoms/button}/button.doc.mdx +3 -3
  20. package/src/components/{button → atoms/button}/button.props.ts +3 -3
  21. package/src/components/{button → atoms/button}/button.stories.tsx +1 -2
  22. package/src/components/{button → atoms/button}/button.tsx +7 -7
  23. package/src/components/{checkbox → atoms/checkbox}/checkbox.doc.mdx +2 -2
  24. package/src/components/{checkbox → atoms/checkbox}/checkbox.stories.tsx +2 -3
  25. package/src/components/{checkbox → atoms/checkbox}/checkbox.tsx +1 -1
  26. package/src/components/{divider → atoms/divider}/divider.doc.mdx +2 -2
  27. package/src/components/{divider → atoms/divider}/divider.stories.tsx +3 -4
  28. package/src/components/{flex → atoms/flex}/flex.doc.mdx +2 -2
  29. package/src/components/{flex → atoms/flex}/flex.stories.tsx +1 -2
  30. package/src/components/{grid → atoms/grid}/grid.doc.mdx +2 -2
  31. package/src/components/{grid → atoms/grid}/grid.stories.tsx +1 -2
  32. package/src/components/{image → atoms/image}/image.doc.mdx +2 -2
  33. package/src/components/{image → atoms/image}/image.stories.tsx +1 -2
  34. package/src/components/{input → atoms/input}/input.doc.mdx +3 -3
  35. package/src/components/{input → atoms/input}/input.props.ts +3 -3
  36. package/src/components/{input → atoms/input}/input.stories.tsx +2 -4
  37. package/src/components/{input → atoms/input}/input.tsx +5 -14
  38. package/src/components/{loader → atoms/loader}/loader.doc.mdx +2 -2
  39. package/src/components/{loader → atoms/loader}/loader.stories.tsx +2 -3
  40. package/src/components/{loader → atoms/loader}/loader.tsx +1 -1
  41. package/src/components/{popover → atoms/popover}/popover.doc.mdx +2 -2
  42. package/src/components/{popover → atoms/popover}/popover.stories.tsx +3 -4
  43. package/src/components/{progress → atoms/progress}/progress.doc.mdx +2 -2
  44. package/src/components/{progress → atoms/progress}/progress.stories.tsx +2 -3
  45. package/src/components/{radio → atoms/radio}/radio.doc.mdx +2 -2
  46. package/src/components/{radio → atoms/radio}/radio.stories.tsx +1 -3
  47. package/src/components/{radio → atoms/radio}/radio.tsx +1 -1
  48. package/src/components/{segmented-control → atoms/segmented-control}/segmented-control.doc.mdx +2 -2
  49. package/src/components/{segmented-control → atoms/segmented-control}/segmented-control.stories.tsx +1 -2
  50. package/src/components/{segmented-control → atoms/segmented-control}/segmented-control.tsx +1 -1
  51. package/src/components/{skeleton → atoms/skeleton}/skeleton.doc.mdx +2 -2
  52. package/src/components/{skeleton → atoms/skeleton}/skeleton.stories.tsx +2 -3
  53. package/src/components/{slide → atoms/slide}/slide.doc.mdx +2 -2
  54. package/src/components/{slide → atoms/slide}/slide.stories.tsx +1 -2
  55. package/src/components/{slider → atoms/slider}/slider.doc.mdx +2 -2
  56. package/src/components/{slider → atoms/slider}/slider.stories.tsx +1 -2
  57. package/src/components/{slider → atoms/slider}/slider.tsx +1 -1
  58. package/src/components/{stack → atoms/stack}/stack.doc.mdx +2 -2
  59. package/src/components/{stack → atoms/stack}/stack.stories.tsx +2 -3
  60. package/src/components/{text → atoms/text}/text.doc.mdx +2 -2
  61. package/src/components/{text → atoms/text}/text.stories.tsx +1 -2
  62. package/src/components/{textarea → atoms/textarea}/textarea.doc.mdx +2 -2
  63. package/src/components/{textarea → atoms/textarea}/textarea.props.ts +0 -2
  64. package/src/components/{textarea → atoms/textarea}/textarea.stories.tsx +1 -2
  65. package/src/components/{textarea → atoms/textarea}/textarea.tsx +1 -1
  66. package/src/components/{tooltip → atoms/tooltip}/tooltip.doc.mdx +2 -2
  67. package/src/components/{tooltip → atoms/tooltip}/tooltip.stories.tsx +2 -3
  68. package/src/components/{tooltip → atoms/tooltip}/tooltip.tsx +1 -1
  69. package/src/components/isolation/isolation.stories.tsx +202 -0
  70. package/src/components/{alert → molecules/alert}/alert.doc.mdx +2 -2
  71. package/src/components/{alert → molecules/alert}/alert.stories.tsx +1 -2
  72. package/src/components/{alert → molecules/alert}/alert.tsx +1 -2
  73. package/src/components/{breadcrumbs → molecules/breadcrumbs}/breadcrumbs.doc.mdx +2 -2
  74. package/src/components/{breadcrumbs → molecules/breadcrumbs}/breadcrumbs.stories.tsx +1 -2
  75. package/src/components/{breadcrumbs → molecules/breadcrumbs}/breadcrumbs.tsx +1 -1
  76. package/src/components/{calendar → molecules/calendar}/calendar.doc.mdx +2 -2
  77. package/src/components/{calendar → molecules/calendar}/calendar.stories.tsx +1 -2
  78. package/src/components/{calendar → molecules/calendar}/calendar.tsx +42 -42
  79. package/src/components/molecules/calendar/index.ts +2 -0
  80. package/src/components/{card → molecules/card}/card.doc.mdx +2 -2
  81. package/src/components/{card → molecules/card}/card.stories.tsx +2 -3
  82. package/src/components/{card → molecules/card}/card.tsx +4 -4
  83. package/src/components/{date-picker → molecules/date-picker}/date-picker.doc.mdx +3 -3
  84. package/src/components/{date-picker → molecules/date-picker}/date-picker.props.ts +1 -1
  85. package/src/components/{date-picker → molecules/date-picker}/date-picker.stories.tsx +1 -3
  86. package/src/components/{date-picker → molecules/date-picker}/datePicker.tsx +3 -3
  87. package/src/components/{empty-state → molecules/empty-state}/empty-state.doc.mdx +3 -3
  88. package/src/components/{empty-state → molecules/empty-state}/empty-state.stories.tsx +3 -4
  89. package/src/components/{empty-state → molecules/empty-state}/empty-state.tsx +1 -1
  90. package/src/components/{form-header → molecules/form-header}/form-header.doc.mdx +2 -2
  91. package/src/components/{form-header → molecules/form-header}/form-header.stories.tsx +1 -2
  92. package/src/components/{form-header → molecules/form-header}/form-header.tsx +2 -2
  93. package/src/components/{pagination → molecules/pagination}/pagination.doc.mdx +2 -2
  94. package/src/components/{pagination → molecules/pagination}/pagination.stories.tsx +1 -2
  95. package/src/components/{pagination → molecules/pagination}/pagination.tsx +8 -8
  96. package/src/components/{search-select → molecules/search-select}/index.ts +1 -1
  97. package/src/components/{search-select → molecules/search-select}/search-select.doc.mdx +2 -2
  98. package/src/components/{search-select → molecules/search-select}/search-select.props.ts +3 -0
  99. package/src/components/{search-select → molecules/search-select}/search-select.stories.tsx +1 -2
  100. package/src/components/{search-select → molecules/search-select}/search-select.tsx +8 -6
  101. package/src/components/{select → molecules/select}/select.doc.mdx +2 -2
  102. package/src/components/{select → molecules/select}/select.stories.tsx +1 -2
  103. package/src/components/{select → molecules/select}/select.tsx +8 -16
  104. package/src/components/{stat-card → molecules/stat-card}/stat-card.doc.mdx +2 -2
  105. package/src/components/{stat-card → molecules/stat-card}/stat-card.stories.tsx +2 -3
  106. package/src/components/{stat-card → molecules/stat-card}/stat-card.tsx +1 -1
  107. package/src/components/{stepper → molecules/stepper}/stepper.doc.mdx +2 -2
  108. package/src/components/{stepper → molecules/stepper}/stepper.stories.tsx +1 -2
  109. package/src/components/{stepper → molecules/stepper}/stepper.tsx +9 -10
  110. package/src/components/{table → molecules/table}/table.doc.mdx +2 -2
  111. package/src/components/{table → molecules/table}/table.stories.tsx +5 -22
  112. package/src/components/{table → molecules/table}/table.tsx +5 -15
  113. package/src/components/{tabs → molecules/tabs}/tabs.doc.mdx +2 -2
  114. package/src/components/{tabs → molecules/tabs}/tabs.stories.tsx +1 -2
  115. package/src/components/{tabs → molecules/tabs}/tabs.tsx +1 -1
  116. package/src/components/{time-picker → molecules/time-picker}/timePicker.doc.mdx +3 -3
  117. package/src/components/{time-picker → molecules/time-picker}/timePicker.props.ts +4 -2
  118. package/src/components/{time-picker → molecules/time-picker}/timePicker.stories.tsx +3 -4
  119. package/src/components/{time-picker → molecules/time-picker}/timePicker.tsx +5 -5
  120. package/src/components/{confirm-dialog → organisms/confirm-dialog}/confirm-dialog.doc.mdx +2 -2
  121. package/src/components/{confirm-dialog → organisms/confirm-dialog}/confirm-dialog.stories.tsx +2 -3
  122. package/src/components/{confirm-dialog → organisms/confirm-dialog}/confirm-dialog.tsx +4 -4
  123. package/src/components/{data-table → organisms/data-table}/ITDataTable.doc.mdx +2 -2
  124. package/src/components/{data-table → organisms/data-table}/ITDataTable.stories.tsx +3 -4
  125. package/src/components/{data-table → organisms/data-table}/dataTable.props.ts +1 -1
  126. package/src/components/{data-table → organisms/data-table}/dataTable.tsx +11 -9
  127. package/src/components/{dialog → organisms/dialog}/dialog.doc.mdx +2 -2
  128. package/src/components/{dialog → organisms/dialog}/dialog.stories.tsx +3 -5
  129. package/src/components/{dialog → organisms/dialog}/dialog.tsx +2 -2
  130. package/src/components/{drawer → organisms/drawer}/drawer.doc.mdx +2 -2
  131. package/src/components/{drawer → organisms/drawer}/drawer.stories.tsx +2 -3
  132. package/src/components/{drawer → organisms/drawer}/drawer.tsx +1 -1
  133. package/src/components/{dropfile → organisms/dropfile}/dropfile.doc.mdx +3 -3
  134. package/src/components/{dropfile → organisms/dropfile}/dropfile.props.ts +8 -4
  135. package/src/components/{dropfile → organisms/dropfile}/dropfile.stories.tsx +2 -5
  136. package/src/components/{dropfile → organisms/dropfile}/dropfile.tsx +25 -12
  137. package/src/components/{form-builder → organisms/form-builder}/fieldRenderer.tsx +30 -20
  138. package/src/components/{form-builder → organisms/form-builder}/formBuilder.context.tsx +3 -2
  139. package/src/components/{form-builder → organisms/form-builder}/formBuilder.doc.mdx +2 -2
  140. package/src/components/{form-builder → organisms/form-builder}/formBuilder.stories.tsx +0 -1
  141. package/src/components/{form-builder → organisms/form-builder}/formBuilder.tsx +4 -5
  142. package/src/components/{form-builder → organisms/form-builder}/useFormBuilder.ts +4 -4
  143. package/src/components/{navbar → organisms/navbar}/navbar.doc.mdx +2 -2
  144. package/src/components/{navbar → organisms/navbar}/navbar.stories.tsx +1 -2
  145. package/src/components/{navbar → organisms/navbar}/navbar.tsx +1 -1
  146. package/src/components/{page-header → organisms/page-header}/page-header.doc.mdx +2 -2
  147. package/src/components/{page-header → organisms/page-header}/page-header.props.ts +1 -1
  148. package/src/components/{page-header → organisms/page-header}/page-header.stories.tsx +5 -6
  149. package/src/components/{page-header → organisms/page-header}/page-header.tsx +2 -2
  150. package/src/components/{searchTable → organisms/searchTable}/components/EditableCell.tsx +4 -5
  151. package/src/components/{searchTable → organisms/searchTable}/components/PaginationControls.tsx +6 -6
  152. package/src/components/{searchTable → organisms/searchTable}/components/PaginationInfo.tsx +1 -1
  153. package/src/components/{searchTable → organisms/searchTable}/components/SearchAndSortBar.tsx +3 -3
  154. package/src/components/{searchTable → organisms/searchTable}/components/SearchInput.tsx +1 -1
  155. package/src/components/{searchTable → organisms/searchTable}/components/SortButton.tsx +1 -1
  156. package/src/components/{searchTable → organisms/searchTable}/components/TableEmptyState.tsx +1 -1
  157. package/src/components/{searchTable → organisms/searchTable}/components/TableHeaderCell.tsx +1 -1
  158. package/src/components/{searchTable → organisms/searchTable}/searchTable.doc.mdx +2 -2
  159. package/src/components/{searchTable → organisms/searchTable}/searchTable.stories.tsx +1 -2
  160. package/src/components/{searchTable → organisms/searchTable}/searchTable.tsx +1 -2
  161. package/src/components/{sidebar → organisms/sidebar}/sidebar.doc.mdx +2 -2
  162. package/src/components/{sidebar → organisms/sidebar}/sidebar.stories.tsx +1 -2
  163. package/src/components/{sidebar → organisms/sidebar}/sidebar.tsx +45 -43
  164. package/src/components/{toast → organisms/toast}/toast.doc.mdx +2 -2
  165. package/src/components/{toast → organisms/toast}/toast.stories.tsx +2 -3
  166. package/src/components/{toast → organisms/toast}/toast.tsx +1 -2
  167. package/src/components/{topbar → organisms/topbar}/topbar.doc.mdx +2 -2
  168. package/src/components/{topbar → organisms/topbar}/topbar.stories.tsx +1 -2
  169. package/src/components/{topbar → organisms/topbar}/topbar.tsx +25 -25
  170. package/src/components/{triple-filter → organisms/triple-filter}/tripleFilter.doc.mdx +2 -2
  171. package/src/components/{triple-filter → organisms/triple-filter}/tripleFilter.props.ts +0 -1
  172. package/src/components/{triple-filter → organisms/triple-filter}/tripleFilter.stories.tsx +0 -1
  173. package/src/components/{triple-filter → organisms/triple-filter}/tripleFilter.tsx +1 -1
  174. package/src/components/{layout → templates/layout}/layout.doc.mdx +2 -2
  175. package/src/components/{layout → templates/layout}/layout.props.ts +2 -2
  176. package/src/components/{layout → templates/layout}/layout.stories.tsx +1 -2
  177. package/src/components/{layout → templates/layout}/layout.tsx +2 -2
  178. package/src/components/{page → templates/page}/page.doc.mdx +2 -2
  179. package/src/components/{page → templates/page}/page.props.ts +1 -1
  180. package/src/components/{page → templates/page}/page.stories.tsx +6 -7
  181. package/src/components/{page → templates/page}/page.tsx +6 -6
  182. package/src/components/theme-provider/themePresets.ts +154 -0
  183. package/src/components/theme-provider/themeProvider.doc.mdx +10 -2
  184. package/src/components/theme-provider/themeProvider.props.ts +6 -0
  185. package/src/components/theme-provider/themeProvider.stories.tsx +3 -4
  186. package/src/components/theme-provider/themeProvider.tsx +210 -268
  187. package/src/hooks/useEditableRow.ts +1 -1
  188. package/src/index.css +36 -86
  189. package/src/index.ts +97 -97
  190. package/src/showcases/DataShowcases.tsx +4 -8
  191. package/src/showcases/FeedbackShowcases.tsx +6 -6
  192. package/src/showcases/FormShowcases.tsx +7 -7
  193. package/src/showcases/GettingStartedShowcase.tsx +8 -9
  194. package/src/showcases/HomeShowcase.tsx +12 -12
  195. package/src/showcases/LayoutPrimitivesShowcases.tsx +36 -57
  196. package/src/showcases/PageShowcases.tsx +41 -53
  197. package/src/showcases/ShowcaseLayout.tsx +1 -2
  198. package/src/showcases/SizesShowcase.tsx +85 -0
  199. package/src/showcases/StructureShowcases.tsx +31 -33
  200. package/src/theme/theme-context.ts +37 -0
  201. package/src/theme/theme.ts +71 -64
  202. package/src/theme/theme.types.ts +41 -0
  203. package/src/types/badget.types.ts +3 -3
  204. package/src/types/button.types.ts +3 -3
  205. package/src/types/sizes.types.ts +2 -1
  206. package/src/utils/styles.ts +37 -0
  207. package/src/components/calendar/index.ts +0 -3
  208. package/src/components/stepper/stepper.css +0 -26
  209. package/src/components/toast/toast.css +0 -32
  210. package/src/types/input.types.ts +0 -14
  211. /package/src/components/{avatar → atoms/avatar}/avatar.props.ts +0 -0
  212. /package/src/components/{checkbox → atoms/checkbox}/checkbox.props.ts +0 -0
  213. /package/src/components/{divider → atoms/divider}/divider.props.ts +0 -0
  214. /package/src/components/{divider → atoms/divider}/divider.tsx +0 -0
  215. /package/src/components/{flex → atoms/flex}/flex.props.ts +0 -0
  216. /package/src/components/{flex → atoms/flex}/flex.tsx +0 -0
  217. /package/src/components/{grid → atoms/grid}/grid.props.ts +0 -0
  218. /package/src/components/{grid → atoms/grid}/grid.tsx +0 -0
  219. /package/src/components/{image → atoms/image}/image.props.ts +0 -0
  220. /package/src/components/{image → atoms/image}/image.tsx +0 -0
  221. /package/src/components/{loader → atoms/loader}/loader.props.ts +0 -0
  222. /package/src/components/{popover → atoms/popover}/popover.props.ts +0 -0
  223. /package/src/components/{popover → atoms/popover}/popover.tsx +0 -0
  224. /package/src/components/{progress → atoms/progress}/progress.props.ts +0 -0
  225. /package/src/components/{progress → atoms/progress}/progress.tsx +0 -0
  226. /package/src/components/{radio → atoms/radio}/radio.props.ts +0 -0
  227. /package/src/components/{segmented-control → atoms/segmented-control}/segmented-control.props.ts +0 -0
  228. /package/src/components/{skeleton → atoms/skeleton}/skeleton.props.ts +0 -0
  229. /package/src/components/{skeleton → atoms/skeleton}/skeleton.tsx +0 -0
  230. /package/src/components/{slide → atoms/slide}/slide.props.ts +0 -0
  231. /package/src/components/{slide → atoms/slide}/slide.tsx +0 -0
  232. /package/src/components/{slider → atoms/slider}/slider.props.ts +0 -0
  233. /package/src/components/{stack → atoms/stack}/stack.props.ts +0 -0
  234. /package/src/components/{stack → atoms/stack}/stack.tsx +0 -0
  235. /package/src/components/{text → atoms/text}/text.props.ts +0 -0
  236. /package/src/components/{text → atoms/text}/text.tsx +0 -0
  237. /package/src/components/{tooltip → atoms/tooltip}/tooltip.props.ts +0 -0
  238. /package/src/components/{alert → molecules/alert}/alert.props.ts +0 -0
  239. /package/src/components/{breadcrumbs → molecules/breadcrumbs}/breadcrumbs.props.ts +0 -0
  240. /package/src/components/{calendar → molecules/calendar}/calendar.props.ts +0 -0
  241. /package/src/components/{card → molecules/card}/card.props.ts +0 -0
  242. /package/src/components/{empty-state → molecules/empty-state}/empty-state.props.ts +0 -0
  243. /package/src/components/{form-header → molecules/form-header}/form-header.props.ts +0 -0
  244. /package/src/components/{pagination → molecules/pagination}/pagination.props.ts +0 -0
  245. /package/src/components/{select → molecules/select}/select.props.ts +0 -0
  246. /package/src/components/{stat-card → molecules/stat-card}/stat-card.props.ts +0 -0
  247. /package/src/components/{stepper → molecules/stepper}/stepper.props.ts +0 -0
  248. /package/src/components/{table → molecules/table}/table.props.ts +0 -0
  249. /package/src/components/{tabs → molecules/tabs}/tabs.props.ts +0 -0
  250. /package/src/components/{confirm-dialog → organisms/confirm-dialog}/confirm-dialog.props.ts +0 -0
  251. /package/src/components/{dialog → organisms/dialog}/dialog.props.ts +0 -0
  252. /package/src/components/{drawer → organisms/drawer}/drawer.props.ts +0 -0
  253. /package/src/components/{form-builder → organisms/form-builder}/formBuilder.props.ts +0 -0
  254. /package/src/components/{navbar → organisms/navbar}/navbar.props.ts +0 -0
  255. /package/src/components/{searchTable → organisms/searchTable}/components/TableHeader.tsx +0 -0
  256. /package/src/components/{searchTable → organisms/searchTable}/components/TableRow.tsx +0 -0
  257. /package/src/components/{searchTable → organisms/searchTable}/searchTable.props.ts +0 -0
  258. /package/src/components/{sidebar → organisms/sidebar}/sidebar.props.ts +0 -0
  259. /package/src/components/{toast → organisms/toast}/toast.props.ts +0 -0
  260. /package/src/components/{topbar → organisms/topbar}/topbar.props.ts +0 -0
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.css","../src/components/toast/toast.css"],"sourcesContent":["@import \"tailwindcss\";\n\n@source \"./**/*.{ts,tsx}\";\n@source \"../.storybook/**/*.{ts,tsx}\";\n\n@variant dark (&:is(.dark &));\n\n@theme {\n --animate-fadeIn: fadeIn 0.5s ease-out forwards;\n --animate-fade-in: fadeIn 0.5s ease-out forwards;\n\n --color-primary-50: #eff6ff;\n --color-primary-100: #dbeafe;\n --color-primary-200: #bfdbfe;\n --color-primary-300: #93c5fd;\n --color-primary-400: #60a5fa;\n --color-primary-500: #3b82f6;\n --color-primary-600: #2563eb;\n --color-primary-700: #1d4ed8;\n --color-primary-800: #1e40af;\n --color-primary-900: #1e3a8a;\n --color-primary-950: #172554;\n\n --color-secondary-50: #f8fafc;\n --color-secondary-100: #f1f5f9;\n --color-secondary-200: #e2e8f0;\n --color-secondary-300: #cbd5e1;\n --color-secondary-400: #94a3b8;\n --color-secondary-500: #64748b;\n --color-secondary-600: #475569;\n\n --color-text-muted: #475569;\n --color-secondary-700: #334155;\n --color-secondary-800: #1e293b;\n --color-secondary-900: #0f172a;\n --color-secondary-950: #020617;\n\n --color-success-50: #ecfdf5;\n --color-success-100: #d1fae5;\n --color-success-200: #a7f3d0;\n --color-success-300: #6ee7b7;\n --color-success-400: #34d399;\n --color-success-500: #10b981;\n --color-success-600: #059669;\n --color-success-700: #047857;\n --color-success-800: #065f46;\n --color-success-900: #064e3b;\n --color-success-950: #022c22;\n\n --color-danger-50: #fff1f2;\n --color-danger-100: #ffe4e6;\n --color-danger-200: #fecdd3;\n --color-danger-300: #fda4af;\n --color-danger-400: #fb7185;\n --color-danger-500: #f43f5e;\n --color-danger-600: #e11d48;\n --color-danger-700: #be123c;\n --color-danger-800: #9f1239;\n --color-danger-900: #881337;\n --color-danger-950: #4c0519;\n\n --color-warning-50: #fffbeb;\n --color-warning-100: #fef3c7;\n --color-warning-200: #fde68a;\n --color-warning-300: #fcd34d;\n --color-warning-400: #fbbf24;\n --color-warning-500: #f59e0b;\n --color-warning-600: #d97706;\n --color-warning-700: #b45309;\n --color-warning-800: #92400e;\n --color-warning-900: #78350f;\n --color-warning-950: #451a03;\n\n --color-purple-50: #f5f3ff;\n --color-purple-100: #ede9fe;\n --color-purple-200: #ddd6fe;\n --color-purple-300: #c4b5fd;\n --color-purple-400: #a78bfa;\n --color-purple-500: #8b5cf6;\n --color-purple-600: #7c3aed;\n --color-purple-700: #6d28d9;\n --color-purple-800: #5b21b6;\n --color-purple-900: #4c1d95;\n --color-purple-950: #2e1065;\n\n --color-info-50: #f0f9ff;\n --color-info-100: #e0f2fe;\n --color-info-200: #bae6fd;\n --color-info-300: #7dd3fc;\n --color-info-400: #38bdf8;\n --color-info-500: #0ea5e9;\n --color-info-600: #0284c7;\n --color-info-700: #0369a1;\n --color-info-800: #075985;\n --color-info-900: #0c4a6e;\n --color-info-950: #082f49;\n\n /* Soft-depth radius scale: larger, more consistent rounding across the system */\n --radius-xs: 0.25rem;\n --radius-sm: 0.375rem;\n --radius-md: 0.625rem;\n --radius-lg: 0.875rem;\n --radius-xl: 1.125rem;\n --radius-2xl: 1.5rem;\n --radius-3xl: 2rem;\n\n /* Soft-depth shadow scale: cool slate-tinted, low-opacity, multi-layer.\n Overrides Tailwind's default shadow-* tokens system-wide so every\n existing shadow-* usage picks up the new \"floating\" look with no\n per-component changes. */\n --shadow-2xs: 0 1px 2px 0 rgb(15 23 42 / 0.04);\n --shadow-xs: 0 1px 3px 0 rgb(15 23 42 / 0.05), 0 1px 2px -1px rgb(15 23 42 / 0.04);\n --shadow-sm: 0 2px 6px -1px rgb(15 23 42 / 0.06), 0 1px 3px -1px rgb(15 23 42 / 0.05);\n --shadow-md: 0 6px 16px -4px rgb(15 23 42 / 0.08), 0 3px 6px -3px rgb(15 23 42 / 0.05);\n --shadow-lg: 0 12px 28px -6px rgb(15 23 42 / 0.1), 0 6px 12px -6px rgb(15 23 42 / 0.06);\n --shadow-xl: 0 20px 40px -8px rgb(15 23 42 / 0.12), 0 10px 20px -8px rgb(15 23 42 / 0.06);\n --shadow-2xl: 0 32px 64px -16px rgb(15 23 42 / 0.18);\n --shadow: 0 2px 6px -1px rgb(15 23 42 / 0.06), 0 1px 3px -1px rgb(15 23 42 / 0.05);\n --shadow-inner: inset 0 2px 4px 0 rgb(15 23 42 / 0.04);\n}\n\n@keyframes fadeIn {\n from { opacity: 0; transform: translateY(8px); }\n to { opacity: 1; transform: translateY(0); }\n}\n\n.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }\n.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }\n.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }\n.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }\n.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }\n.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }\n.grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }\n.grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }\n.grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)); }\n.grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)); }\n.grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)); }\n.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }\n\n.col-span-full { grid-column: 1 / -1; }\n\n.col-span-1 { grid-column: span 1 / span 1; }\n.col-span-2 { grid-column: span 2 / span 2; }\n.col-span-3 { grid-column: span 3 / span 3; }\n.col-span-4 { grid-column: span 4 / span 4; }\n.col-span-5 { grid-column: span 5 / span 5; }\n.col-span-6 { grid-column: span 6 / span 6; }\n.col-span-7 { grid-column: span 7 / span 7; }\n.col-span-8 { grid-column: span 8 / span 8; }\n.col-span-9 { grid-column: span 9 / span 9; }\n.col-span-10 { grid-column: span 10 / span 10; }\n.col-span-11 { grid-column: span 11 / span 11; }\n.col-span-12 { grid-column: span 12 / span 12; }\n\n@media (width >= 40rem) {\n .sm\\:col-span-1 { grid-column: span 1 / span 1; }\n .sm\\:col-span-2 { grid-column: span 2 / span 2; }\n .sm\\:col-span-3 { grid-column: span 3 / span 3; }\n .sm\\:col-span-4 { grid-column: span 4 / span 4; }\n .sm\\:col-span-5 { grid-column: span 5 / span 5; }\n .sm\\:col-span-6 { grid-column: span 6 / span 6; }\n .sm\\:col-span-7 { grid-column: span 7 / span 7; }\n .sm\\:col-span-8 { grid-column: span 8 / span 8; }\n .sm\\:col-span-9 { grid-column: span 9 / span 9; }\n .sm\\:col-span-10 { grid-column: span 10 / span 10; }\n .sm\\:col-span-11 { grid-column: span 11 / span 11; }\n .sm\\:col-span-12 { grid-column: span 12 / span 12; }\n}\n\n@media (width >= 48rem) {\n .md\\:col-span-1 { grid-column: span 1 / span 1; }\n .md\\:col-span-2 { grid-column: span 2 / span 2; }\n .md\\:col-span-3 { grid-column: span 3 / span 3; }\n .md\\:col-span-4 { grid-column: span 4 / span 4; }\n .md\\:col-span-5 { grid-column: span 5 / span 5; }\n .md\\:col-span-6 { grid-column: span 6 / span 6; }\n .md\\:col-span-7 { grid-column: span 7 / span 7; }\n .md\\:col-span-8 { grid-column: span 8 / span 8; }\n .md\\:col-span-9 { grid-column: span 9 / span 9; }\n .md\\:col-span-10 { grid-column: span 10 / span 10; }\n .md\\:col-span-11 { grid-column: span 11 / span 11; }\n .md\\:col-span-12 { grid-column: span 12 / span 12; }\n}\n\n@media (width >= 64rem) {\n .lg\\:col-span-1 { grid-column: span 1 / span 1; }\n .lg\\:col-span-2 { grid-column: span 2 / span 2; }\n .lg\\:col-span-3 { grid-column: span 3 / span 3; }\n .lg\\:col-span-4 { grid-column: span 4 / span 4; }\n .lg\\:col-span-5 { grid-column: span 5 / span 5; }\n .lg\\:col-span-6 { grid-column: span 6 / span 6; }\n .lg\\:col-span-7 { grid-column: span 7 / span 7; }\n .lg\\:col-span-8 { grid-column: span 8 / span 8; }\n .lg\\:col-span-9 { grid-column: span 9 / span 9; }\n .lg\\:col-span-10 { grid-column: span 10 / span 10; }\n .lg\\:col-span-11 { grid-column: span 11 / span 11; }\n .lg\\:col-span-12 { grid-column: span 12 / span 12; }\n}\n\n@media (width >= 80rem) {\n .xl\\:col-span-1 { grid-column: span 1 / span 1; }\n .xl\\:col-span-2 { grid-column: span 2 / span 2; }\n .xl\\:col-span-3 { grid-column: span 3 / span 3; }\n .xl\\:col-span-4 { grid-column: span 4 / span 4; }\n .xl\\:col-span-5 { grid-column: span 5 / span 5; }\n .xl\\:col-span-6 { grid-column: span 6 / span 6; }\n .xl\\:col-span-7 { grid-column: span 7 / span 7; }\n .xl\\:col-span-8 { grid-column: span 8 / span 8; }\n .xl\\:col-span-9 { grid-column: span 9 / span 9; }\n .xl\\:col-span-10 { grid-column: span 10 / span 10; }\n .xl\\:col-span-11 { grid-column: span 11 / span 11; }\n .xl\\:col-span-12 { grid-column: span 12 / span 12; }\n}","/* Animación de entrada */\n@keyframes slideIn {\n from {\n transform: translateY(100%);\n opacity: 0;\n }\n to {\n transform: translateY(0);\n opacity: 1;\n }\n }\n \n /* Animación de salida */\n @keyframes slideOut {\n from {\n transform: translateY(0);\n opacity: 1;\n }\n to {\n transform: translateY(100%);\n opacity: 0;\n }\n }\n \n /* Aplicar animaciones */\n .toast-enter {\n animation: slideIn 0.3s ease-out;\n }\n \n .toast-exit {\n animation: slideOut 0.3s ease-out;\n }"],"mappings":"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","names":[]}
1
+ {"version":3,"sources":["../src/index.css"],"sourcesContent":["@import \"tailwindcss\";\n\n@source \"./**/*.{ts,tsx}\";\n@source \"../.storybook/**/*.{ts,tsx}\";\n\n@variant dark (&:is(.dark &));\n\n@theme {\n --animate-fadeIn: fadeIn 0.5s ease-out forwards;\n --animate-fade-in: fadeIn 0.5s ease-out forwards;\n\n --color-primary-50: #eff6ff;\n --color-primary-100: #dbeafe;\n --color-primary-200: #bfdbfe;\n --color-primary-300: #93c5fd;\n --color-primary-400: #60a5fa;\n --color-primary-500: #3b82f6;\n --color-primary-600: #2563eb;\n --color-primary-700: #1d4ed8;\n --color-primary-800: #1e40af;\n --color-primary-900: #1e3a8a;\n --color-primary-950: #172554;\n\n --color-secondary-50: #f8fafc;\n --color-secondary-100: #f1f5f9;\n --color-secondary-200: #e2e8f0;\n --color-secondary-300: #cbd5e1;\n --color-secondary-400: #94a3b8;\n --color-secondary-500: #64748b;\n --color-secondary-600: #475569;\n\n --color-text-muted: #475569;\n --color-secondary-700: #334155;\n --color-secondary-800: #1e293b;\n --color-secondary-900: #0f172a;\n --color-secondary-950: #020617;\n\n --color-success-50: #ecfdf5;\n --color-success-100: #d1fae5;\n --color-success-200: #a7f3d0;\n --color-success-300: #6ee7b7;\n --color-success-400: #34d399;\n --color-success-500: #10b981;\n --color-success-600: #059669;\n --color-success-700: #047857;\n --color-success-800: #065f46;\n --color-success-900: #064e3b;\n --color-success-950: #022c22;\n\n --color-danger-50: #fff1f2;\n --color-danger-100: #ffe4e6;\n --color-danger-200: #fecdd3;\n --color-danger-300: #fda4af;\n --color-danger-400: #fb7185;\n --color-danger-500: #f43f5e;\n --color-danger-600: #e11d48;\n --color-danger-700: #be123c;\n --color-danger-800: #9f1239;\n --color-danger-900: #881337;\n --color-danger-950: #4c0519;\n\n --color-warning-50: #fffbeb;\n --color-warning-100: #fef3c7;\n --color-warning-200: #fde68a;\n --color-warning-300: #fcd34d;\n --color-warning-400: #fbbf24;\n --color-warning-500: #f59e0b;\n --color-warning-600: #d97706;\n --color-warning-700: #b45309;\n --color-warning-800: #92400e;\n --color-warning-900: #78350f;\n --color-warning-950: #451a03;\n\n --color-purple-50: #f5f3ff;\n --color-purple-100: #ede9fe;\n --color-purple-200: #ddd6fe;\n --color-purple-300: #c4b5fd;\n --color-purple-400: #a78bfa;\n --color-purple-500: #8b5cf6;\n --color-purple-600: #7c3aed;\n --color-purple-700: #6d28d9;\n --color-purple-800: #5b21b6;\n --color-purple-900: #4c1d95;\n --color-purple-950: #2e1065;\n\n --color-info-50: #f0f9ff;\n --color-info-100: #e0f2fe;\n --color-info-200: #bae6fd;\n --color-info-300: #7dd3fc;\n --color-info-400: #38bdf8;\n --color-info-500: #0ea5e9;\n --color-info-600: #0284c7;\n --color-info-700: #0369a1;\n --color-info-800: #075985;\n --color-info-900: #0c4a6e;\n --color-info-950: #082f49;\n\n /* Soft-depth radius scale: larger, more consistent rounding across the system */\n --radius-xs: 0.25rem;\n --radius-sm: 0.375rem;\n --radius-md: 0.625rem;\n --radius-lg: 0.875rem;\n --radius-xl: 1.125rem;\n --radius-2xl: 1.5rem;\n --radius-3xl: 2rem;\n\n /* Soft-depth shadow scale: cool slate-tinted, low-opacity, multi-layer.\n Overrides Tailwind's default shadow-* tokens system-wide so every\n existing shadow-* usage picks up the new \"floating\" look with no\n per-component changes. */\n --shadow-2xs: 0 1px 2px 0 rgb(15 23 42 / 0.04);\n --shadow-xs: 0 1px 3px 0 rgb(15 23 42 / 0.05), 0 1px 2px -1px rgb(15 23 42 / 0.04);\n --shadow-sm: 0 2px 6px -1px rgb(15 23 42 / 0.06), 0 1px 3px -1px rgb(15 23 42 / 0.05);\n --shadow-md: 0 6px 16px -4px rgb(15 23 42 / 0.08), 0 3px 6px -3px rgb(15 23 42 / 0.05);\n --shadow-lg: 0 12px 28px -6px rgb(15 23 42 / 0.1), 0 6px 12px -6px rgb(15 23 42 / 0.06);\n --shadow-xl: 0 20px 40px -8px rgb(15 23 42 / 0.12), 0 10px 20px -8px rgb(15 23 42 / 0.06);\n --shadow-2xl: 0 32px 64px -16px rgb(15 23 42 / 0.18);\n --shadow: 0 2px 6px -1px rgb(15 23 42 / 0.06), 0 1px 3px -1px rgb(15 23 42 / 0.05);\n --shadow-inner: inset 0 2px 4px 0 rgb(15 23 42 / 0.04);\n}\n\n@keyframes fadeIn {\n from { opacity: 0; transform: translateY(8px); }\n to { opacity: 1; transform: translateY(0); }\n}\n\n/* ──────────────────────────────────────────────\n GRID DINÁMICO (grid-cols-* / col-span-*)\n Tailwind v4 ya genera estas utilities nativamente (incl. variants sm/md/lg/xl).\n Estas @source inline son un safelist: fuerzan la generación de los valores\n dinámicos construidos en runtime (grid.tsx, styles.ts → `col-span-${n}`),\n que el scanner estático no puede ver. Sin esto, las clases dinámicas no\n existirían en el bundle.\n ────────────────────────────────────────────── */\n@source inline(\"grid-cols-1 grid-cols-2 grid-cols-3 grid-cols-4 grid-cols-5 grid-cols-6 grid-cols-7 grid-cols-8 grid-cols-9 grid-cols-10 grid-cols-11 grid-cols-12\");\n@source inline(\"col-span-1 col-span-2 col-span-3 col-span-4 col-span-5 col-span-6 col-span-7 col-span-8 col-span-9 col-span-10 col-span-11 col-span-12 col-span-full\");\n@source inline(\"sm:col-span-1 sm:col-span-2 sm:col-span-3 sm:col-span-4 sm:col-span-5 sm:col-span-6 sm:col-span-7 sm:col-span-8 sm:col-span-9 sm:col-span-10 sm:col-span-11 sm:col-span-12 sm:col-span-full\");\n@source inline(\"md:col-span-1 md:col-span-2 md:col-span-3 md:col-span-4 md:col-span-5 md:col-span-6 md:col-span-7 md:col-span-8 md:col-span-9 md:col-span-10 md:col-span-11 md:col-span-12 md:col-span-full\");\n@source inline(\"lg:col-span-1 lg:col-span-2 lg:col-span-3 lg:col-span-4 lg:col-span-5 lg:col-span-6 lg:col-span-7 lg:col-span-8 lg:col-span-9 lg:col-span-10 lg:col-span-11 lg:col-span-12 lg:col-span-full\");\n@source inline(\"xl:col-span-1 xl:col-span-2 xl:col-span-3 xl:col-span-4 xl:col-span-5 xl:col-span-6 xl:col-span-7 xl:col-span-8 xl:col-span-9 xl:col-span-10 xl:col-span-11 xl:col-span-12 xl:col-span-full\");\n\n/* ──────────────────────────────────────────────\n ANIMACIONES DE COMPONENTES (scoped it-*)\n Antes vivían en toast.css / stepper.css sueltos que NUNCA llegaban al bundle\n de dist (bug: animaciones muertas para consumidores) y usaban clases\n genéricas sin prefijo. Ahora van en @layer components con prefijo it-*.\n ────────────────────────────────────────────── */\n@layer components {\n @keyframes it-slide-in-right {\n from { opacity: 0; transform: translateX(24px); }\n to { opacity: 1; transform: translateX(0); }\n }\n @keyframes it-slide-in-left {\n from { opacity: 0; transform: translateX(-24px); }\n to { opacity: 1; transform: translateX(0); }\n }\n .it-stepper-slide-in-right {\n animation: it-slide-in-right 320ms cubic-bezier(0.2, 0.8, 0.2, 1) both;\n }\n .it-stepper-slide-in-left {\n animation: it-slide-in-left 320ms cubic-bezier(0.2, 0.8, 0.2, 1) both;\n }\n}"],"mappings":";;;AAEA,QAAQ;AACR,QAAQ;AAER,SAAS,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK;AAE1B,OAAO,EACL,gBAAgB,EAAE,OAAO,KAAK,SAAS,QAAQ,EAC/C,iBAAiB,EAAE,OAAO,KAAK,SAAS,QAAQ,EAEhD,kBAAkB,EAAE,OAAO,EAC3B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAE5B,oBAAoB,EAAE,OAAO,EAC7B,qBAAqB,EAAE,OAAO,EAC9B,qBAAqB,EAAE,OAAO,EAC9B,qBAAqB,EAAE,OAAO,EAC9B,qBAAqB,EAAE,OAAO,EAC9B,qBAAqB,EAAE,OAAO,EAC9B,qBAAqB,EAAE,OAAO,EAE9B,kBAAkB,EAAE,OAAO,EAC3B,qBAAqB,EAAE,OAAO,EAC9B,qBAAqB,EAAE,OAAO,EAC9B,qBAAqB,EAAE,OAAO,EAC9B,qBAAqB,EAAE,OAAO,EAE9B,kBAAkB,EAAE,OAAO,EAC3B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAE5B,iBAAiB,EAAE,OAAO,EAC1B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAE3B,kBAAkB,EAAE,OAAO,EAC3B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAC5B,mBAAmB,EAAE,OAAO,EAE5B,iBAAiB,EAAE,OAAO,EAC1B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAC3B,kBAAkB,EAAE,OAAO,EAE3B,eAAe,EAAE,OAAO,EACxB,gBAAgB,EAAE,OAAO,EACzB,gBAAgB,EAAE,OAAO,EACzB,gBAAgB,EAAE,OAAO,EACzB,gBAAgB,EAAE,OAAO,EACzB,gBAAgB,EAAE,OAAO,EACzB,gBAAgB,EAAE,OAAO,EACzB,gBAAgB,EAAE,OAAO,EACzB,gBAAgB,EAAE,OAAO,EACzB,gBAAgB,EAAE,OAAO,EACzB,gBAAgB,EAAE,OAAO,EAGzB,WAAW,EAAE,OAAO,EACpB,WAAW,EAAE,QAAQ,EACrB,WAAW,EAAE,QAAQ,EACrB,WAAW,EAAE,QAAQ,EACrB,WAAW,EAAE,QAAQ,EACrB,YAAY,EAAE,MAAM,EACpB,YAAY,EAAE,IAAI,EAMlB,YAAY,EAAE,EAAE,IAAI,IAAI,EAAE,IAAI,GAAG,GAAG,GAAG,EAAE,KAAK,EAC9C,WAAW,EAAE,EAAE,IAAI,IAAI,EAAE,IAAI,GAAG,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,IAAI,KAAK,IAAI,GAAG,GAAG,GAAG,EAAE,KAAK,EAClF,WAAW,EAAE,EAAE,IAAI,IAAI,KAAK,IAAI,GAAG,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,IAAI,KAAK,IAAI,GAAG,GAAG,GAAG,EAAE,KAAK,EACrF,WAAW,EAAE,EAAE,IAAI,KAAK,KAAK,IAAI,GAAG,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,IAAI,KAAK,IAAI,GAAG,GAAG,GAAG,EAAE,KAAK,EACtF,WAAW,EAAE,EAAE,KAAK,KAAK,KAAK,IAAI,GAAG,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,IAAI,KAAK,KAAK,IAAI,GAAG,GAAG,GAAG,EAAE,KAAK,EACvF,WAAW,EAAE,EAAE,KAAK,KAAK,KAAK,IAAI,GAAG,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,KAAK,KAAK,KAAK,IAAI,GAAG,GAAG,GAAG,EAAE,KAAK,EACzF,YAAY,EAAE,EAAE,KAAK,KAAK,MAAM,IAAI,GAAG,GAAG,GAAG,EAAE,KAAK,EACpD,QAAQ,EAAE,EAAE,IAAI,IAAI,KAAK,IAAI,GAAG,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,IAAI,KAAK,IAAI,GAAG,GAAG,GAAG,EAAE,KAAK,EAClF,cAAc,EAAE,MAAM,EAAE,IAAI,IAAI,EAAE,IAAI,GAAG,GAAG,GAAG,EAAE,KAAK;AAGxD,WAAW;AACT;AAAO,aAAS;AAAG,eAAW,WAAW;AAAM;AAC/C;AAAK,aAAS;AAAG,eAAW,WAAW;AAAI;AAC7C;AAUA,QAAQ,OAAO;AACf,QAAQ,OAAO;AACf,QAAQ,OAAO;AACf,QAAQ,OAAO;AACf,QAAQ,OAAO;AACf,QAAQ,OAAO;AAQf;AACE,aAAW;AACT;AAAO,eAAS;AAAG,iBAAW,WAAW;AAAO;AAChD;AAAK,eAAS;AAAG,iBAAW,WAAW;AAAI;AAC7C;AACA,aAAW;AACT;AAAO,eAAS;AAAG,iBAAW,WAAW;AAAQ;AACjD;AAAK,eAAS;AAAG,iBAAW,WAAW;AAAI;AAC7C;AACA,GAAC;AACC,eAAW,kBAAkB,MAAM,aAAa,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG;AACpE;AACA,GAAC;AACC,eAAW,iBAAiB,MAAM,aAAa,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG;AACnE;AACF;","names":[]}
package/dist/index.d.cts CHANGED
@@ -236,6 +236,9 @@ interface ITAvatarProps {
236
236
  */
237
237
  declare function ITAvatar({ src, alt, initials, size, color, className, badge, onClick, }: ITAvatarProps): react_jsx_runtime.JSX.Element;
238
238
 
239
+ /** Escala única de tamaños del sistema: "sm" | "md" | "lg". */
240
+ type SizesTypes = "sm" | "md" | "lg";
241
+
239
242
  declare const semanticColors: {
240
243
  primary: {
241
244
  50: string;
@@ -363,8 +366,6 @@ declare const badgeVariants: {
363
366
  readonly outlined: "outlined";
364
367
  };
365
368
 
366
- type SizesTypes = "small" | "medium" | "large";
367
-
368
369
  interface ITBadgetProps {
369
370
  /** Text label displayed inside the badge. Overridden if `children` is provided. */
370
371
  label?: string;
@@ -372,7 +373,7 @@ interface ITBadgetProps {
372
373
  children?: React.ReactNode;
373
374
  /** Color theme key. Values come from the semantic color palette (e.g. `"primary"`, `"secondary"`, `"success"`, `"danger"`, `"warning"`, `"info"`, `"purple"`, `"error"`, `"gray"`). @default "primary" */
374
375
  color?: ColorsTypes;
375
- /** Badge size. Valid values: `"small"`, `"medium"`, `"large"`. @default "medium" */
376
+ /** Badge size. Valid values: `"sm"`, `"md"`, `"lg"`. @default "md" */
376
377
  size?: SizesTypes;
377
378
  /** Badge visual style. Valid values: `"filled"`, `"outlined"`. @default "filled" */
378
379
  variant?: keyof typeof badgeVariants;
@@ -387,7 +388,7 @@ interface ITBadgetProps {
387
388
  * <ITBadget label="Active" color="success" variant="filled" />
388
389
  *
389
390
  * @example
390
- * <ITBadget color="danger" variant="outlined" size="small">
391
+ * <ITBadget color="danger" variant="outlined" size="sm">
391
392
  * <span className="flex items-center gap-1">3 new</span>
392
393
  * </ITBadget>
393
394
  */
@@ -437,7 +438,7 @@ interface ITButtonProps {
437
438
  onClick?: () => void;
438
439
  /** Color theme key. Values come from the semantic color palette (e.g. `"primary"`, `"secondary"`, `"success"`, `"danger"`, `"warning"`, `"info"`, `"purple"`, `"error"`, `"gray"`). @default "primary" */
439
440
  color?: ColorsTypes;
440
- /** Button size. Valid values: `"small"`, `"medium"`, `"large"`. @default "medium" */
441
+ /** Button size. Valid values: `"sm"`, `"md"`, `"lg"`. @default "md" */
441
442
  size?: SizesTypes;
442
443
  /** Button visual style. Valid values: `"filled"`, `"outlined"`, `"raised"`, `"rounded"`, `"text"`, `"raised-text"`, `"icon-only"`, `"link"`. @default "filled" */
443
444
  variant?: keyof typeof buttonVariants;
@@ -460,7 +461,7 @@ interface ITButtonProps {
460
461
  * <ITButton label="Submit" color="primary" variant="filled" onClick={() => {}} />
461
462
  *
462
463
  * @example
463
- * <ITButton color="danger" variant="outlined" size="small" icon={<FaTrash />}>
464
+ * <ITButton color="danger" variant="outlined" size="sm" icon={<FaTrash />}>
464
465
  * Delete
465
466
  * </ITButton>
466
467
  */
@@ -842,7 +843,7 @@ interface ITDatePickerProps {
842
843
  range?: boolean;
843
844
  /** Color variant matching the design system (ColorsTypes). @default "primary" */
844
845
  variant?: ColorsTypes;
845
- /** Size variant matching the design system (SizesTypes). @default "medium" */
846
+ /** Size preset: "sm" | "md" | "lg". @default "md" */
846
847
  size?: SizesTypes;
847
848
  /** Additional CSS classes for the wrapper element. */
848
849
  className?: string;
@@ -1441,7 +1442,7 @@ interface ITInputProps {
1441
1442
  minLength?: number;
1442
1443
  /** Color variant from the theme palette */
1443
1444
  variant?: ColorsTypes;
1444
- /** Size preset: "xs" | "sm" | "md" | "lg" | "xl" */
1445
+ /** Size preset: "sm" | "md" | "lg". @default "md" */
1445
1446
  size?: SizesTypes;
1446
1447
  /** Disable the input */
1447
1448
  disabled?: boolean;
@@ -1510,7 +1511,7 @@ interface ITInputProps {
1510
1511
  * maxLength={10}
1511
1512
  * />
1512
1513
  */
1513
- declare function ITInput({ name, type, label, placeholder, value, onChange, onBlur, disabled, className, containerClassName, labelClassName, touched, error, formatNumber, required, autoFocus, onClick, onKeyDown, iconLeft, iconRight, maxLength, minLength, checked, showHintLength, currencyFormat, rows, min, max, readOnly, focusContent }: ITInputProps): react_jsx_runtime.JSX.Element;
1514
+ declare function ITInput({ name, type, label, placeholder, value, onChange, onBlur, disabled, className, containerClassName, labelClassName, touched, error, formatNumber, required, autoFocus, onClick, onKeyDown, iconLeft, iconRight, maxLength, minLength, checked, showHintLength, currencyFormat, rows, min, max, readOnly, focusContent, size }: ITInputProps): react_jsx_runtime.JSX.Element;
1514
1515
 
1515
1516
  /** Represents a navigation item in the sidebar. */
1516
1517
  interface ITNavigationItem$1 {
@@ -1903,6 +1904,8 @@ interface ITSearchSelectProps {
1903
1904
  error?: string | boolean;
1904
1905
  /** Whether the field is read-only. */
1905
1906
  readOnly?: boolean;
1907
+ /** Size preset: "sm" | "md" | "lg". @default "md" */
1908
+ size?: SizesTypes;
1906
1909
  /** Callback for server-side search (Mode 2: API connection). Receives the search query string. */
1907
1910
  onSearch?: (query: string) => void;
1908
1911
  /** Whether options are being loaded from an external API. */
@@ -1940,7 +1943,7 @@ interface ITSearchSelectProps {
1940
1943
  * />
1941
1944
  * ```
1942
1945
  */
1943
- declare function ITSearchSelect({ name, options, label, placeholder, valueField, labelField, value, onChange, onBlur, disabled, className, touched, required, error, readOnly, onSearch, isLoading, noResultsMessage, }: ITSearchSelectProps): react_jsx_runtime.JSX.Element;
1946
+ declare function ITSearchSelect({ name, options, label, placeholder, valueField, labelField, value, onChange, onBlur, disabled, className, touched, required, error, readOnly, onSearch, isLoading, noResultsMessage, size, }: ITSearchSelectProps): react_jsx_runtime.JSX.Element;
1944
1947
 
1945
1948
  /** A generic key-value option: e.g. { value: "mx", label: "Mexico" }. */
1946
1949
  interface OptionType {
@@ -1986,7 +1989,7 @@ interface ITSelectProps {
1986
1989
  readOnly?: boolean;
1987
1990
  }
1988
1991
 
1989
- declare function ITSelect({ name, options, label, placeholder, valueField, labelField, value, onChange, onBlur, disabled, className, touched, required, error, readOnly, }: ITSelectProps): react_jsx_runtime.JSX.Element;
1992
+ declare function ITSelect({ name, options, label, placeholder, valueField, labelField, value, onChange, onBlur, disabled, className, touched, required, error, readOnly, size, }: ITSelectProps): react_jsx_runtime.JSX.Element;
1990
1993
 
1991
1994
  interface CustomITSearchTableProps<T> extends ITSearchTableProps<T> {
1992
1995
  editingRow?: number | null;
@@ -2023,7 +2026,7 @@ interface CustomITSearchTableProps<T> extends ITSearchTableProps<T> {
2023
2026
  * />
2024
2027
  * ```
2025
2028
  */
2026
- declare function ITSearchTable<T extends Record<string, unknown>>({ columns, data, containerClassName, searchTermInitial, searchInputPlaceholder, className, variant, size, itemsPerPageOptions, defaultItemsPerPage, title, pageIndex, totalCount, totalPages, hasPreviousPage, hasNextPage, onPageChange, onItemsPerPageChange, onSortChange, onFilterChange, sortConfig, editingRow, validationSchema, onClearSearch, onEdit, onSave, onCancel, }: CustomITSearchTableProps<T>): react_jsx_runtime.JSX.Element;
2029
+ declare function ITSearchTable<T extends Record<string, unknown>>({ columns, data, containerClassName, searchTermInitial, searchInputPlaceholder, variant, size, itemsPerPageOptions, defaultItemsPerPage, title, pageIndex, totalCount, totalPages, hasPreviousPage, hasNextPage, onPageChange, onItemsPerPageChange, onSortChange, onFilterChange, sortConfig, editingRow, validationSchema, onClearSearch, onEdit, onSave, onCancel, }: CustomITSearchTableProps<T>): react_jsx_runtime.JSX.Element;
2027
2030
 
2028
2031
  /** Available sizes for the segmented control: "sm" | "md". */
2029
2032
  type SegmentedControlSize = "sm" | "md";
@@ -2139,7 +2142,7 @@ interface ITSidebarProps {
2139
2142
  * />
2140
2143
  * ```
2141
2144
  */
2142
- declare function ITSidebar({ navigationItems, isCollapsed, onToggleCollapse, className, visibleOnMobile, onItemClick, onSubItemClick, subitemConnector, }: ITSidebarProps): react_jsx_runtime.JSX.Element;
2145
+ declare function ITSidebar({ navigationItems, isCollapsed, className, visibleOnMobile, onItemClick, onSubItemClick, subitemConnector, }: ITSidebarProps): react_jsx_runtime.JSX.Element;
2143
2146
 
2144
2147
  /** Skeleton shape variant: "text" (line) | "circular" (avatar/icon) | "rectangular" (card/image). */
2145
2148
  type SkeletonVariant = "text" | "circular" | "rectangular";
@@ -2354,7 +2357,7 @@ declare function ITStatCard({ label, value, trend, trendDirection, icon, color,
2354
2357
  * size="sm"
2355
2358
  * />
2356
2359
  */
2357
- declare function ITTable<T extends Record<string, unknown>>({ columns, data, containerClassName, className, variant, size, itemsPerPageOptions, defaultItemsPerPage, title, renderCard, defaultView, showVerticalBorder, verticalBorderClassname, }: ITTableProps<T>): react_jsx_runtime.JSX.Element;
2360
+ declare function ITTable<T extends Record<string, unknown>>({ columns, data, containerClassName, variant, size, itemsPerPageOptions, defaultItemsPerPage, title, renderCard, defaultView, showVerticalBorder, verticalBorderClassname, }: ITTableProps<T>): react_jsx_runtime.JSX.Element;
2358
2361
 
2359
2362
  interface ITTextProps extends HTMLAttributes<HTMLElement> {
2360
2363
  /** The content rendered inside the element. */
@@ -2607,10 +2610,14 @@ interface ITDropfileProps {
2607
2610
  initialPreviewUrl?: string | null;
2608
2611
  /**
2609
2612
  * Presentation mode. `"drop"` renders the dropzone/preview inline (default,
2610
- * current behavior). `"button"` renders a compact trigger button instead —
2611
- * clicking it opens the same dropzone/preview UI inside an `ITDialog`, so
2612
- * callers don't need to build their own "open a modal" button around
2613
- * `ITDropfile`.
2613
+ * current behavior, unaffected by anything below). `"button"` renders a
2614
+ * compact trigger button instead — clicking it opens the same
2615
+ * dropzone/preview UI inside an `ITDialog`, so callers don't need to build
2616
+ * their own "open a modal" button around `ITDropfile`. Meant for repeated
2617
+ * uploads (e.g. an attachments list): ~900ms after a successful confirm,
2618
+ * the modal closes AND the selection resets, so the trigger goes back to
2619
+ * `buttonLabel` ready for the next file — same effect callers previously
2620
+ * got by remounting `ITDropfile` with a changing `key`.
2614
2621
  * @default "drop"
2615
2622
  */
2616
2623
  view?: "drop" | "button";
@@ -2820,7 +2827,7 @@ interface ITStepperProps {
2820
2827
  */
2821
2828
  declare function ITStepper({ steps, currentStep, onFinish, onStepChange, allowClickToJump, useIcons, disableNext, containerClassName, stepClassName, scrollableContent, maxContentHeight, color, }: ITStepperProps): react_jsx_runtime.JSX.Element;
2822
2829
 
2823
- interface ITThemePalette {
2830
+ interface ITThemePalette$1 {
2824
2831
  /** Main brand accent color (hex). Drives primary buttons, active nav items, focus rings, links, and the `--color-primary` CSS variable. @default "#06b6d4" */
2825
2832
  primary: string;
2826
2833
  /** Secondary/neutral accent color (hex). Used for less prominent actions and secondary badges/buttons. @default "#6b7280" */
@@ -2862,100 +2869,19 @@ interface ITThemePalette {
2862
2869
  }
2863
2870
  interface ITThemeProviderProps {
2864
2871
  /** Partial palette overrides merged (deep merge) with the default theme. Supports primary, secondary, ternary, danger, success, info, alert, warning, layout, and table colors. Persisted to `localStorage` under `"it-theme-palette"` once the user edits it via the FAB/drawer. */
2865
- theme?: Partial<ITThemePalette>;
2872
+ theme?: Partial<ITThemePalette$1>;
2866
2873
  /** The subtree that receives the theme context and CSS variables. Must wrap your entire app (or the portion that uses AXZY UI System components) once, near the root. */
2867
2874
  children: React.ReactNode;
2868
2875
  /** Whether to render the floating action button (bottom-right) that opens the live theme-designer drawer, letting end users tweak colors and persist their choice. Set to `false` to hide the FAB in production and only theme via the `theme` prop. @default true */
2869
2876
  showFab?: boolean;
2877
+ /** Global density/compactness factor. Values below 1 shrink the UI's base sizes, above 1 grow them (e.g. `0.8` = 80%: smaller fonts, paddings, gaps, spacing). Applied by scaling the root font-size so every `rem`-based token in Tailwind components compacts together, keeping the layout fluid (no empty margins, unlike CSS zoom). Clamped to `0.5`–`1.5`. @default 1 */
2878
+ density?: number;
2879
+ /** Global border radius in pixels applied to the entire rounding scale (`rounded-sm/md/lg/xl/2xl/…`). `radius={2}` ⇒ 2px corners (near-square), `8` ⇒ 8px, `0` ⇒ completely square. Every `rounded-*` utility resolves to a `--radius-*` variable, so this reshapes inputs, buttons, cards, dialogs and tables system-wide with no per-component changes. @default 0 (no override, Tailwind defaults) */
2880
+ radius?: number;
2881
+ /** Global shadow strength level. `0` ⇒ no shadows, `1` ⇒ subtle, `2` ⇒ default current look, `3` ⇒ pronounced. Shadows are injected as `--shadow-*`/`.shadow-*` overrides so cards, dropdowns and dialogs follow the level. @default 2 (keeps current default when omitted) */
2882
+ shadow?: number;
2870
2883
  }
2871
2884
 
2872
- interface ITThemeContextType {
2873
- palette: ITThemePalette;
2874
- colors: ITThemePalette;
2875
- setPalette: (newPalette: ITThemePalette) => void;
2876
- updateColor: (key: string, value: string) => void;
2877
- resetTheme: () => void;
2878
- applyPreset: (colors: ITThemePalette) => void;
2879
- resolvedTheme: "light" | "dark";
2880
- darkModeMode: "light" | "dark" | "system";
2881
- setDarkModeMode: (mode: "light" | "dark" | "system") => void;
2882
- }
2883
- declare const useITTheme: () => ITThemeContextType;
2884
- /**
2885
- * Versión segura de useITTheme que retorna undefined
2886
- * si se usa fuera de ITThemeProvider (no lanza error).
2887
- */
2888
- declare const useITThemeSafe: () => ITThemeContextType | undefined;
2889
- /**
2890
- * Root theme context provider that injects CSS custom properties for all components,
2891
- * supports custom color palettes, dark/light mode, and an optional in-app theme designer FAB.
2892
- *
2893
- * @example
2894
- * <ITThemeProvider theme={{ primary: "#3b82f6", danger: "#ef4444" }}>
2895
- * <App />
2896
- * </ITThemeProvider>
2897
- *
2898
- * @example
2899
- * <ITThemeProvider showFab={false}>
2900
- * <Dashboard />
2901
- * </ITThemeProvider>
2902
- */
2903
- declare function ITThemeProvider({ children, theme, showFab, }: ITThemeProviderProps): react_jsx_runtime.JSX.Element;
2904
-
2905
- interface ITTimePickerProps {
2906
- /** Form field name attribute and key for the change event. */
2907
- name: string;
2908
- /** Controlled time value in "HH:MM" format. */
2909
- value?: string;
2910
- /** Label text displayed above the input. */
2911
- label?: string;
2912
- /** Placeholder text when no value is set (default "HH:MM"). */
2913
- placeholder?: string;
2914
- /** Callback fired on valid time selection, receives event-like object with `target.name` and `target.value`. */
2915
- onChange: (e: any) => void;
2916
- /** Callback fired when the input loses focus. */
2917
- onBlur?: (e: any) => void;
2918
- /** Marks the field as required. */
2919
- required?: boolean;
2920
- /** Whether the input has been touched (interacted with). */
2921
- touched?: boolean;
2922
- /** Validation error message or boolean to show error state. */
2923
- error?: string | boolean;
2924
- /** Disables the time picker when true. */
2925
- disabled?: boolean;
2926
- /** Additional CSS classes for the wrapper. */
2927
- className?: string;
2928
- /** Size preset: "small" | "medium" | "large". */
2929
- size?: "small" | "medium" | "large";
2930
- /** Style variant for the input: "primary" | "secondary" | "danger" | "success" | "warning" | "info" | "purple". */
2931
- variant?: "primary" | "secondary" | "danger" | "success" | "warning" | "info" | "purple";
2932
- /** Theme color used for the dropdown highlight and confirm button. Accepts semantic keys or raw hex. */
2933
- color?: "primary" | "secondary" | "danger" | "success" | "warning" | "info" | "purple" | string;
2934
- }
2935
-
2936
- /**
2937
- * Time selection input with a dual-column dropdown (hours / minutes).
2938
- * Supports manual typing with auto-formatting, validation, and keyboard-friendly picker.
2939
- *
2940
- * @example
2941
- * <ITTimePicker
2942
- * name="startTime"
2943
- * label="Start Time"
2944
- * value={startTime}
2945
- * onChange={(e) => setStartTime(e.target.value)}
2946
- * color="primary"
2947
- * />
2948
- *
2949
- * @example
2950
- * <ITTimePicker
2951
- * name="endTime"
2952
- * value={endTime}
2953
- * onChange={(e) => setEndTime(e.target.value)}
2954
- * error={isInvalid ? "Invalid time range" : undefined}
2955
- * />
2956
- */
2957
- declare function ITTimePicker({ name, value, label, placeholder, onChange, onBlur, required, touched, error, disabled, className, size, variant, color, }: ITTimePickerProps): react_jsx_runtime.JSX.Element;
2958
-
2959
2885
  type ColorScale = {
2960
2886
  50: string;
2961
2887
  100: string;
@@ -2969,6 +2895,46 @@ type ColorScale = {
2969
2895
  900: string;
2970
2896
  950?: string;
2971
2897
  };
2898
+ interface ITThemePalette {
2899
+ /** Main brand accent color (hex). Drives primary buttons, active nav items, focus rings, links, and the `--color-primary` CSS variable. @default "#06b6d4" */
2900
+ primary: string;
2901
+ /** Secondary/neutral accent color (hex). Used for less prominent actions and secondary badges/buttons. @default "#6b7280" */
2902
+ secondary: string;
2903
+ /** Tertiary accent color (hex), used for a third level of emphasis (e.g. alternate badges, chart accents). @default "#8b5cf6" */
2904
+ ternary: string;
2905
+ /** Semantic color for destructive/error states (hex): delete buttons, error badges, invalid form fields. @default "#ef4444" */
2906
+ danger: string;
2907
+ /** Semantic color for success/confirmation states (hex): success badges, completed steps, positive stats. @default "#22c55e" */
2908
+ success: string;
2909
+ /** Semantic color for informational states (hex): info banners/badges, neutral notices. @default "#3b82f6" */
2910
+ info: string;
2911
+ /** Semantic color for alert/caution states (hex), distinct from `warning`. Used by components that need a stronger visual cue than warning. @default "#f97316" */
2912
+ alert: string;
2913
+ /** Semantic color for warning states (hex): warning badges/banners, pending states. @default "#eab308" */
2914
+ warning: string;
2915
+ /** Colors for the app shell's sidebar and top navbar (ITSidebar, ITNavbar, ITTopbar, ITLayout). */
2916
+ layout: {
2917
+ /** Background color of the sidebar (hex). @default "#ffffff" */
2918
+ sidebarBg: string;
2919
+ /** Text/icon color used on the sidebar. @default "#334155" */
2920
+ sidebarText: string;
2921
+ /** Background color of the top navigation bar (hex). @default "#ffffff" */
2922
+ navbarBg: string;
2923
+ /** Text/icon color used on the top navigation bar. @default "#1e293b" */
2924
+ navbarText: string;
2925
+ };
2926
+ /** Colors for ITTable/ITDataTable/ITSearchTable header and rows. */
2927
+ table: {
2928
+ /** Background color of the table header row (hex). @default "#f8fafc" */
2929
+ headerBg: string;
2930
+ /** Text color of the table header row. @default "#334155" */
2931
+ headerText: string;
2932
+ /** Background color of table body rows (hex). @default "#ffffff" */
2933
+ rowBg: string;
2934
+ /** Text color of table body rows. @default "#1e293b" */
2935
+ rowText: string;
2936
+ };
2937
+ }
2972
2938
  type SemanticThemeColors = {
2973
2939
  primary?: ColorScale;
2974
2940
  secondary?: ColorScale;
@@ -3051,6 +3017,99 @@ interface ITThemeConfig {
3051
3017
  };
3052
3018
  }
3053
3019
 
3020
+ /**
3021
+ * Contexto de theming compartido por ITThemeProvider y componentes que lo
3022
+ * consumen (p.ej. ITFormHeader). Vive en @/theme para que ninguna capa
3023
+ * atómica dependa de otra a través del provider.
3024
+ */
3025
+ interface ITThemeContextType {
3026
+ palette: ITThemePalette;
3027
+ colors: ITThemePalette;
3028
+ setPalette: (newPalette: ITThemePalette) => void;
3029
+ updateColor: (key: string, value: string) => void;
3030
+ resetTheme: () => void;
3031
+ applyPreset: (colors: ITThemePalette) => void;
3032
+ resolvedTheme: "light" | "dark";
3033
+ darkModeMode: "light" | "dark" | "system";
3034
+ setDarkModeMode: (mode: "light" | "dark" | "system") => void;
3035
+ }
3036
+ declare const useITTheme: () => ITThemeContextType;
3037
+ /**
3038
+ * Versión segura de useITTheme que retorna undefined
3039
+ * si se usa fuera de ITThemeProvider (no lanza error).
3040
+ */
3041
+ declare const useITThemeSafe: () => ITThemeContextType | undefined;
3042
+
3043
+ /**
3044
+ * Root theme context provider that injects CSS custom properties for all components,
3045
+ * supports custom color palettes, dark/light mode, and an optional in-app theme designer FAB.
3046
+ *
3047
+ * @example
3048
+ * <ITThemeProvider theme={{ primary: "#3b82f6", danger: "#ef4444" }}>
3049
+ * <App />
3050
+ * </ITThemeProvider>
3051
+ *
3052
+ * @example
3053
+ * <ITThemeProvider showFab={false}>
3054
+ * <Dashboard />
3055
+ * </ITThemeProvider>
3056
+ */
3057
+ declare function ITThemeProvider({ children, theme, showFab, density, radius, shadow, }: ITThemeProviderProps): react_jsx_runtime.JSX.Element;
3058
+
3059
+ interface ITTimePickerProps {
3060
+ /** Form field name attribute and key for the change event. */
3061
+ name: string;
3062
+ /** Controlled time value in "HH:MM" format. */
3063
+ value?: string;
3064
+ /** Label text displayed above the input. */
3065
+ label?: string;
3066
+ /** Placeholder text when no value is set (default "HH:MM"). */
3067
+ placeholder?: string;
3068
+ /** Callback fired on valid time selection, receives event-like object with `target.name` and `target.value`. */
3069
+ onChange: (e: any) => void;
3070
+ /** Callback fired when the input loses focus. */
3071
+ onBlur?: (e: any) => void;
3072
+ /** Marks the field as required. */
3073
+ required?: boolean;
3074
+ /** Whether the input has been touched (interacted with). */
3075
+ touched?: boolean;
3076
+ /** Validation error message or boolean to show error state. */
3077
+ error?: string | boolean;
3078
+ /** Disables the time picker when true. */
3079
+ disabled?: boolean;
3080
+ /** Additional CSS classes for the wrapper. */
3081
+ className?: string;
3082
+ /** Size preset: "sm" | "md" | "lg". @default "md" */
3083
+ size?: SizesTypes;
3084
+ /** Style variant for the input: "primary" | "secondary" | "danger" | "success" | "warning" | "info" | "purple". */
3085
+ variant?: "primary" | "secondary" | "danger" | "success" | "warning" | "info" | "purple";
3086
+ /** Theme color used for the dropdown highlight and confirm button. Accepts semantic keys or raw hex. */
3087
+ color?: "primary" | "secondary" | "danger" | "success" | "warning" | "info" | "purple" | string;
3088
+ }
3089
+
3090
+ /**
3091
+ * Time selection input with a dual-column dropdown (hours / minutes).
3092
+ * Supports manual typing with auto-formatting, validation, and keyboard-friendly picker.
3093
+ *
3094
+ * @example
3095
+ * <ITTimePicker
3096
+ * name="startTime"
3097
+ * label="Start Time"
3098
+ * value={startTime}
3099
+ * onChange={(e) => setStartTime(e.target.value)}
3100
+ * color="primary"
3101
+ * />
3102
+ *
3103
+ * @example
3104
+ * <ITTimePicker
3105
+ * name="endTime"
3106
+ * value={endTime}
3107
+ * onChange={(e) => setEndTime(e.target.value)}
3108
+ * error={isInvalid ? "Invalid time range" : undefined}
3109
+ * />
3110
+ */
3111
+ declare function ITTimePicker({ name, value, label, placeholder, onChange, onBlur, required, touched, error, disabled, className, size, variant, color, }: ITTimePickerProps): react_jsx_runtime.JSX.Element;
3112
+
3054
3113
  declare const createValidationSchema: (fields: FieldConfig[]) => Yup.ObjectSchema<{
3055
3114
  [x: string]: never;
3056
3115
  }, Yup.AnyObject, {
@@ -3064,10 +3123,10 @@ declare const isLightColor: (hex: string) => boolean;
3064
3123
  /**
3065
3124
  * Traduce un valor de color de CSS (hexadecimal o variable var(--...)) a hexadecimal absoluto.
3066
3125
  */
3067
- declare const resolveCssColor: (colorStr: string, palette?: ITThemePalette, isDarkMode?: boolean) => string;
3126
+ declare const resolveCssColor: (colorStr: string, palette?: ITThemePalette$1, isDarkMode?: boolean) => string;
3068
3127
  /**
3069
3128
  * Obtiene la clase de color de texto óptima (blanca o gris oscuro) basado en el fondo.
3070
3129
  */
3071
- declare const getContrastTextColor: (bgColor: string, palette?: ITThemePalette, isDarkMode?: boolean) => "text-white" | "text-slate-800";
3130
+ declare const getContrastTextColor: (bgColor: string, palette?: ITThemePalette$1, isDarkMode?: boolean) => "text-white" | "text-slate-800";
3072
3131
 
3073
- export { type Column, type FieldConfig, type FieldConfigV2, FileTypeEnum, ITAlert, type ITAlertProps, ITAvatar, type ITAvatarProps, ITBadget, type ITBadgetProps, type ITBreadcrumbItem, ITBreadcrumbs, type ITBreadcrumbsProps, ITButton, type ITButtonProps, ITCalendar, type ITCalendarProps, ITCard, type ITCardProps, ITCheckbox, type ITCheckboxProps, ITConfirmDialog, type ITConfirmDialogProps, ITDataTable, type ITDataTableFetchParams, type ITDataTableProps, type ITDataTableResponse, ITDatePicker, type ITDatePickerProps, ITDialog, type ITDialogProps, ITDivider, type ITDividerProps, ITDrawer, type ITDrawerProps, ITDropfile, ITEmptyState, type ITEmptyStateProps, ITFlex, type ITFlexProps, ITFormBuilder, type ITFormBuilderProps, ITFormHeader, type ITFormHeaderProps, ITGrid, type ITGridProps, ITImage, type ITImageProps, ITInput, type ITInputProps, ITLayout, type ITLayoutProps, ITLoader, type LoaderProps as ITLoaderProps, ITNavbar, type ITNavbarProps, type ITNavigationItem, type ITNavigationSubItem, ITPage, ITPageHeader, type ITPageHeaderProps, type ITPageProps, ITPagination, type ITPaginationProps, ITPopover, type ITPopoverProps, ITProgress, type ITProgressProps, ITRadioGroup, type ITRadioGroupProps, type ITRadioOption, ITSearchSelect, type ITSearchSelectProps, ITSearchTable, type ITSearchTableProps, ITSegmentedControl, type ITSegmentedControlProps, ITSelect, type ITSelectProps, ITSidebar, type ITSidebarProps, ITSkeleton, type ITSkeletonProps, ITSlideToggle, type ITSlideToggleProps, ITSlider, type ITSliderProps, ITStack, type ITStackProps, ITStatCard, type ITStatCardProps, ITStepper, type ITStepperProps, type ITTabItem, ITTable, type ITTableProps, ITTabs, type ITTabsProps, ITText, type ITTextProps, ITTextarea, type ITTextareaProps, type ITThemeConfig, type ITThemePalette, ITThemeProvider, type ITThemeProviderProps, ITTimePicker, type ITTimePickerProps, ITToast, type ITToastProps, ITTripleFilter, type ITTripleFilterOption, type ITTripleFilterProps, UploadStatus, type UseTableStateOptions, type UseTableStateResult, createValidationSchema, getContrastTextColor, isLightColor, resolveCssColor, useClickOutside, useDebouncedSearch, useEditableRow, useITTheme, useITThemeSafe, useTableState };
3132
+ export { type Column, type FieldConfig, type FieldConfigV2, FileTypeEnum, ITAlert, type ITAlertProps, ITAvatar, type ITAvatarProps, ITBadget, type ITBadgetProps, type ITBreadcrumbItem, ITBreadcrumbs, type ITBreadcrumbsProps, ITButton, type ITButtonProps, ITCalendar, type ITCalendarProps, ITCard, type ITCardProps, ITCheckbox, type ITCheckboxProps, ITConfirmDialog, type ITConfirmDialogProps, ITDataTable, type ITDataTableFetchParams, type ITDataTableProps, type ITDataTableResponse, ITDatePicker, type ITDatePickerProps, ITDialog, type ITDialogProps, ITDivider, type ITDividerProps, ITDrawer, type ITDrawerProps, ITDropfile, ITEmptyState, type ITEmptyStateProps, ITFlex, type ITFlexProps, ITFormBuilder, type ITFormBuilderProps, ITFormHeader, type ITFormHeaderProps, ITGrid, type ITGridProps, ITImage, type ITImageProps, ITInput, type ITInputProps, ITLayout, type ITLayoutProps, ITLoader, type LoaderProps as ITLoaderProps, ITNavbar, type ITNavbarProps, type ITNavigationItem, type ITNavigationSubItem, ITPage, ITPageHeader, type ITPageHeaderProps, type ITPageProps, ITPagination, type ITPaginationProps, ITPopover, type ITPopoverProps, ITProgress, type ITProgressProps, ITRadioGroup, type ITRadioGroupProps, type ITRadioOption, ITSearchSelect, type ITSearchSelectProps, ITSearchTable, type ITSearchTableProps, ITSegmentedControl, type ITSegmentedControlProps, ITSelect, type ITSelectProps, ITSidebar, type ITSidebarProps, ITSkeleton, type ITSkeletonProps, ITSlideToggle, type ITSlideToggleProps, ITSlider, type ITSliderProps, ITStack, type ITStackProps, ITStatCard, type ITStatCardProps, ITStepper, type ITStepperProps, type ITTabItem, ITTable, type ITTableProps, ITTabs, type ITTabsProps, ITText, type ITTextProps, ITTextarea, type ITTextareaProps, type ITThemeConfig, type ITThemePalette$1 as ITThemePalette, ITThemeProvider, type ITThemeProviderProps, ITTimePicker, type ITTimePickerProps, ITToast, type ITToastProps, ITTripleFilter, type ITTripleFilterOption, type ITTripleFilterProps, UploadStatus, type UseTableStateOptions, type UseTableStateResult, createValidationSchema, getContrastTextColor, isLightColor, resolveCssColor, useClickOutside, useDebouncedSearch, useEditableRow, useITTheme, useITThemeSafe, useTableState };