@moving-walls/design-system 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1808) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +221 -0
  3. package/dist/components/AnimationComponents.d.ts +35 -0
  4. package/dist/components/CodeSnippet.d.ts +8 -0
  5. package/dist/components/DynamicIcon.clean.d.ts +8 -0
  6. package/dist/components/DynamicIcon.d.ts +8 -0
  7. package/dist/components/Footer.d.ts +1 -0
  8. package/dist/components/Navigation.d.ts +1 -0
  9. package/dist/components/PageHero.d.ts +15 -0
  10. package/dist/components/ThemeToggle.d.ts +1 -0
  11. package/dist/components/Toast.d.ts +33 -0
  12. package/dist/components/index.d.ts +9 -0
  13. package/dist/components/ui/Accordion.d.ts +26 -0
  14. package/dist/components/ui/AdvancedTable.d.ts +149 -0
  15. package/dist/components/ui/Alert.d.ts +8 -0
  16. package/dist/components/ui/AppHeader.d.ts +17 -0
  17. package/dist/components/ui/Autocomplete.d.ts +30 -0
  18. package/dist/components/ui/Avatar.d.ts +22 -0
  19. package/dist/components/ui/Badge.d.ts +6 -0
  20. package/dist/components/ui/Breadcrumb.d.ts +19 -0
  21. package/dist/components/ui/Button.d.ts +9 -0
  22. package/dist/components/ui/Calendar.d.ts +35 -0
  23. package/dist/components/ui/Card.d.ts +24 -0
  24. package/dist/components/ui/Carousel.d.ts +31 -0
  25. package/dist/components/ui/Checkbox.d.ts +12 -0
  26. package/dist/components/ui/Chip.d.ts +14 -0
  27. package/dist/components/ui/Collapsible.d.ts +23 -0
  28. package/dist/components/ui/CollapsibleCode.d.ts +9 -0
  29. package/dist/components/ui/ColumnCustomizationDrawer.d.ts +15 -0
  30. package/dist/components/ui/Command.d.ts +18 -0
  31. package/dist/components/ui/Container.d.ts +70 -0
  32. package/dist/components/ui/DataGrid.d.ts +64 -0
  33. package/dist/components/ui/DatePicker.d.ts +12 -0
  34. package/dist/components/ui/DateRangePicker.d.ts +24 -0
  35. package/dist/components/ui/Dialog.d.ts +40 -0
  36. package/dist/components/ui/DocumentEditor.d.ts +21 -0
  37. package/dist/components/ui/DragDrop.d.ts +50 -0
  38. package/dist/components/ui/Dropdown.d.ts +30 -0
  39. package/dist/components/ui/DropdownMenu.d.ts +46 -0
  40. package/dist/components/ui/EmptyState.d.ts +27 -0
  41. package/dist/components/ui/FileUpload.d.ts +16 -0
  42. package/dist/components/ui/Filter.d.ts +38 -0
  43. package/dist/components/ui/Form.d.ts +79 -0
  44. package/dist/components/ui/Icon.d.ts +22 -0
  45. package/dist/components/ui/Input.d.ts +6 -0
  46. package/dist/components/ui/Label.d.ts +2 -0
  47. package/dist/components/ui/List.d.ts +38 -0
  48. package/dist/components/ui/MWLoader.d.ts +56 -0
  49. package/dist/components/ui/Menu.d.ts +51 -0
  50. package/dist/components/ui/Modal.d.ts +24 -0
  51. package/dist/components/ui/MultiSelect.d.ts +22 -0
  52. package/dist/components/ui/Notification.d.ts +57 -0
  53. package/dist/components/ui/PageHeader.d.ts +10 -0
  54. package/dist/components/ui/Pagination.d.ts +23 -0
  55. package/dist/components/ui/Panel.d.ts +61 -0
  56. package/dist/components/ui/Popover.d.ts +27 -0
  57. package/dist/components/ui/Progress.d.ts +9 -0
  58. package/dist/components/ui/RadioGroup.d.ts +20 -0
  59. package/dist/components/ui/Rating.d.ts +10 -0
  60. package/dist/components/ui/RichTextEditor.d.ts +17 -0
  61. package/dist/components/ui/ScheduleGrid.d.ts +28 -0
  62. package/dist/components/ui/ScrollArea.d.ts +10 -0
  63. package/dist/components/ui/SearchBar.d.ts +33 -0
  64. package/dist/components/ui/Select.d.ts +44 -0
  65. package/dist/components/ui/Separator.d.ts +6 -0
  66. package/dist/components/ui/Sheet.d.ts +41 -0
  67. package/dist/components/ui/Sidebar.d.ts +91 -0
  68. package/dist/components/ui/Skeleton.d.ts +8 -0
  69. package/dist/components/ui/Slider.d.ts +12 -0
  70. package/dist/components/ui/Snackbar.d.ts +42 -0
  71. package/dist/components/ui/Spinner.d.ts +12 -0
  72. package/dist/components/ui/StatusBadge.d.ts +10 -0
  73. package/dist/components/ui/Stepper.d.ts +12 -0
  74. package/dist/components/ui/Switch.d.ts +25 -0
  75. package/dist/components/ui/Table.d.ts +32 -0
  76. package/dist/components/ui/Tabs.d.ts +27 -0
  77. package/dist/components/ui/Textarea.d.ts +7 -0
  78. package/dist/components/ui/Thumbnail.d.ts +57 -0
  79. package/dist/components/ui/TimePicker.d.ts +16 -0
  80. package/dist/components/ui/TimeRangePicker.d.ts +23 -0
  81. package/dist/components/ui/Timeline.d.ts +22 -0
  82. package/dist/components/ui/Toast.d.ts +21 -0
  83. package/dist/components/ui/ToggleGroup.d.ts +24 -0
  84. package/dist/components/ui/Tooltip.d.ts +13 -0
  85. package/dist/components/ui/TreeView.d.ts +28 -0
  86. package/dist/components/ui/Typography.d.ts +36 -0
  87. package/dist/components/ui/index.d.ts +86 -0
  88. package/dist/data/enhanced-icons.d.ts +49 -0
  89. package/dist/data/icons.d.ts +17 -0
  90. package/dist/hooks/index.d.ts +2 -0
  91. package/dist/hooks/useIconSearch.d.ts +7 -0
  92. package/dist/hooks/useKeyboardShortcuts.d.ts +38 -0
  93. package/dist/index.d.ts +6 -0
  94. package/dist/index.esm.js +51783 -0
  95. package/dist/index.esm.js.map +1 -0
  96. package/dist/index.js +52033 -0
  97. package/dist/index.js.map +1 -0
  98. package/dist/lib/lucide-icons.d.ts +83 -0
  99. package/dist/node_modules/@swc/helpers/cjs/_interop_require_default.d.cts +2 -0
  100. package/dist/node_modules/@swc/helpers/cjs/_interop_require_wildcard.d.cts +2 -0
  101. package/dist/node_modules/clsx/dist/clsx.d.mts +2 -0
  102. package/dist/node_modules/lucide-react/dist/esm/Icon.d.ts +2 -0
  103. package/dist/node_modules/lucide-react/dist/esm/createLucideIcon.d.ts +2 -0
  104. package/dist/node_modules/lucide-react/dist/esm/defaultAttributes.d.ts +12 -0
  105. package/dist/node_modules/lucide-react/dist/esm/icons/a-arrow-down.d.ts +2 -0
  106. package/dist/node_modules/lucide-react/dist/esm/icons/a-arrow-up.d.ts +2 -0
  107. package/dist/node_modules/lucide-react/dist/esm/icons/a-large-small.d.ts +2 -0
  108. package/dist/node_modules/lucide-react/dist/esm/icons/accessibility.d.ts +2 -0
  109. package/dist/node_modules/lucide-react/dist/esm/icons/activity.d.ts +2 -0
  110. package/dist/node_modules/lucide-react/dist/esm/icons/air-vent.d.ts +2 -0
  111. package/dist/node_modules/lucide-react/dist/esm/icons/airplay.d.ts +2 -0
  112. package/dist/node_modules/lucide-react/dist/esm/icons/alarm-clock-check.d.ts +2 -0
  113. package/dist/node_modules/lucide-react/dist/esm/icons/alarm-clock-minus.d.ts +2 -0
  114. package/dist/node_modules/lucide-react/dist/esm/icons/alarm-clock-off.d.ts +2 -0
  115. package/dist/node_modules/lucide-react/dist/esm/icons/alarm-clock-plus.d.ts +2 -0
  116. package/dist/node_modules/lucide-react/dist/esm/icons/alarm-clock.d.ts +2 -0
  117. package/dist/node_modules/lucide-react/dist/esm/icons/alarm-smoke.d.ts +2 -0
  118. package/dist/node_modules/lucide-react/dist/esm/icons/album.d.ts +2 -0
  119. package/dist/node_modules/lucide-react/dist/esm/icons/align-center-horizontal.d.ts +2 -0
  120. package/dist/node_modules/lucide-react/dist/esm/icons/align-center-vertical.d.ts +2 -0
  121. package/dist/node_modules/lucide-react/dist/esm/icons/align-center.d.ts +2 -0
  122. package/dist/node_modules/lucide-react/dist/esm/icons/align-end-horizontal.d.ts +2 -0
  123. package/dist/node_modules/lucide-react/dist/esm/icons/align-end-vertical.d.ts +2 -0
  124. package/dist/node_modules/lucide-react/dist/esm/icons/align-horizontal-distribute-center.d.ts +2 -0
  125. package/dist/node_modules/lucide-react/dist/esm/icons/align-horizontal-distribute-end.d.ts +2 -0
  126. package/dist/node_modules/lucide-react/dist/esm/icons/align-horizontal-distribute-start.d.ts +2 -0
  127. package/dist/node_modules/lucide-react/dist/esm/icons/align-horizontal-justify-center.d.ts +2 -0
  128. package/dist/node_modules/lucide-react/dist/esm/icons/align-horizontal-justify-end.d.ts +2 -0
  129. package/dist/node_modules/lucide-react/dist/esm/icons/align-horizontal-justify-start.d.ts +2 -0
  130. package/dist/node_modules/lucide-react/dist/esm/icons/align-horizontal-space-around.d.ts +2 -0
  131. package/dist/node_modules/lucide-react/dist/esm/icons/align-horizontal-space-between.d.ts +2 -0
  132. package/dist/node_modules/lucide-react/dist/esm/icons/align-justify.d.ts +2 -0
  133. package/dist/node_modules/lucide-react/dist/esm/icons/align-left.d.ts +2 -0
  134. package/dist/node_modules/lucide-react/dist/esm/icons/align-right.d.ts +2 -0
  135. package/dist/node_modules/lucide-react/dist/esm/icons/align-start-horizontal.d.ts +2 -0
  136. package/dist/node_modules/lucide-react/dist/esm/icons/align-start-vertical.d.ts +2 -0
  137. package/dist/node_modules/lucide-react/dist/esm/icons/align-vertical-distribute-center.d.ts +2 -0
  138. package/dist/node_modules/lucide-react/dist/esm/icons/align-vertical-distribute-end.d.ts +2 -0
  139. package/dist/node_modules/lucide-react/dist/esm/icons/align-vertical-distribute-start.d.ts +2 -0
  140. package/dist/node_modules/lucide-react/dist/esm/icons/align-vertical-justify-center.d.ts +2 -0
  141. package/dist/node_modules/lucide-react/dist/esm/icons/align-vertical-justify-end.d.ts +2 -0
  142. package/dist/node_modules/lucide-react/dist/esm/icons/align-vertical-justify-start.d.ts +2 -0
  143. package/dist/node_modules/lucide-react/dist/esm/icons/align-vertical-space-around.d.ts +2 -0
  144. package/dist/node_modules/lucide-react/dist/esm/icons/align-vertical-space-between.d.ts +2 -0
  145. package/dist/node_modules/lucide-react/dist/esm/icons/ambulance.d.ts +2 -0
  146. package/dist/node_modules/lucide-react/dist/esm/icons/ampersand.d.ts +2 -0
  147. package/dist/node_modules/lucide-react/dist/esm/icons/ampersands.d.ts +2 -0
  148. package/dist/node_modules/lucide-react/dist/esm/icons/amphora.d.ts +2 -0
  149. package/dist/node_modules/lucide-react/dist/esm/icons/anchor.d.ts +2 -0
  150. package/dist/node_modules/lucide-react/dist/esm/icons/angry.d.ts +2 -0
  151. package/dist/node_modules/lucide-react/dist/esm/icons/annoyed.d.ts +2 -0
  152. package/dist/node_modules/lucide-react/dist/esm/icons/antenna.d.ts +2 -0
  153. package/dist/node_modules/lucide-react/dist/esm/icons/anvil.d.ts +2 -0
  154. package/dist/node_modules/lucide-react/dist/esm/icons/aperture.d.ts +2 -0
  155. package/dist/node_modules/lucide-react/dist/esm/icons/app-window-mac.d.ts +2 -0
  156. package/dist/node_modules/lucide-react/dist/esm/icons/app-window.d.ts +2 -0
  157. package/dist/node_modules/lucide-react/dist/esm/icons/apple.d.ts +2 -0
  158. package/dist/node_modules/lucide-react/dist/esm/icons/archive-restore.d.ts +2 -0
  159. package/dist/node_modules/lucide-react/dist/esm/icons/archive-x.d.ts +2 -0
  160. package/dist/node_modules/lucide-react/dist/esm/icons/archive.d.ts +2 -0
  161. package/dist/node_modules/lucide-react/dist/esm/icons/armchair.d.ts +2 -0
  162. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-big-down-dash.d.ts +2 -0
  163. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-big-down.d.ts +2 -0
  164. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-big-left-dash.d.ts +2 -0
  165. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-big-left.d.ts +2 -0
  166. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-big-right-dash.d.ts +2 -0
  167. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-big-right.d.ts +2 -0
  168. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-big-up-dash.d.ts +2 -0
  169. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-big-up.d.ts +2 -0
  170. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-0-1.d.ts +2 -0
  171. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-1-0.d.ts +2 -0
  172. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-a-z.d.ts +2 -0
  173. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-from-line.d.ts +2 -0
  174. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-left.d.ts +2 -0
  175. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-narrow-wide.d.ts +2 -0
  176. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-right.d.ts +2 -0
  177. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-to-dot.d.ts +2 -0
  178. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-to-line.d.ts +2 -0
  179. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-up.d.ts +2 -0
  180. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-wide-narrow.d.ts +2 -0
  181. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down-z-a.d.ts +2 -0
  182. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-down.d.ts +2 -0
  183. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-left-from-line.d.ts +2 -0
  184. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-left-right.d.ts +2 -0
  185. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-left-to-line.d.ts +2 -0
  186. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-left.d.ts +2 -0
  187. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-right-from-line.d.ts +2 -0
  188. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-right-left.d.ts +2 -0
  189. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-right-to-line.d.ts +2 -0
  190. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-right.d.ts +2 -0
  191. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-0-1.d.ts +2 -0
  192. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-1-0.d.ts +2 -0
  193. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-a-z.d.ts +2 -0
  194. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-down.d.ts +2 -0
  195. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-from-dot.d.ts +2 -0
  196. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-from-line.d.ts +2 -0
  197. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-left.d.ts +2 -0
  198. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-narrow-wide.d.ts +2 -0
  199. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-right.d.ts +2 -0
  200. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-to-line.d.ts +2 -0
  201. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-wide-narrow.d.ts +2 -0
  202. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up-z-a.d.ts +2 -0
  203. package/dist/node_modules/lucide-react/dist/esm/icons/arrow-up.d.ts +2 -0
  204. package/dist/node_modules/lucide-react/dist/esm/icons/arrows-up-from-line.d.ts +2 -0
  205. package/dist/node_modules/lucide-react/dist/esm/icons/asterisk.d.ts +2 -0
  206. package/dist/node_modules/lucide-react/dist/esm/icons/at-sign.d.ts +2 -0
  207. package/dist/node_modules/lucide-react/dist/esm/icons/atom.d.ts +2 -0
  208. package/dist/node_modules/lucide-react/dist/esm/icons/audio-lines.d.ts +2 -0
  209. package/dist/node_modules/lucide-react/dist/esm/icons/audio-waveform.d.ts +2 -0
  210. package/dist/node_modules/lucide-react/dist/esm/icons/award.d.ts +2 -0
  211. package/dist/node_modules/lucide-react/dist/esm/icons/axe.d.ts +2 -0
  212. package/dist/node_modules/lucide-react/dist/esm/icons/axis-3d.d.ts +2 -0
  213. package/dist/node_modules/lucide-react/dist/esm/icons/baby.d.ts +2 -0
  214. package/dist/node_modules/lucide-react/dist/esm/icons/backpack.d.ts +2 -0
  215. package/dist/node_modules/lucide-react/dist/esm/icons/badge-alert.d.ts +2 -0
  216. package/dist/node_modules/lucide-react/dist/esm/icons/badge-cent.d.ts +2 -0
  217. package/dist/node_modules/lucide-react/dist/esm/icons/badge-check.d.ts +2 -0
  218. package/dist/node_modules/lucide-react/dist/esm/icons/badge-dollar-sign.d.ts +2 -0
  219. package/dist/node_modules/lucide-react/dist/esm/icons/badge-euro.d.ts +2 -0
  220. package/dist/node_modules/lucide-react/dist/esm/icons/badge-help.d.ts +2 -0
  221. package/dist/node_modules/lucide-react/dist/esm/icons/badge-indian-rupee.d.ts +2 -0
  222. package/dist/node_modules/lucide-react/dist/esm/icons/badge-info.d.ts +2 -0
  223. package/dist/node_modules/lucide-react/dist/esm/icons/badge-japanese-yen.d.ts +2 -0
  224. package/dist/node_modules/lucide-react/dist/esm/icons/badge-minus.d.ts +2 -0
  225. package/dist/node_modules/lucide-react/dist/esm/icons/badge-percent.d.ts +2 -0
  226. package/dist/node_modules/lucide-react/dist/esm/icons/badge-plus.d.ts +2 -0
  227. package/dist/node_modules/lucide-react/dist/esm/icons/badge-pound-sterling.d.ts +2 -0
  228. package/dist/node_modules/lucide-react/dist/esm/icons/badge-russian-ruble.d.ts +2 -0
  229. package/dist/node_modules/lucide-react/dist/esm/icons/badge-swiss-franc.d.ts +2 -0
  230. package/dist/node_modules/lucide-react/dist/esm/icons/badge-x.d.ts +2 -0
  231. package/dist/node_modules/lucide-react/dist/esm/icons/badge.d.ts +2 -0
  232. package/dist/node_modules/lucide-react/dist/esm/icons/baggage-claim.d.ts +2 -0
  233. package/dist/node_modules/lucide-react/dist/esm/icons/ban.d.ts +2 -0
  234. package/dist/node_modules/lucide-react/dist/esm/icons/banana.d.ts +2 -0
  235. package/dist/node_modules/lucide-react/dist/esm/icons/bandage.d.ts +2 -0
  236. package/dist/node_modules/lucide-react/dist/esm/icons/banknote.d.ts +2 -0
  237. package/dist/node_modules/lucide-react/dist/esm/icons/barcode.d.ts +2 -0
  238. package/dist/node_modules/lucide-react/dist/esm/icons/baseline.d.ts +2 -0
  239. package/dist/node_modules/lucide-react/dist/esm/icons/bath.d.ts +2 -0
  240. package/dist/node_modules/lucide-react/dist/esm/icons/battery-charging.d.ts +2 -0
  241. package/dist/node_modules/lucide-react/dist/esm/icons/battery-full.d.ts +2 -0
  242. package/dist/node_modules/lucide-react/dist/esm/icons/battery-low.d.ts +2 -0
  243. package/dist/node_modules/lucide-react/dist/esm/icons/battery-medium.d.ts +2 -0
  244. package/dist/node_modules/lucide-react/dist/esm/icons/battery-warning.d.ts +2 -0
  245. package/dist/node_modules/lucide-react/dist/esm/icons/battery.d.ts +2 -0
  246. package/dist/node_modules/lucide-react/dist/esm/icons/beaker.d.ts +2 -0
  247. package/dist/node_modules/lucide-react/dist/esm/icons/bean-off.d.ts +2 -0
  248. package/dist/node_modules/lucide-react/dist/esm/icons/bean.d.ts +2 -0
  249. package/dist/node_modules/lucide-react/dist/esm/icons/bed-double.d.ts +2 -0
  250. package/dist/node_modules/lucide-react/dist/esm/icons/bed-single.d.ts +2 -0
  251. package/dist/node_modules/lucide-react/dist/esm/icons/bed.d.ts +2 -0
  252. package/dist/node_modules/lucide-react/dist/esm/icons/beef.d.ts +2 -0
  253. package/dist/node_modules/lucide-react/dist/esm/icons/beer-off.d.ts +2 -0
  254. package/dist/node_modules/lucide-react/dist/esm/icons/beer.d.ts +2 -0
  255. package/dist/node_modules/lucide-react/dist/esm/icons/bell-dot.d.ts +2 -0
  256. package/dist/node_modules/lucide-react/dist/esm/icons/bell-electric.d.ts +2 -0
  257. package/dist/node_modules/lucide-react/dist/esm/icons/bell-minus.d.ts +2 -0
  258. package/dist/node_modules/lucide-react/dist/esm/icons/bell-off.d.ts +2 -0
  259. package/dist/node_modules/lucide-react/dist/esm/icons/bell-plus.d.ts +2 -0
  260. package/dist/node_modules/lucide-react/dist/esm/icons/bell-ring.d.ts +2 -0
  261. package/dist/node_modules/lucide-react/dist/esm/icons/bell.d.ts +2 -0
  262. package/dist/node_modules/lucide-react/dist/esm/icons/between-horizontal-end.d.ts +2 -0
  263. package/dist/node_modules/lucide-react/dist/esm/icons/between-horizontal-start.d.ts +2 -0
  264. package/dist/node_modules/lucide-react/dist/esm/icons/between-vertical-end.d.ts +2 -0
  265. package/dist/node_modules/lucide-react/dist/esm/icons/between-vertical-start.d.ts +2 -0
  266. package/dist/node_modules/lucide-react/dist/esm/icons/biceps-flexed.d.ts +2 -0
  267. package/dist/node_modules/lucide-react/dist/esm/icons/bike.d.ts +2 -0
  268. package/dist/node_modules/lucide-react/dist/esm/icons/binary.d.ts +2 -0
  269. package/dist/node_modules/lucide-react/dist/esm/icons/binoculars.d.ts +2 -0
  270. package/dist/node_modules/lucide-react/dist/esm/icons/biohazard.d.ts +2 -0
  271. package/dist/node_modules/lucide-react/dist/esm/icons/bird.d.ts +2 -0
  272. package/dist/node_modules/lucide-react/dist/esm/icons/bitcoin.d.ts +2 -0
  273. package/dist/node_modules/lucide-react/dist/esm/icons/blend.d.ts +2 -0
  274. package/dist/node_modules/lucide-react/dist/esm/icons/blinds.d.ts +2 -0
  275. package/dist/node_modules/lucide-react/dist/esm/icons/blocks.d.ts +2 -0
  276. package/dist/node_modules/lucide-react/dist/esm/icons/bluetooth-connected.d.ts +2 -0
  277. package/dist/node_modules/lucide-react/dist/esm/icons/bluetooth-off.d.ts +2 -0
  278. package/dist/node_modules/lucide-react/dist/esm/icons/bluetooth-searching.d.ts +2 -0
  279. package/dist/node_modules/lucide-react/dist/esm/icons/bluetooth.d.ts +2 -0
  280. package/dist/node_modules/lucide-react/dist/esm/icons/bold.d.ts +2 -0
  281. package/dist/node_modules/lucide-react/dist/esm/icons/bolt.d.ts +2 -0
  282. package/dist/node_modules/lucide-react/dist/esm/icons/bomb.d.ts +2 -0
  283. package/dist/node_modules/lucide-react/dist/esm/icons/bone.d.ts +2 -0
  284. package/dist/node_modules/lucide-react/dist/esm/icons/book-a.d.ts +2 -0
  285. package/dist/node_modules/lucide-react/dist/esm/icons/book-audio.d.ts +2 -0
  286. package/dist/node_modules/lucide-react/dist/esm/icons/book-check.d.ts +2 -0
  287. package/dist/node_modules/lucide-react/dist/esm/icons/book-copy.d.ts +2 -0
  288. package/dist/node_modules/lucide-react/dist/esm/icons/book-dashed.d.ts +2 -0
  289. package/dist/node_modules/lucide-react/dist/esm/icons/book-down.d.ts +2 -0
  290. package/dist/node_modules/lucide-react/dist/esm/icons/book-headphones.d.ts +2 -0
  291. package/dist/node_modules/lucide-react/dist/esm/icons/book-heart.d.ts +2 -0
  292. package/dist/node_modules/lucide-react/dist/esm/icons/book-image.d.ts +2 -0
  293. package/dist/node_modules/lucide-react/dist/esm/icons/book-key.d.ts +2 -0
  294. package/dist/node_modules/lucide-react/dist/esm/icons/book-lock.d.ts +2 -0
  295. package/dist/node_modules/lucide-react/dist/esm/icons/book-marked.d.ts +2 -0
  296. package/dist/node_modules/lucide-react/dist/esm/icons/book-minus.d.ts +2 -0
  297. package/dist/node_modules/lucide-react/dist/esm/icons/book-open-check.d.ts +2 -0
  298. package/dist/node_modules/lucide-react/dist/esm/icons/book-open-text.d.ts +2 -0
  299. package/dist/node_modules/lucide-react/dist/esm/icons/book-open.d.ts +2 -0
  300. package/dist/node_modules/lucide-react/dist/esm/icons/book-plus.d.ts +2 -0
  301. package/dist/node_modules/lucide-react/dist/esm/icons/book-text.d.ts +2 -0
  302. package/dist/node_modules/lucide-react/dist/esm/icons/book-type.d.ts +2 -0
  303. package/dist/node_modules/lucide-react/dist/esm/icons/book-up-2.d.ts +2 -0
  304. package/dist/node_modules/lucide-react/dist/esm/icons/book-up.d.ts +2 -0
  305. package/dist/node_modules/lucide-react/dist/esm/icons/book-user.d.ts +2 -0
  306. package/dist/node_modules/lucide-react/dist/esm/icons/book-x.d.ts +2 -0
  307. package/dist/node_modules/lucide-react/dist/esm/icons/book.d.ts +2 -0
  308. package/dist/node_modules/lucide-react/dist/esm/icons/bookmark-check.d.ts +2 -0
  309. package/dist/node_modules/lucide-react/dist/esm/icons/bookmark-minus.d.ts +2 -0
  310. package/dist/node_modules/lucide-react/dist/esm/icons/bookmark-plus.d.ts +2 -0
  311. package/dist/node_modules/lucide-react/dist/esm/icons/bookmark-x.d.ts +2 -0
  312. package/dist/node_modules/lucide-react/dist/esm/icons/bookmark.d.ts +2 -0
  313. package/dist/node_modules/lucide-react/dist/esm/icons/boom-box.d.ts +2 -0
  314. package/dist/node_modules/lucide-react/dist/esm/icons/bot-message-square.d.ts +2 -0
  315. package/dist/node_modules/lucide-react/dist/esm/icons/bot-off.d.ts +2 -0
  316. package/dist/node_modules/lucide-react/dist/esm/icons/bot.d.ts +2 -0
  317. package/dist/node_modules/lucide-react/dist/esm/icons/box.d.ts +2 -0
  318. package/dist/node_modules/lucide-react/dist/esm/icons/boxes.d.ts +2 -0
  319. package/dist/node_modules/lucide-react/dist/esm/icons/braces.d.ts +2 -0
  320. package/dist/node_modules/lucide-react/dist/esm/icons/brackets.d.ts +2 -0
  321. package/dist/node_modules/lucide-react/dist/esm/icons/brain-circuit.d.ts +2 -0
  322. package/dist/node_modules/lucide-react/dist/esm/icons/brain-cog.d.ts +2 -0
  323. package/dist/node_modules/lucide-react/dist/esm/icons/brain.d.ts +2 -0
  324. package/dist/node_modules/lucide-react/dist/esm/icons/brick-wall.d.ts +2 -0
  325. package/dist/node_modules/lucide-react/dist/esm/icons/briefcase-business.d.ts +2 -0
  326. package/dist/node_modules/lucide-react/dist/esm/icons/briefcase-conveyor-belt.d.ts +2 -0
  327. package/dist/node_modules/lucide-react/dist/esm/icons/briefcase-medical.d.ts +2 -0
  328. package/dist/node_modules/lucide-react/dist/esm/icons/briefcase.d.ts +2 -0
  329. package/dist/node_modules/lucide-react/dist/esm/icons/bring-to-front.d.ts +2 -0
  330. package/dist/node_modules/lucide-react/dist/esm/icons/brush.d.ts +2 -0
  331. package/dist/node_modules/lucide-react/dist/esm/icons/bug-off.d.ts +2 -0
  332. package/dist/node_modules/lucide-react/dist/esm/icons/bug-play.d.ts +2 -0
  333. package/dist/node_modules/lucide-react/dist/esm/icons/bug.d.ts +2 -0
  334. package/dist/node_modules/lucide-react/dist/esm/icons/building-2.d.ts +2 -0
  335. package/dist/node_modules/lucide-react/dist/esm/icons/building.d.ts +2 -0
  336. package/dist/node_modules/lucide-react/dist/esm/icons/bus-front.d.ts +2 -0
  337. package/dist/node_modules/lucide-react/dist/esm/icons/bus.d.ts +2 -0
  338. package/dist/node_modules/lucide-react/dist/esm/icons/cable-car.d.ts +2 -0
  339. package/dist/node_modules/lucide-react/dist/esm/icons/cable.d.ts +2 -0
  340. package/dist/node_modules/lucide-react/dist/esm/icons/cake-slice.d.ts +2 -0
  341. package/dist/node_modules/lucide-react/dist/esm/icons/cake.d.ts +2 -0
  342. package/dist/node_modules/lucide-react/dist/esm/icons/calculator.d.ts +2 -0
  343. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-1.d.ts +2 -0
  344. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-arrow-down.d.ts +2 -0
  345. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-arrow-up.d.ts +2 -0
  346. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-check-2.d.ts +2 -0
  347. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-check.d.ts +2 -0
  348. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-clock.d.ts +2 -0
  349. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-cog.d.ts +2 -0
  350. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-days.d.ts +2 -0
  351. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-fold.d.ts +2 -0
  352. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-heart.d.ts +2 -0
  353. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-minus-2.d.ts +2 -0
  354. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-minus.d.ts +2 -0
  355. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-off.d.ts +2 -0
  356. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-plus-2.d.ts +2 -0
  357. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-plus.d.ts +2 -0
  358. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-range.d.ts +2 -0
  359. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-search.d.ts +2 -0
  360. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-sync.d.ts +2 -0
  361. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-x-2.d.ts +2 -0
  362. package/dist/node_modules/lucide-react/dist/esm/icons/calendar-x.d.ts +2 -0
  363. package/dist/node_modules/lucide-react/dist/esm/icons/calendar.d.ts +2 -0
  364. package/dist/node_modules/lucide-react/dist/esm/icons/camera-off.d.ts +2 -0
  365. package/dist/node_modules/lucide-react/dist/esm/icons/camera.d.ts +2 -0
  366. package/dist/node_modules/lucide-react/dist/esm/icons/candy-cane.d.ts +2 -0
  367. package/dist/node_modules/lucide-react/dist/esm/icons/candy-off.d.ts +2 -0
  368. package/dist/node_modules/lucide-react/dist/esm/icons/candy.d.ts +2 -0
  369. package/dist/node_modules/lucide-react/dist/esm/icons/cannabis.d.ts +2 -0
  370. package/dist/node_modules/lucide-react/dist/esm/icons/captions-off.d.ts +2 -0
  371. package/dist/node_modules/lucide-react/dist/esm/icons/captions.d.ts +2 -0
  372. package/dist/node_modules/lucide-react/dist/esm/icons/car-front.d.ts +2 -0
  373. package/dist/node_modules/lucide-react/dist/esm/icons/car-taxi-front.d.ts +2 -0
  374. package/dist/node_modules/lucide-react/dist/esm/icons/car.d.ts +2 -0
  375. package/dist/node_modules/lucide-react/dist/esm/icons/caravan.d.ts +2 -0
  376. package/dist/node_modules/lucide-react/dist/esm/icons/carrot.d.ts +2 -0
  377. package/dist/node_modules/lucide-react/dist/esm/icons/case-lower.d.ts +2 -0
  378. package/dist/node_modules/lucide-react/dist/esm/icons/case-sensitive.d.ts +2 -0
  379. package/dist/node_modules/lucide-react/dist/esm/icons/case-upper.d.ts +2 -0
  380. package/dist/node_modules/lucide-react/dist/esm/icons/cassette-tape.d.ts +2 -0
  381. package/dist/node_modules/lucide-react/dist/esm/icons/cast.d.ts +2 -0
  382. package/dist/node_modules/lucide-react/dist/esm/icons/castle.d.ts +2 -0
  383. package/dist/node_modules/lucide-react/dist/esm/icons/cat.d.ts +2 -0
  384. package/dist/node_modules/lucide-react/dist/esm/icons/cctv.d.ts +2 -0
  385. package/dist/node_modules/lucide-react/dist/esm/icons/chart-area.d.ts +2 -0
  386. package/dist/node_modules/lucide-react/dist/esm/icons/chart-bar-big.d.ts +2 -0
  387. package/dist/node_modules/lucide-react/dist/esm/icons/chart-bar-decreasing.d.ts +2 -0
  388. package/dist/node_modules/lucide-react/dist/esm/icons/chart-bar-increasing.d.ts +2 -0
  389. package/dist/node_modules/lucide-react/dist/esm/icons/chart-bar-stacked.d.ts +2 -0
  390. package/dist/node_modules/lucide-react/dist/esm/icons/chart-bar.d.ts +2 -0
  391. package/dist/node_modules/lucide-react/dist/esm/icons/chart-candlestick.d.ts +2 -0
  392. package/dist/node_modules/lucide-react/dist/esm/icons/chart-column-big.d.ts +2 -0
  393. package/dist/node_modules/lucide-react/dist/esm/icons/chart-column-decreasing.d.ts +2 -0
  394. package/dist/node_modules/lucide-react/dist/esm/icons/chart-column-increasing.d.ts +2 -0
  395. package/dist/node_modules/lucide-react/dist/esm/icons/chart-column-stacked.d.ts +2 -0
  396. package/dist/node_modules/lucide-react/dist/esm/icons/chart-column.d.ts +2 -0
  397. package/dist/node_modules/lucide-react/dist/esm/icons/chart-gantt.d.ts +2 -0
  398. package/dist/node_modules/lucide-react/dist/esm/icons/chart-line.d.ts +2 -0
  399. package/dist/node_modules/lucide-react/dist/esm/icons/chart-network.d.ts +2 -0
  400. package/dist/node_modules/lucide-react/dist/esm/icons/chart-no-axes-column-decreasing.d.ts +2 -0
  401. package/dist/node_modules/lucide-react/dist/esm/icons/chart-no-axes-column-increasing.d.ts +2 -0
  402. package/dist/node_modules/lucide-react/dist/esm/icons/chart-no-axes-column.d.ts +2 -0
  403. package/dist/node_modules/lucide-react/dist/esm/icons/chart-no-axes-combined.d.ts +2 -0
  404. package/dist/node_modules/lucide-react/dist/esm/icons/chart-no-axes-gantt.d.ts +2 -0
  405. package/dist/node_modules/lucide-react/dist/esm/icons/chart-pie.d.ts +2 -0
  406. package/dist/node_modules/lucide-react/dist/esm/icons/chart-scatter.d.ts +2 -0
  407. package/dist/node_modules/lucide-react/dist/esm/icons/chart-spline.d.ts +2 -0
  408. package/dist/node_modules/lucide-react/dist/esm/icons/check-check.d.ts +2 -0
  409. package/dist/node_modules/lucide-react/dist/esm/icons/check.d.ts +2 -0
  410. package/dist/node_modules/lucide-react/dist/esm/icons/chef-hat.d.ts +2 -0
  411. package/dist/node_modules/lucide-react/dist/esm/icons/cherry.d.ts +2 -0
  412. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-down.d.ts +2 -0
  413. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-first.d.ts +2 -0
  414. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-last.d.ts +2 -0
  415. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-left.d.ts +2 -0
  416. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-right.d.ts +2 -0
  417. package/dist/node_modules/lucide-react/dist/esm/icons/chevron-up.d.ts +2 -0
  418. package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-down-up.d.ts +2 -0
  419. package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-down.d.ts +2 -0
  420. package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-left-right-ellipsis.d.ts +2 -0
  421. package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-left-right.d.ts +2 -0
  422. package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-left.d.ts +2 -0
  423. package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-right-left.d.ts +2 -0
  424. package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-right.d.ts +2 -0
  425. package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-up-down.d.ts +2 -0
  426. package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-up.d.ts +2 -0
  427. package/dist/node_modules/lucide-react/dist/esm/icons/chrome.d.ts +2 -0
  428. package/dist/node_modules/lucide-react/dist/esm/icons/church.d.ts +2 -0
  429. package/dist/node_modules/lucide-react/dist/esm/icons/cigarette-off.d.ts +2 -0
  430. package/dist/node_modules/lucide-react/dist/esm/icons/cigarette.d.ts +2 -0
  431. package/dist/node_modules/lucide-react/dist/esm/icons/circle-alert.d.ts +2 -0
  432. package/dist/node_modules/lucide-react/dist/esm/icons/circle-arrow-down.d.ts +2 -0
  433. package/dist/node_modules/lucide-react/dist/esm/icons/circle-arrow-left.d.ts +2 -0
  434. package/dist/node_modules/lucide-react/dist/esm/icons/circle-arrow-out-down-left.d.ts +2 -0
  435. package/dist/node_modules/lucide-react/dist/esm/icons/circle-arrow-out-down-right.d.ts +2 -0
  436. package/dist/node_modules/lucide-react/dist/esm/icons/circle-arrow-out-up-left.d.ts +2 -0
  437. package/dist/node_modules/lucide-react/dist/esm/icons/circle-arrow-out-up-right.d.ts +2 -0
  438. package/dist/node_modules/lucide-react/dist/esm/icons/circle-arrow-right.d.ts +2 -0
  439. package/dist/node_modules/lucide-react/dist/esm/icons/circle-arrow-up.d.ts +2 -0
  440. package/dist/node_modules/lucide-react/dist/esm/icons/circle-check-big.d.ts +2 -0
  441. package/dist/node_modules/lucide-react/dist/esm/icons/circle-check.d.ts +2 -0
  442. package/dist/node_modules/lucide-react/dist/esm/icons/circle-chevron-down.d.ts +2 -0
  443. package/dist/node_modules/lucide-react/dist/esm/icons/circle-chevron-left.d.ts +2 -0
  444. package/dist/node_modules/lucide-react/dist/esm/icons/circle-chevron-right.d.ts +2 -0
  445. package/dist/node_modules/lucide-react/dist/esm/icons/circle-chevron-up.d.ts +2 -0
  446. package/dist/node_modules/lucide-react/dist/esm/icons/circle-dashed.d.ts +2 -0
  447. package/dist/node_modules/lucide-react/dist/esm/icons/circle-divide.d.ts +2 -0
  448. package/dist/node_modules/lucide-react/dist/esm/icons/circle-dollar-sign.d.ts +2 -0
  449. package/dist/node_modules/lucide-react/dist/esm/icons/circle-dot-dashed.d.ts +2 -0
  450. package/dist/node_modules/lucide-react/dist/esm/icons/circle-dot.d.ts +2 -0
  451. package/dist/node_modules/lucide-react/dist/esm/icons/circle-ellipsis.d.ts +2 -0
  452. package/dist/node_modules/lucide-react/dist/esm/icons/circle-equal.d.ts +2 -0
  453. package/dist/node_modules/lucide-react/dist/esm/icons/circle-fading-arrow-up.d.ts +2 -0
  454. package/dist/node_modules/lucide-react/dist/esm/icons/circle-fading-plus.d.ts +2 -0
  455. package/dist/node_modules/lucide-react/dist/esm/icons/circle-gauge.d.ts +2 -0
  456. package/dist/node_modules/lucide-react/dist/esm/icons/circle-help.d.ts +2 -0
  457. package/dist/node_modules/lucide-react/dist/esm/icons/circle-minus.d.ts +2 -0
  458. package/dist/node_modules/lucide-react/dist/esm/icons/circle-off.d.ts +2 -0
  459. package/dist/node_modules/lucide-react/dist/esm/icons/circle-parking-off.d.ts +2 -0
  460. package/dist/node_modules/lucide-react/dist/esm/icons/circle-parking.d.ts +2 -0
  461. package/dist/node_modules/lucide-react/dist/esm/icons/circle-pause.d.ts +2 -0
  462. package/dist/node_modules/lucide-react/dist/esm/icons/circle-percent.d.ts +2 -0
  463. package/dist/node_modules/lucide-react/dist/esm/icons/circle-play.d.ts +2 -0
  464. package/dist/node_modules/lucide-react/dist/esm/icons/circle-plus.d.ts +2 -0
  465. package/dist/node_modules/lucide-react/dist/esm/icons/circle-power.d.ts +2 -0
  466. package/dist/node_modules/lucide-react/dist/esm/icons/circle-slash-2.d.ts +2 -0
  467. package/dist/node_modules/lucide-react/dist/esm/icons/circle-slash.d.ts +2 -0
  468. package/dist/node_modules/lucide-react/dist/esm/icons/circle-stop.d.ts +2 -0
  469. package/dist/node_modules/lucide-react/dist/esm/icons/circle-user-round.d.ts +2 -0
  470. package/dist/node_modules/lucide-react/dist/esm/icons/circle-user.d.ts +2 -0
  471. package/dist/node_modules/lucide-react/dist/esm/icons/circle-x.d.ts +2 -0
  472. package/dist/node_modules/lucide-react/dist/esm/icons/circle.d.ts +2 -0
  473. package/dist/node_modules/lucide-react/dist/esm/icons/circuit-board.d.ts +2 -0
  474. package/dist/node_modules/lucide-react/dist/esm/icons/citrus.d.ts +2 -0
  475. package/dist/node_modules/lucide-react/dist/esm/icons/clapperboard.d.ts +2 -0
  476. package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-check.d.ts +2 -0
  477. package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-copy.d.ts +2 -0
  478. package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-list.d.ts +2 -0
  479. package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-minus.d.ts +2 -0
  480. package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-paste.d.ts +2 -0
  481. package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-pen-line.d.ts +2 -0
  482. package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-pen.d.ts +2 -0
  483. package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-plus.d.ts +2 -0
  484. package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-type.d.ts +2 -0
  485. package/dist/node_modules/lucide-react/dist/esm/icons/clipboard-x.d.ts +2 -0
  486. package/dist/node_modules/lucide-react/dist/esm/icons/clipboard.d.ts +2 -0
  487. package/dist/node_modules/lucide-react/dist/esm/icons/clock-1.d.ts +2 -0
  488. package/dist/node_modules/lucide-react/dist/esm/icons/clock-10.d.ts +2 -0
  489. package/dist/node_modules/lucide-react/dist/esm/icons/clock-11.d.ts +2 -0
  490. package/dist/node_modules/lucide-react/dist/esm/icons/clock-12.d.ts +2 -0
  491. package/dist/node_modules/lucide-react/dist/esm/icons/clock-2.d.ts +2 -0
  492. package/dist/node_modules/lucide-react/dist/esm/icons/clock-3.d.ts +2 -0
  493. package/dist/node_modules/lucide-react/dist/esm/icons/clock-4.d.ts +2 -0
  494. package/dist/node_modules/lucide-react/dist/esm/icons/clock-5.d.ts +2 -0
  495. package/dist/node_modules/lucide-react/dist/esm/icons/clock-6.d.ts +2 -0
  496. package/dist/node_modules/lucide-react/dist/esm/icons/clock-7.d.ts +2 -0
  497. package/dist/node_modules/lucide-react/dist/esm/icons/clock-8.d.ts +2 -0
  498. package/dist/node_modules/lucide-react/dist/esm/icons/clock-9.d.ts +2 -0
  499. package/dist/node_modules/lucide-react/dist/esm/icons/clock-alert.d.ts +2 -0
  500. package/dist/node_modules/lucide-react/dist/esm/icons/clock-arrow-down.d.ts +2 -0
  501. package/dist/node_modules/lucide-react/dist/esm/icons/clock-arrow-up.d.ts +2 -0
  502. package/dist/node_modules/lucide-react/dist/esm/icons/clock.d.ts +2 -0
  503. package/dist/node_modules/lucide-react/dist/esm/icons/cloud-alert.d.ts +2 -0
  504. package/dist/node_modules/lucide-react/dist/esm/icons/cloud-cog.d.ts +2 -0
  505. package/dist/node_modules/lucide-react/dist/esm/icons/cloud-download.d.ts +2 -0
  506. package/dist/node_modules/lucide-react/dist/esm/icons/cloud-drizzle.d.ts +2 -0
  507. package/dist/node_modules/lucide-react/dist/esm/icons/cloud-fog.d.ts +2 -0
  508. package/dist/node_modules/lucide-react/dist/esm/icons/cloud-hail.d.ts +2 -0
  509. package/dist/node_modules/lucide-react/dist/esm/icons/cloud-lightning.d.ts +2 -0
  510. package/dist/node_modules/lucide-react/dist/esm/icons/cloud-moon-rain.d.ts +2 -0
  511. package/dist/node_modules/lucide-react/dist/esm/icons/cloud-moon.d.ts +2 -0
  512. package/dist/node_modules/lucide-react/dist/esm/icons/cloud-off.d.ts +2 -0
  513. package/dist/node_modules/lucide-react/dist/esm/icons/cloud-rain-wind.d.ts +2 -0
  514. package/dist/node_modules/lucide-react/dist/esm/icons/cloud-rain.d.ts +2 -0
  515. package/dist/node_modules/lucide-react/dist/esm/icons/cloud-snow.d.ts +2 -0
  516. package/dist/node_modules/lucide-react/dist/esm/icons/cloud-sun-rain.d.ts +2 -0
  517. package/dist/node_modules/lucide-react/dist/esm/icons/cloud-sun.d.ts +2 -0
  518. package/dist/node_modules/lucide-react/dist/esm/icons/cloud-upload.d.ts +2 -0
  519. package/dist/node_modules/lucide-react/dist/esm/icons/cloud.d.ts +2 -0
  520. package/dist/node_modules/lucide-react/dist/esm/icons/cloudy.d.ts +2 -0
  521. package/dist/node_modules/lucide-react/dist/esm/icons/clover.d.ts +2 -0
  522. package/dist/node_modules/lucide-react/dist/esm/icons/club.d.ts +2 -0
  523. package/dist/node_modules/lucide-react/dist/esm/icons/code-xml.d.ts +2 -0
  524. package/dist/node_modules/lucide-react/dist/esm/icons/code.d.ts +2 -0
  525. package/dist/node_modules/lucide-react/dist/esm/icons/codepen.d.ts +2 -0
  526. package/dist/node_modules/lucide-react/dist/esm/icons/codesandbox.d.ts +2 -0
  527. package/dist/node_modules/lucide-react/dist/esm/icons/coffee.d.ts +2 -0
  528. package/dist/node_modules/lucide-react/dist/esm/icons/cog.d.ts +2 -0
  529. package/dist/node_modules/lucide-react/dist/esm/icons/coins.d.ts +2 -0
  530. package/dist/node_modules/lucide-react/dist/esm/icons/columns-2.d.ts +2 -0
  531. package/dist/node_modules/lucide-react/dist/esm/icons/columns-3.d.ts +2 -0
  532. package/dist/node_modules/lucide-react/dist/esm/icons/columns-4.d.ts +2 -0
  533. package/dist/node_modules/lucide-react/dist/esm/icons/combine.d.ts +2 -0
  534. package/dist/node_modules/lucide-react/dist/esm/icons/command.d.ts +2 -0
  535. package/dist/node_modules/lucide-react/dist/esm/icons/compass.d.ts +2 -0
  536. package/dist/node_modules/lucide-react/dist/esm/icons/component.d.ts +2 -0
  537. package/dist/node_modules/lucide-react/dist/esm/icons/computer.d.ts +2 -0
  538. package/dist/node_modules/lucide-react/dist/esm/icons/concierge-bell.d.ts +2 -0
  539. package/dist/node_modules/lucide-react/dist/esm/icons/cone.d.ts +2 -0
  540. package/dist/node_modules/lucide-react/dist/esm/icons/construction.d.ts +2 -0
  541. package/dist/node_modules/lucide-react/dist/esm/icons/contact-round.d.ts +2 -0
  542. package/dist/node_modules/lucide-react/dist/esm/icons/contact.d.ts +2 -0
  543. package/dist/node_modules/lucide-react/dist/esm/icons/container.d.ts +2 -0
  544. package/dist/node_modules/lucide-react/dist/esm/icons/contrast.d.ts +2 -0
  545. package/dist/node_modules/lucide-react/dist/esm/icons/cookie.d.ts +2 -0
  546. package/dist/node_modules/lucide-react/dist/esm/icons/cooking-pot.d.ts +2 -0
  547. package/dist/node_modules/lucide-react/dist/esm/icons/copy-check.d.ts +2 -0
  548. package/dist/node_modules/lucide-react/dist/esm/icons/copy-minus.d.ts +2 -0
  549. package/dist/node_modules/lucide-react/dist/esm/icons/copy-plus.d.ts +2 -0
  550. package/dist/node_modules/lucide-react/dist/esm/icons/copy-slash.d.ts +2 -0
  551. package/dist/node_modules/lucide-react/dist/esm/icons/copy-x.d.ts +2 -0
  552. package/dist/node_modules/lucide-react/dist/esm/icons/copy.d.ts +2 -0
  553. package/dist/node_modules/lucide-react/dist/esm/icons/copyleft.d.ts +2 -0
  554. package/dist/node_modules/lucide-react/dist/esm/icons/copyright.d.ts +2 -0
  555. package/dist/node_modules/lucide-react/dist/esm/icons/corner-down-left.d.ts +2 -0
  556. package/dist/node_modules/lucide-react/dist/esm/icons/corner-down-right.d.ts +2 -0
  557. package/dist/node_modules/lucide-react/dist/esm/icons/corner-left-down.d.ts +2 -0
  558. package/dist/node_modules/lucide-react/dist/esm/icons/corner-left-up.d.ts +2 -0
  559. package/dist/node_modules/lucide-react/dist/esm/icons/corner-right-down.d.ts +2 -0
  560. package/dist/node_modules/lucide-react/dist/esm/icons/corner-right-up.d.ts +2 -0
  561. package/dist/node_modules/lucide-react/dist/esm/icons/corner-up-left.d.ts +2 -0
  562. package/dist/node_modules/lucide-react/dist/esm/icons/corner-up-right.d.ts +2 -0
  563. package/dist/node_modules/lucide-react/dist/esm/icons/cpu.d.ts +2 -0
  564. package/dist/node_modules/lucide-react/dist/esm/icons/creative-commons.d.ts +2 -0
  565. package/dist/node_modules/lucide-react/dist/esm/icons/credit-card.d.ts +2 -0
  566. package/dist/node_modules/lucide-react/dist/esm/icons/croissant.d.ts +2 -0
  567. package/dist/node_modules/lucide-react/dist/esm/icons/crop.d.ts +2 -0
  568. package/dist/node_modules/lucide-react/dist/esm/icons/cross.d.ts +2 -0
  569. package/dist/node_modules/lucide-react/dist/esm/icons/crosshair.d.ts +2 -0
  570. package/dist/node_modules/lucide-react/dist/esm/icons/crown.d.ts +2 -0
  571. package/dist/node_modules/lucide-react/dist/esm/icons/cuboid.d.ts +2 -0
  572. package/dist/node_modules/lucide-react/dist/esm/icons/cup-soda.d.ts +2 -0
  573. package/dist/node_modules/lucide-react/dist/esm/icons/currency.d.ts +2 -0
  574. package/dist/node_modules/lucide-react/dist/esm/icons/cylinder.d.ts +2 -0
  575. package/dist/node_modules/lucide-react/dist/esm/icons/dam.d.ts +2 -0
  576. package/dist/node_modules/lucide-react/dist/esm/icons/database-backup.d.ts +2 -0
  577. package/dist/node_modules/lucide-react/dist/esm/icons/database-zap.d.ts +2 -0
  578. package/dist/node_modules/lucide-react/dist/esm/icons/database.d.ts +2 -0
  579. package/dist/node_modules/lucide-react/dist/esm/icons/delete.d.ts +2 -0
  580. package/dist/node_modules/lucide-react/dist/esm/icons/dessert.d.ts +2 -0
  581. package/dist/node_modules/lucide-react/dist/esm/icons/diameter.d.ts +2 -0
  582. package/dist/node_modules/lucide-react/dist/esm/icons/diamond-minus.d.ts +2 -0
  583. package/dist/node_modules/lucide-react/dist/esm/icons/diamond-percent.d.ts +2 -0
  584. package/dist/node_modules/lucide-react/dist/esm/icons/diamond-plus.d.ts +2 -0
  585. package/dist/node_modules/lucide-react/dist/esm/icons/diamond.d.ts +2 -0
  586. package/dist/node_modules/lucide-react/dist/esm/icons/dice-1.d.ts +2 -0
  587. package/dist/node_modules/lucide-react/dist/esm/icons/dice-2.d.ts +2 -0
  588. package/dist/node_modules/lucide-react/dist/esm/icons/dice-3.d.ts +2 -0
  589. package/dist/node_modules/lucide-react/dist/esm/icons/dice-4.d.ts +2 -0
  590. package/dist/node_modules/lucide-react/dist/esm/icons/dice-5.d.ts +2 -0
  591. package/dist/node_modules/lucide-react/dist/esm/icons/dice-6.d.ts +2 -0
  592. package/dist/node_modules/lucide-react/dist/esm/icons/dices.d.ts +2 -0
  593. package/dist/node_modules/lucide-react/dist/esm/icons/diff.d.ts +2 -0
  594. package/dist/node_modules/lucide-react/dist/esm/icons/disc-2.d.ts +2 -0
  595. package/dist/node_modules/lucide-react/dist/esm/icons/disc-3.d.ts +2 -0
  596. package/dist/node_modules/lucide-react/dist/esm/icons/disc-album.d.ts +2 -0
  597. package/dist/node_modules/lucide-react/dist/esm/icons/disc.d.ts +2 -0
  598. package/dist/node_modules/lucide-react/dist/esm/icons/divide.d.ts +2 -0
  599. package/dist/node_modules/lucide-react/dist/esm/icons/dna-off.d.ts +2 -0
  600. package/dist/node_modules/lucide-react/dist/esm/icons/dna.d.ts +2 -0
  601. package/dist/node_modules/lucide-react/dist/esm/icons/dock.d.ts +2 -0
  602. package/dist/node_modules/lucide-react/dist/esm/icons/dog.d.ts +2 -0
  603. package/dist/node_modules/lucide-react/dist/esm/icons/dollar-sign.d.ts +2 -0
  604. package/dist/node_modules/lucide-react/dist/esm/icons/donut.d.ts +2 -0
  605. package/dist/node_modules/lucide-react/dist/esm/icons/door-closed.d.ts +2 -0
  606. package/dist/node_modules/lucide-react/dist/esm/icons/door-open.d.ts +2 -0
  607. package/dist/node_modules/lucide-react/dist/esm/icons/dot.d.ts +2 -0
  608. package/dist/node_modules/lucide-react/dist/esm/icons/download.d.ts +2 -0
  609. package/dist/node_modules/lucide-react/dist/esm/icons/drafting-compass.d.ts +2 -0
  610. package/dist/node_modules/lucide-react/dist/esm/icons/drama.d.ts +2 -0
  611. package/dist/node_modules/lucide-react/dist/esm/icons/dribbble.d.ts +2 -0
  612. package/dist/node_modules/lucide-react/dist/esm/icons/drill.d.ts +2 -0
  613. package/dist/node_modules/lucide-react/dist/esm/icons/droplet.d.ts +2 -0
  614. package/dist/node_modules/lucide-react/dist/esm/icons/droplets.d.ts +2 -0
  615. package/dist/node_modules/lucide-react/dist/esm/icons/drum.d.ts +2 -0
  616. package/dist/node_modules/lucide-react/dist/esm/icons/drumstick.d.ts +2 -0
  617. package/dist/node_modules/lucide-react/dist/esm/icons/dumbbell.d.ts +2 -0
  618. package/dist/node_modules/lucide-react/dist/esm/icons/ear-off.d.ts +2 -0
  619. package/dist/node_modules/lucide-react/dist/esm/icons/ear.d.ts +2 -0
  620. package/dist/node_modules/lucide-react/dist/esm/icons/earth-lock.d.ts +2 -0
  621. package/dist/node_modules/lucide-react/dist/esm/icons/earth.d.ts +2 -0
  622. package/dist/node_modules/lucide-react/dist/esm/icons/eclipse.d.ts +2 -0
  623. package/dist/node_modules/lucide-react/dist/esm/icons/egg-fried.d.ts +2 -0
  624. package/dist/node_modules/lucide-react/dist/esm/icons/egg-off.d.ts +2 -0
  625. package/dist/node_modules/lucide-react/dist/esm/icons/egg.d.ts +2 -0
  626. package/dist/node_modules/lucide-react/dist/esm/icons/ellipsis-vertical.d.ts +2 -0
  627. package/dist/node_modules/lucide-react/dist/esm/icons/ellipsis.d.ts +2 -0
  628. package/dist/node_modules/lucide-react/dist/esm/icons/equal-approximately.d.ts +2 -0
  629. package/dist/node_modules/lucide-react/dist/esm/icons/equal-not.d.ts +2 -0
  630. package/dist/node_modules/lucide-react/dist/esm/icons/equal.d.ts +2 -0
  631. package/dist/node_modules/lucide-react/dist/esm/icons/eraser.d.ts +2 -0
  632. package/dist/node_modules/lucide-react/dist/esm/icons/ethernet-port.d.ts +2 -0
  633. package/dist/node_modules/lucide-react/dist/esm/icons/euro.d.ts +2 -0
  634. package/dist/node_modules/lucide-react/dist/esm/icons/expand.d.ts +2 -0
  635. package/dist/node_modules/lucide-react/dist/esm/icons/external-link.d.ts +2 -0
  636. package/dist/node_modules/lucide-react/dist/esm/icons/eye-closed.d.ts +2 -0
  637. package/dist/node_modules/lucide-react/dist/esm/icons/eye-off.d.ts +2 -0
  638. package/dist/node_modules/lucide-react/dist/esm/icons/eye.d.ts +2 -0
  639. package/dist/node_modules/lucide-react/dist/esm/icons/facebook.d.ts +2 -0
  640. package/dist/node_modules/lucide-react/dist/esm/icons/factory.d.ts +2 -0
  641. package/dist/node_modules/lucide-react/dist/esm/icons/fan.d.ts +2 -0
  642. package/dist/node_modules/lucide-react/dist/esm/icons/fast-forward.d.ts +2 -0
  643. package/dist/node_modules/lucide-react/dist/esm/icons/feather.d.ts +2 -0
  644. package/dist/node_modules/lucide-react/dist/esm/icons/fence.d.ts +2 -0
  645. package/dist/node_modules/lucide-react/dist/esm/icons/ferris-wheel.d.ts +2 -0
  646. package/dist/node_modules/lucide-react/dist/esm/icons/figma.d.ts +2 -0
  647. package/dist/node_modules/lucide-react/dist/esm/icons/file-archive.d.ts +2 -0
  648. package/dist/node_modules/lucide-react/dist/esm/icons/file-audio-2.d.ts +2 -0
  649. package/dist/node_modules/lucide-react/dist/esm/icons/file-audio.d.ts +2 -0
  650. package/dist/node_modules/lucide-react/dist/esm/icons/file-axis-3d.d.ts +2 -0
  651. package/dist/node_modules/lucide-react/dist/esm/icons/file-badge-2.d.ts +2 -0
  652. package/dist/node_modules/lucide-react/dist/esm/icons/file-badge.d.ts +2 -0
  653. package/dist/node_modules/lucide-react/dist/esm/icons/file-box.d.ts +2 -0
  654. package/dist/node_modules/lucide-react/dist/esm/icons/file-chart-column-increasing.d.ts +2 -0
  655. package/dist/node_modules/lucide-react/dist/esm/icons/file-chart-column.d.ts +2 -0
  656. package/dist/node_modules/lucide-react/dist/esm/icons/file-chart-line.d.ts +2 -0
  657. package/dist/node_modules/lucide-react/dist/esm/icons/file-chart-pie.d.ts +2 -0
  658. package/dist/node_modules/lucide-react/dist/esm/icons/file-check-2.d.ts +2 -0
  659. package/dist/node_modules/lucide-react/dist/esm/icons/file-check.d.ts +2 -0
  660. package/dist/node_modules/lucide-react/dist/esm/icons/file-clock.d.ts +2 -0
  661. package/dist/node_modules/lucide-react/dist/esm/icons/file-code-2.d.ts +2 -0
  662. package/dist/node_modules/lucide-react/dist/esm/icons/file-code.d.ts +2 -0
  663. package/dist/node_modules/lucide-react/dist/esm/icons/file-cog.d.ts +2 -0
  664. package/dist/node_modules/lucide-react/dist/esm/icons/file-diff.d.ts +2 -0
  665. package/dist/node_modules/lucide-react/dist/esm/icons/file-digit.d.ts +2 -0
  666. package/dist/node_modules/lucide-react/dist/esm/icons/file-down.d.ts +2 -0
  667. package/dist/node_modules/lucide-react/dist/esm/icons/file-heart.d.ts +2 -0
  668. package/dist/node_modules/lucide-react/dist/esm/icons/file-image.d.ts +2 -0
  669. package/dist/node_modules/lucide-react/dist/esm/icons/file-input.d.ts +2 -0
  670. package/dist/node_modules/lucide-react/dist/esm/icons/file-json-2.d.ts +2 -0
  671. package/dist/node_modules/lucide-react/dist/esm/icons/file-json.d.ts +2 -0
  672. package/dist/node_modules/lucide-react/dist/esm/icons/file-key-2.d.ts +2 -0
  673. package/dist/node_modules/lucide-react/dist/esm/icons/file-key.d.ts +2 -0
  674. package/dist/node_modules/lucide-react/dist/esm/icons/file-lock-2.d.ts +2 -0
  675. package/dist/node_modules/lucide-react/dist/esm/icons/file-lock.d.ts +2 -0
  676. package/dist/node_modules/lucide-react/dist/esm/icons/file-minus-2.d.ts +2 -0
  677. package/dist/node_modules/lucide-react/dist/esm/icons/file-minus.d.ts +2 -0
  678. package/dist/node_modules/lucide-react/dist/esm/icons/file-music.d.ts +2 -0
  679. package/dist/node_modules/lucide-react/dist/esm/icons/file-output.d.ts +2 -0
  680. package/dist/node_modules/lucide-react/dist/esm/icons/file-pen-line.d.ts +2 -0
  681. package/dist/node_modules/lucide-react/dist/esm/icons/file-pen.d.ts +2 -0
  682. package/dist/node_modules/lucide-react/dist/esm/icons/file-plus-2.d.ts +2 -0
  683. package/dist/node_modules/lucide-react/dist/esm/icons/file-plus.d.ts +2 -0
  684. package/dist/node_modules/lucide-react/dist/esm/icons/file-question.d.ts +2 -0
  685. package/dist/node_modules/lucide-react/dist/esm/icons/file-scan.d.ts +2 -0
  686. package/dist/node_modules/lucide-react/dist/esm/icons/file-search-2.d.ts +2 -0
  687. package/dist/node_modules/lucide-react/dist/esm/icons/file-search.d.ts +2 -0
  688. package/dist/node_modules/lucide-react/dist/esm/icons/file-sliders.d.ts +2 -0
  689. package/dist/node_modules/lucide-react/dist/esm/icons/file-spreadsheet.d.ts +2 -0
  690. package/dist/node_modules/lucide-react/dist/esm/icons/file-stack.d.ts +2 -0
  691. package/dist/node_modules/lucide-react/dist/esm/icons/file-symlink.d.ts +2 -0
  692. package/dist/node_modules/lucide-react/dist/esm/icons/file-terminal.d.ts +2 -0
  693. package/dist/node_modules/lucide-react/dist/esm/icons/file-text.d.ts +2 -0
  694. package/dist/node_modules/lucide-react/dist/esm/icons/file-type-2.d.ts +2 -0
  695. package/dist/node_modules/lucide-react/dist/esm/icons/file-type.d.ts +2 -0
  696. package/dist/node_modules/lucide-react/dist/esm/icons/file-up.d.ts +2 -0
  697. package/dist/node_modules/lucide-react/dist/esm/icons/file-user.d.ts +2 -0
  698. package/dist/node_modules/lucide-react/dist/esm/icons/file-video-2.d.ts +2 -0
  699. package/dist/node_modules/lucide-react/dist/esm/icons/file-video.d.ts +2 -0
  700. package/dist/node_modules/lucide-react/dist/esm/icons/file-volume-2.d.ts +2 -0
  701. package/dist/node_modules/lucide-react/dist/esm/icons/file-volume.d.ts +2 -0
  702. package/dist/node_modules/lucide-react/dist/esm/icons/file-warning.d.ts +2 -0
  703. package/dist/node_modules/lucide-react/dist/esm/icons/file-x-2.d.ts +2 -0
  704. package/dist/node_modules/lucide-react/dist/esm/icons/file-x.d.ts +2 -0
  705. package/dist/node_modules/lucide-react/dist/esm/icons/file.d.ts +2 -0
  706. package/dist/node_modules/lucide-react/dist/esm/icons/files.d.ts +2 -0
  707. package/dist/node_modules/lucide-react/dist/esm/icons/film.d.ts +2 -0
  708. package/dist/node_modules/lucide-react/dist/esm/icons/filter-x.d.ts +2 -0
  709. package/dist/node_modules/lucide-react/dist/esm/icons/filter.d.ts +2 -0
  710. package/dist/node_modules/lucide-react/dist/esm/icons/fingerprint.d.ts +2 -0
  711. package/dist/node_modules/lucide-react/dist/esm/icons/fire-extinguisher.d.ts +2 -0
  712. package/dist/node_modules/lucide-react/dist/esm/icons/fish-off.d.ts +2 -0
  713. package/dist/node_modules/lucide-react/dist/esm/icons/fish-symbol.d.ts +2 -0
  714. package/dist/node_modules/lucide-react/dist/esm/icons/fish.d.ts +2 -0
  715. package/dist/node_modules/lucide-react/dist/esm/icons/flag-off.d.ts +2 -0
  716. package/dist/node_modules/lucide-react/dist/esm/icons/flag-triangle-left.d.ts +2 -0
  717. package/dist/node_modules/lucide-react/dist/esm/icons/flag-triangle-right.d.ts +2 -0
  718. package/dist/node_modules/lucide-react/dist/esm/icons/flag.d.ts +2 -0
  719. package/dist/node_modules/lucide-react/dist/esm/icons/flame-kindling.d.ts +2 -0
  720. package/dist/node_modules/lucide-react/dist/esm/icons/flame.d.ts +2 -0
  721. package/dist/node_modules/lucide-react/dist/esm/icons/flashlight-off.d.ts +2 -0
  722. package/dist/node_modules/lucide-react/dist/esm/icons/flashlight.d.ts +2 -0
  723. package/dist/node_modules/lucide-react/dist/esm/icons/flask-conical-off.d.ts +2 -0
  724. package/dist/node_modules/lucide-react/dist/esm/icons/flask-conical.d.ts +2 -0
  725. package/dist/node_modules/lucide-react/dist/esm/icons/flask-round.d.ts +2 -0
  726. package/dist/node_modules/lucide-react/dist/esm/icons/flip-horizontal-2.d.ts +2 -0
  727. package/dist/node_modules/lucide-react/dist/esm/icons/flip-horizontal.d.ts +2 -0
  728. package/dist/node_modules/lucide-react/dist/esm/icons/flip-vertical-2.d.ts +2 -0
  729. package/dist/node_modules/lucide-react/dist/esm/icons/flip-vertical.d.ts +2 -0
  730. package/dist/node_modules/lucide-react/dist/esm/icons/flower-2.d.ts +2 -0
  731. package/dist/node_modules/lucide-react/dist/esm/icons/flower.d.ts +2 -0
  732. package/dist/node_modules/lucide-react/dist/esm/icons/focus.d.ts +2 -0
  733. package/dist/node_modules/lucide-react/dist/esm/icons/fold-horizontal.d.ts +2 -0
  734. package/dist/node_modules/lucide-react/dist/esm/icons/fold-vertical.d.ts +2 -0
  735. package/dist/node_modules/lucide-react/dist/esm/icons/folder-archive.d.ts +2 -0
  736. package/dist/node_modules/lucide-react/dist/esm/icons/folder-check.d.ts +2 -0
  737. package/dist/node_modules/lucide-react/dist/esm/icons/folder-clock.d.ts +2 -0
  738. package/dist/node_modules/lucide-react/dist/esm/icons/folder-closed.d.ts +2 -0
  739. package/dist/node_modules/lucide-react/dist/esm/icons/folder-code.d.ts +2 -0
  740. package/dist/node_modules/lucide-react/dist/esm/icons/folder-cog.d.ts +2 -0
  741. package/dist/node_modules/lucide-react/dist/esm/icons/folder-dot.d.ts +2 -0
  742. package/dist/node_modules/lucide-react/dist/esm/icons/folder-down.d.ts +2 -0
  743. package/dist/node_modules/lucide-react/dist/esm/icons/folder-git-2.d.ts +2 -0
  744. package/dist/node_modules/lucide-react/dist/esm/icons/folder-git.d.ts +2 -0
  745. package/dist/node_modules/lucide-react/dist/esm/icons/folder-heart.d.ts +2 -0
  746. package/dist/node_modules/lucide-react/dist/esm/icons/folder-input.d.ts +2 -0
  747. package/dist/node_modules/lucide-react/dist/esm/icons/folder-kanban.d.ts +2 -0
  748. package/dist/node_modules/lucide-react/dist/esm/icons/folder-key.d.ts +2 -0
  749. package/dist/node_modules/lucide-react/dist/esm/icons/folder-lock.d.ts +2 -0
  750. package/dist/node_modules/lucide-react/dist/esm/icons/folder-minus.d.ts +2 -0
  751. package/dist/node_modules/lucide-react/dist/esm/icons/folder-open-dot.d.ts +2 -0
  752. package/dist/node_modules/lucide-react/dist/esm/icons/folder-open.d.ts +2 -0
  753. package/dist/node_modules/lucide-react/dist/esm/icons/folder-output.d.ts +2 -0
  754. package/dist/node_modules/lucide-react/dist/esm/icons/folder-pen.d.ts +2 -0
  755. package/dist/node_modules/lucide-react/dist/esm/icons/folder-plus.d.ts +2 -0
  756. package/dist/node_modules/lucide-react/dist/esm/icons/folder-root.d.ts +2 -0
  757. package/dist/node_modules/lucide-react/dist/esm/icons/folder-search-2.d.ts +2 -0
  758. package/dist/node_modules/lucide-react/dist/esm/icons/folder-search.d.ts +2 -0
  759. package/dist/node_modules/lucide-react/dist/esm/icons/folder-symlink.d.ts +2 -0
  760. package/dist/node_modules/lucide-react/dist/esm/icons/folder-sync.d.ts +2 -0
  761. package/dist/node_modules/lucide-react/dist/esm/icons/folder-tree.d.ts +2 -0
  762. package/dist/node_modules/lucide-react/dist/esm/icons/folder-up.d.ts +2 -0
  763. package/dist/node_modules/lucide-react/dist/esm/icons/folder-x.d.ts +2 -0
  764. package/dist/node_modules/lucide-react/dist/esm/icons/folder.d.ts +2 -0
  765. package/dist/node_modules/lucide-react/dist/esm/icons/folders.d.ts +2 -0
  766. package/dist/node_modules/lucide-react/dist/esm/icons/footprints.d.ts +2 -0
  767. package/dist/node_modules/lucide-react/dist/esm/icons/forklift.d.ts +2 -0
  768. package/dist/node_modules/lucide-react/dist/esm/icons/forward.d.ts +2 -0
  769. package/dist/node_modules/lucide-react/dist/esm/icons/frame.d.ts +2 -0
  770. package/dist/node_modules/lucide-react/dist/esm/icons/framer.d.ts +2 -0
  771. package/dist/node_modules/lucide-react/dist/esm/icons/frown.d.ts +2 -0
  772. package/dist/node_modules/lucide-react/dist/esm/icons/fuel.d.ts +2 -0
  773. package/dist/node_modules/lucide-react/dist/esm/icons/fullscreen.d.ts +2 -0
  774. package/dist/node_modules/lucide-react/dist/esm/icons/gallery-horizontal-end.d.ts +2 -0
  775. package/dist/node_modules/lucide-react/dist/esm/icons/gallery-horizontal.d.ts +2 -0
  776. package/dist/node_modules/lucide-react/dist/esm/icons/gallery-thumbnails.d.ts +2 -0
  777. package/dist/node_modules/lucide-react/dist/esm/icons/gallery-vertical-end.d.ts +2 -0
  778. package/dist/node_modules/lucide-react/dist/esm/icons/gallery-vertical.d.ts +2 -0
  779. package/dist/node_modules/lucide-react/dist/esm/icons/gamepad-2.d.ts +2 -0
  780. package/dist/node_modules/lucide-react/dist/esm/icons/gamepad.d.ts +2 -0
  781. package/dist/node_modules/lucide-react/dist/esm/icons/gauge.d.ts +2 -0
  782. package/dist/node_modules/lucide-react/dist/esm/icons/gavel.d.ts +2 -0
  783. package/dist/node_modules/lucide-react/dist/esm/icons/gem.d.ts +2 -0
  784. package/dist/node_modules/lucide-react/dist/esm/icons/ghost.d.ts +2 -0
  785. package/dist/node_modules/lucide-react/dist/esm/icons/gift.d.ts +2 -0
  786. package/dist/node_modules/lucide-react/dist/esm/icons/git-branch-plus.d.ts +2 -0
  787. package/dist/node_modules/lucide-react/dist/esm/icons/git-branch.d.ts +2 -0
  788. package/dist/node_modules/lucide-react/dist/esm/icons/git-commit-horizontal.d.ts +2 -0
  789. package/dist/node_modules/lucide-react/dist/esm/icons/git-commit-vertical.d.ts +2 -0
  790. package/dist/node_modules/lucide-react/dist/esm/icons/git-compare-arrows.d.ts +2 -0
  791. package/dist/node_modules/lucide-react/dist/esm/icons/git-compare.d.ts +2 -0
  792. package/dist/node_modules/lucide-react/dist/esm/icons/git-fork.d.ts +2 -0
  793. package/dist/node_modules/lucide-react/dist/esm/icons/git-graph.d.ts +2 -0
  794. package/dist/node_modules/lucide-react/dist/esm/icons/git-merge.d.ts +2 -0
  795. package/dist/node_modules/lucide-react/dist/esm/icons/git-pull-request-arrow.d.ts +2 -0
  796. package/dist/node_modules/lucide-react/dist/esm/icons/git-pull-request-closed.d.ts +2 -0
  797. package/dist/node_modules/lucide-react/dist/esm/icons/git-pull-request-create-arrow.d.ts +2 -0
  798. package/dist/node_modules/lucide-react/dist/esm/icons/git-pull-request-create.d.ts +2 -0
  799. package/dist/node_modules/lucide-react/dist/esm/icons/git-pull-request-draft.d.ts +2 -0
  800. package/dist/node_modules/lucide-react/dist/esm/icons/git-pull-request.d.ts +2 -0
  801. package/dist/node_modules/lucide-react/dist/esm/icons/github.d.ts +2 -0
  802. package/dist/node_modules/lucide-react/dist/esm/icons/gitlab.d.ts +2 -0
  803. package/dist/node_modules/lucide-react/dist/esm/icons/glass-water.d.ts +2 -0
  804. package/dist/node_modules/lucide-react/dist/esm/icons/glasses.d.ts +2 -0
  805. package/dist/node_modules/lucide-react/dist/esm/icons/globe-lock.d.ts +2 -0
  806. package/dist/node_modules/lucide-react/dist/esm/icons/globe.d.ts +2 -0
  807. package/dist/node_modules/lucide-react/dist/esm/icons/goal.d.ts +2 -0
  808. package/dist/node_modules/lucide-react/dist/esm/icons/grab.d.ts +2 -0
  809. package/dist/node_modules/lucide-react/dist/esm/icons/graduation-cap.d.ts +2 -0
  810. package/dist/node_modules/lucide-react/dist/esm/icons/grape.d.ts +2 -0
  811. package/dist/node_modules/lucide-react/dist/esm/icons/grid-2x2-check.d.ts +2 -0
  812. package/dist/node_modules/lucide-react/dist/esm/icons/grid-2x2-plus.d.ts +2 -0
  813. package/dist/node_modules/lucide-react/dist/esm/icons/grid-2x2-x.d.ts +2 -0
  814. package/dist/node_modules/lucide-react/dist/esm/icons/grid-2x2.d.ts +2 -0
  815. package/dist/node_modules/lucide-react/dist/esm/icons/grid-3x3.d.ts +2 -0
  816. package/dist/node_modules/lucide-react/dist/esm/icons/grip-horizontal.d.ts +2 -0
  817. package/dist/node_modules/lucide-react/dist/esm/icons/grip-vertical.d.ts +2 -0
  818. package/dist/node_modules/lucide-react/dist/esm/icons/grip.d.ts +2 -0
  819. package/dist/node_modules/lucide-react/dist/esm/icons/group.d.ts +2 -0
  820. package/dist/node_modules/lucide-react/dist/esm/icons/guitar.d.ts +2 -0
  821. package/dist/node_modules/lucide-react/dist/esm/icons/ham.d.ts +2 -0
  822. package/dist/node_modules/lucide-react/dist/esm/icons/hammer.d.ts +2 -0
  823. package/dist/node_modules/lucide-react/dist/esm/icons/hand-coins.d.ts +2 -0
  824. package/dist/node_modules/lucide-react/dist/esm/icons/hand-heart.d.ts +2 -0
  825. package/dist/node_modules/lucide-react/dist/esm/icons/hand-helping.d.ts +2 -0
  826. package/dist/node_modules/lucide-react/dist/esm/icons/hand-metal.d.ts +2 -0
  827. package/dist/node_modules/lucide-react/dist/esm/icons/hand-platter.d.ts +2 -0
  828. package/dist/node_modules/lucide-react/dist/esm/icons/hand.d.ts +2 -0
  829. package/dist/node_modules/lucide-react/dist/esm/icons/handshake.d.ts +2 -0
  830. package/dist/node_modules/lucide-react/dist/esm/icons/hard-drive-download.d.ts +2 -0
  831. package/dist/node_modules/lucide-react/dist/esm/icons/hard-drive-upload.d.ts +2 -0
  832. package/dist/node_modules/lucide-react/dist/esm/icons/hard-drive.d.ts +2 -0
  833. package/dist/node_modules/lucide-react/dist/esm/icons/hard-hat.d.ts +2 -0
  834. package/dist/node_modules/lucide-react/dist/esm/icons/hash.d.ts +2 -0
  835. package/dist/node_modules/lucide-react/dist/esm/icons/haze.d.ts +2 -0
  836. package/dist/node_modules/lucide-react/dist/esm/icons/hdmi-port.d.ts +2 -0
  837. package/dist/node_modules/lucide-react/dist/esm/icons/heading-1.d.ts +2 -0
  838. package/dist/node_modules/lucide-react/dist/esm/icons/heading-2.d.ts +2 -0
  839. package/dist/node_modules/lucide-react/dist/esm/icons/heading-3.d.ts +2 -0
  840. package/dist/node_modules/lucide-react/dist/esm/icons/heading-4.d.ts +2 -0
  841. package/dist/node_modules/lucide-react/dist/esm/icons/heading-5.d.ts +2 -0
  842. package/dist/node_modules/lucide-react/dist/esm/icons/heading-6.d.ts +2 -0
  843. package/dist/node_modules/lucide-react/dist/esm/icons/heading.d.ts +2 -0
  844. package/dist/node_modules/lucide-react/dist/esm/icons/headphone-off.d.ts +2 -0
  845. package/dist/node_modules/lucide-react/dist/esm/icons/headphones.d.ts +2 -0
  846. package/dist/node_modules/lucide-react/dist/esm/icons/headset.d.ts +2 -0
  847. package/dist/node_modules/lucide-react/dist/esm/icons/heart-crack.d.ts +2 -0
  848. package/dist/node_modules/lucide-react/dist/esm/icons/heart-handshake.d.ts +2 -0
  849. package/dist/node_modules/lucide-react/dist/esm/icons/heart-off.d.ts +2 -0
  850. package/dist/node_modules/lucide-react/dist/esm/icons/heart-pulse.d.ts +2 -0
  851. package/dist/node_modules/lucide-react/dist/esm/icons/heart.d.ts +2 -0
  852. package/dist/node_modules/lucide-react/dist/esm/icons/heater.d.ts +2 -0
  853. package/dist/node_modules/lucide-react/dist/esm/icons/hexagon.d.ts +2 -0
  854. package/dist/node_modules/lucide-react/dist/esm/icons/highlighter.d.ts +2 -0
  855. package/dist/node_modules/lucide-react/dist/esm/icons/history.d.ts +2 -0
  856. package/dist/node_modules/lucide-react/dist/esm/icons/hop-off.d.ts +2 -0
  857. package/dist/node_modules/lucide-react/dist/esm/icons/hop.d.ts +2 -0
  858. package/dist/node_modules/lucide-react/dist/esm/icons/hospital.d.ts +2 -0
  859. package/dist/node_modules/lucide-react/dist/esm/icons/hotel.d.ts +2 -0
  860. package/dist/node_modules/lucide-react/dist/esm/icons/hourglass.d.ts +2 -0
  861. package/dist/node_modules/lucide-react/dist/esm/icons/house-plug.d.ts +2 -0
  862. package/dist/node_modules/lucide-react/dist/esm/icons/house-plus.d.ts +2 -0
  863. package/dist/node_modules/lucide-react/dist/esm/icons/house.d.ts +2 -0
  864. package/dist/node_modules/lucide-react/dist/esm/icons/ice-cream-bowl.d.ts +2 -0
  865. package/dist/node_modules/lucide-react/dist/esm/icons/ice-cream-cone.d.ts +2 -0
  866. package/dist/node_modules/lucide-react/dist/esm/icons/id-card.d.ts +2 -0
  867. package/dist/node_modules/lucide-react/dist/esm/icons/image-down.d.ts +2 -0
  868. package/dist/node_modules/lucide-react/dist/esm/icons/image-minus.d.ts +2 -0
  869. package/dist/node_modules/lucide-react/dist/esm/icons/image-off.d.ts +2 -0
  870. package/dist/node_modules/lucide-react/dist/esm/icons/image-play.d.ts +2 -0
  871. package/dist/node_modules/lucide-react/dist/esm/icons/image-plus.d.ts +2 -0
  872. package/dist/node_modules/lucide-react/dist/esm/icons/image-up.d.ts +2 -0
  873. package/dist/node_modules/lucide-react/dist/esm/icons/image-upscale.d.ts +2 -0
  874. package/dist/node_modules/lucide-react/dist/esm/icons/image.d.ts +2 -0
  875. package/dist/node_modules/lucide-react/dist/esm/icons/images.d.ts +2 -0
  876. package/dist/node_modules/lucide-react/dist/esm/icons/import.d.ts +2 -0
  877. package/dist/node_modules/lucide-react/dist/esm/icons/inbox.d.ts +2 -0
  878. package/dist/node_modules/lucide-react/dist/esm/icons/indent-decrease.d.ts +2 -0
  879. package/dist/node_modules/lucide-react/dist/esm/icons/indent-increase.d.ts +2 -0
  880. package/dist/node_modules/lucide-react/dist/esm/icons/index.d.ts +1541 -0
  881. package/dist/node_modules/lucide-react/dist/esm/icons/indian-rupee.d.ts +2 -0
  882. package/dist/node_modules/lucide-react/dist/esm/icons/infinity.d.ts +2 -0
  883. package/dist/node_modules/lucide-react/dist/esm/icons/info.d.ts +2 -0
  884. package/dist/node_modules/lucide-react/dist/esm/icons/inspection-panel.d.ts +2 -0
  885. package/dist/node_modules/lucide-react/dist/esm/icons/instagram.d.ts +2 -0
  886. package/dist/node_modules/lucide-react/dist/esm/icons/italic.d.ts +2 -0
  887. package/dist/node_modules/lucide-react/dist/esm/icons/iteration-ccw.d.ts +2 -0
  888. package/dist/node_modules/lucide-react/dist/esm/icons/iteration-cw.d.ts +2 -0
  889. package/dist/node_modules/lucide-react/dist/esm/icons/japanese-yen.d.ts +2 -0
  890. package/dist/node_modules/lucide-react/dist/esm/icons/joystick.d.ts +2 -0
  891. package/dist/node_modules/lucide-react/dist/esm/icons/kanban.d.ts +2 -0
  892. package/dist/node_modules/lucide-react/dist/esm/icons/key-round.d.ts +2 -0
  893. package/dist/node_modules/lucide-react/dist/esm/icons/key-square.d.ts +2 -0
  894. package/dist/node_modules/lucide-react/dist/esm/icons/key.d.ts +2 -0
  895. package/dist/node_modules/lucide-react/dist/esm/icons/keyboard-music.d.ts +2 -0
  896. package/dist/node_modules/lucide-react/dist/esm/icons/keyboard-off.d.ts +2 -0
  897. package/dist/node_modules/lucide-react/dist/esm/icons/keyboard.d.ts +2 -0
  898. package/dist/node_modules/lucide-react/dist/esm/icons/lamp-ceiling.d.ts +2 -0
  899. package/dist/node_modules/lucide-react/dist/esm/icons/lamp-desk.d.ts +2 -0
  900. package/dist/node_modules/lucide-react/dist/esm/icons/lamp-floor.d.ts +2 -0
  901. package/dist/node_modules/lucide-react/dist/esm/icons/lamp-wall-down.d.ts +2 -0
  902. package/dist/node_modules/lucide-react/dist/esm/icons/lamp-wall-up.d.ts +2 -0
  903. package/dist/node_modules/lucide-react/dist/esm/icons/lamp.d.ts +2 -0
  904. package/dist/node_modules/lucide-react/dist/esm/icons/land-plot.d.ts +2 -0
  905. package/dist/node_modules/lucide-react/dist/esm/icons/landmark.d.ts +2 -0
  906. package/dist/node_modules/lucide-react/dist/esm/icons/languages.d.ts +2 -0
  907. package/dist/node_modules/lucide-react/dist/esm/icons/laptop-minimal-check.d.ts +2 -0
  908. package/dist/node_modules/lucide-react/dist/esm/icons/laptop-minimal.d.ts +2 -0
  909. package/dist/node_modules/lucide-react/dist/esm/icons/laptop.d.ts +2 -0
  910. package/dist/node_modules/lucide-react/dist/esm/icons/lasso-select.d.ts +2 -0
  911. package/dist/node_modules/lucide-react/dist/esm/icons/lasso.d.ts +2 -0
  912. package/dist/node_modules/lucide-react/dist/esm/icons/laugh.d.ts +2 -0
  913. package/dist/node_modules/lucide-react/dist/esm/icons/layers-2.d.ts +2 -0
  914. package/dist/node_modules/lucide-react/dist/esm/icons/layers-3.d.ts +2 -0
  915. package/dist/node_modules/lucide-react/dist/esm/icons/layers.d.ts +2 -0
  916. package/dist/node_modules/lucide-react/dist/esm/icons/layout-dashboard.d.ts +2 -0
  917. package/dist/node_modules/lucide-react/dist/esm/icons/layout-grid.d.ts +2 -0
  918. package/dist/node_modules/lucide-react/dist/esm/icons/layout-list.d.ts +2 -0
  919. package/dist/node_modules/lucide-react/dist/esm/icons/layout-panel-left.d.ts +2 -0
  920. package/dist/node_modules/lucide-react/dist/esm/icons/layout-panel-top.d.ts +2 -0
  921. package/dist/node_modules/lucide-react/dist/esm/icons/layout-template.d.ts +2 -0
  922. package/dist/node_modules/lucide-react/dist/esm/icons/leaf.d.ts +2 -0
  923. package/dist/node_modules/lucide-react/dist/esm/icons/leafy-green.d.ts +2 -0
  924. package/dist/node_modules/lucide-react/dist/esm/icons/lectern.d.ts +2 -0
  925. package/dist/node_modules/lucide-react/dist/esm/icons/letter-text.d.ts +2 -0
  926. package/dist/node_modules/lucide-react/dist/esm/icons/library-big.d.ts +2 -0
  927. package/dist/node_modules/lucide-react/dist/esm/icons/library.d.ts +2 -0
  928. package/dist/node_modules/lucide-react/dist/esm/icons/life-buoy.d.ts +2 -0
  929. package/dist/node_modules/lucide-react/dist/esm/icons/ligature.d.ts +2 -0
  930. package/dist/node_modules/lucide-react/dist/esm/icons/lightbulb-off.d.ts +2 -0
  931. package/dist/node_modules/lucide-react/dist/esm/icons/lightbulb.d.ts +2 -0
  932. package/dist/node_modules/lucide-react/dist/esm/icons/link-2-off.d.ts +2 -0
  933. package/dist/node_modules/lucide-react/dist/esm/icons/link-2.d.ts +2 -0
  934. package/dist/node_modules/lucide-react/dist/esm/icons/link.d.ts +2 -0
  935. package/dist/node_modules/lucide-react/dist/esm/icons/linkedin.d.ts +2 -0
  936. package/dist/node_modules/lucide-react/dist/esm/icons/list-check.d.ts +2 -0
  937. package/dist/node_modules/lucide-react/dist/esm/icons/list-checks.d.ts +2 -0
  938. package/dist/node_modules/lucide-react/dist/esm/icons/list-collapse.d.ts +2 -0
  939. package/dist/node_modules/lucide-react/dist/esm/icons/list-end.d.ts +2 -0
  940. package/dist/node_modules/lucide-react/dist/esm/icons/list-filter.d.ts +2 -0
  941. package/dist/node_modules/lucide-react/dist/esm/icons/list-minus.d.ts +2 -0
  942. package/dist/node_modules/lucide-react/dist/esm/icons/list-music.d.ts +2 -0
  943. package/dist/node_modules/lucide-react/dist/esm/icons/list-ordered.d.ts +2 -0
  944. package/dist/node_modules/lucide-react/dist/esm/icons/list-plus.d.ts +2 -0
  945. package/dist/node_modules/lucide-react/dist/esm/icons/list-restart.d.ts +2 -0
  946. package/dist/node_modules/lucide-react/dist/esm/icons/list-start.d.ts +2 -0
  947. package/dist/node_modules/lucide-react/dist/esm/icons/list-todo.d.ts +2 -0
  948. package/dist/node_modules/lucide-react/dist/esm/icons/list-tree.d.ts +2 -0
  949. package/dist/node_modules/lucide-react/dist/esm/icons/list-video.d.ts +2 -0
  950. package/dist/node_modules/lucide-react/dist/esm/icons/list-x.d.ts +2 -0
  951. package/dist/node_modules/lucide-react/dist/esm/icons/list.d.ts +2 -0
  952. package/dist/node_modules/lucide-react/dist/esm/icons/loader-circle.d.ts +2 -0
  953. package/dist/node_modules/lucide-react/dist/esm/icons/loader-pinwheel.d.ts +2 -0
  954. package/dist/node_modules/lucide-react/dist/esm/icons/loader.d.ts +2 -0
  955. package/dist/node_modules/lucide-react/dist/esm/icons/locate-fixed.d.ts +2 -0
  956. package/dist/node_modules/lucide-react/dist/esm/icons/locate-off.d.ts +2 -0
  957. package/dist/node_modules/lucide-react/dist/esm/icons/locate.d.ts +2 -0
  958. package/dist/node_modules/lucide-react/dist/esm/icons/lock-keyhole-open.d.ts +2 -0
  959. package/dist/node_modules/lucide-react/dist/esm/icons/lock-keyhole.d.ts +2 -0
  960. package/dist/node_modules/lucide-react/dist/esm/icons/lock-open.d.ts +2 -0
  961. package/dist/node_modules/lucide-react/dist/esm/icons/lock.d.ts +2 -0
  962. package/dist/node_modules/lucide-react/dist/esm/icons/log-in.d.ts +2 -0
  963. package/dist/node_modules/lucide-react/dist/esm/icons/log-out.d.ts +2 -0
  964. package/dist/node_modules/lucide-react/dist/esm/icons/logs.d.ts +2 -0
  965. package/dist/node_modules/lucide-react/dist/esm/icons/lollipop.d.ts +2 -0
  966. package/dist/node_modules/lucide-react/dist/esm/icons/luggage.d.ts +2 -0
  967. package/dist/node_modules/lucide-react/dist/esm/icons/magnet.d.ts +2 -0
  968. package/dist/node_modules/lucide-react/dist/esm/icons/mail-check.d.ts +2 -0
  969. package/dist/node_modules/lucide-react/dist/esm/icons/mail-minus.d.ts +2 -0
  970. package/dist/node_modules/lucide-react/dist/esm/icons/mail-open.d.ts +2 -0
  971. package/dist/node_modules/lucide-react/dist/esm/icons/mail-plus.d.ts +2 -0
  972. package/dist/node_modules/lucide-react/dist/esm/icons/mail-question.d.ts +2 -0
  973. package/dist/node_modules/lucide-react/dist/esm/icons/mail-search.d.ts +2 -0
  974. package/dist/node_modules/lucide-react/dist/esm/icons/mail-warning.d.ts +2 -0
  975. package/dist/node_modules/lucide-react/dist/esm/icons/mail-x.d.ts +2 -0
  976. package/dist/node_modules/lucide-react/dist/esm/icons/mail.d.ts +2 -0
  977. package/dist/node_modules/lucide-react/dist/esm/icons/mailbox.d.ts +2 -0
  978. package/dist/node_modules/lucide-react/dist/esm/icons/mails.d.ts +2 -0
  979. package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-check-inside.d.ts +2 -0
  980. package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-check.d.ts +2 -0
  981. package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-house.d.ts +2 -0
  982. package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-minus-inside.d.ts +2 -0
  983. package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-minus.d.ts +2 -0
  984. package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-off.d.ts +2 -0
  985. package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-plus-inside.d.ts +2 -0
  986. package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-plus.d.ts +2 -0
  987. package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-x-inside.d.ts +2 -0
  988. package/dist/node_modules/lucide-react/dist/esm/icons/map-pin-x.d.ts +2 -0
  989. package/dist/node_modules/lucide-react/dist/esm/icons/map-pin.d.ts +2 -0
  990. package/dist/node_modules/lucide-react/dist/esm/icons/map-pinned.d.ts +2 -0
  991. package/dist/node_modules/lucide-react/dist/esm/icons/map.d.ts +2 -0
  992. package/dist/node_modules/lucide-react/dist/esm/icons/martini.d.ts +2 -0
  993. package/dist/node_modules/lucide-react/dist/esm/icons/maximize-2.d.ts +2 -0
  994. package/dist/node_modules/lucide-react/dist/esm/icons/maximize.d.ts +2 -0
  995. package/dist/node_modules/lucide-react/dist/esm/icons/medal.d.ts +2 -0
  996. package/dist/node_modules/lucide-react/dist/esm/icons/megaphone-off.d.ts +2 -0
  997. package/dist/node_modules/lucide-react/dist/esm/icons/megaphone.d.ts +2 -0
  998. package/dist/node_modules/lucide-react/dist/esm/icons/meh.d.ts +2 -0
  999. package/dist/node_modules/lucide-react/dist/esm/icons/memory-stick.d.ts +2 -0
  1000. package/dist/node_modules/lucide-react/dist/esm/icons/menu.d.ts +2 -0
  1001. package/dist/node_modules/lucide-react/dist/esm/icons/merge.d.ts +2 -0
  1002. package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-code.d.ts +2 -0
  1003. package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-dashed.d.ts +2 -0
  1004. package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-heart.d.ts +2 -0
  1005. package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-more.d.ts +2 -0
  1006. package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-off.d.ts +2 -0
  1007. package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-plus.d.ts +2 -0
  1008. package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-question.d.ts +2 -0
  1009. package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-reply.d.ts +2 -0
  1010. package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-warning.d.ts +2 -0
  1011. package/dist/node_modules/lucide-react/dist/esm/icons/message-circle-x.d.ts +2 -0
  1012. package/dist/node_modules/lucide-react/dist/esm/icons/message-circle.d.ts +2 -0
  1013. package/dist/node_modules/lucide-react/dist/esm/icons/message-square-code.d.ts +2 -0
  1014. package/dist/node_modules/lucide-react/dist/esm/icons/message-square-dashed.d.ts +2 -0
  1015. package/dist/node_modules/lucide-react/dist/esm/icons/message-square-diff.d.ts +2 -0
  1016. package/dist/node_modules/lucide-react/dist/esm/icons/message-square-dot.d.ts +2 -0
  1017. package/dist/node_modules/lucide-react/dist/esm/icons/message-square-heart.d.ts +2 -0
  1018. package/dist/node_modules/lucide-react/dist/esm/icons/message-square-lock.d.ts +2 -0
  1019. package/dist/node_modules/lucide-react/dist/esm/icons/message-square-more.d.ts +2 -0
  1020. package/dist/node_modules/lucide-react/dist/esm/icons/message-square-off.d.ts +2 -0
  1021. package/dist/node_modules/lucide-react/dist/esm/icons/message-square-plus.d.ts +2 -0
  1022. package/dist/node_modules/lucide-react/dist/esm/icons/message-square-quote.d.ts +2 -0
  1023. package/dist/node_modules/lucide-react/dist/esm/icons/message-square-reply.d.ts +2 -0
  1024. package/dist/node_modules/lucide-react/dist/esm/icons/message-square-share.d.ts +2 -0
  1025. package/dist/node_modules/lucide-react/dist/esm/icons/message-square-text.d.ts +2 -0
  1026. package/dist/node_modules/lucide-react/dist/esm/icons/message-square-warning.d.ts +2 -0
  1027. package/dist/node_modules/lucide-react/dist/esm/icons/message-square-x.d.ts +2 -0
  1028. package/dist/node_modules/lucide-react/dist/esm/icons/message-square.d.ts +2 -0
  1029. package/dist/node_modules/lucide-react/dist/esm/icons/messages-square.d.ts +2 -0
  1030. package/dist/node_modules/lucide-react/dist/esm/icons/mic-off.d.ts +2 -0
  1031. package/dist/node_modules/lucide-react/dist/esm/icons/mic-vocal.d.ts +2 -0
  1032. package/dist/node_modules/lucide-react/dist/esm/icons/mic.d.ts +2 -0
  1033. package/dist/node_modules/lucide-react/dist/esm/icons/microchip.d.ts +2 -0
  1034. package/dist/node_modules/lucide-react/dist/esm/icons/microscope.d.ts +2 -0
  1035. package/dist/node_modules/lucide-react/dist/esm/icons/microwave.d.ts +2 -0
  1036. package/dist/node_modules/lucide-react/dist/esm/icons/milestone.d.ts +2 -0
  1037. package/dist/node_modules/lucide-react/dist/esm/icons/milk-off.d.ts +2 -0
  1038. package/dist/node_modules/lucide-react/dist/esm/icons/milk.d.ts +2 -0
  1039. package/dist/node_modules/lucide-react/dist/esm/icons/minimize-2.d.ts +2 -0
  1040. package/dist/node_modules/lucide-react/dist/esm/icons/minimize.d.ts +2 -0
  1041. package/dist/node_modules/lucide-react/dist/esm/icons/minus.d.ts +2 -0
  1042. package/dist/node_modules/lucide-react/dist/esm/icons/monitor-check.d.ts +2 -0
  1043. package/dist/node_modules/lucide-react/dist/esm/icons/monitor-cog.d.ts +2 -0
  1044. package/dist/node_modules/lucide-react/dist/esm/icons/monitor-dot.d.ts +2 -0
  1045. package/dist/node_modules/lucide-react/dist/esm/icons/monitor-down.d.ts +2 -0
  1046. package/dist/node_modules/lucide-react/dist/esm/icons/monitor-off.d.ts +2 -0
  1047. package/dist/node_modules/lucide-react/dist/esm/icons/monitor-pause.d.ts +2 -0
  1048. package/dist/node_modules/lucide-react/dist/esm/icons/monitor-play.d.ts +2 -0
  1049. package/dist/node_modules/lucide-react/dist/esm/icons/monitor-smartphone.d.ts +2 -0
  1050. package/dist/node_modules/lucide-react/dist/esm/icons/monitor-speaker.d.ts +2 -0
  1051. package/dist/node_modules/lucide-react/dist/esm/icons/monitor-stop.d.ts +2 -0
  1052. package/dist/node_modules/lucide-react/dist/esm/icons/monitor-up.d.ts +2 -0
  1053. package/dist/node_modules/lucide-react/dist/esm/icons/monitor-x.d.ts +2 -0
  1054. package/dist/node_modules/lucide-react/dist/esm/icons/monitor.d.ts +2 -0
  1055. package/dist/node_modules/lucide-react/dist/esm/icons/moon-star.d.ts +2 -0
  1056. package/dist/node_modules/lucide-react/dist/esm/icons/moon.d.ts +2 -0
  1057. package/dist/node_modules/lucide-react/dist/esm/icons/mountain-snow.d.ts +2 -0
  1058. package/dist/node_modules/lucide-react/dist/esm/icons/mountain.d.ts +2 -0
  1059. package/dist/node_modules/lucide-react/dist/esm/icons/mouse-off.d.ts +2 -0
  1060. package/dist/node_modules/lucide-react/dist/esm/icons/mouse-pointer-2.d.ts +2 -0
  1061. package/dist/node_modules/lucide-react/dist/esm/icons/mouse-pointer-ban.d.ts +2 -0
  1062. package/dist/node_modules/lucide-react/dist/esm/icons/mouse-pointer-click.d.ts +2 -0
  1063. package/dist/node_modules/lucide-react/dist/esm/icons/mouse-pointer.d.ts +2 -0
  1064. package/dist/node_modules/lucide-react/dist/esm/icons/mouse.d.ts +2 -0
  1065. package/dist/node_modules/lucide-react/dist/esm/icons/move-3d.d.ts +2 -0
  1066. package/dist/node_modules/lucide-react/dist/esm/icons/move-diagonal-2.d.ts +2 -0
  1067. package/dist/node_modules/lucide-react/dist/esm/icons/move-diagonal.d.ts +2 -0
  1068. package/dist/node_modules/lucide-react/dist/esm/icons/move-down-left.d.ts +2 -0
  1069. package/dist/node_modules/lucide-react/dist/esm/icons/move-down-right.d.ts +2 -0
  1070. package/dist/node_modules/lucide-react/dist/esm/icons/move-down.d.ts +2 -0
  1071. package/dist/node_modules/lucide-react/dist/esm/icons/move-horizontal.d.ts +2 -0
  1072. package/dist/node_modules/lucide-react/dist/esm/icons/move-left.d.ts +2 -0
  1073. package/dist/node_modules/lucide-react/dist/esm/icons/move-right.d.ts +2 -0
  1074. package/dist/node_modules/lucide-react/dist/esm/icons/move-up-left.d.ts +2 -0
  1075. package/dist/node_modules/lucide-react/dist/esm/icons/move-up-right.d.ts +2 -0
  1076. package/dist/node_modules/lucide-react/dist/esm/icons/move-up.d.ts +2 -0
  1077. package/dist/node_modules/lucide-react/dist/esm/icons/move-vertical.d.ts +2 -0
  1078. package/dist/node_modules/lucide-react/dist/esm/icons/move.d.ts +2 -0
  1079. package/dist/node_modules/lucide-react/dist/esm/icons/music-2.d.ts +2 -0
  1080. package/dist/node_modules/lucide-react/dist/esm/icons/music-3.d.ts +2 -0
  1081. package/dist/node_modules/lucide-react/dist/esm/icons/music-4.d.ts +2 -0
  1082. package/dist/node_modules/lucide-react/dist/esm/icons/music.d.ts +2 -0
  1083. package/dist/node_modules/lucide-react/dist/esm/icons/navigation-2-off.d.ts +2 -0
  1084. package/dist/node_modules/lucide-react/dist/esm/icons/navigation-2.d.ts +2 -0
  1085. package/dist/node_modules/lucide-react/dist/esm/icons/navigation-off.d.ts +2 -0
  1086. package/dist/node_modules/lucide-react/dist/esm/icons/navigation.d.ts +2 -0
  1087. package/dist/node_modules/lucide-react/dist/esm/icons/network.d.ts +2 -0
  1088. package/dist/node_modules/lucide-react/dist/esm/icons/newspaper.d.ts +2 -0
  1089. package/dist/node_modules/lucide-react/dist/esm/icons/nfc.d.ts +2 -0
  1090. package/dist/node_modules/lucide-react/dist/esm/icons/notebook-pen.d.ts +2 -0
  1091. package/dist/node_modules/lucide-react/dist/esm/icons/notebook-tabs.d.ts +2 -0
  1092. package/dist/node_modules/lucide-react/dist/esm/icons/notebook-text.d.ts +2 -0
  1093. package/dist/node_modules/lucide-react/dist/esm/icons/notebook.d.ts +2 -0
  1094. package/dist/node_modules/lucide-react/dist/esm/icons/notepad-text-dashed.d.ts +2 -0
  1095. package/dist/node_modules/lucide-react/dist/esm/icons/notepad-text.d.ts +2 -0
  1096. package/dist/node_modules/lucide-react/dist/esm/icons/nut-off.d.ts +2 -0
  1097. package/dist/node_modules/lucide-react/dist/esm/icons/nut.d.ts +2 -0
  1098. package/dist/node_modules/lucide-react/dist/esm/icons/octagon-alert.d.ts +2 -0
  1099. package/dist/node_modules/lucide-react/dist/esm/icons/octagon-minus.d.ts +2 -0
  1100. package/dist/node_modules/lucide-react/dist/esm/icons/octagon-pause.d.ts +2 -0
  1101. package/dist/node_modules/lucide-react/dist/esm/icons/octagon-x.d.ts +2 -0
  1102. package/dist/node_modules/lucide-react/dist/esm/icons/octagon.d.ts +2 -0
  1103. package/dist/node_modules/lucide-react/dist/esm/icons/omega.d.ts +2 -0
  1104. package/dist/node_modules/lucide-react/dist/esm/icons/option.d.ts +2 -0
  1105. package/dist/node_modules/lucide-react/dist/esm/icons/orbit.d.ts +2 -0
  1106. package/dist/node_modules/lucide-react/dist/esm/icons/origami.d.ts +2 -0
  1107. package/dist/node_modules/lucide-react/dist/esm/icons/package-2.d.ts +2 -0
  1108. package/dist/node_modules/lucide-react/dist/esm/icons/package-check.d.ts +2 -0
  1109. package/dist/node_modules/lucide-react/dist/esm/icons/package-minus.d.ts +2 -0
  1110. package/dist/node_modules/lucide-react/dist/esm/icons/package-open.d.ts +2 -0
  1111. package/dist/node_modules/lucide-react/dist/esm/icons/package-plus.d.ts +2 -0
  1112. package/dist/node_modules/lucide-react/dist/esm/icons/package-search.d.ts +2 -0
  1113. package/dist/node_modules/lucide-react/dist/esm/icons/package-x.d.ts +2 -0
  1114. package/dist/node_modules/lucide-react/dist/esm/icons/package.d.ts +2 -0
  1115. package/dist/node_modules/lucide-react/dist/esm/icons/paint-bucket.d.ts +2 -0
  1116. package/dist/node_modules/lucide-react/dist/esm/icons/paint-roller.d.ts +2 -0
  1117. package/dist/node_modules/lucide-react/dist/esm/icons/paintbrush-vertical.d.ts +2 -0
  1118. package/dist/node_modules/lucide-react/dist/esm/icons/paintbrush.d.ts +2 -0
  1119. package/dist/node_modules/lucide-react/dist/esm/icons/palette.d.ts +2 -0
  1120. package/dist/node_modules/lucide-react/dist/esm/icons/panel-bottom-close.d.ts +2 -0
  1121. package/dist/node_modules/lucide-react/dist/esm/icons/panel-bottom-dashed.d.ts +2 -0
  1122. package/dist/node_modules/lucide-react/dist/esm/icons/panel-bottom-open.d.ts +2 -0
  1123. package/dist/node_modules/lucide-react/dist/esm/icons/panel-bottom.d.ts +2 -0
  1124. package/dist/node_modules/lucide-react/dist/esm/icons/panel-left-close.d.ts +2 -0
  1125. package/dist/node_modules/lucide-react/dist/esm/icons/panel-left-dashed.d.ts +2 -0
  1126. package/dist/node_modules/lucide-react/dist/esm/icons/panel-left-open.d.ts +2 -0
  1127. package/dist/node_modules/lucide-react/dist/esm/icons/panel-left.d.ts +2 -0
  1128. package/dist/node_modules/lucide-react/dist/esm/icons/panel-right-close.d.ts +2 -0
  1129. package/dist/node_modules/lucide-react/dist/esm/icons/panel-right-dashed.d.ts +2 -0
  1130. package/dist/node_modules/lucide-react/dist/esm/icons/panel-right-open.d.ts +2 -0
  1131. package/dist/node_modules/lucide-react/dist/esm/icons/panel-right.d.ts +2 -0
  1132. package/dist/node_modules/lucide-react/dist/esm/icons/panel-top-close.d.ts +2 -0
  1133. package/dist/node_modules/lucide-react/dist/esm/icons/panel-top-dashed.d.ts +2 -0
  1134. package/dist/node_modules/lucide-react/dist/esm/icons/panel-top-open.d.ts +2 -0
  1135. package/dist/node_modules/lucide-react/dist/esm/icons/panel-top.d.ts +2 -0
  1136. package/dist/node_modules/lucide-react/dist/esm/icons/panels-left-bottom.d.ts +2 -0
  1137. package/dist/node_modules/lucide-react/dist/esm/icons/panels-right-bottom.d.ts +2 -0
  1138. package/dist/node_modules/lucide-react/dist/esm/icons/panels-top-left.d.ts +2 -0
  1139. package/dist/node_modules/lucide-react/dist/esm/icons/paperclip.d.ts +2 -0
  1140. package/dist/node_modules/lucide-react/dist/esm/icons/parentheses.d.ts +2 -0
  1141. package/dist/node_modules/lucide-react/dist/esm/icons/parking-meter.d.ts +2 -0
  1142. package/dist/node_modules/lucide-react/dist/esm/icons/party-popper.d.ts +2 -0
  1143. package/dist/node_modules/lucide-react/dist/esm/icons/pause.d.ts +2 -0
  1144. package/dist/node_modules/lucide-react/dist/esm/icons/paw-print.d.ts +2 -0
  1145. package/dist/node_modules/lucide-react/dist/esm/icons/pc-case.d.ts +2 -0
  1146. package/dist/node_modules/lucide-react/dist/esm/icons/pen-line.d.ts +2 -0
  1147. package/dist/node_modules/lucide-react/dist/esm/icons/pen-off.d.ts +2 -0
  1148. package/dist/node_modules/lucide-react/dist/esm/icons/pen-tool.d.ts +2 -0
  1149. package/dist/node_modules/lucide-react/dist/esm/icons/pen.d.ts +2 -0
  1150. package/dist/node_modules/lucide-react/dist/esm/icons/pencil-line.d.ts +2 -0
  1151. package/dist/node_modules/lucide-react/dist/esm/icons/pencil-off.d.ts +2 -0
  1152. package/dist/node_modules/lucide-react/dist/esm/icons/pencil-ruler.d.ts +2 -0
  1153. package/dist/node_modules/lucide-react/dist/esm/icons/pencil.d.ts +2 -0
  1154. package/dist/node_modules/lucide-react/dist/esm/icons/pentagon.d.ts +2 -0
  1155. package/dist/node_modules/lucide-react/dist/esm/icons/percent.d.ts +2 -0
  1156. package/dist/node_modules/lucide-react/dist/esm/icons/person-standing.d.ts +2 -0
  1157. package/dist/node_modules/lucide-react/dist/esm/icons/philippine-peso.d.ts +2 -0
  1158. package/dist/node_modules/lucide-react/dist/esm/icons/phone-call.d.ts +2 -0
  1159. package/dist/node_modules/lucide-react/dist/esm/icons/phone-forwarded.d.ts +2 -0
  1160. package/dist/node_modules/lucide-react/dist/esm/icons/phone-incoming.d.ts +2 -0
  1161. package/dist/node_modules/lucide-react/dist/esm/icons/phone-missed.d.ts +2 -0
  1162. package/dist/node_modules/lucide-react/dist/esm/icons/phone-off.d.ts +2 -0
  1163. package/dist/node_modules/lucide-react/dist/esm/icons/phone-outgoing.d.ts +2 -0
  1164. package/dist/node_modules/lucide-react/dist/esm/icons/phone.d.ts +2 -0
  1165. package/dist/node_modules/lucide-react/dist/esm/icons/pi.d.ts +2 -0
  1166. package/dist/node_modules/lucide-react/dist/esm/icons/piano.d.ts +2 -0
  1167. package/dist/node_modules/lucide-react/dist/esm/icons/pickaxe.d.ts +2 -0
  1168. package/dist/node_modules/lucide-react/dist/esm/icons/picture-in-picture-2.d.ts +2 -0
  1169. package/dist/node_modules/lucide-react/dist/esm/icons/picture-in-picture.d.ts +2 -0
  1170. package/dist/node_modules/lucide-react/dist/esm/icons/piggy-bank.d.ts +2 -0
  1171. package/dist/node_modules/lucide-react/dist/esm/icons/pilcrow-left.d.ts +2 -0
  1172. package/dist/node_modules/lucide-react/dist/esm/icons/pilcrow-right.d.ts +2 -0
  1173. package/dist/node_modules/lucide-react/dist/esm/icons/pilcrow.d.ts +2 -0
  1174. package/dist/node_modules/lucide-react/dist/esm/icons/pill-bottle.d.ts +2 -0
  1175. package/dist/node_modules/lucide-react/dist/esm/icons/pill.d.ts +2 -0
  1176. package/dist/node_modules/lucide-react/dist/esm/icons/pin-off.d.ts +2 -0
  1177. package/dist/node_modules/lucide-react/dist/esm/icons/pin.d.ts +2 -0
  1178. package/dist/node_modules/lucide-react/dist/esm/icons/pipette.d.ts +2 -0
  1179. package/dist/node_modules/lucide-react/dist/esm/icons/pizza.d.ts +2 -0
  1180. package/dist/node_modules/lucide-react/dist/esm/icons/plane-landing.d.ts +2 -0
  1181. package/dist/node_modules/lucide-react/dist/esm/icons/plane-takeoff.d.ts +2 -0
  1182. package/dist/node_modules/lucide-react/dist/esm/icons/plane.d.ts +2 -0
  1183. package/dist/node_modules/lucide-react/dist/esm/icons/play.d.ts +2 -0
  1184. package/dist/node_modules/lucide-react/dist/esm/icons/plug-2.d.ts +2 -0
  1185. package/dist/node_modules/lucide-react/dist/esm/icons/plug-zap.d.ts +2 -0
  1186. package/dist/node_modules/lucide-react/dist/esm/icons/plug.d.ts +2 -0
  1187. package/dist/node_modules/lucide-react/dist/esm/icons/plus.d.ts +2 -0
  1188. package/dist/node_modules/lucide-react/dist/esm/icons/pocket-knife.d.ts +2 -0
  1189. package/dist/node_modules/lucide-react/dist/esm/icons/pocket.d.ts +2 -0
  1190. package/dist/node_modules/lucide-react/dist/esm/icons/podcast.d.ts +2 -0
  1191. package/dist/node_modules/lucide-react/dist/esm/icons/pointer-off.d.ts +2 -0
  1192. package/dist/node_modules/lucide-react/dist/esm/icons/pointer.d.ts +2 -0
  1193. package/dist/node_modules/lucide-react/dist/esm/icons/popcorn.d.ts +2 -0
  1194. package/dist/node_modules/lucide-react/dist/esm/icons/popsicle.d.ts +2 -0
  1195. package/dist/node_modules/lucide-react/dist/esm/icons/pound-sterling.d.ts +2 -0
  1196. package/dist/node_modules/lucide-react/dist/esm/icons/power-off.d.ts +2 -0
  1197. package/dist/node_modules/lucide-react/dist/esm/icons/power.d.ts +2 -0
  1198. package/dist/node_modules/lucide-react/dist/esm/icons/presentation.d.ts +2 -0
  1199. package/dist/node_modules/lucide-react/dist/esm/icons/printer-check.d.ts +2 -0
  1200. package/dist/node_modules/lucide-react/dist/esm/icons/printer.d.ts +2 -0
  1201. package/dist/node_modules/lucide-react/dist/esm/icons/projector.d.ts +2 -0
  1202. package/dist/node_modules/lucide-react/dist/esm/icons/proportions.d.ts +2 -0
  1203. package/dist/node_modules/lucide-react/dist/esm/icons/puzzle.d.ts +2 -0
  1204. package/dist/node_modules/lucide-react/dist/esm/icons/pyramid.d.ts +2 -0
  1205. package/dist/node_modules/lucide-react/dist/esm/icons/qr-code.d.ts +2 -0
  1206. package/dist/node_modules/lucide-react/dist/esm/icons/quote.d.ts +2 -0
  1207. package/dist/node_modules/lucide-react/dist/esm/icons/rabbit.d.ts +2 -0
  1208. package/dist/node_modules/lucide-react/dist/esm/icons/radar.d.ts +2 -0
  1209. package/dist/node_modules/lucide-react/dist/esm/icons/radiation.d.ts +2 -0
  1210. package/dist/node_modules/lucide-react/dist/esm/icons/radical.d.ts +2 -0
  1211. package/dist/node_modules/lucide-react/dist/esm/icons/radio-receiver.d.ts +2 -0
  1212. package/dist/node_modules/lucide-react/dist/esm/icons/radio-tower.d.ts +2 -0
  1213. package/dist/node_modules/lucide-react/dist/esm/icons/radio.d.ts +2 -0
  1214. package/dist/node_modules/lucide-react/dist/esm/icons/radius.d.ts +2 -0
  1215. package/dist/node_modules/lucide-react/dist/esm/icons/rail-symbol.d.ts +2 -0
  1216. package/dist/node_modules/lucide-react/dist/esm/icons/rainbow.d.ts +2 -0
  1217. package/dist/node_modules/lucide-react/dist/esm/icons/rat.d.ts +2 -0
  1218. package/dist/node_modules/lucide-react/dist/esm/icons/ratio.d.ts +2 -0
  1219. package/dist/node_modules/lucide-react/dist/esm/icons/receipt-cent.d.ts +2 -0
  1220. package/dist/node_modules/lucide-react/dist/esm/icons/receipt-euro.d.ts +2 -0
  1221. package/dist/node_modules/lucide-react/dist/esm/icons/receipt-indian-rupee.d.ts +2 -0
  1222. package/dist/node_modules/lucide-react/dist/esm/icons/receipt-japanese-yen.d.ts +2 -0
  1223. package/dist/node_modules/lucide-react/dist/esm/icons/receipt-pound-sterling.d.ts +2 -0
  1224. package/dist/node_modules/lucide-react/dist/esm/icons/receipt-russian-ruble.d.ts +2 -0
  1225. package/dist/node_modules/lucide-react/dist/esm/icons/receipt-swiss-franc.d.ts +2 -0
  1226. package/dist/node_modules/lucide-react/dist/esm/icons/receipt-text.d.ts +2 -0
  1227. package/dist/node_modules/lucide-react/dist/esm/icons/receipt.d.ts +2 -0
  1228. package/dist/node_modules/lucide-react/dist/esm/icons/rectangle-ellipsis.d.ts +2 -0
  1229. package/dist/node_modules/lucide-react/dist/esm/icons/rectangle-horizontal.d.ts +2 -0
  1230. package/dist/node_modules/lucide-react/dist/esm/icons/rectangle-vertical.d.ts +2 -0
  1231. package/dist/node_modules/lucide-react/dist/esm/icons/recycle.d.ts +2 -0
  1232. package/dist/node_modules/lucide-react/dist/esm/icons/redo-2.d.ts +2 -0
  1233. package/dist/node_modules/lucide-react/dist/esm/icons/redo-dot.d.ts +2 -0
  1234. package/dist/node_modules/lucide-react/dist/esm/icons/redo.d.ts +2 -0
  1235. package/dist/node_modules/lucide-react/dist/esm/icons/refresh-ccw-dot.d.ts +2 -0
  1236. package/dist/node_modules/lucide-react/dist/esm/icons/refresh-ccw.d.ts +2 -0
  1237. package/dist/node_modules/lucide-react/dist/esm/icons/refresh-cw-off.d.ts +2 -0
  1238. package/dist/node_modules/lucide-react/dist/esm/icons/refresh-cw.d.ts +2 -0
  1239. package/dist/node_modules/lucide-react/dist/esm/icons/refrigerator.d.ts +2 -0
  1240. package/dist/node_modules/lucide-react/dist/esm/icons/regex.d.ts +2 -0
  1241. package/dist/node_modules/lucide-react/dist/esm/icons/remove-formatting.d.ts +2 -0
  1242. package/dist/node_modules/lucide-react/dist/esm/icons/repeat-1.d.ts +2 -0
  1243. package/dist/node_modules/lucide-react/dist/esm/icons/repeat-2.d.ts +2 -0
  1244. package/dist/node_modules/lucide-react/dist/esm/icons/repeat.d.ts +2 -0
  1245. package/dist/node_modules/lucide-react/dist/esm/icons/replace-all.d.ts +2 -0
  1246. package/dist/node_modules/lucide-react/dist/esm/icons/replace.d.ts +2 -0
  1247. package/dist/node_modules/lucide-react/dist/esm/icons/reply-all.d.ts +2 -0
  1248. package/dist/node_modules/lucide-react/dist/esm/icons/reply.d.ts +2 -0
  1249. package/dist/node_modules/lucide-react/dist/esm/icons/rewind.d.ts +2 -0
  1250. package/dist/node_modules/lucide-react/dist/esm/icons/ribbon.d.ts +2 -0
  1251. package/dist/node_modules/lucide-react/dist/esm/icons/rocket.d.ts +2 -0
  1252. package/dist/node_modules/lucide-react/dist/esm/icons/rocking-chair.d.ts +2 -0
  1253. package/dist/node_modules/lucide-react/dist/esm/icons/roller-coaster.d.ts +2 -0
  1254. package/dist/node_modules/lucide-react/dist/esm/icons/rotate-3d.d.ts +2 -0
  1255. package/dist/node_modules/lucide-react/dist/esm/icons/rotate-ccw-square.d.ts +2 -0
  1256. package/dist/node_modules/lucide-react/dist/esm/icons/rotate-ccw.d.ts +2 -0
  1257. package/dist/node_modules/lucide-react/dist/esm/icons/rotate-cw-square.d.ts +2 -0
  1258. package/dist/node_modules/lucide-react/dist/esm/icons/rotate-cw.d.ts +2 -0
  1259. package/dist/node_modules/lucide-react/dist/esm/icons/route-off.d.ts +2 -0
  1260. package/dist/node_modules/lucide-react/dist/esm/icons/route.d.ts +2 -0
  1261. package/dist/node_modules/lucide-react/dist/esm/icons/router.d.ts +2 -0
  1262. package/dist/node_modules/lucide-react/dist/esm/icons/rows-2.d.ts +2 -0
  1263. package/dist/node_modules/lucide-react/dist/esm/icons/rows-3.d.ts +2 -0
  1264. package/dist/node_modules/lucide-react/dist/esm/icons/rows-4.d.ts +2 -0
  1265. package/dist/node_modules/lucide-react/dist/esm/icons/rss.d.ts +2 -0
  1266. package/dist/node_modules/lucide-react/dist/esm/icons/ruler.d.ts +2 -0
  1267. package/dist/node_modules/lucide-react/dist/esm/icons/russian-ruble.d.ts +2 -0
  1268. package/dist/node_modules/lucide-react/dist/esm/icons/sailboat.d.ts +2 -0
  1269. package/dist/node_modules/lucide-react/dist/esm/icons/salad.d.ts +2 -0
  1270. package/dist/node_modules/lucide-react/dist/esm/icons/sandwich.d.ts +2 -0
  1271. package/dist/node_modules/lucide-react/dist/esm/icons/satellite-dish.d.ts +2 -0
  1272. package/dist/node_modules/lucide-react/dist/esm/icons/satellite.d.ts +2 -0
  1273. package/dist/node_modules/lucide-react/dist/esm/icons/save-all.d.ts +2 -0
  1274. package/dist/node_modules/lucide-react/dist/esm/icons/save-off.d.ts +2 -0
  1275. package/dist/node_modules/lucide-react/dist/esm/icons/save.d.ts +2 -0
  1276. package/dist/node_modules/lucide-react/dist/esm/icons/scale-3d.d.ts +2 -0
  1277. package/dist/node_modules/lucide-react/dist/esm/icons/scale.d.ts +2 -0
  1278. package/dist/node_modules/lucide-react/dist/esm/icons/scaling.d.ts +2 -0
  1279. package/dist/node_modules/lucide-react/dist/esm/icons/scan-barcode.d.ts +2 -0
  1280. package/dist/node_modules/lucide-react/dist/esm/icons/scan-eye.d.ts +2 -0
  1281. package/dist/node_modules/lucide-react/dist/esm/icons/scan-face.d.ts +2 -0
  1282. package/dist/node_modules/lucide-react/dist/esm/icons/scan-line.d.ts +2 -0
  1283. package/dist/node_modules/lucide-react/dist/esm/icons/scan-qr-code.d.ts +2 -0
  1284. package/dist/node_modules/lucide-react/dist/esm/icons/scan-search.d.ts +2 -0
  1285. package/dist/node_modules/lucide-react/dist/esm/icons/scan-text.d.ts +2 -0
  1286. package/dist/node_modules/lucide-react/dist/esm/icons/scan.d.ts +2 -0
  1287. package/dist/node_modules/lucide-react/dist/esm/icons/school.d.ts +2 -0
  1288. package/dist/node_modules/lucide-react/dist/esm/icons/scissors-line-dashed.d.ts +2 -0
  1289. package/dist/node_modules/lucide-react/dist/esm/icons/scissors.d.ts +2 -0
  1290. package/dist/node_modules/lucide-react/dist/esm/icons/screen-share-off.d.ts +2 -0
  1291. package/dist/node_modules/lucide-react/dist/esm/icons/screen-share.d.ts +2 -0
  1292. package/dist/node_modules/lucide-react/dist/esm/icons/scroll-text.d.ts +2 -0
  1293. package/dist/node_modules/lucide-react/dist/esm/icons/scroll.d.ts +2 -0
  1294. package/dist/node_modules/lucide-react/dist/esm/icons/search-check.d.ts +2 -0
  1295. package/dist/node_modules/lucide-react/dist/esm/icons/search-code.d.ts +2 -0
  1296. package/dist/node_modules/lucide-react/dist/esm/icons/search-slash.d.ts +2 -0
  1297. package/dist/node_modules/lucide-react/dist/esm/icons/search-x.d.ts +2 -0
  1298. package/dist/node_modules/lucide-react/dist/esm/icons/search.d.ts +2 -0
  1299. package/dist/node_modules/lucide-react/dist/esm/icons/section.d.ts +2 -0
  1300. package/dist/node_modules/lucide-react/dist/esm/icons/send-horizontal.d.ts +2 -0
  1301. package/dist/node_modules/lucide-react/dist/esm/icons/send-to-back.d.ts +2 -0
  1302. package/dist/node_modules/lucide-react/dist/esm/icons/send.d.ts +2 -0
  1303. package/dist/node_modules/lucide-react/dist/esm/icons/separator-horizontal.d.ts +2 -0
  1304. package/dist/node_modules/lucide-react/dist/esm/icons/separator-vertical.d.ts +2 -0
  1305. package/dist/node_modules/lucide-react/dist/esm/icons/server-cog.d.ts +2 -0
  1306. package/dist/node_modules/lucide-react/dist/esm/icons/server-crash.d.ts +2 -0
  1307. package/dist/node_modules/lucide-react/dist/esm/icons/server-off.d.ts +2 -0
  1308. package/dist/node_modules/lucide-react/dist/esm/icons/server.d.ts +2 -0
  1309. package/dist/node_modules/lucide-react/dist/esm/icons/settings-2.d.ts +2 -0
  1310. package/dist/node_modules/lucide-react/dist/esm/icons/settings.d.ts +2 -0
  1311. package/dist/node_modules/lucide-react/dist/esm/icons/shapes.d.ts +2 -0
  1312. package/dist/node_modules/lucide-react/dist/esm/icons/share-2.d.ts +2 -0
  1313. package/dist/node_modules/lucide-react/dist/esm/icons/share.d.ts +2 -0
  1314. package/dist/node_modules/lucide-react/dist/esm/icons/sheet.d.ts +2 -0
  1315. package/dist/node_modules/lucide-react/dist/esm/icons/shell.d.ts +2 -0
  1316. package/dist/node_modules/lucide-react/dist/esm/icons/shield-alert.d.ts +2 -0
  1317. package/dist/node_modules/lucide-react/dist/esm/icons/shield-ban.d.ts +2 -0
  1318. package/dist/node_modules/lucide-react/dist/esm/icons/shield-check.d.ts +2 -0
  1319. package/dist/node_modules/lucide-react/dist/esm/icons/shield-ellipsis.d.ts +2 -0
  1320. package/dist/node_modules/lucide-react/dist/esm/icons/shield-half.d.ts +2 -0
  1321. package/dist/node_modules/lucide-react/dist/esm/icons/shield-minus.d.ts +2 -0
  1322. package/dist/node_modules/lucide-react/dist/esm/icons/shield-off.d.ts +2 -0
  1323. package/dist/node_modules/lucide-react/dist/esm/icons/shield-plus.d.ts +2 -0
  1324. package/dist/node_modules/lucide-react/dist/esm/icons/shield-question.d.ts +2 -0
  1325. package/dist/node_modules/lucide-react/dist/esm/icons/shield-x.d.ts +2 -0
  1326. package/dist/node_modules/lucide-react/dist/esm/icons/shield.d.ts +2 -0
  1327. package/dist/node_modules/lucide-react/dist/esm/icons/ship-wheel.d.ts +2 -0
  1328. package/dist/node_modules/lucide-react/dist/esm/icons/ship.d.ts +2 -0
  1329. package/dist/node_modules/lucide-react/dist/esm/icons/shirt.d.ts +2 -0
  1330. package/dist/node_modules/lucide-react/dist/esm/icons/shopping-bag.d.ts +2 -0
  1331. package/dist/node_modules/lucide-react/dist/esm/icons/shopping-basket.d.ts +2 -0
  1332. package/dist/node_modules/lucide-react/dist/esm/icons/shopping-cart.d.ts +2 -0
  1333. package/dist/node_modules/lucide-react/dist/esm/icons/shovel.d.ts +2 -0
  1334. package/dist/node_modules/lucide-react/dist/esm/icons/shower-head.d.ts +2 -0
  1335. package/dist/node_modules/lucide-react/dist/esm/icons/shrink.d.ts +2 -0
  1336. package/dist/node_modules/lucide-react/dist/esm/icons/shrub.d.ts +2 -0
  1337. package/dist/node_modules/lucide-react/dist/esm/icons/shuffle.d.ts +2 -0
  1338. package/dist/node_modules/lucide-react/dist/esm/icons/sigma.d.ts +2 -0
  1339. package/dist/node_modules/lucide-react/dist/esm/icons/signal-high.d.ts +2 -0
  1340. package/dist/node_modules/lucide-react/dist/esm/icons/signal-low.d.ts +2 -0
  1341. package/dist/node_modules/lucide-react/dist/esm/icons/signal-medium.d.ts +2 -0
  1342. package/dist/node_modules/lucide-react/dist/esm/icons/signal-zero.d.ts +2 -0
  1343. package/dist/node_modules/lucide-react/dist/esm/icons/signal.d.ts +2 -0
  1344. package/dist/node_modules/lucide-react/dist/esm/icons/signature.d.ts +2 -0
  1345. package/dist/node_modules/lucide-react/dist/esm/icons/signpost-big.d.ts +2 -0
  1346. package/dist/node_modules/lucide-react/dist/esm/icons/signpost.d.ts +2 -0
  1347. package/dist/node_modules/lucide-react/dist/esm/icons/siren.d.ts +2 -0
  1348. package/dist/node_modules/lucide-react/dist/esm/icons/skip-back.d.ts +2 -0
  1349. package/dist/node_modules/lucide-react/dist/esm/icons/skip-forward.d.ts +2 -0
  1350. package/dist/node_modules/lucide-react/dist/esm/icons/skull.d.ts +2 -0
  1351. package/dist/node_modules/lucide-react/dist/esm/icons/slack.d.ts +2 -0
  1352. package/dist/node_modules/lucide-react/dist/esm/icons/slash.d.ts +2 -0
  1353. package/dist/node_modules/lucide-react/dist/esm/icons/slice.d.ts +2 -0
  1354. package/dist/node_modules/lucide-react/dist/esm/icons/sliders-horizontal.d.ts +2 -0
  1355. package/dist/node_modules/lucide-react/dist/esm/icons/sliders-vertical.d.ts +2 -0
  1356. package/dist/node_modules/lucide-react/dist/esm/icons/smartphone-charging.d.ts +2 -0
  1357. package/dist/node_modules/lucide-react/dist/esm/icons/smartphone-nfc.d.ts +2 -0
  1358. package/dist/node_modules/lucide-react/dist/esm/icons/smartphone.d.ts +2 -0
  1359. package/dist/node_modules/lucide-react/dist/esm/icons/smile-plus.d.ts +2 -0
  1360. package/dist/node_modules/lucide-react/dist/esm/icons/smile.d.ts +2 -0
  1361. package/dist/node_modules/lucide-react/dist/esm/icons/snail.d.ts +2 -0
  1362. package/dist/node_modules/lucide-react/dist/esm/icons/snowflake.d.ts +2 -0
  1363. package/dist/node_modules/lucide-react/dist/esm/icons/sofa.d.ts +2 -0
  1364. package/dist/node_modules/lucide-react/dist/esm/icons/soup.d.ts +2 -0
  1365. package/dist/node_modules/lucide-react/dist/esm/icons/space.d.ts +2 -0
  1366. package/dist/node_modules/lucide-react/dist/esm/icons/spade.d.ts +2 -0
  1367. package/dist/node_modules/lucide-react/dist/esm/icons/sparkle.d.ts +2 -0
  1368. package/dist/node_modules/lucide-react/dist/esm/icons/sparkles.d.ts +2 -0
  1369. package/dist/node_modules/lucide-react/dist/esm/icons/speaker.d.ts +2 -0
  1370. package/dist/node_modules/lucide-react/dist/esm/icons/speech.d.ts +2 -0
  1371. package/dist/node_modules/lucide-react/dist/esm/icons/spell-check-2.d.ts +2 -0
  1372. package/dist/node_modules/lucide-react/dist/esm/icons/spell-check.d.ts +2 -0
  1373. package/dist/node_modules/lucide-react/dist/esm/icons/spline.d.ts +2 -0
  1374. package/dist/node_modules/lucide-react/dist/esm/icons/split.d.ts +2 -0
  1375. package/dist/node_modules/lucide-react/dist/esm/icons/spray-can.d.ts +2 -0
  1376. package/dist/node_modules/lucide-react/dist/esm/icons/sprout.d.ts +2 -0
  1377. package/dist/node_modules/lucide-react/dist/esm/icons/square-activity.d.ts +2 -0
  1378. package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-down-left.d.ts +2 -0
  1379. package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-down-right.d.ts +2 -0
  1380. package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-down.d.ts +2 -0
  1381. package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-left.d.ts +2 -0
  1382. package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-out-down-left.d.ts +2 -0
  1383. package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-out-down-right.d.ts +2 -0
  1384. package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-out-up-left.d.ts +2 -0
  1385. package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-out-up-right.d.ts +2 -0
  1386. package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-right.d.ts +2 -0
  1387. package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-up-left.d.ts +2 -0
  1388. package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-up-right.d.ts +2 -0
  1389. package/dist/node_modules/lucide-react/dist/esm/icons/square-arrow-up.d.ts +2 -0
  1390. package/dist/node_modules/lucide-react/dist/esm/icons/square-asterisk.d.ts +2 -0
  1391. package/dist/node_modules/lucide-react/dist/esm/icons/square-bottom-dashed-scissors.d.ts +2 -0
  1392. package/dist/node_modules/lucide-react/dist/esm/icons/square-chart-gantt.d.ts +2 -0
  1393. package/dist/node_modules/lucide-react/dist/esm/icons/square-check-big.d.ts +2 -0
  1394. package/dist/node_modules/lucide-react/dist/esm/icons/square-check.d.ts +2 -0
  1395. package/dist/node_modules/lucide-react/dist/esm/icons/square-chevron-down.d.ts +2 -0
  1396. package/dist/node_modules/lucide-react/dist/esm/icons/square-chevron-left.d.ts +2 -0
  1397. package/dist/node_modules/lucide-react/dist/esm/icons/square-chevron-right.d.ts +2 -0
  1398. package/dist/node_modules/lucide-react/dist/esm/icons/square-chevron-up.d.ts +2 -0
  1399. package/dist/node_modules/lucide-react/dist/esm/icons/square-code.d.ts +2 -0
  1400. package/dist/node_modules/lucide-react/dist/esm/icons/square-dashed-bottom-code.d.ts +2 -0
  1401. package/dist/node_modules/lucide-react/dist/esm/icons/square-dashed-bottom.d.ts +2 -0
  1402. package/dist/node_modules/lucide-react/dist/esm/icons/square-dashed-kanban.d.ts +2 -0
  1403. package/dist/node_modules/lucide-react/dist/esm/icons/square-dashed-mouse-pointer.d.ts +2 -0
  1404. package/dist/node_modules/lucide-react/dist/esm/icons/square-dashed.d.ts +2 -0
  1405. package/dist/node_modules/lucide-react/dist/esm/icons/square-divide.d.ts +2 -0
  1406. package/dist/node_modules/lucide-react/dist/esm/icons/square-dot.d.ts +2 -0
  1407. package/dist/node_modules/lucide-react/dist/esm/icons/square-equal.d.ts +2 -0
  1408. package/dist/node_modules/lucide-react/dist/esm/icons/square-function.d.ts +2 -0
  1409. package/dist/node_modules/lucide-react/dist/esm/icons/square-kanban.d.ts +2 -0
  1410. package/dist/node_modules/lucide-react/dist/esm/icons/square-library.d.ts +2 -0
  1411. package/dist/node_modules/lucide-react/dist/esm/icons/square-m.d.ts +2 -0
  1412. package/dist/node_modules/lucide-react/dist/esm/icons/square-menu.d.ts +2 -0
  1413. package/dist/node_modules/lucide-react/dist/esm/icons/square-minus.d.ts +2 -0
  1414. package/dist/node_modules/lucide-react/dist/esm/icons/square-mouse-pointer.d.ts +2 -0
  1415. package/dist/node_modules/lucide-react/dist/esm/icons/square-parking-off.d.ts +2 -0
  1416. package/dist/node_modules/lucide-react/dist/esm/icons/square-parking.d.ts +2 -0
  1417. package/dist/node_modules/lucide-react/dist/esm/icons/square-pen.d.ts +2 -0
  1418. package/dist/node_modules/lucide-react/dist/esm/icons/square-percent.d.ts +2 -0
  1419. package/dist/node_modules/lucide-react/dist/esm/icons/square-pi.d.ts +2 -0
  1420. package/dist/node_modules/lucide-react/dist/esm/icons/square-pilcrow.d.ts +2 -0
  1421. package/dist/node_modules/lucide-react/dist/esm/icons/square-play.d.ts +2 -0
  1422. package/dist/node_modules/lucide-react/dist/esm/icons/square-plus.d.ts +2 -0
  1423. package/dist/node_modules/lucide-react/dist/esm/icons/square-power.d.ts +2 -0
  1424. package/dist/node_modules/lucide-react/dist/esm/icons/square-radical.d.ts +2 -0
  1425. package/dist/node_modules/lucide-react/dist/esm/icons/square-scissors.d.ts +2 -0
  1426. package/dist/node_modules/lucide-react/dist/esm/icons/square-sigma.d.ts +2 -0
  1427. package/dist/node_modules/lucide-react/dist/esm/icons/square-slash.d.ts +2 -0
  1428. package/dist/node_modules/lucide-react/dist/esm/icons/square-split-horizontal.d.ts +2 -0
  1429. package/dist/node_modules/lucide-react/dist/esm/icons/square-split-vertical.d.ts +2 -0
  1430. package/dist/node_modules/lucide-react/dist/esm/icons/square-square.d.ts +2 -0
  1431. package/dist/node_modules/lucide-react/dist/esm/icons/square-stack.d.ts +2 -0
  1432. package/dist/node_modules/lucide-react/dist/esm/icons/square-terminal.d.ts +2 -0
  1433. package/dist/node_modules/lucide-react/dist/esm/icons/square-user-round.d.ts +2 -0
  1434. package/dist/node_modules/lucide-react/dist/esm/icons/square-user.d.ts +2 -0
  1435. package/dist/node_modules/lucide-react/dist/esm/icons/square-x.d.ts +2 -0
  1436. package/dist/node_modules/lucide-react/dist/esm/icons/square.d.ts +2 -0
  1437. package/dist/node_modules/lucide-react/dist/esm/icons/squircle.d.ts +2 -0
  1438. package/dist/node_modules/lucide-react/dist/esm/icons/squirrel.d.ts +2 -0
  1439. package/dist/node_modules/lucide-react/dist/esm/icons/stamp.d.ts +2 -0
  1440. package/dist/node_modules/lucide-react/dist/esm/icons/star-half.d.ts +2 -0
  1441. package/dist/node_modules/lucide-react/dist/esm/icons/star-off.d.ts +2 -0
  1442. package/dist/node_modules/lucide-react/dist/esm/icons/star.d.ts +2 -0
  1443. package/dist/node_modules/lucide-react/dist/esm/icons/step-back.d.ts +2 -0
  1444. package/dist/node_modules/lucide-react/dist/esm/icons/step-forward.d.ts +2 -0
  1445. package/dist/node_modules/lucide-react/dist/esm/icons/stethoscope.d.ts +2 -0
  1446. package/dist/node_modules/lucide-react/dist/esm/icons/sticker.d.ts +2 -0
  1447. package/dist/node_modules/lucide-react/dist/esm/icons/sticky-note.d.ts +2 -0
  1448. package/dist/node_modules/lucide-react/dist/esm/icons/store.d.ts +2 -0
  1449. package/dist/node_modules/lucide-react/dist/esm/icons/stretch-horizontal.d.ts +2 -0
  1450. package/dist/node_modules/lucide-react/dist/esm/icons/stretch-vertical.d.ts +2 -0
  1451. package/dist/node_modules/lucide-react/dist/esm/icons/strikethrough.d.ts +2 -0
  1452. package/dist/node_modules/lucide-react/dist/esm/icons/subscript.d.ts +2 -0
  1453. package/dist/node_modules/lucide-react/dist/esm/icons/sun-dim.d.ts +2 -0
  1454. package/dist/node_modules/lucide-react/dist/esm/icons/sun-medium.d.ts +2 -0
  1455. package/dist/node_modules/lucide-react/dist/esm/icons/sun-moon.d.ts +2 -0
  1456. package/dist/node_modules/lucide-react/dist/esm/icons/sun-snow.d.ts +2 -0
  1457. package/dist/node_modules/lucide-react/dist/esm/icons/sun.d.ts +2 -0
  1458. package/dist/node_modules/lucide-react/dist/esm/icons/sunrise.d.ts +2 -0
  1459. package/dist/node_modules/lucide-react/dist/esm/icons/sunset.d.ts +2 -0
  1460. package/dist/node_modules/lucide-react/dist/esm/icons/superscript.d.ts +2 -0
  1461. package/dist/node_modules/lucide-react/dist/esm/icons/swatch-book.d.ts +2 -0
  1462. package/dist/node_modules/lucide-react/dist/esm/icons/swiss-franc.d.ts +2 -0
  1463. package/dist/node_modules/lucide-react/dist/esm/icons/switch-camera.d.ts +2 -0
  1464. package/dist/node_modules/lucide-react/dist/esm/icons/sword.d.ts +2 -0
  1465. package/dist/node_modules/lucide-react/dist/esm/icons/swords.d.ts +2 -0
  1466. package/dist/node_modules/lucide-react/dist/esm/icons/syringe.d.ts +2 -0
  1467. package/dist/node_modules/lucide-react/dist/esm/icons/table-2.d.ts +2 -0
  1468. package/dist/node_modules/lucide-react/dist/esm/icons/table-cells-merge.d.ts +2 -0
  1469. package/dist/node_modules/lucide-react/dist/esm/icons/table-cells-split.d.ts +2 -0
  1470. package/dist/node_modules/lucide-react/dist/esm/icons/table-columns-split.d.ts +2 -0
  1471. package/dist/node_modules/lucide-react/dist/esm/icons/table-of-contents.d.ts +2 -0
  1472. package/dist/node_modules/lucide-react/dist/esm/icons/table-properties.d.ts +2 -0
  1473. package/dist/node_modules/lucide-react/dist/esm/icons/table-rows-split.d.ts +2 -0
  1474. package/dist/node_modules/lucide-react/dist/esm/icons/table.d.ts +2 -0
  1475. package/dist/node_modules/lucide-react/dist/esm/icons/tablet-smartphone.d.ts +2 -0
  1476. package/dist/node_modules/lucide-react/dist/esm/icons/tablet.d.ts +2 -0
  1477. package/dist/node_modules/lucide-react/dist/esm/icons/tablets.d.ts +2 -0
  1478. package/dist/node_modules/lucide-react/dist/esm/icons/tag.d.ts +2 -0
  1479. package/dist/node_modules/lucide-react/dist/esm/icons/tags.d.ts +2 -0
  1480. package/dist/node_modules/lucide-react/dist/esm/icons/tally-1.d.ts +2 -0
  1481. package/dist/node_modules/lucide-react/dist/esm/icons/tally-2.d.ts +2 -0
  1482. package/dist/node_modules/lucide-react/dist/esm/icons/tally-3.d.ts +2 -0
  1483. package/dist/node_modules/lucide-react/dist/esm/icons/tally-4.d.ts +2 -0
  1484. package/dist/node_modules/lucide-react/dist/esm/icons/tally-5.d.ts +2 -0
  1485. package/dist/node_modules/lucide-react/dist/esm/icons/tangent.d.ts +2 -0
  1486. package/dist/node_modules/lucide-react/dist/esm/icons/target.d.ts +2 -0
  1487. package/dist/node_modules/lucide-react/dist/esm/icons/telescope.d.ts +2 -0
  1488. package/dist/node_modules/lucide-react/dist/esm/icons/tent-tree.d.ts +2 -0
  1489. package/dist/node_modules/lucide-react/dist/esm/icons/tent.d.ts +2 -0
  1490. package/dist/node_modules/lucide-react/dist/esm/icons/terminal.d.ts +2 -0
  1491. package/dist/node_modules/lucide-react/dist/esm/icons/test-tube-diagonal.d.ts +2 -0
  1492. package/dist/node_modules/lucide-react/dist/esm/icons/test-tube.d.ts +2 -0
  1493. package/dist/node_modules/lucide-react/dist/esm/icons/test-tubes.d.ts +2 -0
  1494. package/dist/node_modules/lucide-react/dist/esm/icons/text-cursor-input.d.ts +2 -0
  1495. package/dist/node_modules/lucide-react/dist/esm/icons/text-cursor.d.ts +2 -0
  1496. package/dist/node_modules/lucide-react/dist/esm/icons/text-quote.d.ts +2 -0
  1497. package/dist/node_modules/lucide-react/dist/esm/icons/text-search.d.ts +2 -0
  1498. package/dist/node_modules/lucide-react/dist/esm/icons/text-select.d.ts +2 -0
  1499. package/dist/node_modules/lucide-react/dist/esm/icons/text.d.ts +2 -0
  1500. package/dist/node_modules/lucide-react/dist/esm/icons/theater.d.ts +2 -0
  1501. package/dist/node_modules/lucide-react/dist/esm/icons/thermometer-snowflake.d.ts +2 -0
  1502. package/dist/node_modules/lucide-react/dist/esm/icons/thermometer-sun.d.ts +2 -0
  1503. package/dist/node_modules/lucide-react/dist/esm/icons/thermometer.d.ts +2 -0
  1504. package/dist/node_modules/lucide-react/dist/esm/icons/thumbs-down.d.ts +2 -0
  1505. package/dist/node_modules/lucide-react/dist/esm/icons/thumbs-up.d.ts +2 -0
  1506. package/dist/node_modules/lucide-react/dist/esm/icons/ticket-check.d.ts +2 -0
  1507. package/dist/node_modules/lucide-react/dist/esm/icons/ticket-minus.d.ts +2 -0
  1508. package/dist/node_modules/lucide-react/dist/esm/icons/ticket-percent.d.ts +2 -0
  1509. package/dist/node_modules/lucide-react/dist/esm/icons/ticket-plus.d.ts +2 -0
  1510. package/dist/node_modules/lucide-react/dist/esm/icons/ticket-slash.d.ts +2 -0
  1511. package/dist/node_modules/lucide-react/dist/esm/icons/ticket-x.d.ts +2 -0
  1512. package/dist/node_modules/lucide-react/dist/esm/icons/ticket.d.ts +2 -0
  1513. package/dist/node_modules/lucide-react/dist/esm/icons/tickets-plane.d.ts +2 -0
  1514. package/dist/node_modules/lucide-react/dist/esm/icons/tickets.d.ts +2 -0
  1515. package/dist/node_modules/lucide-react/dist/esm/icons/timer-off.d.ts +2 -0
  1516. package/dist/node_modules/lucide-react/dist/esm/icons/timer-reset.d.ts +2 -0
  1517. package/dist/node_modules/lucide-react/dist/esm/icons/timer.d.ts +2 -0
  1518. package/dist/node_modules/lucide-react/dist/esm/icons/toggle-left.d.ts +2 -0
  1519. package/dist/node_modules/lucide-react/dist/esm/icons/toggle-right.d.ts +2 -0
  1520. package/dist/node_modules/lucide-react/dist/esm/icons/toilet.d.ts +2 -0
  1521. package/dist/node_modules/lucide-react/dist/esm/icons/tornado.d.ts +2 -0
  1522. package/dist/node_modules/lucide-react/dist/esm/icons/torus.d.ts +2 -0
  1523. package/dist/node_modules/lucide-react/dist/esm/icons/touchpad-off.d.ts +2 -0
  1524. package/dist/node_modules/lucide-react/dist/esm/icons/touchpad.d.ts +2 -0
  1525. package/dist/node_modules/lucide-react/dist/esm/icons/tower-control.d.ts +2 -0
  1526. package/dist/node_modules/lucide-react/dist/esm/icons/toy-brick.d.ts +2 -0
  1527. package/dist/node_modules/lucide-react/dist/esm/icons/tractor.d.ts +2 -0
  1528. package/dist/node_modules/lucide-react/dist/esm/icons/traffic-cone.d.ts +2 -0
  1529. package/dist/node_modules/lucide-react/dist/esm/icons/train-front-tunnel.d.ts +2 -0
  1530. package/dist/node_modules/lucide-react/dist/esm/icons/train-front.d.ts +2 -0
  1531. package/dist/node_modules/lucide-react/dist/esm/icons/train-track.d.ts +2 -0
  1532. package/dist/node_modules/lucide-react/dist/esm/icons/tram-front.d.ts +2 -0
  1533. package/dist/node_modules/lucide-react/dist/esm/icons/trash-2.d.ts +2 -0
  1534. package/dist/node_modules/lucide-react/dist/esm/icons/trash.d.ts +2 -0
  1535. package/dist/node_modules/lucide-react/dist/esm/icons/tree-deciduous.d.ts +2 -0
  1536. package/dist/node_modules/lucide-react/dist/esm/icons/tree-palm.d.ts +2 -0
  1537. package/dist/node_modules/lucide-react/dist/esm/icons/tree-pine.d.ts +2 -0
  1538. package/dist/node_modules/lucide-react/dist/esm/icons/trees.d.ts +2 -0
  1539. package/dist/node_modules/lucide-react/dist/esm/icons/trello.d.ts +2 -0
  1540. package/dist/node_modules/lucide-react/dist/esm/icons/trending-down.d.ts +2 -0
  1541. package/dist/node_modules/lucide-react/dist/esm/icons/trending-up-down.d.ts +2 -0
  1542. package/dist/node_modules/lucide-react/dist/esm/icons/trending-up.d.ts +2 -0
  1543. package/dist/node_modules/lucide-react/dist/esm/icons/triangle-alert.d.ts +2 -0
  1544. package/dist/node_modules/lucide-react/dist/esm/icons/triangle-right.d.ts +2 -0
  1545. package/dist/node_modules/lucide-react/dist/esm/icons/triangle.d.ts +2 -0
  1546. package/dist/node_modules/lucide-react/dist/esm/icons/trophy.d.ts +2 -0
  1547. package/dist/node_modules/lucide-react/dist/esm/icons/truck.d.ts +2 -0
  1548. package/dist/node_modules/lucide-react/dist/esm/icons/turtle.d.ts +2 -0
  1549. package/dist/node_modules/lucide-react/dist/esm/icons/tv-minimal-play.d.ts +2 -0
  1550. package/dist/node_modules/lucide-react/dist/esm/icons/tv-minimal.d.ts +2 -0
  1551. package/dist/node_modules/lucide-react/dist/esm/icons/tv.d.ts +2 -0
  1552. package/dist/node_modules/lucide-react/dist/esm/icons/twitch.d.ts +2 -0
  1553. package/dist/node_modules/lucide-react/dist/esm/icons/twitter.d.ts +2 -0
  1554. package/dist/node_modules/lucide-react/dist/esm/icons/type-outline.d.ts +2 -0
  1555. package/dist/node_modules/lucide-react/dist/esm/icons/type.d.ts +2 -0
  1556. package/dist/node_modules/lucide-react/dist/esm/icons/umbrella-off.d.ts +2 -0
  1557. package/dist/node_modules/lucide-react/dist/esm/icons/umbrella.d.ts +2 -0
  1558. package/dist/node_modules/lucide-react/dist/esm/icons/underline.d.ts +2 -0
  1559. package/dist/node_modules/lucide-react/dist/esm/icons/undo-2.d.ts +2 -0
  1560. package/dist/node_modules/lucide-react/dist/esm/icons/undo-dot.d.ts +2 -0
  1561. package/dist/node_modules/lucide-react/dist/esm/icons/undo.d.ts +2 -0
  1562. package/dist/node_modules/lucide-react/dist/esm/icons/unfold-horizontal.d.ts +2 -0
  1563. package/dist/node_modules/lucide-react/dist/esm/icons/unfold-vertical.d.ts +2 -0
  1564. package/dist/node_modules/lucide-react/dist/esm/icons/ungroup.d.ts +2 -0
  1565. package/dist/node_modules/lucide-react/dist/esm/icons/university.d.ts +2 -0
  1566. package/dist/node_modules/lucide-react/dist/esm/icons/unlink-2.d.ts +2 -0
  1567. package/dist/node_modules/lucide-react/dist/esm/icons/unlink.d.ts +2 -0
  1568. package/dist/node_modules/lucide-react/dist/esm/icons/unplug.d.ts +2 -0
  1569. package/dist/node_modules/lucide-react/dist/esm/icons/upload.d.ts +2 -0
  1570. package/dist/node_modules/lucide-react/dist/esm/icons/usb.d.ts +2 -0
  1571. package/dist/node_modules/lucide-react/dist/esm/icons/user-check.d.ts +2 -0
  1572. package/dist/node_modules/lucide-react/dist/esm/icons/user-cog.d.ts +2 -0
  1573. package/dist/node_modules/lucide-react/dist/esm/icons/user-minus.d.ts +2 -0
  1574. package/dist/node_modules/lucide-react/dist/esm/icons/user-pen.d.ts +2 -0
  1575. package/dist/node_modules/lucide-react/dist/esm/icons/user-plus.d.ts +2 -0
  1576. package/dist/node_modules/lucide-react/dist/esm/icons/user-round-check.d.ts +2 -0
  1577. package/dist/node_modules/lucide-react/dist/esm/icons/user-round-cog.d.ts +2 -0
  1578. package/dist/node_modules/lucide-react/dist/esm/icons/user-round-minus.d.ts +2 -0
  1579. package/dist/node_modules/lucide-react/dist/esm/icons/user-round-pen.d.ts +2 -0
  1580. package/dist/node_modules/lucide-react/dist/esm/icons/user-round-plus.d.ts +2 -0
  1581. package/dist/node_modules/lucide-react/dist/esm/icons/user-round-search.d.ts +2 -0
  1582. package/dist/node_modules/lucide-react/dist/esm/icons/user-round-x.d.ts +2 -0
  1583. package/dist/node_modules/lucide-react/dist/esm/icons/user-round.d.ts +2 -0
  1584. package/dist/node_modules/lucide-react/dist/esm/icons/user-search.d.ts +2 -0
  1585. package/dist/node_modules/lucide-react/dist/esm/icons/user-x.d.ts +2 -0
  1586. package/dist/node_modules/lucide-react/dist/esm/icons/user.d.ts +2 -0
  1587. package/dist/node_modules/lucide-react/dist/esm/icons/users-round.d.ts +2 -0
  1588. package/dist/node_modules/lucide-react/dist/esm/icons/users.d.ts +2 -0
  1589. package/dist/node_modules/lucide-react/dist/esm/icons/utensils-crossed.d.ts +2 -0
  1590. package/dist/node_modules/lucide-react/dist/esm/icons/utensils.d.ts +2 -0
  1591. package/dist/node_modules/lucide-react/dist/esm/icons/utility-pole.d.ts +2 -0
  1592. package/dist/node_modules/lucide-react/dist/esm/icons/variable.d.ts +2 -0
  1593. package/dist/node_modules/lucide-react/dist/esm/icons/vault.d.ts +2 -0
  1594. package/dist/node_modules/lucide-react/dist/esm/icons/vegan.d.ts +2 -0
  1595. package/dist/node_modules/lucide-react/dist/esm/icons/venetian-mask.d.ts +2 -0
  1596. package/dist/node_modules/lucide-react/dist/esm/icons/vibrate-off.d.ts +2 -0
  1597. package/dist/node_modules/lucide-react/dist/esm/icons/vibrate.d.ts +2 -0
  1598. package/dist/node_modules/lucide-react/dist/esm/icons/video-off.d.ts +2 -0
  1599. package/dist/node_modules/lucide-react/dist/esm/icons/video.d.ts +2 -0
  1600. package/dist/node_modules/lucide-react/dist/esm/icons/videotape.d.ts +2 -0
  1601. package/dist/node_modules/lucide-react/dist/esm/icons/view.d.ts +2 -0
  1602. package/dist/node_modules/lucide-react/dist/esm/icons/voicemail.d.ts +2 -0
  1603. package/dist/node_modules/lucide-react/dist/esm/icons/volleyball.d.ts +2 -0
  1604. package/dist/node_modules/lucide-react/dist/esm/icons/volume-1.d.ts +2 -0
  1605. package/dist/node_modules/lucide-react/dist/esm/icons/volume-2.d.ts +2 -0
  1606. package/dist/node_modules/lucide-react/dist/esm/icons/volume-off.d.ts +2 -0
  1607. package/dist/node_modules/lucide-react/dist/esm/icons/volume-x.d.ts +2 -0
  1608. package/dist/node_modules/lucide-react/dist/esm/icons/volume.d.ts +2 -0
  1609. package/dist/node_modules/lucide-react/dist/esm/icons/vote.d.ts +2 -0
  1610. package/dist/node_modules/lucide-react/dist/esm/icons/wallet-cards.d.ts +2 -0
  1611. package/dist/node_modules/lucide-react/dist/esm/icons/wallet-minimal.d.ts +2 -0
  1612. package/dist/node_modules/lucide-react/dist/esm/icons/wallet.d.ts +2 -0
  1613. package/dist/node_modules/lucide-react/dist/esm/icons/wallpaper.d.ts +2 -0
  1614. package/dist/node_modules/lucide-react/dist/esm/icons/wand-sparkles.d.ts +2 -0
  1615. package/dist/node_modules/lucide-react/dist/esm/icons/wand.d.ts +2 -0
  1616. package/dist/node_modules/lucide-react/dist/esm/icons/warehouse.d.ts +2 -0
  1617. package/dist/node_modules/lucide-react/dist/esm/icons/washing-machine.d.ts +2 -0
  1618. package/dist/node_modules/lucide-react/dist/esm/icons/watch.d.ts +2 -0
  1619. package/dist/node_modules/lucide-react/dist/esm/icons/waves.d.ts +2 -0
  1620. package/dist/node_modules/lucide-react/dist/esm/icons/waypoints.d.ts +2 -0
  1621. package/dist/node_modules/lucide-react/dist/esm/icons/webcam.d.ts +2 -0
  1622. package/dist/node_modules/lucide-react/dist/esm/icons/webhook-off.d.ts +2 -0
  1623. package/dist/node_modules/lucide-react/dist/esm/icons/webhook.d.ts +2 -0
  1624. package/dist/node_modules/lucide-react/dist/esm/icons/weight.d.ts +2 -0
  1625. package/dist/node_modules/lucide-react/dist/esm/icons/wheat-off.d.ts +2 -0
  1626. package/dist/node_modules/lucide-react/dist/esm/icons/wheat.d.ts +2 -0
  1627. package/dist/node_modules/lucide-react/dist/esm/icons/whole-word.d.ts +2 -0
  1628. package/dist/node_modules/lucide-react/dist/esm/icons/wifi-high.d.ts +2 -0
  1629. package/dist/node_modules/lucide-react/dist/esm/icons/wifi-low.d.ts +2 -0
  1630. package/dist/node_modules/lucide-react/dist/esm/icons/wifi-off.d.ts +2 -0
  1631. package/dist/node_modules/lucide-react/dist/esm/icons/wifi-zero.d.ts +2 -0
  1632. package/dist/node_modules/lucide-react/dist/esm/icons/wifi.d.ts +2 -0
  1633. package/dist/node_modules/lucide-react/dist/esm/icons/wind-arrow-down.d.ts +2 -0
  1634. package/dist/node_modules/lucide-react/dist/esm/icons/wind.d.ts +2 -0
  1635. package/dist/node_modules/lucide-react/dist/esm/icons/wine-off.d.ts +2 -0
  1636. package/dist/node_modules/lucide-react/dist/esm/icons/wine.d.ts +2 -0
  1637. package/dist/node_modules/lucide-react/dist/esm/icons/workflow.d.ts +2 -0
  1638. package/dist/node_modules/lucide-react/dist/esm/icons/worm.d.ts +2 -0
  1639. package/dist/node_modules/lucide-react/dist/esm/icons/wrap-text.d.ts +2 -0
  1640. package/dist/node_modules/lucide-react/dist/esm/icons/wrench.d.ts +2 -0
  1641. package/dist/node_modules/lucide-react/dist/esm/icons/x.d.ts +2 -0
  1642. package/dist/node_modules/lucide-react/dist/esm/icons/youtube.d.ts +2 -0
  1643. package/dist/node_modules/lucide-react/dist/esm/icons/zap-off.d.ts +2 -0
  1644. package/dist/node_modules/lucide-react/dist/esm/icons/zap.d.ts +2 -0
  1645. package/dist/node_modules/lucide-react/dist/esm/icons/zoom-in.d.ts +2 -0
  1646. package/dist/node_modules/lucide-react/dist/esm/icons/zoom-out.d.ts +2 -0
  1647. package/dist/node_modules/lucide-react/dist/esm/lucide-react.d.ts +1545 -0
  1648. package/dist/node_modules/lucide-react/dist/esm/shared/src/utils.d.ts +8 -0
  1649. package/dist/node_modules/next/dist/client/add-base-path.d.ts +1 -0
  1650. package/dist/node_modules/next/dist/client/add-locale.d.ts +1 -0
  1651. package/dist/node_modules/next/dist/client/detect-domain-locale.d.ts +1 -0
  1652. package/dist/node_modules/next/dist/client/get-domain-locale.d.ts +1 -0
  1653. package/dist/node_modules/next/dist/client/has-base-path.d.ts +1 -0
  1654. package/dist/node_modules/next/dist/client/link.d.ts +2 -0
  1655. package/dist/node_modules/next/dist/client/normalize-locale-path.d.ts +1 -0
  1656. package/dist/node_modules/next/dist/client/normalize-trailing-slash.d.ts +1 -0
  1657. package/dist/node_modules/next/dist/client/request-idle-callback.d.ts +2 -0
  1658. package/dist/node_modules/next/dist/client/resolve-href.d.ts +1 -0
  1659. package/dist/node_modules/next/dist/client/use-intersection.d.ts +1 -0
  1660. package/dist/node_modules/next/dist/client/use-merged-ref.d.ts +1 -0
  1661. package/dist/node_modules/next/dist/compiled/amphtml-validator/index.d.ts +2 -0
  1662. package/dist/node_modules/next/dist/compiled/commander/index.d.ts +2 -0
  1663. package/dist/node_modules/next/dist/compiled/jest-worker/index.d.ts +2 -0
  1664. package/dist/node_modules/next/dist/compiled/superstruct/index.d.cts +2 -0
  1665. package/dist/node_modules/next/dist/lib/constants.d.ts +54 -0
  1666. package/dist/node_modules/next/dist/shared/lib/escape-regexp.d.ts +2 -0
  1667. package/dist/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.d.ts +2 -0
  1668. package/dist/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.d.ts +8 -0
  1669. package/dist/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.d.ts +2 -0
  1670. package/dist/node_modules/next/dist/shared/lib/router/utils/add-locale.d.ts +2 -0
  1671. package/dist/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.d.ts +2 -0
  1672. package/dist/node_modules/next/dist/shared/lib/router/utils/app-paths.d.ts +3 -0
  1673. package/dist/node_modules/next/dist/shared/lib/router/utils/format-url.d.ts +4 -0
  1674. package/dist/node_modules/next/dist/shared/lib/router/utils/index.d.ts +4 -0
  1675. package/dist/node_modules/next/dist/shared/lib/router/utils/interception-routes.d.ts +4 -0
  1676. package/dist/node_modules/next/dist/shared/lib/router/utils/interpolate-as.d.ts +5 -0
  1677. package/dist/node_modules/next/dist/shared/lib/router/utils/is-dynamic.d.ts +2 -0
  1678. package/dist/node_modules/next/dist/shared/lib/router/utils/is-local-url.d.ts +2 -0
  1679. package/dist/node_modules/next/dist/shared/lib/router/utils/omit.d.ts +2 -0
  1680. package/dist/node_modules/next/dist/shared/lib/router/utils/parse-path.d.ts +6 -0
  1681. package/dist/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.d.ts +2 -0
  1682. package/dist/node_modules/next/dist/shared/lib/router/utils/querystring.d.ts +4 -0
  1683. package/dist/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.d.ts +2 -0
  1684. package/dist/node_modules/next/dist/shared/lib/router/utils/route-matcher.d.ts +2 -0
  1685. package/dist/node_modules/next/dist/shared/lib/router/utils/route-regex.d.ts +5 -0
  1686. package/dist/node_modules/next/dist/shared/lib/router/utils/sorted-routes.d.ts +3 -0
  1687. package/dist/node_modules/next/dist/shared/lib/router-context.shared-runtime.d.ts +2 -0
  1688. package/dist/node_modules/next/dist/shared/lib/segment.d.ts +6 -0
  1689. package/dist/node_modules/next/dist/shared/lib/utils/error-once.d.ts +2 -0
  1690. package/dist/node_modules/next/dist/shared/lib/utils.d.ts +18 -0
  1691. package/dist/node_modules/next/link.d.ts +2 -0
  1692. package/dist/node_modules/tailwind-merge/dist/bundle-mjs.d.mts +2843 -0
  1693. package/dist/node_modules/tslib/tslib.es6.d.ts +73 -0
  1694. package/dist/src/components/AnimationComponents.d.ts +35 -0
  1695. package/dist/src/components/CodeSnippet.d.ts +8 -0
  1696. package/dist/src/components/DynamicIcon.clean.d.ts +8 -0
  1697. package/dist/src/components/DynamicIcon.d.ts +8 -0
  1698. package/dist/src/components/Footer.d.ts +1 -0
  1699. package/dist/src/components/Navigation.d.ts +1 -0
  1700. package/dist/src/components/PageHero.d.ts +15 -0
  1701. package/dist/src/components/ThemeToggle.d.ts +1 -0
  1702. package/dist/src/components/Toast.d.ts +33 -0
  1703. package/dist/src/components/index.d.ts +9 -0
  1704. package/dist/src/components/ui/Accordion.d.ts +26 -0
  1705. package/dist/src/components/ui/AdvancedTable.d.ts +149 -0
  1706. package/dist/src/components/ui/Alert.d.ts +8 -0
  1707. package/dist/src/components/ui/AppHeader.d.ts +17 -0
  1708. package/dist/src/components/ui/Autocomplete.d.ts +30 -0
  1709. package/dist/src/components/ui/Avatar.d.ts +22 -0
  1710. package/dist/src/components/ui/Badge.d.ts +6 -0
  1711. package/dist/src/components/ui/Breadcrumb.d.ts +19 -0
  1712. package/dist/src/components/ui/Button.d.ts +9 -0
  1713. package/dist/src/components/ui/Calendar.d.ts +35 -0
  1714. package/dist/src/components/ui/Card.d.ts +24 -0
  1715. package/dist/src/components/ui/Carousel.d.ts +31 -0
  1716. package/dist/src/components/ui/Checkbox.d.ts +12 -0
  1717. package/dist/src/components/ui/Chip.d.ts +14 -0
  1718. package/dist/src/components/ui/Collapsible.d.ts +23 -0
  1719. package/dist/src/components/ui/CollapsibleCode.d.ts +9 -0
  1720. package/dist/src/components/ui/ColumnCustomizationDrawer.d.ts +15 -0
  1721. package/dist/src/components/ui/Command.d.ts +18 -0
  1722. package/dist/src/components/ui/Container.d.ts +70 -0
  1723. package/dist/src/components/ui/DataGrid.d.ts +64 -0
  1724. package/dist/src/components/ui/DatePicker.d.ts +12 -0
  1725. package/dist/src/components/ui/DateRangePicker.d.ts +24 -0
  1726. package/dist/src/components/ui/Dialog.d.ts +40 -0
  1727. package/dist/src/components/ui/DocumentEditor.d.ts +21 -0
  1728. package/dist/src/components/ui/DragDrop.d.ts +50 -0
  1729. package/dist/src/components/ui/Dropdown.d.ts +30 -0
  1730. package/dist/src/components/ui/DropdownMenu.d.ts +46 -0
  1731. package/dist/src/components/ui/EmptyState.d.ts +27 -0
  1732. package/dist/src/components/ui/FileUpload.d.ts +16 -0
  1733. package/dist/src/components/ui/Filter.d.ts +38 -0
  1734. package/dist/src/components/ui/Form.d.ts +79 -0
  1735. package/dist/src/components/ui/Icon.d.ts +22 -0
  1736. package/dist/src/components/ui/Input.d.ts +6 -0
  1737. package/dist/src/components/ui/Label.d.ts +2 -0
  1738. package/dist/src/components/ui/List.d.ts +38 -0
  1739. package/dist/src/components/ui/MWLoader.d.ts +56 -0
  1740. package/dist/src/components/ui/Menu.d.ts +51 -0
  1741. package/dist/src/components/ui/Modal.d.ts +24 -0
  1742. package/dist/src/components/ui/MultiSelect.d.ts +22 -0
  1743. package/dist/src/components/ui/Notification.d.ts +57 -0
  1744. package/dist/src/components/ui/PageHeader.d.ts +10 -0
  1745. package/dist/src/components/ui/Pagination.d.ts +23 -0
  1746. package/dist/src/components/ui/Panel.d.ts +61 -0
  1747. package/dist/src/components/ui/Popover.d.ts +27 -0
  1748. package/dist/src/components/ui/Progress.d.ts +9 -0
  1749. package/dist/src/components/ui/RadioGroup.d.ts +20 -0
  1750. package/dist/src/components/ui/Rating.d.ts +10 -0
  1751. package/dist/src/components/ui/RichTextEditor.d.ts +17 -0
  1752. package/dist/src/components/ui/ScheduleGrid.d.ts +28 -0
  1753. package/dist/src/components/ui/ScrollArea.d.ts +10 -0
  1754. package/dist/src/components/ui/SearchBar.d.ts +33 -0
  1755. package/dist/src/components/ui/Select.d.ts +44 -0
  1756. package/dist/src/components/ui/Separator.d.ts +6 -0
  1757. package/dist/src/components/ui/Sheet.d.ts +41 -0
  1758. package/dist/src/components/ui/Sidebar.d.ts +91 -0
  1759. package/dist/src/components/ui/Skeleton.d.ts +8 -0
  1760. package/dist/src/components/ui/Slider.d.ts +12 -0
  1761. package/dist/src/components/ui/Snackbar.d.ts +42 -0
  1762. package/dist/src/components/ui/Spinner.d.ts +12 -0
  1763. package/dist/src/components/ui/StatusBadge.d.ts +10 -0
  1764. package/dist/src/components/ui/Stepper.d.ts +12 -0
  1765. package/dist/src/components/ui/Switch.d.ts +25 -0
  1766. package/dist/src/components/ui/Table.d.ts +32 -0
  1767. package/dist/src/components/ui/Tabs.d.ts +27 -0
  1768. package/dist/src/components/ui/Textarea.d.ts +7 -0
  1769. package/dist/src/components/ui/Thumbnail.d.ts +57 -0
  1770. package/dist/src/components/ui/TimePicker.d.ts +16 -0
  1771. package/dist/src/components/ui/TimeRangePicker.d.ts +23 -0
  1772. package/dist/src/components/ui/Timeline.d.ts +22 -0
  1773. package/dist/src/components/ui/Toast.d.ts +21 -0
  1774. package/dist/src/components/ui/ToggleGroup.d.ts +24 -0
  1775. package/dist/src/components/ui/Tooltip.d.ts +13 -0
  1776. package/dist/src/components/ui/TreeView.d.ts +28 -0
  1777. package/dist/src/components/ui/Typography.d.ts +36 -0
  1778. package/dist/src/components/ui/index.d.ts +86 -0
  1779. package/dist/src/data/enhanced-icons.d.ts +49 -0
  1780. package/dist/src/data/icons.d.ts +17 -0
  1781. package/dist/src/hooks/index.d.ts +2 -0
  1782. package/dist/src/hooks/useIconSearch.d.ts +7 -0
  1783. package/dist/src/hooks/useKeyboardShortcuts.d.ts +38 -0
  1784. package/dist/src/index.d.ts +6 -0
  1785. package/dist/src/lib/lucide-icons.d.ts +83 -0
  1786. package/dist/src/stories/Button.d.ts +15 -0
  1787. package/dist/src/stories/Header.d.ts +12 -0
  1788. package/dist/src/stories/Page.d.ts +3 -0
  1789. package/dist/src/test/setup.d.ts +1 -0
  1790. package/dist/src/test/test-utils.d.ts +5 -0
  1791. package/dist/src/tokens/index.d.ts +381 -0
  1792. package/dist/src/types/index.d.ts +87 -0
  1793. package/dist/src/utils/iconCodeGenerator.d.ts +18 -0
  1794. package/dist/src/utils/iconNameFormatter.d.ts +23 -0
  1795. package/dist/src/utils/index.d.ts +29 -0
  1796. package/dist/stories/Button.d.ts +15 -0
  1797. package/dist/stories/Header.d.ts +12 -0
  1798. package/dist/stories/Page.d.ts +3 -0
  1799. package/dist/styles/index.css +1 -0
  1800. package/dist/test/setup.d.ts +1 -0
  1801. package/dist/test/test-utils.d.ts +5 -0
  1802. package/dist/tokens/index.d.ts +381 -0
  1803. package/dist/tsconfig.build.tsbuildinfo +1 -0
  1804. package/dist/types/index.d.ts +87 -0
  1805. package/dist/utils/iconCodeGenerator.d.ts +18 -0
  1806. package/dist/utils/iconNameFormatter.d.ts +23 -0
  1807. package/dist/utils/index.d.ts +29 -0
  1808. package/package.json +126 -0
@@ -0,0 +1,2843 @@
1
+ export function createTailwindMerge(createConfigFirst: any, ...createConfigRest: any[]): (...args: any[]) => any;
2
+ export function extendTailwindMerge(configExtension: any, ...createConfig: any[]): (...args: any[]) => any;
3
+ export function fromTheme(key: any): {
4
+ (theme: any): any;
5
+ isThemeGetter: boolean;
6
+ };
7
+ export function getDefaultConfig(): {
8
+ cacheSize: number;
9
+ theme: {
10
+ animate: string[];
11
+ aspect: string[];
12
+ blur: ((value: any) => boolean)[];
13
+ breakpoint: ((value: any) => boolean)[];
14
+ color: (() => boolean)[];
15
+ container: ((value: any) => boolean)[];
16
+ 'drop-shadow': ((value: any) => boolean)[];
17
+ ease: string[];
18
+ font: ((value: any) => boolean)[];
19
+ 'font-weight': string[];
20
+ 'inset-shadow': ((value: any) => boolean)[];
21
+ leading: string[];
22
+ perspective: string[];
23
+ radius: ((value: any) => boolean)[];
24
+ shadow: ((value: any) => boolean)[];
25
+ spacing: (string | ((value: any) => boolean))[];
26
+ text: ((value: any) => boolean)[];
27
+ 'text-shadow': ((value: any) => boolean)[];
28
+ tracking: string[];
29
+ };
30
+ classGroups: {
31
+ /**
32
+ * Aspect Ratio
33
+ * @see https://tailwindcss.com/docs/aspect-ratio
34
+ */
35
+ aspect: {
36
+ aspect: (string | ((value: any) => boolean) | {
37
+ (theme: any): any;
38
+ isThemeGetter: boolean;
39
+ })[];
40
+ }[];
41
+ /**
42
+ * Container
43
+ * @see https://tailwindcss.com/docs/container
44
+ * @deprecated since Tailwind CSS v4.0.0
45
+ */
46
+ container: string[];
47
+ /**
48
+ * Columns
49
+ * @see https://tailwindcss.com/docs/columns
50
+ */
51
+ columns: {
52
+ columns: (((value: any) => boolean) | {
53
+ (theme: any): any;
54
+ isThemeGetter: boolean;
55
+ })[];
56
+ }[];
57
+ /**
58
+ * Break After
59
+ * @see https://tailwindcss.com/docs/break-after
60
+ */
61
+ 'break-after': {
62
+ 'break-after': string[];
63
+ }[];
64
+ /**
65
+ * Break Before
66
+ * @see https://tailwindcss.com/docs/break-before
67
+ */
68
+ 'break-before': {
69
+ 'break-before': string[];
70
+ }[];
71
+ /**
72
+ * Break Inside
73
+ * @see https://tailwindcss.com/docs/break-inside
74
+ */
75
+ 'break-inside': {
76
+ 'break-inside': string[];
77
+ }[];
78
+ /**
79
+ * Box Decoration Break
80
+ * @see https://tailwindcss.com/docs/box-decoration-break
81
+ */
82
+ 'box-decoration': {
83
+ 'box-decoration': string[];
84
+ }[];
85
+ /**
86
+ * Box Sizing
87
+ * @see https://tailwindcss.com/docs/box-sizing
88
+ */
89
+ box: {
90
+ box: string[];
91
+ }[];
92
+ /**
93
+ * Display
94
+ * @see https://tailwindcss.com/docs/display
95
+ */
96
+ display: string[];
97
+ /**
98
+ * Screen Reader Only
99
+ * @see https://tailwindcss.com/docs/display#screen-reader-only
100
+ */
101
+ sr: string[];
102
+ /**
103
+ * Floats
104
+ * @see https://tailwindcss.com/docs/float
105
+ */
106
+ float: {
107
+ float: string[];
108
+ }[];
109
+ /**
110
+ * Clear
111
+ * @see https://tailwindcss.com/docs/clear
112
+ */
113
+ clear: {
114
+ clear: string[];
115
+ }[];
116
+ /**
117
+ * Isolation
118
+ * @see https://tailwindcss.com/docs/isolation
119
+ */
120
+ isolation: string[];
121
+ /**
122
+ * Object Fit
123
+ * @see https://tailwindcss.com/docs/object-fit
124
+ */
125
+ 'object-fit': {
126
+ object: string[];
127
+ }[];
128
+ /**
129
+ * Object Position
130
+ * @see https://tailwindcss.com/docs/object-position
131
+ */
132
+ 'object-position': {
133
+ object: (string | ((value: any) => boolean))[];
134
+ }[];
135
+ /**
136
+ * Overflow
137
+ * @see https://tailwindcss.com/docs/overflow
138
+ */
139
+ overflow: {
140
+ overflow: string[];
141
+ }[];
142
+ /**
143
+ * Overflow X
144
+ * @see https://tailwindcss.com/docs/overflow
145
+ */
146
+ 'overflow-x': {
147
+ 'overflow-x': string[];
148
+ }[];
149
+ /**
150
+ * Overflow Y
151
+ * @see https://tailwindcss.com/docs/overflow
152
+ */
153
+ 'overflow-y': {
154
+ 'overflow-y': string[];
155
+ }[];
156
+ /**
157
+ * Overscroll Behavior
158
+ * @see https://tailwindcss.com/docs/overscroll-behavior
159
+ */
160
+ overscroll: {
161
+ overscroll: string[];
162
+ }[];
163
+ /**
164
+ * Overscroll Behavior X
165
+ * @see https://tailwindcss.com/docs/overscroll-behavior
166
+ */
167
+ 'overscroll-x': {
168
+ 'overscroll-x': string[];
169
+ }[];
170
+ /**
171
+ * Overscroll Behavior Y
172
+ * @see https://tailwindcss.com/docs/overscroll-behavior
173
+ */
174
+ 'overscroll-y': {
175
+ 'overscroll-y': string[];
176
+ }[];
177
+ /**
178
+ * Position
179
+ * @see https://tailwindcss.com/docs/position
180
+ */
181
+ position: string[];
182
+ /**
183
+ * Top / Right / Bottom / Left
184
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
185
+ */
186
+ inset: {
187
+ inset: (string | ((value: any) => boolean) | {
188
+ (theme: any): any;
189
+ isThemeGetter: boolean;
190
+ })[];
191
+ }[];
192
+ /**
193
+ * Right / Left
194
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
195
+ */
196
+ 'inset-x': {
197
+ 'inset-x': (string | ((value: any) => boolean) | {
198
+ (theme: any): any;
199
+ isThemeGetter: boolean;
200
+ })[];
201
+ }[];
202
+ /**
203
+ * Top / Bottom
204
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
205
+ */
206
+ 'inset-y': {
207
+ 'inset-y': (string | ((value: any) => boolean) | {
208
+ (theme: any): any;
209
+ isThemeGetter: boolean;
210
+ })[];
211
+ }[];
212
+ /**
213
+ * Start
214
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
215
+ */
216
+ start: {
217
+ start: (string | ((value: any) => boolean) | {
218
+ (theme: any): any;
219
+ isThemeGetter: boolean;
220
+ })[];
221
+ }[];
222
+ /**
223
+ * End
224
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
225
+ */
226
+ end: {
227
+ end: (string | ((value: any) => boolean) | {
228
+ (theme: any): any;
229
+ isThemeGetter: boolean;
230
+ })[];
231
+ }[];
232
+ /**
233
+ * Top
234
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
235
+ */
236
+ top: {
237
+ top: (string | ((value: any) => boolean) | {
238
+ (theme: any): any;
239
+ isThemeGetter: boolean;
240
+ })[];
241
+ }[];
242
+ /**
243
+ * Right
244
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
245
+ */
246
+ right: {
247
+ right: (string | ((value: any) => boolean) | {
248
+ (theme: any): any;
249
+ isThemeGetter: boolean;
250
+ })[];
251
+ }[];
252
+ /**
253
+ * Bottom
254
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
255
+ */
256
+ bottom: {
257
+ bottom: (string | ((value: any) => boolean) | {
258
+ (theme: any): any;
259
+ isThemeGetter: boolean;
260
+ })[];
261
+ }[];
262
+ /**
263
+ * Left
264
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
265
+ */
266
+ left: {
267
+ left: (string | ((value: any) => boolean) | {
268
+ (theme: any): any;
269
+ isThemeGetter: boolean;
270
+ })[];
271
+ }[];
272
+ /**
273
+ * Visibility
274
+ * @see https://tailwindcss.com/docs/visibility
275
+ */
276
+ visibility: string[];
277
+ /**
278
+ * Z-Index
279
+ * @see https://tailwindcss.com/docs/z-index
280
+ */
281
+ z: {
282
+ z: (string | ((value: any) => boolean))[];
283
+ }[];
284
+ /**
285
+ * Flex Basis
286
+ * @see https://tailwindcss.com/docs/flex-basis
287
+ */
288
+ basis: {
289
+ basis: (string | ((value: any) => boolean) | {
290
+ (theme: any): any;
291
+ isThemeGetter: boolean;
292
+ })[];
293
+ }[];
294
+ /**
295
+ * Flex Direction
296
+ * @see https://tailwindcss.com/docs/flex-direction
297
+ */
298
+ 'flex-direction': {
299
+ flex: string[];
300
+ }[];
301
+ /**
302
+ * Flex Wrap
303
+ * @see https://tailwindcss.com/docs/flex-wrap
304
+ */
305
+ 'flex-wrap': {
306
+ flex: string[];
307
+ }[];
308
+ /**
309
+ * Flex
310
+ * @see https://tailwindcss.com/docs/flex
311
+ */
312
+ flex: {
313
+ flex: (string | ((value: any) => boolean))[];
314
+ }[];
315
+ /**
316
+ * Flex Grow
317
+ * @see https://tailwindcss.com/docs/flex-grow
318
+ */
319
+ grow: {
320
+ grow: (string | ((value: any) => boolean))[];
321
+ }[];
322
+ /**
323
+ * Flex Shrink
324
+ * @see https://tailwindcss.com/docs/flex-shrink
325
+ */
326
+ shrink: {
327
+ shrink: (string | ((value: any) => boolean))[];
328
+ }[];
329
+ /**
330
+ * Order
331
+ * @see https://tailwindcss.com/docs/order
332
+ */
333
+ order: {
334
+ order: (string | ((value: any) => boolean))[];
335
+ }[];
336
+ /**
337
+ * Grid Template Columns
338
+ * @see https://tailwindcss.com/docs/grid-template-columns
339
+ */
340
+ 'grid-cols': {
341
+ 'grid-cols': (string | ((value: any) => boolean))[];
342
+ }[];
343
+ /**
344
+ * Grid Column Start / End
345
+ * @see https://tailwindcss.com/docs/grid-column
346
+ */
347
+ 'col-start-end': {
348
+ col: (string | ((value: any) => boolean) | {
349
+ span: (string | ((value: any) => boolean))[];
350
+ })[];
351
+ }[];
352
+ /**
353
+ * Grid Column Start
354
+ * @see https://tailwindcss.com/docs/grid-column
355
+ */
356
+ 'col-start': {
357
+ 'col-start': (string | ((value: any) => boolean))[];
358
+ }[];
359
+ /**
360
+ * Grid Column End
361
+ * @see https://tailwindcss.com/docs/grid-column
362
+ */
363
+ 'col-end': {
364
+ 'col-end': (string | ((value: any) => boolean))[];
365
+ }[];
366
+ /**
367
+ * Grid Template Rows
368
+ * @see https://tailwindcss.com/docs/grid-template-rows
369
+ */
370
+ 'grid-rows': {
371
+ 'grid-rows': (string | ((value: any) => boolean))[];
372
+ }[];
373
+ /**
374
+ * Grid Row Start / End
375
+ * @see https://tailwindcss.com/docs/grid-row
376
+ */
377
+ 'row-start-end': {
378
+ row: (string | ((value: any) => boolean) | {
379
+ span: (string | ((value: any) => boolean))[];
380
+ })[];
381
+ }[];
382
+ /**
383
+ * Grid Row Start
384
+ * @see https://tailwindcss.com/docs/grid-row
385
+ */
386
+ 'row-start': {
387
+ 'row-start': (string | ((value: any) => boolean))[];
388
+ }[];
389
+ /**
390
+ * Grid Row End
391
+ * @see https://tailwindcss.com/docs/grid-row
392
+ */
393
+ 'row-end': {
394
+ 'row-end': (string | ((value: any) => boolean))[];
395
+ }[];
396
+ /**
397
+ * Grid Auto Flow
398
+ * @see https://tailwindcss.com/docs/grid-auto-flow
399
+ */
400
+ 'grid-flow': {
401
+ 'grid-flow': string[];
402
+ }[];
403
+ /**
404
+ * Grid Auto Columns
405
+ * @see https://tailwindcss.com/docs/grid-auto-columns
406
+ */
407
+ 'auto-cols': {
408
+ 'auto-cols': (string | ((value: any) => boolean))[];
409
+ }[];
410
+ /**
411
+ * Grid Auto Rows
412
+ * @see https://tailwindcss.com/docs/grid-auto-rows
413
+ */
414
+ 'auto-rows': {
415
+ 'auto-rows': (string | ((value: any) => boolean))[];
416
+ }[];
417
+ /**
418
+ * Gap
419
+ * @see https://tailwindcss.com/docs/gap
420
+ */
421
+ gap: {
422
+ gap: (((value: any) => boolean) | {
423
+ (theme: any): any;
424
+ isThemeGetter: boolean;
425
+ })[];
426
+ }[];
427
+ /**
428
+ * Gap X
429
+ * @see https://tailwindcss.com/docs/gap
430
+ */
431
+ 'gap-x': {
432
+ 'gap-x': (((value: any) => boolean) | {
433
+ (theme: any): any;
434
+ isThemeGetter: boolean;
435
+ })[];
436
+ }[];
437
+ /**
438
+ * Gap Y
439
+ * @see https://tailwindcss.com/docs/gap
440
+ */
441
+ 'gap-y': {
442
+ 'gap-y': (((value: any) => boolean) | {
443
+ (theme: any): any;
444
+ isThemeGetter: boolean;
445
+ })[];
446
+ }[];
447
+ /**
448
+ * Justify Content
449
+ * @see https://tailwindcss.com/docs/justify-content
450
+ */
451
+ 'justify-content': {
452
+ justify: string[];
453
+ }[];
454
+ /**
455
+ * Justify Items
456
+ * @see https://tailwindcss.com/docs/justify-items
457
+ */
458
+ 'justify-items': {
459
+ 'justify-items': string[];
460
+ }[];
461
+ /**
462
+ * Justify Self
463
+ * @see https://tailwindcss.com/docs/justify-self
464
+ */
465
+ 'justify-self': {
466
+ 'justify-self': string[];
467
+ }[];
468
+ /**
469
+ * Align Content
470
+ * @see https://tailwindcss.com/docs/align-content
471
+ */
472
+ 'align-content': {
473
+ content: string[];
474
+ }[];
475
+ /**
476
+ * Align Items
477
+ * @see https://tailwindcss.com/docs/align-items
478
+ */
479
+ 'align-items': {
480
+ items: (string | {
481
+ baseline: string[];
482
+ })[];
483
+ }[];
484
+ /**
485
+ * Align Self
486
+ * @see https://tailwindcss.com/docs/align-self
487
+ */
488
+ 'align-self': {
489
+ self: (string | {
490
+ baseline: string[];
491
+ })[];
492
+ }[];
493
+ /**
494
+ * Place Content
495
+ * @see https://tailwindcss.com/docs/place-content
496
+ */
497
+ 'place-content': {
498
+ 'place-content': string[];
499
+ }[];
500
+ /**
501
+ * Place Items
502
+ * @see https://tailwindcss.com/docs/place-items
503
+ */
504
+ 'place-items': {
505
+ 'place-items': string[];
506
+ }[];
507
+ /**
508
+ * Place Self
509
+ * @see https://tailwindcss.com/docs/place-self
510
+ */
511
+ 'place-self': {
512
+ 'place-self': string[];
513
+ }[];
514
+ /**
515
+ * Padding
516
+ * @see https://tailwindcss.com/docs/padding
517
+ */
518
+ p: {
519
+ p: (((value: any) => boolean) | {
520
+ (theme: any): any;
521
+ isThemeGetter: boolean;
522
+ })[];
523
+ }[];
524
+ /**
525
+ * Padding X
526
+ * @see https://tailwindcss.com/docs/padding
527
+ */
528
+ px: {
529
+ px: (((value: any) => boolean) | {
530
+ (theme: any): any;
531
+ isThemeGetter: boolean;
532
+ })[];
533
+ }[];
534
+ /**
535
+ * Padding Y
536
+ * @see https://tailwindcss.com/docs/padding
537
+ */
538
+ py: {
539
+ py: (((value: any) => boolean) | {
540
+ (theme: any): any;
541
+ isThemeGetter: boolean;
542
+ })[];
543
+ }[];
544
+ /**
545
+ * Padding Start
546
+ * @see https://tailwindcss.com/docs/padding
547
+ */
548
+ ps: {
549
+ ps: (((value: any) => boolean) | {
550
+ (theme: any): any;
551
+ isThemeGetter: boolean;
552
+ })[];
553
+ }[];
554
+ /**
555
+ * Padding End
556
+ * @see https://tailwindcss.com/docs/padding
557
+ */
558
+ pe: {
559
+ pe: (((value: any) => boolean) | {
560
+ (theme: any): any;
561
+ isThemeGetter: boolean;
562
+ })[];
563
+ }[];
564
+ /**
565
+ * Padding Top
566
+ * @see https://tailwindcss.com/docs/padding
567
+ */
568
+ pt: {
569
+ pt: (((value: any) => boolean) | {
570
+ (theme: any): any;
571
+ isThemeGetter: boolean;
572
+ })[];
573
+ }[];
574
+ /**
575
+ * Padding Right
576
+ * @see https://tailwindcss.com/docs/padding
577
+ */
578
+ pr: {
579
+ pr: (((value: any) => boolean) | {
580
+ (theme: any): any;
581
+ isThemeGetter: boolean;
582
+ })[];
583
+ }[];
584
+ /**
585
+ * Padding Bottom
586
+ * @see https://tailwindcss.com/docs/padding
587
+ */
588
+ pb: {
589
+ pb: (((value: any) => boolean) | {
590
+ (theme: any): any;
591
+ isThemeGetter: boolean;
592
+ })[];
593
+ }[];
594
+ /**
595
+ * Padding Left
596
+ * @see https://tailwindcss.com/docs/padding
597
+ */
598
+ pl: {
599
+ pl: (((value: any) => boolean) | {
600
+ (theme: any): any;
601
+ isThemeGetter: boolean;
602
+ })[];
603
+ }[];
604
+ /**
605
+ * Margin
606
+ * @see https://tailwindcss.com/docs/margin
607
+ */
608
+ m: {
609
+ m: (string | ((value: any) => boolean) | {
610
+ (theme: any): any;
611
+ isThemeGetter: boolean;
612
+ })[];
613
+ }[];
614
+ /**
615
+ * Margin X
616
+ * @see https://tailwindcss.com/docs/margin
617
+ */
618
+ mx: {
619
+ mx: (string | ((value: any) => boolean) | {
620
+ (theme: any): any;
621
+ isThemeGetter: boolean;
622
+ })[];
623
+ }[];
624
+ /**
625
+ * Margin Y
626
+ * @see https://tailwindcss.com/docs/margin
627
+ */
628
+ my: {
629
+ my: (string | ((value: any) => boolean) | {
630
+ (theme: any): any;
631
+ isThemeGetter: boolean;
632
+ })[];
633
+ }[];
634
+ /**
635
+ * Margin Start
636
+ * @see https://tailwindcss.com/docs/margin
637
+ */
638
+ ms: {
639
+ ms: (string | ((value: any) => boolean) | {
640
+ (theme: any): any;
641
+ isThemeGetter: boolean;
642
+ })[];
643
+ }[];
644
+ /**
645
+ * Margin End
646
+ * @see https://tailwindcss.com/docs/margin
647
+ */
648
+ me: {
649
+ me: (string | ((value: any) => boolean) | {
650
+ (theme: any): any;
651
+ isThemeGetter: boolean;
652
+ })[];
653
+ }[];
654
+ /**
655
+ * Margin Top
656
+ * @see https://tailwindcss.com/docs/margin
657
+ */
658
+ mt: {
659
+ mt: (string | ((value: any) => boolean) | {
660
+ (theme: any): any;
661
+ isThemeGetter: boolean;
662
+ })[];
663
+ }[];
664
+ /**
665
+ * Margin Right
666
+ * @see https://tailwindcss.com/docs/margin
667
+ */
668
+ mr: {
669
+ mr: (string | ((value: any) => boolean) | {
670
+ (theme: any): any;
671
+ isThemeGetter: boolean;
672
+ })[];
673
+ }[];
674
+ /**
675
+ * Margin Bottom
676
+ * @see https://tailwindcss.com/docs/margin
677
+ */
678
+ mb: {
679
+ mb: (string | ((value: any) => boolean) | {
680
+ (theme: any): any;
681
+ isThemeGetter: boolean;
682
+ })[];
683
+ }[];
684
+ /**
685
+ * Margin Left
686
+ * @see https://tailwindcss.com/docs/margin
687
+ */
688
+ ml: {
689
+ ml: (string | ((value: any) => boolean) | {
690
+ (theme: any): any;
691
+ isThemeGetter: boolean;
692
+ })[];
693
+ }[];
694
+ /**
695
+ * Space Between X
696
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
697
+ */
698
+ 'space-x': {
699
+ 'space-x': (((value: any) => boolean) | {
700
+ (theme: any): any;
701
+ isThemeGetter: boolean;
702
+ })[];
703
+ }[];
704
+ /**
705
+ * Space Between X Reverse
706
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
707
+ */
708
+ 'space-x-reverse': string[];
709
+ /**
710
+ * Space Between Y
711
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
712
+ */
713
+ 'space-y': {
714
+ 'space-y': (((value: any) => boolean) | {
715
+ (theme: any): any;
716
+ isThemeGetter: boolean;
717
+ })[];
718
+ }[];
719
+ /**
720
+ * Space Between Y Reverse
721
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
722
+ */
723
+ 'space-y-reverse': string[];
724
+ /**
725
+ * Size
726
+ * @see https://tailwindcss.com/docs/width#setting-both-width-and-height
727
+ */
728
+ size: {
729
+ size: (string | ((value: any) => boolean) | {
730
+ (theme: any): any;
731
+ isThemeGetter: boolean;
732
+ })[];
733
+ }[];
734
+ /**
735
+ * Width
736
+ * @see https://tailwindcss.com/docs/width
737
+ */
738
+ w: {
739
+ w: (string | ((value: any) => boolean) | {
740
+ (theme: any): any;
741
+ isThemeGetter: boolean;
742
+ })[];
743
+ }[];
744
+ /**
745
+ * Min-Width
746
+ * @see https://tailwindcss.com/docs/min-width
747
+ */
748
+ 'min-w': {
749
+ 'min-w': (string | ((value: any) => boolean) | {
750
+ (theme: any): any;
751
+ isThemeGetter: boolean;
752
+ })[];
753
+ }[];
754
+ /**
755
+ * Max-Width
756
+ * @see https://tailwindcss.com/docs/max-width
757
+ */
758
+ 'max-w': {
759
+ 'max-w': (string | ((value: any) => boolean) | {
760
+ (theme: any): any;
761
+ isThemeGetter: boolean;
762
+ } | {
763
+ screen: {
764
+ (theme: any): any;
765
+ isThemeGetter: boolean;
766
+ }[];
767
+ })[];
768
+ }[];
769
+ /**
770
+ * Height
771
+ * @see https://tailwindcss.com/docs/height
772
+ */
773
+ h: {
774
+ h: (string | ((value: any) => boolean) | {
775
+ (theme: any): any;
776
+ isThemeGetter: boolean;
777
+ })[];
778
+ }[];
779
+ /**
780
+ * Min-Height
781
+ * @see https://tailwindcss.com/docs/min-height
782
+ */
783
+ 'min-h': {
784
+ 'min-h': (string | ((value: any) => boolean) | {
785
+ (theme: any): any;
786
+ isThemeGetter: boolean;
787
+ })[];
788
+ }[];
789
+ /**
790
+ * Max-Height
791
+ * @see https://tailwindcss.com/docs/max-height
792
+ */
793
+ 'max-h': {
794
+ 'max-h': (string | ((value: any) => boolean) | {
795
+ (theme: any): any;
796
+ isThemeGetter: boolean;
797
+ })[];
798
+ }[];
799
+ /**
800
+ * Font Size
801
+ * @see https://tailwindcss.com/docs/font-size
802
+ */
803
+ 'font-size': {
804
+ text: (string | ((value: any) => any))[];
805
+ }[];
806
+ /**
807
+ * Font Smoothing
808
+ * @see https://tailwindcss.com/docs/font-smoothing
809
+ */
810
+ 'font-smoothing': string[];
811
+ /**
812
+ * Font Style
813
+ * @see https://tailwindcss.com/docs/font-style
814
+ */
815
+ 'font-style': string[];
816
+ /**
817
+ * Font Weight
818
+ * @see https://tailwindcss.com/docs/font-weight
819
+ */
820
+ 'font-weight': {
821
+ font: ((value: any) => any)[];
822
+ }[];
823
+ /**
824
+ * Font Stretch
825
+ * @see https://tailwindcss.com/docs/font-stretch
826
+ */
827
+ 'font-stretch': {
828
+ 'font-stretch': (string | ((value: any) => any))[];
829
+ }[];
830
+ /**
831
+ * Font Family
832
+ * @see https://tailwindcss.com/docs/font-family
833
+ */
834
+ 'font-family': {
835
+ font: ((value: any) => any)[];
836
+ }[];
837
+ /**
838
+ * Font Variant Numeric
839
+ * @see https://tailwindcss.com/docs/font-variant-numeric
840
+ */
841
+ 'fvn-normal': string[];
842
+ /**
843
+ * Font Variant Numeric
844
+ * @see https://tailwindcss.com/docs/font-variant-numeric
845
+ */
846
+ 'fvn-ordinal': string[];
847
+ /**
848
+ * Font Variant Numeric
849
+ * @see https://tailwindcss.com/docs/font-variant-numeric
850
+ */
851
+ 'fvn-slashed-zero': string[];
852
+ /**
853
+ * Font Variant Numeric
854
+ * @see https://tailwindcss.com/docs/font-variant-numeric
855
+ */
856
+ 'fvn-figure': string[];
857
+ /**
858
+ * Font Variant Numeric
859
+ * @see https://tailwindcss.com/docs/font-variant-numeric
860
+ */
861
+ 'fvn-spacing': string[];
862
+ /**
863
+ * Font Variant Numeric
864
+ * @see https://tailwindcss.com/docs/font-variant-numeric
865
+ */
866
+ 'fvn-fraction': string[];
867
+ /**
868
+ * Letter Spacing
869
+ * @see https://tailwindcss.com/docs/letter-spacing
870
+ */
871
+ tracking: {
872
+ tracking: (((value: any) => boolean) | {
873
+ (theme: any): any;
874
+ isThemeGetter: boolean;
875
+ })[];
876
+ }[];
877
+ /**
878
+ * Line Clamp
879
+ * @see https://tailwindcss.com/docs/line-clamp
880
+ */
881
+ 'line-clamp': {
882
+ 'line-clamp': (string | ((value: any) => any))[];
883
+ }[];
884
+ /**
885
+ * Line Height
886
+ * @see https://tailwindcss.com/docs/line-height
887
+ */
888
+ leading: {
889
+ leading: (((value: any) => boolean) | {
890
+ (theme: any): any;
891
+ isThemeGetter: boolean;
892
+ })[];
893
+ }[];
894
+ /**
895
+ * List Style Image
896
+ * @see https://tailwindcss.com/docs/list-style-image
897
+ */
898
+ 'list-image': {
899
+ 'list-image': (string | ((value: any) => boolean))[];
900
+ }[];
901
+ /**
902
+ * List Style Position
903
+ * @see https://tailwindcss.com/docs/list-style-position
904
+ */
905
+ 'list-style-position': {
906
+ list: string[];
907
+ }[];
908
+ /**
909
+ * List Style Type
910
+ * @see https://tailwindcss.com/docs/list-style-type
911
+ */
912
+ 'list-style-type': {
913
+ list: (string | ((value: any) => boolean))[];
914
+ }[];
915
+ /**
916
+ * Text Alignment
917
+ * @see https://tailwindcss.com/docs/text-align
918
+ */
919
+ 'text-alignment': {
920
+ text: string[];
921
+ }[];
922
+ /**
923
+ * Placeholder Color
924
+ * @deprecated since Tailwind CSS v3.0.0
925
+ * @see https://v3.tailwindcss.com/docs/placeholder-color
926
+ */
927
+ 'placeholder-color': {
928
+ placeholder: (((value: any) => boolean) | {
929
+ (theme: any): any;
930
+ isThemeGetter: boolean;
931
+ })[];
932
+ }[];
933
+ /**
934
+ * Text Color
935
+ * @see https://tailwindcss.com/docs/text-color
936
+ */
937
+ 'text-color': {
938
+ text: (((value: any) => boolean) | {
939
+ (theme: any): any;
940
+ isThemeGetter: boolean;
941
+ })[];
942
+ }[];
943
+ /**
944
+ * Text Decoration
945
+ * @see https://tailwindcss.com/docs/text-decoration
946
+ */
947
+ 'text-decoration': string[];
948
+ /**
949
+ * Text Decoration Style
950
+ * @see https://tailwindcss.com/docs/text-decoration-style
951
+ */
952
+ 'text-decoration-style': {
953
+ decoration: string[];
954
+ }[];
955
+ /**
956
+ * Text Decoration Thickness
957
+ * @see https://tailwindcss.com/docs/text-decoration-thickness
958
+ */
959
+ 'text-decoration-thickness': {
960
+ decoration: (string | ((value: any) => any))[];
961
+ }[];
962
+ /**
963
+ * Text Decoration Color
964
+ * @see https://tailwindcss.com/docs/text-decoration-color
965
+ */
966
+ 'text-decoration-color': {
967
+ decoration: (((value: any) => boolean) | {
968
+ (theme: any): any;
969
+ isThemeGetter: boolean;
970
+ })[];
971
+ }[];
972
+ /**
973
+ * Text Underline Offset
974
+ * @see https://tailwindcss.com/docs/text-underline-offset
975
+ */
976
+ 'underline-offset': {
977
+ 'underline-offset': (string | ((value: any) => boolean))[];
978
+ }[];
979
+ /**
980
+ * Text Transform
981
+ * @see https://tailwindcss.com/docs/text-transform
982
+ */
983
+ 'text-transform': string[];
984
+ /**
985
+ * Text Overflow
986
+ * @see https://tailwindcss.com/docs/text-overflow
987
+ */
988
+ 'text-overflow': string[];
989
+ /**
990
+ * Text Wrap
991
+ * @see https://tailwindcss.com/docs/text-wrap
992
+ */
993
+ 'text-wrap': {
994
+ text: string[];
995
+ }[];
996
+ /**
997
+ * Text Indent
998
+ * @see https://tailwindcss.com/docs/text-indent
999
+ */
1000
+ indent: {
1001
+ indent: (((value: any) => boolean) | {
1002
+ (theme: any): any;
1003
+ isThemeGetter: boolean;
1004
+ })[];
1005
+ }[];
1006
+ /**
1007
+ * Vertical Alignment
1008
+ * @see https://tailwindcss.com/docs/vertical-align
1009
+ */
1010
+ 'vertical-align': {
1011
+ align: (string | ((value: any) => boolean))[];
1012
+ }[];
1013
+ /**
1014
+ * Whitespace
1015
+ * @see https://tailwindcss.com/docs/whitespace
1016
+ */
1017
+ whitespace: {
1018
+ whitespace: string[];
1019
+ }[];
1020
+ /**
1021
+ * Word Break
1022
+ * @see https://tailwindcss.com/docs/word-break
1023
+ */
1024
+ break: {
1025
+ break: string[];
1026
+ }[];
1027
+ /**
1028
+ * Overflow Wrap
1029
+ * @see https://tailwindcss.com/docs/overflow-wrap
1030
+ */
1031
+ wrap: {
1032
+ wrap: string[];
1033
+ }[];
1034
+ /**
1035
+ * Hyphens
1036
+ * @see https://tailwindcss.com/docs/hyphens
1037
+ */
1038
+ hyphens: {
1039
+ hyphens: string[];
1040
+ }[];
1041
+ /**
1042
+ * Content
1043
+ * @see https://tailwindcss.com/docs/content
1044
+ */
1045
+ content: {
1046
+ content: (string | ((value: any) => boolean))[];
1047
+ }[];
1048
+ /**
1049
+ * Background Attachment
1050
+ * @see https://tailwindcss.com/docs/background-attachment
1051
+ */
1052
+ 'bg-attachment': {
1053
+ bg: string[];
1054
+ }[];
1055
+ /**
1056
+ * Background Clip
1057
+ * @see https://tailwindcss.com/docs/background-clip
1058
+ */
1059
+ 'bg-clip': {
1060
+ 'bg-clip': string[];
1061
+ }[];
1062
+ /**
1063
+ * Background Origin
1064
+ * @see https://tailwindcss.com/docs/background-origin
1065
+ */
1066
+ 'bg-origin': {
1067
+ 'bg-origin': string[];
1068
+ }[];
1069
+ /**
1070
+ * Background Position
1071
+ * @see https://tailwindcss.com/docs/background-position
1072
+ */
1073
+ 'bg-position': {
1074
+ bg: (string | ((value: any) => any) | {
1075
+ position: ((value: any) => boolean)[];
1076
+ })[];
1077
+ }[];
1078
+ /**
1079
+ * Background Repeat
1080
+ * @see https://tailwindcss.com/docs/background-repeat
1081
+ */
1082
+ 'bg-repeat': {
1083
+ bg: (string | {
1084
+ repeat: string[];
1085
+ })[];
1086
+ }[];
1087
+ /**
1088
+ * Background Size
1089
+ * @see https://tailwindcss.com/docs/background-size
1090
+ */
1091
+ 'bg-size': {
1092
+ bg: (string | ((value: any) => any) | {
1093
+ size: ((value: any) => boolean)[];
1094
+ })[];
1095
+ }[];
1096
+ /**
1097
+ * Background Image
1098
+ * @see https://tailwindcss.com/docs/background-image
1099
+ */
1100
+ 'bg-image': {
1101
+ bg: (string | ((value: any) => any) | {
1102
+ linear: (((value: any) => boolean) | {
1103
+ to: string[];
1104
+ })[];
1105
+ radial: (string | ((value: any) => boolean))[];
1106
+ conic: ((value: any) => boolean)[];
1107
+ })[];
1108
+ }[];
1109
+ /**
1110
+ * Background Color
1111
+ * @see https://tailwindcss.com/docs/background-color
1112
+ */
1113
+ 'bg-color': {
1114
+ bg: (((value: any) => boolean) | {
1115
+ (theme: any): any;
1116
+ isThemeGetter: boolean;
1117
+ })[];
1118
+ }[];
1119
+ /**
1120
+ * Gradient Color Stops From Position
1121
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1122
+ */
1123
+ 'gradient-from-pos': {
1124
+ from: ((value: any) => any)[];
1125
+ }[];
1126
+ /**
1127
+ * Gradient Color Stops Via Position
1128
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1129
+ */
1130
+ 'gradient-via-pos': {
1131
+ via: ((value: any) => any)[];
1132
+ }[];
1133
+ /**
1134
+ * Gradient Color Stops To Position
1135
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1136
+ */
1137
+ 'gradient-to-pos': {
1138
+ to: ((value: any) => any)[];
1139
+ }[];
1140
+ /**
1141
+ * Gradient Color Stops From
1142
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1143
+ */
1144
+ 'gradient-from': {
1145
+ from: (((value: any) => boolean) | {
1146
+ (theme: any): any;
1147
+ isThemeGetter: boolean;
1148
+ })[];
1149
+ }[];
1150
+ /**
1151
+ * Gradient Color Stops Via
1152
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1153
+ */
1154
+ 'gradient-via': {
1155
+ via: (((value: any) => boolean) | {
1156
+ (theme: any): any;
1157
+ isThemeGetter: boolean;
1158
+ })[];
1159
+ }[];
1160
+ /**
1161
+ * Gradient Color Stops To
1162
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1163
+ */
1164
+ 'gradient-to': {
1165
+ to: (((value: any) => boolean) | {
1166
+ (theme: any): any;
1167
+ isThemeGetter: boolean;
1168
+ })[];
1169
+ }[];
1170
+ /**
1171
+ * Border Radius
1172
+ * @see https://tailwindcss.com/docs/border-radius
1173
+ */
1174
+ rounded: {
1175
+ rounded: (string | ((value: any) => boolean) | {
1176
+ (theme: any): any;
1177
+ isThemeGetter: boolean;
1178
+ })[];
1179
+ }[];
1180
+ /**
1181
+ * Border Radius Start
1182
+ * @see https://tailwindcss.com/docs/border-radius
1183
+ */
1184
+ 'rounded-s': {
1185
+ 'rounded-s': (string | ((value: any) => boolean) | {
1186
+ (theme: any): any;
1187
+ isThemeGetter: boolean;
1188
+ })[];
1189
+ }[];
1190
+ /**
1191
+ * Border Radius End
1192
+ * @see https://tailwindcss.com/docs/border-radius
1193
+ */
1194
+ 'rounded-e': {
1195
+ 'rounded-e': (string | ((value: any) => boolean) | {
1196
+ (theme: any): any;
1197
+ isThemeGetter: boolean;
1198
+ })[];
1199
+ }[];
1200
+ /**
1201
+ * Border Radius Top
1202
+ * @see https://tailwindcss.com/docs/border-radius
1203
+ */
1204
+ 'rounded-t': {
1205
+ 'rounded-t': (string | ((value: any) => boolean) | {
1206
+ (theme: any): any;
1207
+ isThemeGetter: boolean;
1208
+ })[];
1209
+ }[];
1210
+ /**
1211
+ * Border Radius Right
1212
+ * @see https://tailwindcss.com/docs/border-radius
1213
+ */
1214
+ 'rounded-r': {
1215
+ 'rounded-r': (string | ((value: any) => boolean) | {
1216
+ (theme: any): any;
1217
+ isThemeGetter: boolean;
1218
+ })[];
1219
+ }[];
1220
+ /**
1221
+ * Border Radius Bottom
1222
+ * @see https://tailwindcss.com/docs/border-radius
1223
+ */
1224
+ 'rounded-b': {
1225
+ 'rounded-b': (string | ((value: any) => boolean) | {
1226
+ (theme: any): any;
1227
+ isThemeGetter: boolean;
1228
+ })[];
1229
+ }[];
1230
+ /**
1231
+ * Border Radius Left
1232
+ * @see https://tailwindcss.com/docs/border-radius
1233
+ */
1234
+ 'rounded-l': {
1235
+ 'rounded-l': (string | ((value: any) => boolean) | {
1236
+ (theme: any): any;
1237
+ isThemeGetter: boolean;
1238
+ })[];
1239
+ }[];
1240
+ /**
1241
+ * Border Radius Start Start
1242
+ * @see https://tailwindcss.com/docs/border-radius
1243
+ */
1244
+ 'rounded-ss': {
1245
+ 'rounded-ss': (string | ((value: any) => boolean) | {
1246
+ (theme: any): any;
1247
+ isThemeGetter: boolean;
1248
+ })[];
1249
+ }[];
1250
+ /**
1251
+ * Border Radius Start End
1252
+ * @see https://tailwindcss.com/docs/border-radius
1253
+ */
1254
+ 'rounded-se': {
1255
+ 'rounded-se': (string | ((value: any) => boolean) | {
1256
+ (theme: any): any;
1257
+ isThemeGetter: boolean;
1258
+ })[];
1259
+ }[];
1260
+ /**
1261
+ * Border Radius End End
1262
+ * @see https://tailwindcss.com/docs/border-radius
1263
+ */
1264
+ 'rounded-ee': {
1265
+ 'rounded-ee': (string | ((value: any) => boolean) | {
1266
+ (theme: any): any;
1267
+ isThemeGetter: boolean;
1268
+ })[];
1269
+ }[];
1270
+ /**
1271
+ * Border Radius End Start
1272
+ * @see https://tailwindcss.com/docs/border-radius
1273
+ */
1274
+ 'rounded-es': {
1275
+ 'rounded-es': (string | ((value: any) => boolean) | {
1276
+ (theme: any): any;
1277
+ isThemeGetter: boolean;
1278
+ })[];
1279
+ }[];
1280
+ /**
1281
+ * Border Radius Top Left
1282
+ * @see https://tailwindcss.com/docs/border-radius
1283
+ */
1284
+ 'rounded-tl': {
1285
+ 'rounded-tl': (string | ((value: any) => boolean) | {
1286
+ (theme: any): any;
1287
+ isThemeGetter: boolean;
1288
+ })[];
1289
+ }[];
1290
+ /**
1291
+ * Border Radius Top Right
1292
+ * @see https://tailwindcss.com/docs/border-radius
1293
+ */
1294
+ 'rounded-tr': {
1295
+ 'rounded-tr': (string | ((value: any) => boolean) | {
1296
+ (theme: any): any;
1297
+ isThemeGetter: boolean;
1298
+ })[];
1299
+ }[];
1300
+ /**
1301
+ * Border Radius Bottom Right
1302
+ * @see https://tailwindcss.com/docs/border-radius
1303
+ */
1304
+ 'rounded-br': {
1305
+ 'rounded-br': (string | ((value: any) => boolean) | {
1306
+ (theme: any): any;
1307
+ isThemeGetter: boolean;
1308
+ })[];
1309
+ }[];
1310
+ /**
1311
+ * Border Radius Bottom Left
1312
+ * @see https://tailwindcss.com/docs/border-radius
1313
+ */
1314
+ 'rounded-bl': {
1315
+ 'rounded-bl': (string | ((value: any) => boolean) | {
1316
+ (theme: any): any;
1317
+ isThemeGetter: boolean;
1318
+ })[];
1319
+ }[];
1320
+ /**
1321
+ * Border Width
1322
+ * @see https://tailwindcss.com/docs/border-width
1323
+ */
1324
+ 'border-w': {
1325
+ border: (string | ((value: any) => any))[];
1326
+ }[];
1327
+ /**
1328
+ * Border Width X
1329
+ * @see https://tailwindcss.com/docs/border-width
1330
+ */
1331
+ 'border-w-x': {
1332
+ 'border-x': (string | ((value: any) => any))[];
1333
+ }[];
1334
+ /**
1335
+ * Border Width Y
1336
+ * @see https://tailwindcss.com/docs/border-width
1337
+ */
1338
+ 'border-w-y': {
1339
+ 'border-y': (string | ((value: any) => any))[];
1340
+ }[];
1341
+ /**
1342
+ * Border Width Start
1343
+ * @see https://tailwindcss.com/docs/border-width
1344
+ */
1345
+ 'border-w-s': {
1346
+ 'border-s': (string | ((value: any) => any))[];
1347
+ }[];
1348
+ /**
1349
+ * Border Width End
1350
+ * @see https://tailwindcss.com/docs/border-width
1351
+ */
1352
+ 'border-w-e': {
1353
+ 'border-e': (string | ((value: any) => any))[];
1354
+ }[];
1355
+ /**
1356
+ * Border Width Top
1357
+ * @see https://tailwindcss.com/docs/border-width
1358
+ */
1359
+ 'border-w-t': {
1360
+ 'border-t': (string | ((value: any) => any))[];
1361
+ }[];
1362
+ /**
1363
+ * Border Width Right
1364
+ * @see https://tailwindcss.com/docs/border-width
1365
+ */
1366
+ 'border-w-r': {
1367
+ 'border-r': (string | ((value: any) => any))[];
1368
+ }[];
1369
+ /**
1370
+ * Border Width Bottom
1371
+ * @see https://tailwindcss.com/docs/border-width
1372
+ */
1373
+ 'border-w-b': {
1374
+ 'border-b': (string | ((value: any) => any))[];
1375
+ }[];
1376
+ /**
1377
+ * Border Width Left
1378
+ * @see https://tailwindcss.com/docs/border-width
1379
+ */
1380
+ 'border-w-l': {
1381
+ 'border-l': (string | ((value: any) => any))[];
1382
+ }[];
1383
+ /**
1384
+ * Divide Width X
1385
+ * @see https://tailwindcss.com/docs/border-width#between-children
1386
+ */
1387
+ 'divide-x': {
1388
+ 'divide-x': (string | ((value: any) => any))[];
1389
+ }[];
1390
+ /**
1391
+ * Divide Width X Reverse
1392
+ * @see https://tailwindcss.com/docs/border-width#between-children
1393
+ */
1394
+ 'divide-x-reverse': string[];
1395
+ /**
1396
+ * Divide Width Y
1397
+ * @see https://tailwindcss.com/docs/border-width#between-children
1398
+ */
1399
+ 'divide-y': {
1400
+ 'divide-y': (string | ((value: any) => any))[];
1401
+ }[];
1402
+ /**
1403
+ * Divide Width Y Reverse
1404
+ * @see https://tailwindcss.com/docs/border-width#between-children
1405
+ */
1406
+ 'divide-y-reverse': string[];
1407
+ /**
1408
+ * Border Style
1409
+ * @see https://tailwindcss.com/docs/border-style
1410
+ */
1411
+ 'border-style': {
1412
+ border: string[];
1413
+ }[];
1414
+ /**
1415
+ * Divide Style
1416
+ * @see https://tailwindcss.com/docs/border-style#setting-the-divider-style
1417
+ */
1418
+ 'divide-style': {
1419
+ divide: string[];
1420
+ }[];
1421
+ /**
1422
+ * Border Color
1423
+ * @see https://tailwindcss.com/docs/border-color
1424
+ */
1425
+ 'border-color': {
1426
+ border: (((value: any) => boolean) | {
1427
+ (theme: any): any;
1428
+ isThemeGetter: boolean;
1429
+ })[];
1430
+ }[];
1431
+ /**
1432
+ * Border Color X
1433
+ * @see https://tailwindcss.com/docs/border-color
1434
+ */
1435
+ 'border-color-x': {
1436
+ 'border-x': (((value: any) => boolean) | {
1437
+ (theme: any): any;
1438
+ isThemeGetter: boolean;
1439
+ })[];
1440
+ }[];
1441
+ /**
1442
+ * Border Color Y
1443
+ * @see https://tailwindcss.com/docs/border-color
1444
+ */
1445
+ 'border-color-y': {
1446
+ 'border-y': (((value: any) => boolean) | {
1447
+ (theme: any): any;
1448
+ isThemeGetter: boolean;
1449
+ })[];
1450
+ }[];
1451
+ /**
1452
+ * Border Color S
1453
+ * @see https://tailwindcss.com/docs/border-color
1454
+ */
1455
+ 'border-color-s': {
1456
+ 'border-s': (((value: any) => boolean) | {
1457
+ (theme: any): any;
1458
+ isThemeGetter: boolean;
1459
+ })[];
1460
+ }[];
1461
+ /**
1462
+ * Border Color E
1463
+ * @see https://tailwindcss.com/docs/border-color
1464
+ */
1465
+ 'border-color-e': {
1466
+ 'border-e': (((value: any) => boolean) | {
1467
+ (theme: any): any;
1468
+ isThemeGetter: boolean;
1469
+ })[];
1470
+ }[];
1471
+ /**
1472
+ * Border Color Top
1473
+ * @see https://tailwindcss.com/docs/border-color
1474
+ */
1475
+ 'border-color-t': {
1476
+ 'border-t': (((value: any) => boolean) | {
1477
+ (theme: any): any;
1478
+ isThemeGetter: boolean;
1479
+ })[];
1480
+ }[];
1481
+ /**
1482
+ * Border Color Right
1483
+ * @see https://tailwindcss.com/docs/border-color
1484
+ */
1485
+ 'border-color-r': {
1486
+ 'border-r': (((value: any) => boolean) | {
1487
+ (theme: any): any;
1488
+ isThemeGetter: boolean;
1489
+ })[];
1490
+ }[];
1491
+ /**
1492
+ * Border Color Bottom
1493
+ * @see https://tailwindcss.com/docs/border-color
1494
+ */
1495
+ 'border-color-b': {
1496
+ 'border-b': (((value: any) => boolean) | {
1497
+ (theme: any): any;
1498
+ isThemeGetter: boolean;
1499
+ })[];
1500
+ }[];
1501
+ /**
1502
+ * Border Color Left
1503
+ * @see https://tailwindcss.com/docs/border-color
1504
+ */
1505
+ 'border-color-l': {
1506
+ 'border-l': (((value: any) => boolean) | {
1507
+ (theme: any): any;
1508
+ isThemeGetter: boolean;
1509
+ })[];
1510
+ }[];
1511
+ /**
1512
+ * Divide Color
1513
+ * @see https://tailwindcss.com/docs/divide-color
1514
+ */
1515
+ 'divide-color': {
1516
+ divide: (((value: any) => boolean) | {
1517
+ (theme: any): any;
1518
+ isThemeGetter: boolean;
1519
+ })[];
1520
+ }[];
1521
+ /**
1522
+ * Outline Style
1523
+ * @see https://tailwindcss.com/docs/outline-style
1524
+ */
1525
+ 'outline-style': {
1526
+ outline: string[];
1527
+ }[];
1528
+ /**
1529
+ * Outline Offset
1530
+ * @see https://tailwindcss.com/docs/outline-offset
1531
+ */
1532
+ 'outline-offset': {
1533
+ 'outline-offset': ((value: any) => boolean)[];
1534
+ }[];
1535
+ /**
1536
+ * Outline Width
1537
+ * @see https://tailwindcss.com/docs/outline-width
1538
+ */
1539
+ 'outline-w': {
1540
+ outline: (string | ((value: any) => any))[];
1541
+ }[];
1542
+ /**
1543
+ * Outline Color
1544
+ * @see https://tailwindcss.com/docs/outline-color
1545
+ */
1546
+ 'outline-color': {
1547
+ outline: (((value: any) => boolean) | {
1548
+ (theme: any): any;
1549
+ isThemeGetter: boolean;
1550
+ })[];
1551
+ }[];
1552
+ /**
1553
+ * Box Shadow
1554
+ * @see https://tailwindcss.com/docs/box-shadow
1555
+ */
1556
+ shadow: {
1557
+ shadow: (string | ((value: any) => any))[];
1558
+ }[];
1559
+ /**
1560
+ * Box Shadow Color
1561
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-shadow-color
1562
+ */
1563
+ 'shadow-color': {
1564
+ shadow: (((value: any) => boolean) | {
1565
+ (theme: any): any;
1566
+ isThemeGetter: boolean;
1567
+ })[];
1568
+ }[];
1569
+ /**
1570
+ * Inset Box Shadow
1571
+ * @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-shadow
1572
+ */
1573
+ 'inset-shadow': {
1574
+ 'inset-shadow': (string | ((value: any) => any))[];
1575
+ }[];
1576
+ /**
1577
+ * Inset Box Shadow Color
1578
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-shadow-color
1579
+ */
1580
+ 'inset-shadow-color': {
1581
+ 'inset-shadow': (((value: any) => boolean) | {
1582
+ (theme: any): any;
1583
+ isThemeGetter: boolean;
1584
+ })[];
1585
+ }[];
1586
+ /**
1587
+ * Ring Width
1588
+ * @see https://tailwindcss.com/docs/box-shadow#adding-a-ring
1589
+ */
1590
+ 'ring-w': {
1591
+ ring: (string | ((value: any) => any))[];
1592
+ }[];
1593
+ /**
1594
+ * Ring Width Inset
1595
+ * @see https://v3.tailwindcss.com/docs/ring-width#inset-rings
1596
+ * @deprecated since Tailwind CSS v4.0.0
1597
+ * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
1598
+ */
1599
+ 'ring-w-inset': string[];
1600
+ /**
1601
+ * Ring Color
1602
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-ring-color
1603
+ */
1604
+ 'ring-color': {
1605
+ ring: (((value: any) => boolean) | {
1606
+ (theme: any): any;
1607
+ isThemeGetter: boolean;
1608
+ })[];
1609
+ }[];
1610
+ /**
1611
+ * Ring Offset Width
1612
+ * @see https://v3.tailwindcss.com/docs/ring-offset-width
1613
+ * @deprecated since Tailwind CSS v4.0.0
1614
+ * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
1615
+ */
1616
+ 'ring-offset-w': {
1617
+ 'ring-offset': ((value: any) => any)[];
1618
+ }[];
1619
+ /**
1620
+ * Ring Offset Color
1621
+ * @see https://v3.tailwindcss.com/docs/ring-offset-color
1622
+ * @deprecated since Tailwind CSS v4.0.0
1623
+ * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
1624
+ */
1625
+ 'ring-offset-color': {
1626
+ 'ring-offset': (((value: any) => boolean) | {
1627
+ (theme: any): any;
1628
+ isThemeGetter: boolean;
1629
+ })[];
1630
+ }[];
1631
+ /**
1632
+ * Inset Ring Width
1633
+ * @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-ring
1634
+ */
1635
+ 'inset-ring-w': {
1636
+ 'inset-ring': (string | ((value: any) => any))[];
1637
+ }[];
1638
+ /**
1639
+ * Inset Ring Color
1640
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-ring-color
1641
+ */
1642
+ 'inset-ring-color': {
1643
+ 'inset-ring': (((value: any) => boolean) | {
1644
+ (theme: any): any;
1645
+ isThemeGetter: boolean;
1646
+ })[];
1647
+ }[];
1648
+ /**
1649
+ * Text Shadow
1650
+ * @see https://tailwindcss.com/docs/text-shadow
1651
+ */
1652
+ 'text-shadow': {
1653
+ 'text-shadow': (string | ((value: any) => any))[];
1654
+ }[];
1655
+ /**
1656
+ * Text Shadow Color
1657
+ * @see https://tailwindcss.com/docs/text-shadow#setting-the-shadow-color
1658
+ */
1659
+ 'text-shadow-color': {
1660
+ 'text-shadow': (((value: any) => boolean) | {
1661
+ (theme: any): any;
1662
+ isThemeGetter: boolean;
1663
+ })[];
1664
+ }[];
1665
+ /**
1666
+ * Opacity
1667
+ * @see https://tailwindcss.com/docs/opacity
1668
+ */
1669
+ opacity: {
1670
+ opacity: ((value: any) => boolean)[];
1671
+ }[];
1672
+ /**
1673
+ * Mix Blend Mode
1674
+ * @see https://tailwindcss.com/docs/mix-blend-mode
1675
+ */
1676
+ 'mix-blend': {
1677
+ 'mix-blend': string[];
1678
+ }[];
1679
+ /**
1680
+ * Background Blend Mode
1681
+ * @see https://tailwindcss.com/docs/background-blend-mode
1682
+ */
1683
+ 'bg-blend': {
1684
+ 'bg-blend': string[];
1685
+ }[];
1686
+ /**
1687
+ * Mask Clip
1688
+ * @see https://tailwindcss.com/docs/mask-clip
1689
+ */
1690
+ 'mask-clip': (string | {
1691
+ 'mask-clip': string[];
1692
+ })[];
1693
+ /**
1694
+ * Mask Composite
1695
+ * @see https://tailwindcss.com/docs/mask-composite
1696
+ */
1697
+ 'mask-composite': {
1698
+ mask: string[];
1699
+ }[];
1700
+ /**
1701
+ * Mask Image
1702
+ * @see https://tailwindcss.com/docs/mask-image
1703
+ */
1704
+ 'mask-image-linear-pos': {
1705
+ 'mask-linear': ((value: any) => boolean)[];
1706
+ }[];
1707
+ 'mask-image-linear-from-pos': {
1708
+ 'mask-linear-from': ((value: any) => any)[];
1709
+ }[];
1710
+ 'mask-image-linear-to-pos': {
1711
+ 'mask-linear-to': ((value: any) => any)[];
1712
+ }[];
1713
+ 'mask-image-linear-from-color': {
1714
+ 'mask-linear-from': (((value: any) => boolean) | {
1715
+ (theme: any): any;
1716
+ isThemeGetter: boolean;
1717
+ })[];
1718
+ }[];
1719
+ 'mask-image-linear-to-color': {
1720
+ 'mask-linear-to': (((value: any) => boolean) | {
1721
+ (theme: any): any;
1722
+ isThemeGetter: boolean;
1723
+ })[];
1724
+ }[];
1725
+ 'mask-image-t-from-pos': {
1726
+ 'mask-t-from': ((value: any) => any)[];
1727
+ }[];
1728
+ 'mask-image-t-to-pos': {
1729
+ 'mask-t-to': ((value: any) => any)[];
1730
+ }[];
1731
+ 'mask-image-t-from-color': {
1732
+ 'mask-t-from': (((value: any) => boolean) | {
1733
+ (theme: any): any;
1734
+ isThemeGetter: boolean;
1735
+ })[];
1736
+ }[];
1737
+ 'mask-image-t-to-color': {
1738
+ 'mask-t-to': (((value: any) => boolean) | {
1739
+ (theme: any): any;
1740
+ isThemeGetter: boolean;
1741
+ })[];
1742
+ }[];
1743
+ 'mask-image-r-from-pos': {
1744
+ 'mask-r-from': ((value: any) => any)[];
1745
+ }[];
1746
+ 'mask-image-r-to-pos': {
1747
+ 'mask-r-to': ((value: any) => any)[];
1748
+ }[];
1749
+ 'mask-image-r-from-color': {
1750
+ 'mask-r-from': (((value: any) => boolean) | {
1751
+ (theme: any): any;
1752
+ isThemeGetter: boolean;
1753
+ })[];
1754
+ }[];
1755
+ 'mask-image-r-to-color': {
1756
+ 'mask-r-to': (((value: any) => boolean) | {
1757
+ (theme: any): any;
1758
+ isThemeGetter: boolean;
1759
+ })[];
1760
+ }[];
1761
+ 'mask-image-b-from-pos': {
1762
+ 'mask-b-from': ((value: any) => any)[];
1763
+ }[];
1764
+ 'mask-image-b-to-pos': {
1765
+ 'mask-b-to': ((value: any) => any)[];
1766
+ }[];
1767
+ 'mask-image-b-from-color': {
1768
+ 'mask-b-from': (((value: any) => boolean) | {
1769
+ (theme: any): any;
1770
+ isThemeGetter: boolean;
1771
+ })[];
1772
+ }[];
1773
+ 'mask-image-b-to-color': {
1774
+ 'mask-b-to': (((value: any) => boolean) | {
1775
+ (theme: any): any;
1776
+ isThemeGetter: boolean;
1777
+ })[];
1778
+ }[];
1779
+ 'mask-image-l-from-pos': {
1780
+ 'mask-l-from': ((value: any) => any)[];
1781
+ }[];
1782
+ 'mask-image-l-to-pos': {
1783
+ 'mask-l-to': ((value: any) => any)[];
1784
+ }[];
1785
+ 'mask-image-l-from-color': {
1786
+ 'mask-l-from': (((value: any) => boolean) | {
1787
+ (theme: any): any;
1788
+ isThemeGetter: boolean;
1789
+ })[];
1790
+ }[];
1791
+ 'mask-image-l-to-color': {
1792
+ 'mask-l-to': (((value: any) => boolean) | {
1793
+ (theme: any): any;
1794
+ isThemeGetter: boolean;
1795
+ })[];
1796
+ }[];
1797
+ 'mask-image-x-from-pos': {
1798
+ 'mask-x-from': ((value: any) => any)[];
1799
+ }[];
1800
+ 'mask-image-x-to-pos': {
1801
+ 'mask-x-to': ((value: any) => any)[];
1802
+ }[];
1803
+ 'mask-image-x-from-color': {
1804
+ 'mask-x-from': (((value: any) => boolean) | {
1805
+ (theme: any): any;
1806
+ isThemeGetter: boolean;
1807
+ })[];
1808
+ }[];
1809
+ 'mask-image-x-to-color': {
1810
+ 'mask-x-to': (((value: any) => boolean) | {
1811
+ (theme: any): any;
1812
+ isThemeGetter: boolean;
1813
+ })[];
1814
+ }[];
1815
+ 'mask-image-y-from-pos': {
1816
+ 'mask-y-from': ((value: any) => any)[];
1817
+ }[];
1818
+ 'mask-image-y-to-pos': {
1819
+ 'mask-y-to': ((value: any) => any)[];
1820
+ }[];
1821
+ 'mask-image-y-from-color': {
1822
+ 'mask-y-from': (((value: any) => boolean) | {
1823
+ (theme: any): any;
1824
+ isThemeGetter: boolean;
1825
+ })[];
1826
+ }[];
1827
+ 'mask-image-y-to-color': {
1828
+ 'mask-y-to': (((value: any) => boolean) | {
1829
+ (theme: any): any;
1830
+ isThemeGetter: boolean;
1831
+ })[];
1832
+ }[];
1833
+ 'mask-image-radial': {
1834
+ 'mask-radial': ((value: any) => boolean)[];
1835
+ }[];
1836
+ 'mask-image-radial-from-pos': {
1837
+ 'mask-radial-from': ((value: any) => any)[];
1838
+ }[];
1839
+ 'mask-image-radial-to-pos': {
1840
+ 'mask-radial-to': ((value: any) => any)[];
1841
+ }[];
1842
+ 'mask-image-radial-from-color': {
1843
+ 'mask-radial-from': (((value: any) => boolean) | {
1844
+ (theme: any): any;
1845
+ isThemeGetter: boolean;
1846
+ })[];
1847
+ }[];
1848
+ 'mask-image-radial-to-color': {
1849
+ 'mask-radial-to': (((value: any) => boolean) | {
1850
+ (theme: any): any;
1851
+ isThemeGetter: boolean;
1852
+ })[];
1853
+ }[];
1854
+ 'mask-image-radial-shape': {
1855
+ 'mask-radial': string[];
1856
+ }[];
1857
+ 'mask-image-radial-size': {
1858
+ 'mask-radial': {
1859
+ closest: string[];
1860
+ farthest: string[];
1861
+ }[];
1862
+ }[];
1863
+ 'mask-image-radial-pos': {
1864
+ 'mask-radial-at': string[];
1865
+ }[];
1866
+ 'mask-image-conic-pos': {
1867
+ 'mask-conic': ((value: any) => boolean)[];
1868
+ }[];
1869
+ 'mask-image-conic-from-pos': {
1870
+ 'mask-conic-from': ((value: any) => any)[];
1871
+ }[];
1872
+ 'mask-image-conic-to-pos': {
1873
+ 'mask-conic-to': ((value: any) => any)[];
1874
+ }[];
1875
+ 'mask-image-conic-from-color': {
1876
+ 'mask-conic-from': (((value: any) => boolean) | {
1877
+ (theme: any): any;
1878
+ isThemeGetter: boolean;
1879
+ })[];
1880
+ }[];
1881
+ 'mask-image-conic-to-color': {
1882
+ 'mask-conic-to': (((value: any) => boolean) | {
1883
+ (theme: any): any;
1884
+ isThemeGetter: boolean;
1885
+ })[];
1886
+ }[];
1887
+ /**
1888
+ * Mask Mode
1889
+ * @see https://tailwindcss.com/docs/mask-mode
1890
+ */
1891
+ 'mask-mode': {
1892
+ mask: string[];
1893
+ }[];
1894
+ /**
1895
+ * Mask Origin
1896
+ * @see https://tailwindcss.com/docs/mask-origin
1897
+ */
1898
+ 'mask-origin': {
1899
+ 'mask-origin': string[];
1900
+ }[];
1901
+ /**
1902
+ * Mask Position
1903
+ * @see https://tailwindcss.com/docs/mask-position
1904
+ */
1905
+ 'mask-position': {
1906
+ mask: (string | ((value: any) => any) | {
1907
+ position: ((value: any) => boolean)[];
1908
+ })[];
1909
+ }[];
1910
+ /**
1911
+ * Mask Repeat
1912
+ * @see https://tailwindcss.com/docs/mask-repeat
1913
+ */
1914
+ 'mask-repeat': {
1915
+ mask: (string | {
1916
+ repeat: string[];
1917
+ })[];
1918
+ }[];
1919
+ /**
1920
+ * Mask Size
1921
+ * @see https://tailwindcss.com/docs/mask-size
1922
+ */
1923
+ 'mask-size': {
1924
+ mask: (string | ((value: any) => any) | {
1925
+ size: ((value: any) => boolean)[];
1926
+ })[];
1927
+ }[];
1928
+ /**
1929
+ * Mask Type
1930
+ * @see https://tailwindcss.com/docs/mask-type
1931
+ */
1932
+ 'mask-type': {
1933
+ 'mask-type': string[];
1934
+ }[];
1935
+ /**
1936
+ * Mask Image
1937
+ * @see https://tailwindcss.com/docs/mask-image
1938
+ */
1939
+ 'mask-image': {
1940
+ mask: (string | ((value: any) => boolean))[];
1941
+ }[];
1942
+ /**
1943
+ * Filter
1944
+ * @see https://tailwindcss.com/docs/filter
1945
+ */
1946
+ filter: {
1947
+ filter: (string | ((value: any) => boolean))[];
1948
+ }[];
1949
+ /**
1950
+ * Blur
1951
+ * @see https://tailwindcss.com/docs/blur
1952
+ */
1953
+ blur: {
1954
+ blur: (string | ((value: any) => boolean) | {
1955
+ (theme: any): any;
1956
+ isThemeGetter: boolean;
1957
+ })[];
1958
+ }[];
1959
+ /**
1960
+ * Brightness
1961
+ * @see https://tailwindcss.com/docs/brightness
1962
+ */
1963
+ brightness: {
1964
+ brightness: ((value: any) => boolean)[];
1965
+ }[];
1966
+ /**
1967
+ * Contrast
1968
+ * @see https://tailwindcss.com/docs/contrast
1969
+ */
1970
+ contrast: {
1971
+ contrast: ((value: any) => boolean)[];
1972
+ }[];
1973
+ /**
1974
+ * Drop Shadow
1975
+ * @see https://tailwindcss.com/docs/drop-shadow
1976
+ */
1977
+ 'drop-shadow': {
1978
+ 'drop-shadow': (string | ((value: any) => any))[];
1979
+ }[];
1980
+ /**
1981
+ * Drop Shadow Color
1982
+ * @see https://tailwindcss.com/docs/filter-drop-shadow#setting-the-shadow-color
1983
+ */
1984
+ 'drop-shadow-color': {
1985
+ 'drop-shadow': (((value: any) => boolean) | {
1986
+ (theme: any): any;
1987
+ isThemeGetter: boolean;
1988
+ })[];
1989
+ }[];
1990
+ /**
1991
+ * Grayscale
1992
+ * @see https://tailwindcss.com/docs/grayscale
1993
+ */
1994
+ grayscale: {
1995
+ grayscale: (string | ((value: any) => boolean))[];
1996
+ }[];
1997
+ /**
1998
+ * Hue Rotate
1999
+ * @see https://tailwindcss.com/docs/hue-rotate
2000
+ */
2001
+ 'hue-rotate': {
2002
+ 'hue-rotate': ((value: any) => boolean)[];
2003
+ }[];
2004
+ /**
2005
+ * Invert
2006
+ * @see https://tailwindcss.com/docs/invert
2007
+ */
2008
+ invert: {
2009
+ invert: (string | ((value: any) => boolean))[];
2010
+ }[];
2011
+ /**
2012
+ * Saturate
2013
+ * @see https://tailwindcss.com/docs/saturate
2014
+ */
2015
+ saturate: {
2016
+ saturate: ((value: any) => boolean)[];
2017
+ }[];
2018
+ /**
2019
+ * Sepia
2020
+ * @see https://tailwindcss.com/docs/sepia
2021
+ */
2022
+ sepia: {
2023
+ sepia: (string | ((value: any) => boolean))[];
2024
+ }[];
2025
+ /**
2026
+ * Backdrop Filter
2027
+ * @see https://tailwindcss.com/docs/backdrop-filter
2028
+ */
2029
+ 'backdrop-filter': {
2030
+ 'backdrop-filter': (string | ((value: any) => boolean))[];
2031
+ }[];
2032
+ /**
2033
+ * Backdrop Blur
2034
+ * @see https://tailwindcss.com/docs/backdrop-blur
2035
+ */
2036
+ 'backdrop-blur': {
2037
+ 'backdrop-blur': (string | ((value: any) => boolean) | {
2038
+ (theme: any): any;
2039
+ isThemeGetter: boolean;
2040
+ })[];
2041
+ }[];
2042
+ /**
2043
+ * Backdrop Brightness
2044
+ * @see https://tailwindcss.com/docs/backdrop-brightness
2045
+ */
2046
+ 'backdrop-brightness': {
2047
+ 'backdrop-brightness': ((value: any) => boolean)[];
2048
+ }[];
2049
+ /**
2050
+ * Backdrop Contrast
2051
+ * @see https://tailwindcss.com/docs/backdrop-contrast
2052
+ */
2053
+ 'backdrop-contrast': {
2054
+ 'backdrop-contrast': ((value: any) => boolean)[];
2055
+ }[];
2056
+ /**
2057
+ * Backdrop Grayscale
2058
+ * @see https://tailwindcss.com/docs/backdrop-grayscale
2059
+ */
2060
+ 'backdrop-grayscale': {
2061
+ 'backdrop-grayscale': (string | ((value: any) => boolean))[];
2062
+ }[];
2063
+ /**
2064
+ * Backdrop Hue Rotate
2065
+ * @see https://tailwindcss.com/docs/backdrop-hue-rotate
2066
+ */
2067
+ 'backdrop-hue-rotate': {
2068
+ 'backdrop-hue-rotate': ((value: any) => boolean)[];
2069
+ }[];
2070
+ /**
2071
+ * Backdrop Invert
2072
+ * @see https://tailwindcss.com/docs/backdrop-invert
2073
+ */
2074
+ 'backdrop-invert': {
2075
+ 'backdrop-invert': (string | ((value: any) => boolean))[];
2076
+ }[];
2077
+ /**
2078
+ * Backdrop Opacity
2079
+ * @see https://tailwindcss.com/docs/backdrop-opacity
2080
+ */
2081
+ 'backdrop-opacity': {
2082
+ 'backdrop-opacity': ((value: any) => boolean)[];
2083
+ }[];
2084
+ /**
2085
+ * Backdrop Saturate
2086
+ * @see https://tailwindcss.com/docs/backdrop-saturate
2087
+ */
2088
+ 'backdrop-saturate': {
2089
+ 'backdrop-saturate': ((value: any) => boolean)[];
2090
+ }[];
2091
+ /**
2092
+ * Backdrop Sepia
2093
+ * @see https://tailwindcss.com/docs/backdrop-sepia
2094
+ */
2095
+ 'backdrop-sepia': {
2096
+ 'backdrop-sepia': (string | ((value: any) => boolean))[];
2097
+ }[];
2098
+ /**
2099
+ * Border Collapse
2100
+ * @see https://tailwindcss.com/docs/border-collapse
2101
+ */
2102
+ 'border-collapse': {
2103
+ border: string[];
2104
+ }[];
2105
+ /**
2106
+ * Border Spacing
2107
+ * @see https://tailwindcss.com/docs/border-spacing
2108
+ */
2109
+ 'border-spacing': {
2110
+ 'border-spacing': (((value: any) => boolean) | {
2111
+ (theme: any): any;
2112
+ isThemeGetter: boolean;
2113
+ })[];
2114
+ }[];
2115
+ /**
2116
+ * Border Spacing X
2117
+ * @see https://tailwindcss.com/docs/border-spacing
2118
+ */
2119
+ 'border-spacing-x': {
2120
+ 'border-spacing-x': (((value: any) => boolean) | {
2121
+ (theme: any): any;
2122
+ isThemeGetter: boolean;
2123
+ })[];
2124
+ }[];
2125
+ /**
2126
+ * Border Spacing Y
2127
+ * @see https://tailwindcss.com/docs/border-spacing
2128
+ */
2129
+ 'border-spacing-y': {
2130
+ 'border-spacing-y': (((value: any) => boolean) | {
2131
+ (theme: any): any;
2132
+ isThemeGetter: boolean;
2133
+ })[];
2134
+ }[];
2135
+ /**
2136
+ * Table Layout
2137
+ * @see https://tailwindcss.com/docs/table-layout
2138
+ */
2139
+ 'table-layout': {
2140
+ table: string[];
2141
+ }[];
2142
+ /**
2143
+ * Caption Side
2144
+ * @see https://tailwindcss.com/docs/caption-side
2145
+ */
2146
+ caption: {
2147
+ caption: string[];
2148
+ }[];
2149
+ /**
2150
+ * Transition Property
2151
+ * @see https://tailwindcss.com/docs/transition-property
2152
+ */
2153
+ transition: {
2154
+ transition: (string | ((value: any) => boolean))[];
2155
+ }[];
2156
+ /**
2157
+ * Transition Behavior
2158
+ * @see https://tailwindcss.com/docs/transition-behavior
2159
+ */
2160
+ 'transition-behavior': {
2161
+ transition: string[];
2162
+ }[];
2163
+ /**
2164
+ * Transition Duration
2165
+ * @see https://tailwindcss.com/docs/transition-duration
2166
+ */
2167
+ duration: {
2168
+ duration: (string | ((value: any) => boolean))[];
2169
+ }[];
2170
+ /**
2171
+ * Transition Timing Function
2172
+ * @see https://tailwindcss.com/docs/transition-timing-function
2173
+ */
2174
+ ease: {
2175
+ ease: (string | ((value: any) => boolean) | {
2176
+ (theme: any): any;
2177
+ isThemeGetter: boolean;
2178
+ })[];
2179
+ }[];
2180
+ /**
2181
+ * Transition Delay
2182
+ * @see https://tailwindcss.com/docs/transition-delay
2183
+ */
2184
+ delay: {
2185
+ delay: ((value: any) => boolean)[];
2186
+ }[];
2187
+ /**
2188
+ * Animation
2189
+ * @see https://tailwindcss.com/docs/animation
2190
+ */
2191
+ animate: {
2192
+ animate: (string | ((value: any) => boolean) | {
2193
+ (theme: any): any;
2194
+ isThemeGetter: boolean;
2195
+ })[];
2196
+ }[];
2197
+ /**
2198
+ * Backface Visibility
2199
+ * @see https://tailwindcss.com/docs/backface-visibility
2200
+ */
2201
+ backface: {
2202
+ backface: string[];
2203
+ }[];
2204
+ /**
2205
+ * Perspective
2206
+ * @see https://tailwindcss.com/docs/perspective
2207
+ */
2208
+ perspective: {
2209
+ perspective: (((value: any) => boolean) | {
2210
+ (theme: any): any;
2211
+ isThemeGetter: boolean;
2212
+ })[];
2213
+ }[];
2214
+ /**
2215
+ * Perspective Origin
2216
+ * @see https://tailwindcss.com/docs/perspective-origin
2217
+ */
2218
+ 'perspective-origin': {
2219
+ 'perspective-origin': (string | ((value: any) => boolean))[];
2220
+ }[];
2221
+ /**
2222
+ * Rotate
2223
+ * @see https://tailwindcss.com/docs/rotate
2224
+ */
2225
+ rotate: {
2226
+ rotate: (string | ((value: any) => boolean))[];
2227
+ }[];
2228
+ /**
2229
+ * Rotate X
2230
+ * @see https://tailwindcss.com/docs/rotate
2231
+ */
2232
+ 'rotate-x': {
2233
+ 'rotate-x': (string | ((value: any) => boolean))[];
2234
+ }[];
2235
+ /**
2236
+ * Rotate Y
2237
+ * @see https://tailwindcss.com/docs/rotate
2238
+ */
2239
+ 'rotate-y': {
2240
+ 'rotate-y': (string | ((value: any) => boolean))[];
2241
+ }[];
2242
+ /**
2243
+ * Rotate Z
2244
+ * @see https://tailwindcss.com/docs/rotate
2245
+ */
2246
+ 'rotate-z': {
2247
+ 'rotate-z': (string | ((value: any) => boolean))[];
2248
+ }[];
2249
+ /**
2250
+ * Scale
2251
+ * @see https://tailwindcss.com/docs/scale
2252
+ */
2253
+ scale: {
2254
+ scale: (string | ((value: any) => boolean))[];
2255
+ }[];
2256
+ /**
2257
+ * Scale X
2258
+ * @see https://tailwindcss.com/docs/scale
2259
+ */
2260
+ 'scale-x': {
2261
+ 'scale-x': (string | ((value: any) => boolean))[];
2262
+ }[];
2263
+ /**
2264
+ * Scale Y
2265
+ * @see https://tailwindcss.com/docs/scale
2266
+ */
2267
+ 'scale-y': {
2268
+ 'scale-y': (string | ((value: any) => boolean))[];
2269
+ }[];
2270
+ /**
2271
+ * Scale Z
2272
+ * @see https://tailwindcss.com/docs/scale
2273
+ */
2274
+ 'scale-z': {
2275
+ 'scale-z': (string | ((value: any) => boolean))[];
2276
+ }[];
2277
+ /**
2278
+ * Scale 3D
2279
+ * @see https://tailwindcss.com/docs/scale
2280
+ */
2281
+ 'scale-3d': string[];
2282
+ /**
2283
+ * Skew
2284
+ * @see https://tailwindcss.com/docs/skew
2285
+ */
2286
+ skew: {
2287
+ skew: ((value: any) => boolean)[];
2288
+ }[];
2289
+ /**
2290
+ * Skew X
2291
+ * @see https://tailwindcss.com/docs/skew
2292
+ */
2293
+ 'skew-x': {
2294
+ 'skew-x': ((value: any) => boolean)[];
2295
+ }[];
2296
+ /**
2297
+ * Skew Y
2298
+ * @see https://tailwindcss.com/docs/skew
2299
+ */
2300
+ 'skew-y': {
2301
+ 'skew-y': ((value: any) => boolean)[];
2302
+ }[];
2303
+ /**
2304
+ * Transform
2305
+ * @see https://tailwindcss.com/docs/transform
2306
+ */
2307
+ transform: {
2308
+ transform: (string | ((value: any) => boolean))[];
2309
+ }[];
2310
+ /**
2311
+ * Transform Origin
2312
+ * @see https://tailwindcss.com/docs/transform-origin
2313
+ */
2314
+ 'transform-origin': {
2315
+ origin: (string | ((value: any) => boolean))[];
2316
+ }[];
2317
+ /**
2318
+ * Transform Style
2319
+ * @see https://tailwindcss.com/docs/transform-style
2320
+ */
2321
+ 'transform-style': {
2322
+ transform: string[];
2323
+ }[];
2324
+ /**
2325
+ * Translate
2326
+ * @see https://tailwindcss.com/docs/translate
2327
+ */
2328
+ translate: {
2329
+ translate: (string | ((value: any) => boolean) | {
2330
+ (theme: any): any;
2331
+ isThemeGetter: boolean;
2332
+ })[];
2333
+ }[];
2334
+ /**
2335
+ * Translate X
2336
+ * @see https://tailwindcss.com/docs/translate
2337
+ */
2338
+ 'translate-x': {
2339
+ 'translate-x': (string | ((value: any) => boolean) | {
2340
+ (theme: any): any;
2341
+ isThemeGetter: boolean;
2342
+ })[];
2343
+ }[];
2344
+ /**
2345
+ * Translate Y
2346
+ * @see https://tailwindcss.com/docs/translate
2347
+ */
2348
+ 'translate-y': {
2349
+ 'translate-y': (string | ((value: any) => boolean) | {
2350
+ (theme: any): any;
2351
+ isThemeGetter: boolean;
2352
+ })[];
2353
+ }[];
2354
+ /**
2355
+ * Translate Z
2356
+ * @see https://tailwindcss.com/docs/translate
2357
+ */
2358
+ 'translate-z': {
2359
+ 'translate-z': (string | ((value: any) => boolean) | {
2360
+ (theme: any): any;
2361
+ isThemeGetter: boolean;
2362
+ })[];
2363
+ }[];
2364
+ /**
2365
+ * Translate None
2366
+ * @see https://tailwindcss.com/docs/translate
2367
+ */
2368
+ 'translate-none': string[];
2369
+ /**
2370
+ * Accent Color
2371
+ * @see https://tailwindcss.com/docs/accent-color
2372
+ */
2373
+ accent: {
2374
+ accent: (((value: any) => boolean) | {
2375
+ (theme: any): any;
2376
+ isThemeGetter: boolean;
2377
+ })[];
2378
+ }[];
2379
+ /**
2380
+ * Appearance
2381
+ * @see https://tailwindcss.com/docs/appearance
2382
+ */
2383
+ appearance: {
2384
+ appearance: string[];
2385
+ }[];
2386
+ /**
2387
+ * Caret Color
2388
+ * @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
2389
+ */
2390
+ 'caret-color': {
2391
+ caret: (((value: any) => boolean) | {
2392
+ (theme: any): any;
2393
+ isThemeGetter: boolean;
2394
+ })[];
2395
+ }[];
2396
+ /**
2397
+ * Color Scheme
2398
+ * @see https://tailwindcss.com/docs/color-scheme
2399
+ */
2400
+ 'color-scheme': {
2401
+ scheme: string[];
2402
+ }[];
2403
+ /**
2404
+ * Cursor
2405
+ * @see https://tailwindcss.com/docs/cursor
2406
+ */
2407
+ cursor: {
2408
+ cursor: (string | ((value: any) => boolean))[];
2409
+ }[];
2410
+ /**
2411
+ * Field Sizing
2412
+ * @see https://tailwindcss.com/docs/field-sizing
2413
+ */
2414
+ 'field-sizing': {
2415
+ 'field-sizing': string[];
2416
+ }[];
2417
+ /**
2418
+ * Pointer Events
2419
+ * @see https://tailwindcss.com/docs/pointer-events
2420
+ */
2421
+ 'pointer-events': {
2422
+ 'pointer-events': string[];
2423
+ }[];
2424
+ /**
2425
+ * Resize
2426
+ * @see https://tailwindcss.com/docs/resize
2427
+ */
2428
+ resize: {
2429
+ resize: string[];
2430
+ }[];
2431
+ /**
2432
+ * Scroll Behavior
2433
+ * @see https://tailwindcss.com/docs/scroll-behavior
2434
+ */
2435
+ 'scroll-behavior': {
2436
+ scroll: string[];
2437
+ }[];
2438
+ /**
2439
+ * Scroll Margin
2440
+ * @see https://tailwindcss.com/docs/scroll-margin
2441
+ */
2442
+ 'scroll-m': {
2443
+ 'scroll-m': (((value: any) => boolean) | {
2444
+ (theme: any): any;
2445
+ isThemeGetter: boolean;
2446
+ })[];
2447
+ }[];
2448
+ /**
2449
+ * Scroll Margin X
2450
+ * @see https://tailwindcss.com/docs/scroll-margin
2451
+ */
2452
+ 'scroll-mx': {
2453
+ 'scroll-mx': (((value: any) => boolean) | {
2454
+ (theme: any): any;
2455
+ isThemeGetter: boolean;
2456
+ })[];
2457
+ }[];
2458
+ /**
2459
+ * Scroll Margin Y
2460
+ * @see https://tailwindcss.com/docs/scroll-margin
2461
+ */
2462
+ 'scroll-my': {
2463
+ 'scroll-my': (((value: any) => boolean) | {
2464
+ (theme: any): any;
2465
+ isThemeGetter: boolean;
2466
+ })[];
2467
+ }[];
2468
+ /**
2469
+ * Scroll Margin Start
2470
+ * @see https://tailwindcss.com/docs/scroll-margin
2471
+ */
2472
+ 'scroll-ms': {
2473
+ 'scroll-ms': (((value: any) => boolean) | {
2474
+ (theme: any): any;
2475
+ isThemeGetter: boolean;
2476
+ })[];
2477
+ }[];
2478
+ /**
2479
+ * Scroll Margin End
2480
+ * @see https://tailwindcss.com/docs/scroll-margin
2481
+ */
2482
+ 'scroll-me': {
2483
+ 'scroll-me': (((value: any) => boolean) | {
2484
+ (theme: any): any;
2485
+ isThemeGetter: boolean;
2486
+ })[];
2487
+ }[];
2488
+ /**
2489
+ * Scroll Margin Top
2490
+ * @see https://tailwindcss.com/docs/scroll-margin
2491
+ */
2492
+ 'scroll-mt': {
2493
+ 'scroll-mt': (((value: any) => boolean) | {
2494
+ (theme: any): any;
2495
+ isThemeGetter: boolean;
2496
+ })[];
2497
+ }[];
2498
+ /**
2499
+ * Scroll Margin Right
2500
+ * @see https://tailwindcss.com/docs/scroll-margin
2501
+ */
2502
+ 'scroll-mr': {
2503
+ 'scroll-mr': (((value: any) => boolean) | {
2504
+ (theme: any): any;
2505
+ isThemeGetter: boolean;
2506
+ })[];
2507
+ }[];
2508
+ /**
2509
+ * Scroll Margin Bottom
2510
+ * @see https://tailwindcss.com/docs/scroll-margin
2511
+ */
2512
+ 'scroll-mb': {
2513
+ 'scroll-mb': (((value: any) => boolean) | {
2514
+ (theme: any): any;
2515
+ isThemeGetter: boolean;
2516
+ })[];
2517
+ }[];
2518
+ /**
2519
+ * Scroll Margin Left
2520
+ * @see https://tailwindcss.com/docs/scroll-margin
2521
+ */
2522
+ 'scroll-ml': {
2523
+ 'scroll-ml': (((value: any) => boolean) | {
2524
+ (theme: any): any;
2525
+ isThemeGetter: boolean;
2526
+ })[];
2527
+ }[];
2528
+ /**
2529
+ * Scroll Padding
2530
+ * @see https://tailwindcss.com/docs/scroll-padding
2531
+ */
2532
+ 'scroll-p': {
2533
+ 'scroll-p': (((value: any) => boolean) | {
2534
+ (theme: any): any;
2535
+ isThemeGetter: boolean;
2536
+ })[];
2537
+ }[];
2538
+ /**
2539
+ * Scroll Padding X
2540
+ * @see https://tailwindcss.com/docs/scroll-padding
2541
+ */
2542
+ 'scroll-px': {
2543
+ 'scroll-px': (((value: any) => boolean) | {
2544
+ (theme: any): any;
2545
+ isThemeGetter: boolean;
2546
+ })[];
2547
+ }[];
2548
+ /**
2549
+ * Scroll Padding Y
2550
+ * @see https://tailwindcss.com/docs/scroll-padding
2551
+ */
2552
+ 'scroll-py': {
2553
+ 'scroll-py': (((value: any) => boolean) | {
2554
+ (theme: any): any;
2555
+ isThemeGetter: boolean;
2556
+ })[];
2557
+ }[];
2558
+ /**
2559
+ * Scroll Padding Start
2560
+ * @see https://tailwindcss.com/docs/scroll-padding
2561
+ */
2562
+ 'scroll-ps': {
2563
+ 'scroll-ps': (((value: any) => boolean) | {
2564
+ (theme: any): any;
2565
+ isThemeGetter: boolean;
2566
+ })[];
2567
+ }[];
2568
+ /**
2569
+ * Scroll Padding End
2570
+ * @see https://tailwindcss.com/docs/scroll-padding
2571
+ */
2572
+ 'scroll-pe': {
2573
+ 'scroll-pe': (((value: any) => boolean) | {
2574
+ (theme: any): any;
2575
+ isThemeGetter: boolean;
2576
+ })[];
2577
+ }[];
2578
+ /**
2579
+ * Scroll Padding Top
2580
+ * @see https://tailwindcss.com/docs/scroll-padding
2581
+ */
2582
+ 'scroll-pt': {
2583
+ 'scroll-pt': (((value: any) => boolean) | {
2584
+ (theme: any): any;
2585
+ isThemeGetter: boolean;
2586
+ })[];
2587
+ }[];
2588
+ /**
2589
+ * Scroll Padding Right
2590
+ * @see https://tailwindcss.com/docs/scroll-padding
2591
+ */
2592
+ 'scroll-pr': {
2593
+ 'scroll-pr': (((value: any) => boolean) | {
2594
+ (theme: any): any;
2595
+ isThemeGetter: boolean;
2596
+ })[];
2597
+ }[];
2598
+ /**
2599
+ * Scroll Padding Bottom
2600
+ * @see https://tailwindcss.com/docs/scroll-padding
2601
+ */
2602
+ 'scroll-pb': {
2603
+ 'scroll-pb': (((value: any) => boolean) | {
2604
+ (theme: any): any;
2605
+ isThemeGetter: boolean;
2606
+ })[];
2607
+ }[];
2608
+ /**
2609
+ * Scroll Padding Left
2610
+ * @see https://tailwindcss.com/docs/scroll-padding
2611
+ */
2612
+ 'scroll-pl': {
2613
+ 'scroll-pl': (((value: any) => boolean) | {
2614
+ (theme: any): any;
2615
+ isThemeGetter: boolean;
2616
+ })[];
2617
+ }[];
2618
+ /**
2619
+ * Scroll Snap Align
2620
+ * @see https://tailwindcss.com/docs/scroll-snap-align
2621
+ */
2622
+ 'snap-align': {
2623
+ snap: string[];
2624
+ }[];
2625
+ /**
2626
+ * Scroll Snap Stop
2627
+ * @see https://tailwindcss.com/docs/scroll-snap-stop
2628
+ */
2629
+ 'snap-stop': {
2630
+ snap: string[];
2631
+ }[];
2632
+ /**
2633
+ * Scroll Snap Type
2634
+ * @see https://tailwindcss.com/docs/scroll-snap-type
2635
+ */
2636
+ 'snap-type': {
2637
+ snap: string[];
2638
+ }[];
2639
+ /**
2640
+ * Scroll Snap Type Strictness
2641
+ * @see https://tailwindcss.com/docs/scroll-snap-type
2642
+ */
2643
+ 'snap-strictness': {
2644
+ snap: string[];
2645
+ }[];
2646
+ /**
2647
+ * Touch Action
2648
+ * @see https://tailwindcss.com/docs/touch-action
2649
+ */
2650
+ touch: {
2651
+ touch: string[];
2652
+ }[];
2653
+ /**
2654
+ * Touch Action X
2655
+ * @see https://tailwindcss.com/docs/touch-action
2656
+ */
2657
+ 'touch-x': {
2658
+ 'touch-pan': string[];
2659
+ }[];
2660
+ /**
2661
+ * Touch Action Y
2662
+ * @see https://tailwindcss.com/docs/touch-action
2663
+ */
2664
+ 'touch-y': {
2665
+ 'touch-pan': string[];
2666
+ }[];
2667
+ /**
2668
+ * Touch Action Pinch Zoom
2669
+ * @see https://tailwindcss.com/docs/touch-action
2670
+ */
2671
+ 'touch-pz': string[];
2672
+ /**
2673
+ * User Select
2674
+ * @see https://tailwindcss.com/docs/user-select
2675
+ */
2676
+ select: {
2677
+ select: string[];
2678
+ }[];
2679
+ /**
2680
+ * Will Change
2681
+ * @see https://tailwindcss.com/docs/will-change
2682
+ */
2683
+ 'will-change': {
2684
+ 'will-change': (string | ((value: any) => boolean))[];
2685
+ }[];
2686
+ /**
2687
+ * Fill
2688
+ * @see https://tailwindcss.com/docs/fill
2689
+ */
2690
+ fill: {
2691
+ fill: (string | ((value: any) => boolean) | {
2692
+ (theme: any): any;
2693
+ isThemeGetter: boolean;
2694
+ })[];
2695
+ }[];
2696
+ /**
2697
+ * Stroke Width
2698
+ * @see https://tailwindcss.com/docs/stroke-width
2699
+ */
2700
+ 'stroke-w': {
2701
+ stroke: ((value: any) => any)[];
2702
+ }[];
2703
+ /**
2704
+ * Stroke
2705
+ * @see https://tailwindcss.com/docs/stroke
2706
+ */
2707
+ stroke: {
2708
+ stroke: (string | ((value: any) => boolean) | {
2709
+ (theme: any): any;
2710
+ isThemeGetter: boolean;
2711
+ })[];
2712
+ }[];
2713
+ /**
2714
+ * Forced Color Adjust
2715
+ * @see https://tailwindcss.com/docs/forced-color-adjust
2716
+ */
2717
+ 'forced-color-adjust': {
2718
+ 'forced-color-adjust': string[];
2719
+ }[];
2720
+ };
2721
+ conflictingClassGroups: {
2722
+ overflow: string[];
2723
+ overscroll: string[];
2724
+ inset: string[];
2725
+ 'inset-x': string[];
2726
+ 'inset-y': string[];
2727
+ flex: string[];
2728
+ gap: string[];
2729
+ p: string[];
2730
+ px: string[];
2731
+ py: string[];
2732
+ m: string[];
2733
+ mx: string[];
2734
+ my: string[];
2735
+ size: string[];
2736
+ 'font-size': string[];
2737
+ 'fvn-normal': string[];
2738
+ 'fvn-ordinal': string[];
2739
+ 'fvn-slashed-zero': string[];
2740
+ 'fvn-figure': string[];
2741
+ 'fvn-spacing': string[];
2742
+ 'fvn-fraction': string[];
2743
+ 'line-clamp': string[];
2744
+ rounded: string[];
2745
+ 'rounded-s': string[];
2746
+ 'rounded-e': string[];
2747
+ 'rounded-t': string[];
2748
+ 'rounded-r': string[];
2749
+ 'rounded-b': string[];
2750
+ 'rounded-l': string[];
2751
+ 'border-spacing': string[];
2752
+ 'border-w': string[];
2753
+ 'border-w-x': string[];
2754
+ 'border-w-y': string[];
2755
+ 'border-color': string[];
2756
+ 'border-color-x': string[];
2757
+ 'border-color-y': string[];
2758
+ translate: string[];
2759
+ 'translate-none': string[];
2760
+ 'scroll-m': string[];
2761
+ 'scroll-mx': string[];
2762
+ 'scroll-my': string[];
2763
+ 'scroll-p': string[];
2764
+ 'scroll-px': string[];
2765
+ 'scroll-py': string[];
2766
+ touch: string[];
2767
+ 'touch-x': string[];
2768
+ 'touch-y': string[];
2769
+ 'touch-pz': string[];
2770
+ };
2771
+ conflictingClassGroupModifiers: {
2772
+ 'font-size': string[];
2773
+ };
2774
+ orderSensitiveModifiers: string[];
2775
+ };
2776
+ /**
2777
+ * @param baseConfig Config where other config will be merged into. This object will be mutated.
2778
+ * @param configExtension Partial config to merge into the `baseConfig`.
2779
+ */
2780
+ export function mergeConfigs(baseConfig: any, { cacheSize, prefix, experimentalParseClassName, extend, override }: {
2781
+ cacheSize: any;
2782
+ prefix: any;
2783
+ experimentalParseClassName: any;
2784
+ extend?: {} | undefined;
2785
+ override?: {} | undefined;
2786
+ }): any;
2787
+ /**
2788
+ * The code in this file is copied from https://github.com/lukeed/clsx and modified to suit the needs of tailwind-merge better.
2789
+ *
2790
+ * Specifically:
2791
+ * - Runtime code from https://github.com/lukeed/clsx/blob/v1.2.1/src/index.js
2792
+ * - TypeScript types from https://github.com/lukeed/clsx/blob/v1.2.1/clsx.d.ts
2793
+ *
2794
+ * Original code has MIT license: Copyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)
2795
+ */
2796
+ export function twJoin(...classLists: any[]): string;
2797
+ export function twMerge(...args: any[]): any;
2798
+ export namespace validators {
2799
+ export let __proto__: null;
2800
+ export { isAny };
2801
+ export { isAnyNonArbitrary };
2802
+ export { isArbitraryImage };
2803
+ export { isArbitraryLength };
2804
+ export { isArbitraryNumber };
2805
+ export { isArbitraryPosition };
2806
+ export { isArbitraryShadow };
2807
+ export { isArbitrarySize };
2808
+ export { isArbitraryValue };
2809
+ export { isArbitraryVariable };
2810
+ export { isArbitraryVariableFamilyName };
2811
+ export { isArbitraryVariableImage };
2812
+ export { isArbitraryVariableLength };
2813
+ export { isArbitraryVariablePosition };
2814
+ export { isArbitraryVariableShadow };
2815
+ export { isArbitraryVariableSize };
2816
+ export { isFraction };
2817
+ export { isInteger };
2818
+ export { isNumber };
2819
+ export { isPercent };
2820
+ export { isTshirtSize };
2821
+ }
2822
+ declare function isAny(): boolean;
2823
+ declare function isAnyNonArbitrary(value: any): boolean;
2824
+ declare function isArbitraryImage(value: any): any;
2825
+ declare function isArbitraryLength(value: any): any;
2826
+ declare function isArbitraryNumber(value: any): any;
2827
+ declare function isArbitraryPosition(value: any): any;
2828
+ declare function isArbitraryShadow(value: any): any;
2829
+ declare function isArbitrarySize(value: any): any;
2830
+ declare function isArbitraryValue(value: any): boolean;
2831
+ declare function isArbitraryVariable(value: any): boolean;
2832
+ declare function isArbitraryVariableFamilyName(value: any): any;
2833
+ declare function isArbitraryVariableImage(value: any): any;
2834
+ declare function isArbitraryVariableLength(value: any): any;
2835
+ declare function isArbitraryVariablePosition(value: any): any;
2836
+ declare function isArbitraryVariableShadow(value: any): any;
2837
+ declare function isArbitraryVariableSize(value: any): any;
2838
+ declare function isFraction(value: any): boolean;
2839
+ declare function isInteger(value: any): boolean;
2840
+ declare function isNumber(value: any): boolean;
2841
+ declare function isPercent(value: any): any;
2842
+ declare function isTshirtSize(value: any): boolean;
2843
+ export {};