@zvoove/unity-ui 2.29.1 → 2.32.1

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 (479) hide show
  1. package/dist/bin/cli.mjs +0 -0
  2. package/dist/bin/generate-skills.mjs +0 -0
  3. package/dist/llms.txt +94 -29
  4. package/dist/src/components/Accordion/Accordion.d.ts +6 -0
  5. package/dist/src/components/Accordion/Accordion.styled.d.ts +46 -0
  6. package/dist/src/components/Accordion/Accordion.types.d.ts +33 -0
  7. package/dist/src/components/Accordion/index.d.ts +2 -0
  8. package/dist/src/components/ActionCard/ActionCard.d.ts +6 -0
  9. package/dist/src/components/ActionCard/ActionCard.styled.d.ts +29 -0
  10. package/dist/src/components/ActionCard/ActionCard.types.d.ts +32 -0
  11. package/dist/src/components/ActionCard/index.d.ts +2 -0
  12. package/dist/src/components/Avatar/Avatar/Avatar.d.ts +3 -0
  13. package/dist/src/components/Avatar/Avatar/Avatar.styled.d.ts +53 -0
  14. package/dist/src/components/Avatar/Avatar/Avatar.types.d.ts +48 -0
  15. package/dist/src/components/Avatar/Avatar/index.d.ts +2 -0
  16. package/dist/src/components/Avatar/AvatarGroup/AvatarGroup.d.ts +3 -0
  17. package/dist/src/components/Avatar/AvatarGroup/AvatarGroup.styled.d.ts +3 -0
  18. package/dist/src/components/Avatar/AvatarGroup/AvatarGroup.types.d.ts +15 -0
  19. package/dist/src/components/Avatar/AvatarGroup/index.d.ts +2 -0
  20. package/dist/src/components/Avatar/index.d.ts +2 -0
  21. package/dist/src/components/Badge/Badge.d.ts +3 -0
  22. package/dist/src/components/Badge/Badge.styled.d.ts +28 -0
  23. package/dist/src/components/Badge/Badge.types.d.ts +19 -0
  24. package/dist/src/components/Badge/index.d.ts +2 -0
  25. package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +4 -0
  26. package/dist/src/components/Breadcrumbs/Breadcrumbs.styled.d.ts +14 -0
  27. package/dist/src/components/Breadcrumbs/Breadcrumbs.types.d.ts +22 -0
  28. package/dist/src/components/Breadcrumbs/index.d.ts +2 -0
  29. package/dist/src/components/Button/Button.d.ts +9 -0
  30. package/dist/src/components/Button/Button.styled.d.ts +98 -0
  31. package/dist/src/components/Button/Button.types.d.ts +55 -0
  32. package/dist/src/components/Button/index.d.ts +2 -0
  33. package/dist/src/components/Card/Card.d.ts +10 -0
  34. package/dist/src/components/Card/Card.styled.d.ts +770 -0
  35. package/dist/src/components/Card/Card.types.d.ts +131 -0
  36. package/dist/src/components/Card/index.d.ts +2 -0
  37. package/dist/src/components/ChatBubble/ChatBubble.d.ts +3 -0
  38. package/dist/src/components/ChatBubble/ChatBubble.styled.d.ts +117 -0
  39. package/dist/src/components/ChatBubble/ChatBubble.types.d.ts +55 -0
  40. package/dist/src/components/ChatBubble/ChatBubbleMedia.d.ts +3 -0
  41. package/dist/src/components/ChatBubble/index.d.ts +3 -0
  42. package/dist/src/components/Checkbox/Checkbox.d.ts +3 -0
  43. package/dist/src/components/Checkbox/Checkbox.styled.d.ts +59 -0
  44. package/dist/src/components/Checkbox/Checkbox.types.d.ts +40 -0
  45. package/dist/src/components/Checkbox/index.d.ts +2 -0
  46. package/dist/src/components/Chip/Chip.d.ts +4 -0
  47. package/dist/src/components/Chip/Chip.styled.d.ts +114 -0
  48. package/dist/src/components/Chip/Chip.types.d.ts +63 -0
  49. package/dist/src/components/Chip/index.d.ts +2 -0
  50. package/dist/src/components/CodeBlock/CodeBlock.d.ts +6 -0
  51. package/dist/src/components/CodeBlock/CodeBlock.highlighter.d.ts +7 -0
  52. package/dist/src/components/CodeBlock/CodeBlock.styled.d.ts +65 -0
  53. package/dist/src/components/CodeBlock/CodeBlock.types.d.ts +28 -0
  54. package/dist/src/components/CodeBlock/CodeBlock.utils.d.ts +11 -0
  55. package/dist/src/components/CodeBlock/index.d.ts +3 -0
  56. package/dist/src/components/ContentBlock/ContentBlock.d.ts +6 -0
  57. package/dist/src/components/ContentBlock/ContentBlock.styled.d.ts +2 -0
  58. package/dist/src/components/ContentBlock/ContentBlock.types.d.ts +7 -0
  59. package/dist/src/components/ContentBlock/index.d.ts +2 -0
  60. package/dist/src/components/DatePicker/DatePicker.d.ts +3 -0
  61. package/dist/src/components/DatePicker/DatePicker.styled.d.ts +16 -0
  62. package/dist/src/components/DatePicker/DatePicker.types.d.ts +64 -0
  63. package/dist/src/components/DatePicker/components/DateDialog/DateDialog.d.ts +3 -0
  64. package/dist/src/components/DatePicker/components/DateDialog/DateDialog.types.d.ts +10 -0
  65. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/Calendar.d.ts +3 -0
  66. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/Calendar.styled.d.ts +16 -0
  67. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/Calendar.types.d.ts +61 -0
  68. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/ActionButtons/ActionButtons.d.ts +3 -0
  69. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/ActionButtons/ActionButtons.styled.d.ts +16 -0
  70. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/ActionButtons/ActionButtons.types.d.ts +30 -0
  71. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/ActionButtons/index.d.ts +2 -0
  72. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/CalendarHeader/CalendarHeader.d.ts +3 -0
  73. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/CalendarHeader/CalendarHeader.styled.d.ts +70 -0
  74. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/CalendarHeader/CalendarHeader.types.d.ts +46 -0
  75. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/CalendarHeader/index.d.ts +2 -0
  76. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/Carousel/Carousel.d.ts +3 -0
  77. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/Carousel/Carousel.styled.d.ts +45 -0
  78. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/Carousel/Carousel.types.d.ts +30 -0
  79. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/Carousel/index.d.ts +2 -0
  80. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/Day/Day.d.ts +3 -0
  81. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/Day/Day.styled.d.ts +22 -0
  82. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/Day/Day.types.d.ts +11 -0
  83. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/Day/index.d.ts +2 -0
  84. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/WeekDays/WeekDays.d.ts +3 -0
  85. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/WeekDays/WeekDays.styled.d.ts +17 -0
  86. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/WeekDays/WeekDays.types.d.ts +4 -0
  87. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/WeekDays/index.d.ts +2 -0
  88. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/components/index.d.ts +5 -0
  89. package/dist/src/components/DatePicker/components/DateDialog/components/Calendar/index.d.ts +2 -0
  90. package/dist/src/components/DatePicker/components/DateDialog/components/MonthSelector/MonthSelector.d.ts +3 -0
  91. package/dist/src/components/DatePicker/components/DateDialog/components/MonthSelector/MonthSelector.types.d.ts +23 -0
  92. package/dist/src/components/DatePicker/components/DateDialog/components/MonthSelector/index.d.ts +2 -0
  93. package/dist/src/components/DatePicker/components/DateDialog/components/SelectorList/SelectorList.d.ts +3 -0
  94. package/dist/src/components/DatePicker/components/DateDialog/components/SelectorList/SelectorList.styled.d.ts +19 -0
  95. package/dist/src/components/DatePicker/components/DateDialog/components/SelectorList/SelectorList.types.d.ts +9 -0
  96. package/dist/src/components/DatePicker/components/DateDialog/components/SelectorList/index.d.ts +2 -0
  97. package/dist/src/components/DatePicker/components/DateDialog/components/YearSelector/YearSelector.d.ts +3 -0
  98. package/dist/src/components/DatePicker/components/DateDialog/components/YearSelector/YearSelector.types.d.ts +36 -0
  99. package/dist/src/components/DatePicker/components/DateDialog/components/YearSelector/index.d.ts +2 -0
  100. package/dist/src/components/DatePicker/components/DateDialog/index.d.ts +2 -0
  101. package/dist/src/components/DatePicker/components/index.d.ts +1 -0
  102. package/dist/src/components/DatePicker/context/Context.types.d.ts +15 -0
  103. package/dist/src/components/DatePicker/context/DatePickerContext.d.ts +3 -0
  104. package/dist/src/components/DatePicker/context/DatePickerProvider.d.ts +3 -0
  105. package/dist/src/components/DatePicker/context/index.d.ts +3 -0
  106. package/dist/src/components/DatePicker/hooks/index.d.ts +5 -0
  107. package/dist/src/components/DatePicker/hooks/useDatePicker.d.ts +2 -0
  108. package/dist/src/components/DatePicker/hooks/useDateSelection.d.ts +21 -0
  109. package/dist/src/components/DatePicker/hooks/useDateUtils.d.ts +31 -0
  110. package/dist/src/components/DatePicker/hooks/useDialogFocus.d.ts +1 -0
  111. package/dist/src/components/DatePicker/hooks/useDialogPosition.d.ts +19 -0
  112. package/dist/src/components/DatePicker/index.d.ts +2 -0
  113. package/dist/src/components/DatePicker/utils/calendar.utils.d.ts +26 -0
  114. package/dist/src/components/DatePicker/utils/index.d.ts +3 -0
  115. package/dist/src/components/DatePicker/utils/locale.utils.d.ts +38 -0
  116. package/dist/src/components/DatePicker/utils/navigation.utils.d.ts +13 -0
  117. package/dist/src/components/Dialog/Dialog.d.ts +3 -0
  118. package/dist/src/components/Dialog/Dialog.styled.d.ts +38 -0
  119. package/dist/src/components/Dialog/Dialog.types.d.ts +46 -0
  120. package/dist/src/components/Dialog/DialogManager.d.ts +41 -0
  121. package/dist/src/components/Dialog/hooks/index.d.ts +3 -0
  122. package/dist/src/components/Dialog/hooks/useDialogAnimation.d.ts +6 -0
  123. package/dist/src/components/Dialog/hooks/useDialogEscape.d.ts +2 -0
  124. package/dist/src/components/Dialog/hooks/useDialogFocus.d.ts +2 -0
  125. package/dist/src/components/Dialog/index.d.ts +3 -0
  126. package/dist/src/components/Divider/Divider.d.ts +3 -0
  127. package/dist/src/components/Divider/Divider.styled.d.ts +19 -0
  128. package/dist/src/components/Divider/Divider.types.d.ts +13 -0
  129. package/dist/src/components/Divider/index.d.ts +2 -0
  130. package/dist/src/components/Expandable/Expandable.d.ts +6 -0
  131. package/dist/src/components/Expandable/Expandable.styled.d.ts +16 -0
  132. package/dist/src/components/Expandable/Expandable.types.d.ts +12 -0
  133. package/dist/src/components/Expandable/index.d.ts +2 -0
  134. package/dist/src/components/FloatSearch/FloatSearch.d.ts +6 -0
  135. package/dist/src/components/FloatSearch/FloatSearch.styled.d.ts +51 -0
  136. package/dist/src/components/FloatSearch/FloatSearch.types.d.ts +108 -0
  137. package/dist/src/components/FloatSearch/index.d.ts +2 -0
  138. package/dist/src/components/FormLabel/FormLabel.d.ts +3 -0
  139. package/dist/src/components/FormLabel/FormLabel.types.d.ts +15 -0
  140. package/dist/src/components/FormLabel/index.d.ts +2 -0
  141. package/dist/src/components/Grid/Grid.d.ts +3 -0
  142. package/dist/src/components/Grid/Grid.styled.d.ts +412 -0
  143. package/dist/src/components/Grid/Grid.types.d.ts +91 -0
  144. package/dist/src/components/Grid/index.d.ts +2 -0
  145. package/dist/src/components/Icon/CustomIcon.types.d.ts +13 -0
  146. package/dist/src/components/Icon/Icon.d.ts +3 -0
  147. package/dist/src/components/Icon/Icon.styled.d.ts +61 -0
  148. package/dist/src/components/Icon/Icon.types.d.ts +707 -0
  149. package/dist/src/components/Icon/custom/CockpitX.d.ts +5 -0
  150. package/dist/src/components/Icon/custom/FileArchiveRar.d.ts +3 -0
  151. package/dist/src/components/Icon/custom/FileArchiveZip.d.ts +3 -0
  152. package/dist/src/components/Icon/custom/FileDesignAep.d.ts +3 -0
  153. package/dist/src/components/Icon/custom/FileDesignAi.d.ts +3 -0
  154. package/dist/src/components/Icon/custom/FileDesignFig.d.ts +3 -0
  155. package/dist/src/components/Icon/custom/FileDesignIndd.d.ts +3 -0
  156. package/dist/src/components/Icon/custom/FileDesignPsd.d.ts +3 -0
  157. package/dist/src/components/Icon/custom/FileDevelopmentCss.d.ts +3 -0
  158. package/dist/src/components/Icon/custom/FileDevelopmentDmg.d.ts +3 -0
  159. package/dist/src/components/Icon/custom/FileDevelopmentExe.d.ts +3 -0
  160. package/dist/src/components/Icon/custom/FileDevelopmentHtml.d.ts +3 -0
  161. package/dist/src/components/Icon/custom/FileDevelopmentJava.d.ts +3 -0
  162. package/dist/src/components/Icon/custom/FileDevelopmentJs.d.ts +3 -0
  163. package/dist/src/components/Icon/custom/FileDevelopmentJson.d.ts +3 -0
  164. package/dist/src/components/Icon/custom/FileDevelopmentRss.d.ts +3 -0
  165. package/dist/src/components/Icon/custom/FileDevelopmentSql.d.ts +3 -0
  166. package/dist/src/components/Icon/custom/FileDevelopmentXml.d.ts +3 -0
  167. package/dist/src/components/Icon/custom/FileDocumentCsv.d.ts +3 -0
  168. package/dist/src/components/Icon/custom/FileDocumentDoc.d.ts +3 -0
  169. package/dist/src/components/Icon/custom/FileDocumentDocx.d.ts +3 -0
  170. package/dist/src/components/Icon/custom/FileDocumentPdf.d.ts +3 -0
  171. package/dist/src/components/Icon/custom/FileDocumentPpt.d.ts +3 -0
  172. package/dist/src/components/Icon/custom/FileDocumentPptx.d.ts +3 -0
  173. package/dist/src/components/Icon/custom/FileDocumentTxt.d.ts +3 -0
  174. package/dist/src/components/Icon/custom/FileDocumentXls.d.ts +3 -0
  175. package/dist/src/components/Icon/custom/FileDocumentXlsx.d.ts +3 -0
  176. package/dist/src/components/Icon/custom/FileImageEps.d.ts +3 -0
  177. package/dist/src/components/Icon/custom/FileImageGif.d.ts +3 -0
  178. package/dist/src/components/Icon/custom/FileImageImg.d.ts +3 -0
  179. package/dist/src/components/Icon/custom/FileImageJpeg.d.ts +3 -0
  180. package/dist/src/components/Icon/custom/FileImageJpg.d.ts +3 -0
  181. package/dist/src/components/Icon/custom/FileImagePng.d.ts +3 -0
  182. package/dist/src/components/Icon/custom/FileImageSvg.d.ts +3 -0
  183. package/dist/src/components/Icon/custom/FileImageTiff.d.ts +3 -0
  184. package/dist/src/components/Icon/custom/FileImageWebp.d.ts +3 -0
  185. package/dist/src/components/Icon/custom/FileMediaAvi.d.ts +3 -0
  186. package/dist/src/components/Icon/custom/FileMediaMkv.d.ts +3 -0
  187. package/dist/src/components/Icon/custom/FileMediaMp3.d.ts +3 -0
  188. package/dist/src/components/Icon/custom/FileMediaMp4.d.ts +3 -0
  189. package/dist/src/components/Icon/custom/FileMediaMpeg.d.ts +3 -0
  190. package/dist/src/components/Icon/custom/FileMediaWav.d.ts +3 -0
  191. package/dist/src/components/Icon/custom/FileSimpleAudio.d.ts +3 -0
  192. package/dist/src/components/Icon/custom/FileSimpleCode.d.ts +3 -0
  193. package/dist/src/components/Icon/custom/FileSimpleDocument.d.ts +3 -0
  194. package/dist/src/components/Icon/custom/FileSimpleEmpty.d.ts +3 -0
  195. package/dist/src/components/Icon/custom/FileSimpleFolder.d.ts +3 -0
  196. package/dist/src/components/Icon/custom/FileSimpleImage.d.ts +3 -0
  197. package/dist/src/components/Icon/custom/FileSimplePdf.d.ts +3 -0
  198. package/dist/src/components/Icon/custom/FileSimpleSpreadSheet.d.ts +3 -0
  199. package/dist/src/components/Icon/custom/FileSimpleVideo.d.ts +3 -0
  200. package/dist/src/components/Icon/custom/FileSimpleVideo2.d.ts +3 -0
  201. package/dist/src/components/Icon/custom/FlagDe.d.ts +4 -0
  202. package/dist/src/components/Icon/custom/FlagEs.d.ts +4 -0
  203. package/dist/src/components/Icon/custom/FlagFr.d.ts +4 -0
  204. package/dist/src/components/Icon/custom/FlagGb.d.ts +4 -0
  205. package/dist/src/components/Icon/custom/FlagNl.d.ts +4 -0
  206. package/dist/src/components/Icon/custom/ZvooveCashlink.d.ts +5 -0
  207. package/dist/src/components/Icon/custom/ZvooveDocsAi.d.ts +5 -0
  208. package/dist/src/components/Icon/custom/ZvooveElevate.d.ts +5 -0
  209. package/dist/src/components/Icon/custom/ZvooveFree.d.ts +5 -0
  210. package/dist/src/components/Icon/custom/ZvooveGo.d.ts +5 -0
  211. package/dist/src/components/Icon/custom/ZvooveIntelligence.d.ts +5 -0
  212. package/dist/src/components/Icon/custom/ZvooveInvoiceMonitor.d.ts +5 -0
  213. package/dist/src/components/Icon/custom/ZvooveLogo.d.ts +6 -0
  214. package/dist/src/components/Icon/custom/ZvooveOne.d.ts +5 -0
  215. package/dist/src/components/Icon/custom/ZvooveRecruit.d.ts +5 -0
  216. package/dist/src/components/Icon/custom/ZvooveWorkExpert.d.ts +5 -0
  217. package/dist/src/components/Icon/custom/index.d.ts +69 -0
  218. package/dist/src/components/Icon/index.d.ts +3 -0
  219. package/dist/src/components/ImageVisualizer/ImageVisualizer.d.ts +6 -0
  220. package/dist/src/components/ImageVisualizer/ImageVisualizer.styled.d.ts +142 -0
  221. package/dist/src/components/ImageVisualizer/ImageVisualizer.types.d.ts +46 -0
  222. package/dist/src/components/ImageVisualizer/index.d.ts +2 -0
  223. package/dist/src/components/InfoBox/InfoBox.constants.d.ts +5 -0
  224. package/dist/src/components/InfoBox/InfoBox.d.ts +6 -0
  225. package/dist/src/components/InfoBox/InfoBox.types.d.ts +22 -0
  226. package/dist/src/components/InfoBox/index.d.ts +2 -0
  227. package/dist/src/components/List/List.d.ts +7 -0
  228. package/dist/src/components/List/List.styled.d.ts +103 -0
  229. package/dist/src/components/List/List.types.d.ts +77 -0
  230. package/dist/src/components/List/index.d.ts +2 -0
  231. package/dist/src/components/ListMenu/ListMenu.d.ts +7 -0
  232. package/dist/src/components/ListMenu/ListMenu.styled.d.ts +150 -0
  233. package/dist/src/components/ListMenu/ListMenu.types.d.ts +74 -0
  234. package/dist/src/components/ListMenu/ListMenu.utils.d.ts +13 -0
  235. package/dist/src/components/ListMenu/index.d.ts +3 -0
  236. package/dist/src/components/MessageActions/MessageActions.d.ts +3 -0
  237. package/dist/src/components/MessageActions/MessageActions.styled.d.ts +56 -0
  238. package/dist/src/components/MessageActions/MessageActions.types.d.ts +81 -0
  239. package/dist/src/components/MessageActions/index.d.ts +2 -0
  240. package/dist/src/components/MidSectionMenus/MidSectionMenus.d.ts +7 -0
  241. package/dist/src/components/MidSectionMenus/MidSectionMenus.styled.d.ts +98 -0
  242. package/dist/src/components/MidSectionMenus/MidSectionMenus.types.d.ts +67 -0
  243. package/dist/src/components/MidSectionMenus/index.d.ts +2 -0
  244. package/dist/src/components/Pagination/Pagination.d.ts +3 -0
  245. package/dist/src/components/Pagination/Pagination.types.d.ts +37 -0
  246. package/dist/src/components/Pagination/index.d.ts +2 -0
  247. package/dist/src/components/PopUpMenu/PopUpMenu.constants.d.ts +2 -0
  248. package/dist/src/components/PopUpMenu/PopUpMenu.d.ts +3 -0
  249. package/dist/src/components/PopUpMenu/PopUpMenu.styled.d.ts +161 -0
  250. package/dist/src/components/PopUpMenu/PopUpMenu.types.d.ts +258 -0
  251. package/dist/src/components/PopUpMenu/PopUpMenu.utils.d.ts +18 -0
  252. package/dist/src/components/PopUpMenu/PopUpMenuContent.d.ts +45 -0
  253. package/dist/src/components/PopUpMenu/PopUpMenuManager.d.ts +37 -0
  254. package/dist/src/components/PopUpMenu/PopUpMenuPortal.d.ts +12 -0
  255. package/dist/src/components/PopUpMenu/index.d.ts +2 -0
  256. package/dist/src/components/PopUpMenu/usePopUpMenuHandlers.d.ts +44 -0
  257. package/dist/src/components/PopUpMenu/usePopUpMenuState.d.ts +48 -0
  258. package/dist/src/components/ProgressIndicator/ProgressIndicator.d.ts +3 -0
  259. package/dist/src/components/ProgressIndicator/ProgressIndicator.styled.d.ts +103 -0
  260. package/dist/src/components/ProgressIndicator/ProgressIndicator.types.d.ts +31 -0
  261. package/dist/src/components/ProgressIndicator/index.d.ts +2 -0
  262. package/dist/src/components/Radio/RadioButton/RadioButton.d.ts +3 -0
  263. package/dist/src/components/Radio/RadioButton/RadioButton.styled.d.ts +45 -0
  264. package/dist/src/components/Radio/RadioButton/RadioButton.types.d.ts +32 -0
  265. package/dist/src/components/Radio/RadioButton/index.d.ts +2 -0
  266. package/dist/src/components/Radio/RadioGroup/RadioGroup.d.ts +11 -0
  267. package/dist/src/components/Radio/RadioGroup/RadioGroup.styled.d.ts +13 -0
  268. package/dist/src/components/Radio/RadioGroup/RadioGroup.types.d.ts +26 -0
  269. package/dist/src/components/Radio/RadioGroup/index.d.ts +2 -0
  270. package/dist/src/components/Radio/index.d.ts +2 -0
  271. package/dist/src/components/ScoreCard/ScoreCard.d.ts +3 -0
  272. package/dist/src/components/ScoreCard/ScoreCard.styled.d.ts +1 -0
  273. package/dist/src/components/ScoreCard/ScoreCard.types.d.ts +42 -0
  274. package/dist/src/components/ScoreCard/index.d.ts +2 -0
  275. package/dist/src/components/Segment/SegmentButton/SegmentButton.d.ts +3 -0
  276. package/dist/src/components/Segment/SegmentButton/SegmentButton.styled.d.ts +31 -0
  277. package/dist/src/components/Segment/SegmentButton/SegmentButton.types.d.ts +39 -0
  278. package/dist/src/components/Segment/SegmentButton/index.d.ts +2 -0
  279. package/dist/src/components/Segment/SegmentGroup/SegmentGroup.d.ts +6 -0
  280. package/dist/src/components/Segment/SegmentGroup/SegmentGroup.styled.d.ts +13 -0
  281. package/dist/src/components/Segment/SegmentGroup/SegmentGroup.types.d.ts +36 -0
  282. package/dist/src/components/Segment/SegmentGroup/index.d.ts +2 -0
  283. package/dist/src/components/Segment/index.d.ts +2 -0
  284. package/dist/src/components/Select/Select.constants.d.ts +17 -0
  285. package/dist/src/components/Select/Select.d.ts +3 -0
  286. package/dist/src/components/Select/Select.styled.d.ts +250 -0
  287. package/dist/src/components/Select/Select.types.d.ts +70 -0
  288. package/dist/src/components/Select/Select.utils.d.ts +51 -0
  289. package/dist/src/components/Select/SelectDisplay.d.ts +3 -0
  290. package/dist/src/components/Select/SelectDisplay.types.d.ts +43 -0
  291. package/dist/src/components/Select/SelectManager.d.ts +37 -0
  292. package/dist/src/components/Select/index.d.ts +2 -0
  293. package/dist/src/components/Select/useSelectHandlers.d.ts +40 -0
  294. package/dist/src/components/Select/useSelectState.d.ts +19 -0
  295. package/dist/src/components/Shared/Backdrop/Backdrop.d.ts +6 -0
  296. package/dist/src/components/Shared/Backdrop/Backdrop.styled.d.ts +16 -0
  297. package/dist/src/components/Shared/Backdrop/Backdrop.types.d.ts +23 -0
  298. package/dist/src/components/Shared/Backdrop/index.d.ts +2 -0
  299. package/dist/src/components/Shared/ErrorMessage/ErrorMessage.d.ts +3 -0
  300. package/dist/src/components/Shared/ErrorMessage/ErrorMessage.styled.d.ts +25 -0
  301. package/dist/src/components/Shared/ErrorMessage/ErrorMessage.types.d.ts +16 -0
  302. package/dist/src/components/Shared/ErrorMessage/index.d.ts +2 -0
  303. package/dist/src/components/Shared/index.d.ts +2 -0
  304. package/dist/src/components/Sheet/Examples/SheetDefault.d.ts +3 -0
  305. package/dist/src/components/Sheet/Examples/SheetWithFooterAndHeader.d.ts +3 -0
  306. package/dist/src/components/Sheet/Sheet.d.ts +6 -0
  307. package/dist/src/components/Sheet/Sheet.styled.d.ts +175 -0
  308. package/dist/src/components/Sheet/Sheet.types.d.ts +172 -0
  309. package/dist/src/components/Sheet/SheetManager.d.ts +37 -0
  310. package/dist/src/components/Sheet/hooks/index.d.ts +9 -0
  311. package/dist/src/components/Sheet/hooks/useSheetAnimation.d.ts +6 -0
  312. package/dist/src/components/Sheet/hooks/useSheetClose.d.ts +20 -0
  313. package/dist/src/components/Sheet/hooks/useSheetEscape.d.ts +2 -0
  314. package/dist/src/components/Sheet/hooks/useSheetFocus.d.ts +2 -0
  315. package/dist/src/components/Sheet/hooks/useSheetRegistration.d.ts +14 -0
  316. package/dist/src/components/Sheet/hooks/useSheetResize.d.ts +10 -0
  317. package/dist/src/components/Sheet/hooks/useSheetScrollTracking.d.ts +21 -0
  318. package/dist/src/components/Sheet/hooks/useSheetSwipe.d.ts +8 -0
  319. package/dist/src/components/Sheet/hooks/useSheetWidth.d.ts +20 -0
  320. package/dist/src/components/Sheet/index.d.ts +4 -0
  321. package/dist/src/components/SideNavigation/SideNavigation.d.ts +4 -0
  322. package/dist/src/components/SideNavigation/SideNavigation.styled.d.ts +249 -0
  323. package/dist/src/components/SideNavigation/SideNavigation.types.d.ts +128 -0
  324. package/dist/src/components/SideNavigation/index.d.ts +2 -0
  325. package/dist/src/components/SideNavigation/usePinnedSections.d.ts +7 -0
  326. package/dist/src/components/Skeleton/Skeleton.d.ts +3 -0
  327. package/dist/src/components/Skeleton/Skeleton.styled.d.ts +43 -0
  328. package/dist/src/components/Skeleton/Skeleton.types.d.ts +20 -0
  329. package/dist/src/components/Skeleton/index.d.ts +2 -0
  330. package/dist/src/components/Snackbar/Snackbar.constants.d.ts +5 -0
  331. package/dist/src/components/Snackbar/Snackbar.context.d.ts +8 -0
  332. package/dist/src/components/Snackbar/Snackbar.context.definition.d.ts +2 -0
  333. package/dist/src/components/Snackbar/Snackbar.d.ts +32 -0
  334. package/dist/src/components/Snackbar/Snackbar.styled.d.ts +173 -0
  335. package/dist/src/components/Snackbar/Snackbar.types.d.ts +119 -0
  336. package/dist/src/components/Snackbar/index.d.ts +5 -0
  337. package/dist/src/components/Snackbar/useSnackbar.d.ts +20 -0
  338. package/dist/src/components/Stack/Stack.d.ts +4 -0
  339. package/dist/src/components/Stack/Stack.styled.d.ts +529 -0
  340. package/dist/src/components/Stack/Stack.types.d.ts +84 -0
  341. package/dist/src/components/Stack/index.d.ts +2 -0
  342. package/dist/src/components/Switch/Switch.d.ts +4 -0
  343. package/dist/src/components/Switch/Switch.styled.d.ts +68 -0
  344. package/dist/src/components/Switch/Switch.types.d.ts +54 -0
  345. package/dist/src/components/Switch/index.d.ts +2 -0
  346. package/dist/src/components/Table/ExpandDetailExample/ExpandDetailExample.d.ts +4 -0
  347. package/dist/src/components/Table/Table.d.ts +6 -0
  348. package/dist/src/components/Table/Table.styled.d.ts +77 -0
  349. package/dist/src/components/Table/Table.types.d.ts +114 -0
  350. package/dist/src/components/Table/TableDocExample/RowActionButton.d.ts +5 -0
  351. package/dist/src/components/Table/TableDocExample/TableDocExample.constants.d.ts +14 -0
  352. package/dist/src/components/Table/TableDocExample/TableDocExample.d.ts +4 -0
  353. package/dist/src/components/Table/TableDocExample/index.d.ts +1 -0
  354. package/dist/src/components/Table/index.d.ts +2 -0
  355. package/dist/src/components/Tabs/TabItem.d.ts +3 -0
  356. package/dist/src/components/Tabs/Tabs.d.ts +6 -0
  357. package/dist/src/components/Tabs/Tabs.styled.d.ts +176 -0
  358. package/dist/src/components/Tabs/Tabs.types.d.ts +60 -0
  359. package/dist/src/components/Tabs/index.d.ts +2 -0
  360. package/dist/src/components/Tag/Tag.d.ts +3 -0
  361. package/dist/src/components/Tag/Tag.styled.d.ts +73 -0
  362. package/dist/src/components/Tag/Tag.types.d.ts +45 -0
  363. package/dist/src/components/Tag/index.d.ts +2 -0
  364. package/dist/src/components/TextField/TextField.d.ts +3 -0
  365. package/dist/src/components/TextField/TextField.styled.d.ts +335 -0
  366. package/dist/src/components/TextField/TextField.types.d.ts +67 -0
  367. package/dist/src/components/TextField/index.d.ts +2 -0
  368. package/dist/src/components/Textarea/Textarea.d.ts +3 -0
  369. package/dist/src/components/Textarea/Textarea.styled.d.ts +67 -0
  370. package/dist/src/components/Textarea/Textarea.types.d.ts +32 -0
  371. package/dist/src/components/Textarea/index.d.ts +2 -0
  372. package/dist/src/components/Tooltip/Tooltip.d.ts +3 -0
  373. package/dist/src/components/Tooltip/Tooltip.styled.d.ts +51 -0
  374. package/dist/src/components/Tooltip/Tooltip.types.d.ts +22 -0
  375. package/dist/src/components/Tooltip/TooltipPortal.d.ts +8 -0
  376. package/dist/src/components/Tooltip/index.d.ts +2 -0
  377. package/dist/src/components/TopBar/TopBar.d.ts +3 -0
  378. package/dist/src/components/TopBar/TopBar.styled.d.ts +19 -0
  379. package/dist/src/components/TopBar/TopBar.types.d.ts +27 -0
  380. package/dist/src/components/TopBar/index.d.ts +2 -0
  381. package/dist/src/components/Typography/Typography.d.ts +3 -0
  382. package/dist/src/components/Typography/Typography.styled.d.ts +94 -0
  383. package/dist/src/components/Typography/Typography.types.d.ts +63 -0
  384. package/dist/src/components/Typography/index.d.ts +2 -0
  385. package/dist/src/components/Uploader/Uploader.constants.d.ts +12 -0
  386. package/dist/src/components/Uploader/Uploader.context.d.ts +185 -0
  387. package/dist/src/components/Uploader/Uploader.d.ts +3 -0
  388. package/dist/src/components/Uploader/Uploader.types.d.ts +238 -0
  389. package/dist/src/components/Uploader/components/Announcer/Announcer.d.ts +2 -0
  390. package/dist/src/components/Uploader/components/Announcer/index.d.ts +1 -0
  391. package/dist/src/components/Uploader/components/DropZone/DropZone.d.ts +3 -0
  392. package/dist/src/components/Uploader/components/DropZone/DropZone.styled.d.ts +68 -0
  393. package/dist/src/components/Uploader/components/DropZone/index.d.ts +1 -0
  394. package/dist/src/components/Uploader/components/FileItem/FileItem.d.ts +18 -0
  395. package/dist/src/components/Uploader/components/FileItem/FileItem.styled.d.ts +67 -0
  396. package/dist/src/components/Uploader/components/FileItem/index.d.ts +2 -0
  397. package/dist/src/components/Uploader/components/FileItem/useFileItem.d.ts +33 -0
  398. package/dist/src/components/Uploader/components/FileList/FileList.d.ts +12 -0
  399. package/dist/src/components/Uploader/components/FileList/FileList.styled.d.ts +1 -0
  400. package/dist/src/components/Uploader/components/FileList/index.d.ts +2 -0
  401. package/dist/src/components/Uploader/components/RejectionList/RejectionList.d.ts +12 -0
  402. package/dist/src/components/Uploader/components/RejectionList/RejectionList.styled.d.ts +10 -0
  403. package/dist/src/components/Uploader/components/RejectionList/index.d.ts +2 -0
  404. package/dist/src/components/Uploader/components/index.d.ts +5 -0
  405. package/dist/src/components/Uploader/hooks/index.d.ts +11 -0
  406. package/dist/src/components/Uploader/hooks/useAnnouncements.d.ts +10 -0
  407. package/dist/src/components/Uploader/hooks/useDragAndDrop.d.ts +17 -0
  408. package/dist/src/components/Uploader/hooks/useFileInput.d.ts +19 -0
  409. package/dist/src/components/Uploader/hooks/useFileOperations.d.ts +18 -0
  410. package/dist/src/components/Uploader/hooks/useFileSelection.d.ts +36 -0
  411. package/dist/src/components/Uploader/hooks/useFileUpload.d.ts +66 -0
  412. package/dist/src/components/Uploader/hooks/useUploaderContext.d.ts +3 -0
  413. package/dist/src/components/Uploader/hooks/useUploaderRef.d.ts +13 -0
  414. package/dist/src/components/Uploader/hooks/useUploaderState.d.ts +30 -0
  415. package/dist/src/components/Uploader/hooks/useValidation.d.ts +30 -0
  416. package/dist/src/components/Uploader/index.d.ts +6 -0
  417. package/dist/src/components/Uploader/types/errors.d.ts +28 -0
  418. package/dist/src/components/Uploader/types/events.d.ts +65 -0
  419. package/dist/src/components/Uploader/types/file.d.ts +116 -0
  420. package/dist/src/components/Uploader/types/index.d.ts +3 -0
  421. package/dist/src/components/Uploader/utils/createFetchUpload.d.ts +32 -0
  422. package/dist/src/components/Uploader/utils/createXhrUpload.d.ts +45 -0
  423. package/dist/src/components/Uploader/utils/detectDuplicates.d.ts +5 -0
  424. package/dist/src/components/Uploader/utils/formatFileSize.d.ts +3 -0
  425. package/dist/src/components/Uploader/utils/generateId.d.ts +1 -0
  426. package/dist/src/components/Uploader/utils/getFileExtension.d.ts +1 -0
  427. package/dist/src/components/Uploader/utils/index.d.ts +8 -0
  428. package/dist/src/components/Uploader/utils/normalizeFile.d.ts +3 -0
  429. package/dist/src/components/Uploader/utils/validateFileType.d.ts +1 -0
  430. package/dist/src/components/UserArea/UserArea.d.ts +3 -0
  431. package/dist/src/components/UserArea/UserArea.styled.d.ts +65 -0
  432. package/dist/src/components/UserArea/UserArea.types.d.ts +49 -0
  433. package/dist/src/components/UserArea/index.d.ts +2 -0
  434. package/dist/src/components/ZvooveBrand/ZvooveBrand.constants.d.ts +26 -0
  435. package/dist/src/components/ZvooveBrand/ZvooveBrand.d.ts +6 -0
  436. package/dist/src/components/ZvooveBrand/ZvooveBrand.types.d.ts +77 -0
  437. package/dist/src/components/ZvooveBrand/index.d.ts +2 -0
  438. package/dist/src/config.d.ts +48 -0
  439. package/dist/src/constants/align.d.ts +3 -0
  440. package/dist/src/constants/breakpoints.d.ts +12 -0
  441. package/dist/src/constants/colors.d.ts +7 -0
  442. package/dist/src/constants/direction.d.ts +3 -0
  443. package/dist/src/constants/dom.d.ts +5 -0
  444. package/dist/src/constants/gap.d.ts +8 -0
  445. package/dist/src/constants/index.d.ts +11 -0
  446. package/dist/src/constants/justify.d.ts +3 -0
  447. package/dist/src/constants/margin.d.ts +16 -0
  448. package/dist/src/constants/overflow.d.ts +5 -0
  449. package/dist/src/constants/padding.d.ts +16 -0
  450. package/dist/src/constants/wrap.d.ts +3 -0
  451. package/dist/src/hooks/index.d.ts +2 -0
  452. package/dist/src/hooks/useBreakpoint.d.ts +51 -0
  453. package/dist/src/hooks/useClickOutside.d.ts +4 -0
  454. package/dist/src/index.d.ts +52 -0
  455. package/dist/src/libs/index.d.ts +1 -0
  456. package/dist/src/libs/tv.d.ts +23 -0
  457. package/dist/src/types/index.d.ts +83 -0
  458. package/dist/src/utils/checkIconSource.d.ts +1 -0
  459. package/dist/src/utils/containsOnlySizeProps.d.ts +1 -0
  460. package/dist/src/utils/formatFromStringToDate.d.ts +1 -0
  461. package/dist/src/utils/getComponentTagName.d.ts +1 -0
  462. package/dist/src/utils/getFlexProps.d.ts +4 -0
  463. package/dist/src/utils/getOverflowProps.d.ts +23 -0
  464. package/dist/src/utils/getResponsiveValue.d.ts +35 -0
  465. package/dist/src/utils/getSpacingProps.d.ts +4 -0
  466. package/dist/src/utils/index.d.ts +15 -0
  467. package/dist/src/utils/isDefined.d.ts +1 -0
  468. package/dist/src/utils/isValidSizeUnit.d.ts +1 -0
  469. package/dist/src/utils/linkify.d.ts +2 -0
  470. package/dist/src/utils/logs.d.ts +6 -0
  471. package/dist/src/utils/setupUserEvent.d.ts +6 -0
  472. package/dist/src/utils/typeGuards.d.ts +21 -0
  473. package/dist/src/utils/viewports.d.ts +13 -0
  474. package/dist/theme.css +14 -0
  475. package/dist/unity-ui.cjs.js +1 -1
  476. package/dist/unity-ui.css +1 -1
  477. package/dist/unity-ui.es.js +787 -746
  478. package/package.json +50 -35
  479. package/dist/unity-ui.d.ts +0 -4723
@@ -0,0 +1,529 @@
1
+ export declare const stackStyles: import('tailwind-variants').TVReturnType<{
2
+ margin: Record<import('../..').SpacingKeys, string>;
3
+ marginSM: Record<import('../..').SpacingKeys, string>;
4
+ marginMD: Record<import('../..').SpacingKeys, string>;
5
+ marginLG: Record<import('../..').SpacingKeys, string>;
6
+ marginXL: Record<import('../..').SpacingKeys, string>;
7
+ margin2XL: Record<import('../..').SpacingKeys, string>;
8
+ margin3XL: Record<import('../..').SpacingKeys, string>;
9
+ margin4XL: Record<import('../..').SpacingKeys, string>;
10
+ marginX: Record<import('../..').SpacingKeys, string>;
11
+ marginY: Record<import('../..').SpacingKeys, string>;
12
+ marginTop: Record<import('../..').SpacingKeys, string>;
13
+ marginBottom: Record<import('../..').SpacingKeys, string>;
14
+ marginLeft: Record<import('../..').SpacingKeys, string>;
15
+ marginRight: Record<import('../..').SpacingKeys, string>;
16
+ marginXSM: Record<import('../..').SpacingKeys, string>;
17
+ marginXMD: Record<import('../..').SpacingKeys, string>;
18
+ marginXLG: Record<import('../..').SpacingKeys, string>;
19
+ marginXXL: Record<import('../..').SpacingKeys, string>;
20
+ marginX2XL: Record<import('../..').SpacingKeys, string>;
21
+ marginX3XL: Record<import('../..').SpacingKeys, string>;
22
+ marginX4XL: Record<import('../..').SpacingKeys, string>;
23
+ marginYSM: Record<import('../..').SpacingKeys, string>;
24
+ marginYMD: Record<import('../..').SpacingKeys, string>;
25
+ marginYLG: Record<import('../..').SpacingKeys, string>;
26
+ marginYXL: Record<import('../..').SpacingKeys, string>;
27
+ marginY2XL: Record<import('../..').SpacingKeys, string>;
28
+ marginY3XL: Record<import('../..').SpacingKeys, string>;
29
+ marginY4XL: Record<import('../..').SpacingKeys, string>;
30
+ marginTopSM: Record<import('../..').SpacingKeys, string>;
31
+ marginTopMD: Record<import('../..').SpacingKeys, string>;
32
+ marginTopLG: Record<import('../..').SpacingKeys, string>;
33
+ marginTopXL: Record<import('../..').SpacingKeys, string>;
34
+ marginTop2XL: Record<import('../..').SpacingKeys, string>;
35
+ marginTop3XL: Record<import('../..').SpacingKeys, string>;
36
+ marginTop4XL: Record<import('../..').SpacingKeys, string>;
37
+ marginBottomSM: Record<import('../..').SpacingKeys, string>;
38
+ marginBottomMD: Record<import('../..').SpacingKeys, string>;
39
+ marginBottomLG: Record<import('../..').SpacingKeys, string>;
40
+ marginBottomXL: Record<import('../..').SpacingKeys, string>;
41
+ marginBottom2XL: Record<import('../..').SpacingKeys, string>;
42
+ marginBottom3XL: Record<import('../..').SpacingKeys, string>;
43
+ marginBottom4XL: Record<import('../..').SpacingKeys, string>;
44
+ marginLeftSM: Record<import('../..').SpacingKeys, string>;
45
+ marginLeftMD: Record<import('../..').SpacingKeys, string>;
46
+ marginLeftLG: Record<import('../..').SpacingKeys, string>;
47
+ marginLeftXL: Record<import('../..').SpacingKeys, string>;
48
+ marginLeft2XL: Record<import('../..').SpacingKeys, string>;
49
+ marginLeft3XL: Record<import('../..').SpacingKeys, string>;
50
+ marginLeft4XL: Record<import('../..').SpacingKeys, string>;
51
+ marginRightSM: Record<import('../..').SpacingKeys, string>;
52
+ marginRightMD: Record<import('../..').SpacingKeys, string>;
53
+ marginRightLG: Record<import('../..').SpacingKeys, string>;
54
+ marginRightXL: Record<import('../..').SpacingKeys, string>;
55
+ marginRight2XL: Record<import('../..').SpacingKeys, string>;
56
+ marginRight3XL: Record<import('../..').SpacingKeys, string>;
57
+ marginRight4XL: Record<import('../..').SpacingKeys, string>;
58
+ padding: Record<import('../..').SpacingKeys, string>;
59
+ paddingSM: Record<import('../..').SpacingKeys, string>;
60
+ paddingMD: Record<import('../..').SpacingKeys, string>;
61
+ paddingLG: Record<import('../..').SpacingKeys, string>;
62
+ paddingXL: Record<import('../..').SpacingKeys, string>;
63
+ padding2XL: Record<import('../..').SpacingKeys, string>;
64
+ padding3XL: Record<import('../..').SpacingKeys, string>;
65
+ padding4XL: Record<import('../..').SpacingKeys, string>;
66
+ paddingX: Record<import('../..').SpacingKeys, string>;
67
+ paddingY: Record<import('../..').SpacingKeys, string>;
68
+ paddingTop: Record<import('../..').SpacingKeys, string>;
69
+ paddingBottom: Record<import('../..').SpacingKeys, string>;
70
+ paddingLeft: Record<import('../..').SpacingKeys, string>;
71
+ paddingRight: Record<import('../..').SpacingKeys, string>;
72
+ paddingXSM: Record<import('../..').SpacingKeys, string>;
73
+ paddingXMD: Record<import('../..').SpacingKeys, string>;
74
+ paddingXLG: Record<import('../..').SpacingKeys, string>;
75
+ paddingXXL: Record<import('../..').SpacingKeys, string>;
76
+ paddingX2XL: Record<import('../..').SpacingKeys, string>;
77
+ paddingX3XL: Record<import('../..').SpacingKeys, string>;
78
+ paddingX4XL: Record<import('../..').SpacingKeys, string>;
79
+ paddingYSM: Record<import('../..').SpacingKeys, string>;
80
+ paddingYMD: Record<import('../..').SpacingKeys, string>;
81
+ paddingYLG: Record<import('../..').SpacingKeys, string>;
82
+ paddingYXL: Record<import('../..').SpacingKeys, string>;
83
+ paddingY2XL: Record<import('../..').SpacingKeys, string>;
84
+ paddingY3XL: Record<import('../..').SpacingKeys, string>;
85
+ paddingY4XL: Record<import('../..').SpacingKeys, string>;
86
+ paddingTopSM: Record<import('../..').SpacingKeys, string>;
87
+ paddingTopMD: Record<import('../..').SpacingKeys, string>;
88
+ paddingTopLG: Record<import('../..').SpacingKeys, string>;
89
+ paddingTopXL: Record<import('../..').SpacingKeys, string>;
90
+ paddingTop2XL: Record<import('../..').SpacingKeys, string>;
91
+ paddingTop3XL: Record<import('../..').SpacingKeys, string>;
92
+ paddingTop4XL: Record<import('../..').SpacingKeys, string>;
93
+ paddingBottomSM: Record<import('../..').SpacingKeys, string>;
94
+ paddingBottomMD: Record<import('../..').SpacingKeys, string>;
95
+ paddingBottomLG: Record<import('../..').SpacingKeys, string>;
96
+ paddingBottomXL: Record<import('../..').SpacingKeys, string>;
97
+ paddingBottom2XL: Record<import('../..').SpacingKeys, string>;
98
+ paddingBottom3XL: Record<import('../..').SpacingKeys, string>;
99
+ paddingBottom4XL: Record<import('../..').SpacingKeys, string>;
100
+ paddingLeftSM: Record<import('../..').SpacingKeys, string>;
101
+ paddingLeftMD: Record<import('../..').SpacingKeys, string>;
102
+ paddingLeftLG: Record<import('../..').SpacingKeys, string>;
103
+ paddingLeftXL: Record<import('../..').SpacingKeys, string>;
104
+ paddingLeft2XL: Record<import('../..').SpacingKeys, string>;
105
+ paddingLeft3XL: Record<import('../..').SpacingKeys, string>;
106
+ paddingLeft4XL: Record<import('../..').SpacingKeys, string>;
107
+ paddingRightSM: Record<import('../..').SpacingKeys, string>;
108
+ paddingRightMD: Record<import('../..').SpacingKeys, string>;
109
+ paddingRightLG: Record<import('../..').SpacingKeys, string>;
110
+ paddingRightXL: Record<import('../..').SpacingKeys, string>;
111
+ paddingRight2XL: Record<import('../..').SpacingKeys, string>;
112
+ paddingRight3XL: Record<import('../..').SpacingKeys, string>;
113
+ paddingRight4XL: Record<import('../..').SpacingKeys, string>;
114
+ gap: Record<import('../..').SpacingKeys, string>;
115
+ gapSM: Record<import('../..').SpacingKeys, string>;
116
+ gapMD: Record<import('../..').SpacingKeys, string>;
117
+ gapLG: Record<import('../..').SpacingKeys, string>;
118
+ gapXL: Record<import('../..').SpacingKeys, string>;
119
+ gap2XL: Record<import('../..').SpacingKeys, string>;
120
+ gap3XL: Record<import('../..').SpacingKeys, string>;
121
+ gap4XL: Record<import('../..').SpacingKeys, string>;
122
+ gapRow: Record<import('../..').SpacingKeys, string>;
123
+ gapColumn: Record<import('../..').SpacingKeys, string>;
124
+ gapRowSM: Record<import('../..').SpacingKeys, string>;
125
+ gapRowMD: Record<import('../..').SpacingKeys, string>;
126
+ gapRowLG: Record<import('../..').SpacingKeys, string>;
127
+ gapRowXL: Record<import('../..').SpacingKeys, string>;
128
+ gapRow2XL: Record<import('../..').SpacingKeys, string>;
129
+ gapRow3XL: Record<import('../..').SpacingKeys, string>;
130
+ gapRow4XL: Record<import('../..').SpacingKeys, string>;
131
+ gapColumnSM: Record<import('../..').SpacingKeys, string>;
132
+ gapColumnMD: Record<import('../..').SpacingKeys, string>;
133
+ gapColumnLG: Record<import('../..').SpacingKeys, string>;
134
+ gapColumnXL: Record<import('../..').SpacingKeys, string>;
135
+ gapColumn2XL: Record<import('../..').SpacingKeys, string>;
136
+ gapColumn3XL: Record<import('../..').SpacingKeys, string>;
137
+ gapColumn4XL: Record<import('../..').SpacingKeys, string>;
138
+ wrap: Record<import('../..').FlexWrap, string>;
139
+ wrapSM: Record<import('../..').FlexWrap, string>;
140
+ wrapMD: Record<import('../..').FlexWrap, string>;
141
+ wrapLG: Record<import('../..').FlexWrap, string>;
142
+ wrapXL: Record<import('../..').FlexWrap, string>;
143
+ wrap2XL: Record<import('../..').FlexWrap, string>;
144
+ wrap3XL: Record<import('../..').FlexWrap, string>;
145
+ wrap4XL: Record<import('../..').FlexWrap, string>;
146
+ align: Record<import('../..').AlignItems, string>;
147
+ alignSM: Record<import('../..').AlignItems, string>;
148
+ alignMD: Record<import('../..').AlignItems, string>;
149
+ alignLG: Record<import('../..').AlignItems, string>;
150
+ alignXL: Record<import('../..').AlignItems, string>;
151
+ align2XL: Record<import('../..').AlignItems, string>;
152
+ align3XL: Record<import('../..').AlignItems, string>;
153
+ align4XL: Record<import('../..').AlignItems, string>;
154
+ justify: Record<import('../..').JustifyContent, string>;
155
+ justifySM: Record<import('../..').JustifyContent, string>;
156
+ justifyMD: Record<import('../..').JustifyContent, string>;
157
+ justifyLG: Record<import('../..').JustifyContent, string>;
158
+ justifyXL: Record<import('../..').JustifyContent, string>;
159
+ justify2XL: Record<import('../..').JustifyContent, string>;
160
+ justify3XL: Record<import('../..').JustifyContent, string>;
161
+ justify4XL: Record<import('../..').JustifyContent, string>;
162
+ direction: Record<import('../..').FlexDirection, string>;
163
+ directionSM: Record<import('../..').FlexDirection, string>;
164
+ directionMD: Record<import('../..').FlexDirection, string>;
165
+ directionLG: Record<import('../..').FlexDirection, string>;
166
+ directionXL: Record<import('../..').FlexDirection, string>;
167
+ direction2XL: Record<import('../..').FlexDirection, string>;
168
+ direction3XL: Record<import('../..').FlexDirection, string>;
169
+ direction4XL: Record<import('../..').FlexDirection, string>;
170
+ clickable: {
171
+ true: string[];
172
+ false: never[];
173
+ };
174
+ hasClassName: {
175
+ false: string;
176
+ };
177
+ }, undefined, string[], {
178
+ margin: Record<import('../..').SpacingKeys, string>;
179
+ marginSM: Record<import('../..').SpacingKeys, string>;
180
+ marginMD: Record<import('../..').SpacingKeys, string>;
181
+ marginLG: Record<import('../..').SpacingKeys, string>;
182
+ marginXL: Record<import('../..').SpacingKeys, string>;
183
+ margin2XL: Record<import('../..').SpacingKeys, string>;
184
+ margin3XL: Record<import('../..').SpacingKeys, string>;
185
+ margin4XL: Record<import('../..').SpacingKeys, string>;
186
+ marginX: Record<import('../..').SpacingKeys, string>;
187
+ marginY: Record<import('../..').SpacingKeys, string>;
188
+ marginTop: Record<import('../..').SpacingKeys, string>;
189
+ marginBottom: Record<import('../..').SpacingKeys, string>;
190
+ marginLeft: Record<import('../..').SpacingKeys, string>;
191
+ marginRight: Record<import('../..').SpacingKeys, string>;
192
+ marginXSM: Record<import('../..').SpacingKeys, string>;
193
+ marginXMD: Record<import('../..').SpacingKeys, string>;
194
+ marginXLG: Record<import('../..').SpacingKeys, string>;
195
+ marginXXL: Record<import('../..').SpacingKeys, string>;
196
+ marginX2XL: Record<import('../..').SpacingKeys, string>;
197
+ marginX3XL: Record<import('../..').SpacingKeys, string>;
198
+ marginX4XL: Record<import('../..').SpacingKeys, string>;
199
+ marginYSM: Record<import('../..').SpacingKeys, string>;
200
+ marginYMD: Record<import('../..').SpacingKeys, string>;
201
+ marginYLG: Record<import('../..').SpacingKeys, string>;
202
+ marginYXL: Record<import('../..').SpacingKeys, string>;
203
+ marginY2XL: Record<import('../..').SpacingKeys, string>;
204
+ marginY3XL: Record<import('../..').SpacingKeys, string>;
205
+ marginY4XL: Record<import('../..').SpacingKeys, string>;
206
+ marginTopSM: Record<import('../..').SpacingKeys, string>;
207
+ marginTopMD: Record<import('../..').SpacingKeys, string>;
208
+ marginTopLG: Record<import('../..').SpacingKeys, string>;
209
+ marginTopXL: Record<import('../..').SpacingKeys, string>;
210
+ marginTop2XL: Record<import('../..').SpacingKeys, string>;
211
+ marginTop3XL: Record<import('../..').SpacingKeys, string>;
212
+ marginTop4XL: Record<import('../..').SpacingKeys, string>;
213
+ marginBottomSM: Record<import('../..').SpacingKeys, string>;
214
+ marginBottomMD: Record<import('../..').SpacingKeys, string>;
215
+ marginBottomLG: Record<import('../..').SpacingKeys, string>;
216
+ marginBottomXL: Record<import('../..').SpacingKeys, string>;
217
+ marginBottom2XL: Record<import('../..').SpacingKeys, string>;
218
+ marginBottom3XL: Record<import('../..').SpacingKeys, string>;
219
+ marginBottom4XL: Record<import('../..').SpacingKeys, string>;
220
+ marginLeftSM: Record<import('../..').SpacingKeys, string>;
221
+ marginLeftMD: Record<import('../..').SpacingKeys, string>;
222
+ marginLeftLG: Record<import('../..').SpacingKeys, string>;
223
+ marginLeftXL: Record<import('../..').SpacingKeys, string>;
224
+ marginLeft2XL: Record<import('../..').SpacingKeys, string>;
225
+ marginLeft3XL: Record<import('../..').SpacingKeys, string>;
226
+ marginLeft4XL: Record<import('../..').SpacingKeys, string>;
227
+ marginRightSM: Record<import('../..').SpacingKeys, string>;
228
+ marginRightMD: Record<import('../..').SpacingKeys, string>;
229
+ marginRightLG: Record<import('../..').SpacingKeys, string>;
230
+ marginRightXL: Record<import('../..').SpacingKeys, string>;
231
+ marginRight2XL: Record<import('../..').SpacingKeys, string>;
232
+ marginRight3XL: Record<import('../..').SpacingKeys, string>;
233
+ marginRight4XL: Record<import('../..').SpacingKeys, string>;
234
+ padding: Record<import('../..').SpacingKeys, string>;
235
+ paddingSM: Record<import('../..').SpacingKeys, string>;
236
+ paddingMD: Record<import('../..').SpacingKeys, string>;
237
+ paddingLG: Record<import('../..').SpacingKeys, string>;
238
+ paddingXL: Record<import('../..').SpacingKeys, string>;
239
+ padding2XL: Record<import('../..').SpacingKeys, string>;
240
+ padding3XL: Record<import('../..').SpacingKeys, string>;
241
+ padding4XL: Record<import('../..').SpacingKeys, string>;
242
+ paddingX: Record<import('../..').SpacingKeys, string>;
243
+ paddingY: Record<import('../..').SpacingKeys, string>;
244
+ paddingTop: Record<import('../..').SpacingKeys, string>;
245
+ paddingBottom: Record<import('../..').SpacingKeys, string>;
246
+ paddingLeft: Record<import('../..').SpacingKeys, string>;
247
+ paddingRight: Record<import('../..').SpacingKeys, string>;
248
+ paddingXSM: Record<import('../..').SpacingKeys, string>;
249
+ paddingXMD: Record<import('../..').SpacingKeys, string>;
250
+ paddingXLG: Record<import('../..').SpacingKeys, string>;
251
+ paddingXXL: Record<import('../..').SpacingKeys, string>;
252
+ paddingX2XL: Record<import('../..').SpacingKeys, string>;
253
+ paddingX3XL: Record<import('../..').SpacingKeys, string>;
254
+ paddingX4XL: Record<import('../..').SpacingKeys, string>;
255
+ paddingYSM: Record<import('../..').SpacingKeys, string>;
256
+ paddingYMD: Record<import('../..').SpacingKeys, string>;
257
+ paddingYLG: Record<import('../..').SpacingKeys, string>;
258
+ paddingYXL: Record<import('../..').SpacingKeys, string>;
259
+ paddingY2XL: Record<import('../..').SpacingKeys, string>;
260
+ paddingY3XL: Record<import('../..').SpacingKeys, string>;
261
+ paddingY4XL: Record<import('../..').SpacingKeys, string>;
262
+ paddingTopSM: Record<import('../..').SpacingKeys, string>;
263
+ paddingTopMD: Record<import('../..').SpacingKeys, string>;
264
+ paddingTopLG: Record<import('../..').SpacingKeys, string>;
265
+ paddingTopXL: Record<import('../..').SpacingKeys, string>;
266
+ paddingTop2XL: Record<import('../..').SpacingKeys, string>;
267
+ paddingTop3XL: Record<import('../..').SpacingKeys, string>;
268
+ paddingTop4XL: Record<import('../..').SpacingKeys, string>;
269
+ paddingBottomSM: Record<import('../..').SpacingKeys, string>;
270
+ paddingBottomMD: Record<import('../..').SpacingKeys, string>;
271
+ paddingBottomLG: Record<import('../..').SpacingKeys, string>;
272
+ paddingBottomXL: Record<import('../..').SpacingKeys, string>;
273
+ paddingBottom2XL: Record<import('../..').SpacingKeys, string>;
274
+ paddingBottom3XL: Record<import('../..').SpacingKeys, string>;
275
+ paddingBottom4XL: Record<import('../..').SpacingKeys, string>;
276
+ paddingLeftSM: Record<import('../..').SpacingKeys, string>;
277
+ paddingLeftMD: Record<import('../..').SpacingKeys, string>;
278
+ paddingLeftLG: Record<import('../..').SpacingKeys, string>;
279
+ paddingLeftXL: Record<import('../..').SpacingKeys, string>;
280
+ paddingLeft2XL: Record<import('../..').SpacingKeys, string>;
281
+ paddingLeft3XL: Record<import('../..').SpacingKeys, string>;
282
+ paddingLeft4XL: Record<import('../..').SpacingKeys, string>;
283
+ paddingRightSM: Record<import('../..').SpacingKeys, string>;
284
+ paddingRightMD: Record<import('../..').SpacingKeys, string>;
285
+ paddingRightLG: Record<import('../..').SpacingKeys, string>;
286
+ paddingRightXL: Record<import('../..').SpacingKeys, string>;
287
+ paddingRight2XL: Record<import('../..').SpacingKeys, string>;
288
+ paddingRight3XL: Record<import('../..').SpacingKeys, string>;
289
+ paddingRight4XL: Record<import('../..').SpacingKeys, string>;
290
+ gap: Record<import('../..').SpacingKeys, string>;
291
+ gapSM: Record<import('../..').SpacingKeys, string>;
292
+ gapMD: Record<import('../..').SpacingKeys, string>;
293
+ gapLG: Record<import('../..').SpacingKeys, string>;
294
+ gapXL: Record<import('../..').SpacingKeys, string>;
295
+ gap2XL: Record<import('../..').SpacingKeys, string>;
296
+ gap3XL: Record<import('../..').SpacingKeys, string>;
297
+ gap4XL: Record<import('../..').SpacingKeys, string>;
298
+ gapRow: Record<import('../..').SpacingKeys, string>;
299
+ gapColumn: Record<import('../..').SpacingKeys, string>;
300
+ gapRowSM: Record<import('../..').SpacingKeys, string>;
301
+ gapRowMD: Record<import('../..').SpacingKeys, string>;
302
+ gapRowLG: Record<import('../..').SpacingKeys, string>;
303
+ gapRowXL: Record<import('../..').SpacingKeys, string>;
304
+ gapRow2XL: Record<import('../..').SpacingKeys, string>;
305
+ gapRow3XL: Record<import('../..').SpacingKeys, string>;
306
+ gapRow4XL: Record<import('../..').SpacingKeys, string>;
307
+ gapColumnSM: Record<import('../..').SpacingKeys, string>;
308
+ gapColumnMD: Record<import('../..').SpacingKeys, string>;
309
+ gapColumnLG: Record<import('../..').SpacingKeys, string>;
310
+ gapColumnXL: Record<import('../..').SpacingKeys, string>;
311
+ gapColumn2XL: Record<import('../..').SpacingKeys, string>;
312
+ gapColumn3XL: Record<import('../..').SpacingKeys, string>;
313
+ gapColumn4XL: Record<import('../..').SpacingKeys, string>;
314
+ wrap: Record<import('../..').FlexWrap, string>;
315
+ wrapSM: Record<import('../..').FlexWrap, string>;
316
+ wrapMD: Record<import('../..').FlexWrap, string>;
317
+ wrapLG: Record<import('../..').FlexWrap, string>;
318
+ wrapXL: Record<import('../..').FlexWrap, string>;
319
+ wrap2XL: Record<import('../..').FlexWrap, string>;
320
+ wrap3XL: Record<import('../..').FlexWrap, string>;
321
+ wrap4XL: Record<import('../..').FlexWrap, string>;
322
+ align: Record<import('../..').AlignItems, string>;
323
+ alignSM: Record<import('../..').AlignItems, string>;
324
+ alignMD: Record<import('../..').AlignItems, string>;
325
+ alignLG: Record<import('../..').AlignItems, string>;
326
+ alignXL: Record<import('../..').AlignItems, string>;
327
+ align2XL: Record<import('../..').AlignItems, string>;
328
+ align3XL: Record<import('../..').AlignItems, string>;
329
+ align4XL: Record<import('../..').AlignItems, string>;
330
+ justify: Record<import('../..').JustifyContent, string>;
331
+ justifySM: Record<import('../..').JustifyContent, string>;
332
+ justifyMD: Record<import('../..').JustifyContent, string>;
333
+ justifyLG: Record<import('../..').JustifyContent, string>;
334
+ justifyXL: Record<import('../..').JustifyContent, string>;
335
+ justify2XL: Record<import('../..').JustifyContent, string>;
336
+ justify3XL: Record<import('../..').JustifyContent, string>;
337
+ justify4XL: Record<import('../..').JustifyContent, string>;
338
+ direction: Record<import('../..').FlexDirection, string>;
339
+ directionSM: Record<import('../..').FlexDirection, string>;
340
+ directionMD: Record<import('../..').FlexDirection, string>;
341
+ directionLG: Record<import('../..').FlexDirection, string>;
342
+ directionXL: Record<import('../..').FlexDirection, string>;
343
+ direction2XL: Record<import('../..').FlexDirection, string>;
344
+ direction3XL: Record<import('../..').FlexDirection, string>;
345
+ direction4XL: Record<import('../..').FlexDirection, string>;
346
+ clickable: {
347
+ true: string[];
348
+ false: never[];
349
+ };
350
+ hasClassName: {
351
+ false: string;
352
+ };
353
+ }, undefined, import('tailwind-variants').TVReturnType<{
354
+ margin: Record<import('../..').SpacingKeys, string>;
355
+ marginSM: Record<import('../..').SpacingKeys, string>;
356
+ marginMD: Record<import('../..').SpacingKeys, string>;
357
+ marginLG: Record<import('../..').SpacingKeys, string>;
358
+ marginXL: Record<import('../..').SpacingKeys, string>;
359
+ margin2XL: Record<import('../..').SpacingKeys, string>;
360
+ margin3XL: Record<import('../..').SpacingKeys, string>;
361
+ margin4XL: Record<import('../..').SpacingKeys, string>;
362
+ marginX: Record<import('../..').SpacingKeys, string>;
363
+ marginY: Record<import('../..').SpacingKeys, string>;
364
+ marginTop: Record<import('../..').SpacingKeys, string>;
365
+ marginBottom: Record<import('../..').SpacingKeys, string>;
366
+ marginLeft: Record<import('../..').SpacingKeys, string>;
367
+ marginRight: Record<import('../..').SpacingKeys, string>;
368
+ marginXSM: Record<import('../..').SpacingKeys, string>;
369
+ marginXMD: Record<import('../..').SpacingKeys, string>;
370
+ marginXLG: Record<import('../..').SpacingKeys, string>;
371
+ marginXXL: Record<import('../..').SpacingKeys, string>;
372
+ marginX2XL: Record<import('../..').SpacingKeys, string>;
373
+ marginX3XL: Record<import('../..').SpacingKeys, string>;
374
+ marginX4XL: Record<import('../..').SpacingKeys, string>;
375
+ marginYSM: Record<import('../..').SpacingKeys, string>;
376
+ marginYMD: Record<import('../..').SpacingKeys, string>;
377
+ marginYLG: Record<import('../..').SpacingKeys, string>;
378
+ marginYXL: Record<import('../..').SpacingKeys, string>;
379
+ marginY2XL: Record<import('../..').SpacingKeys, string>;
380
+ marginY3XL: Record<import('../..').SpacingKeys, string>;
381
+ marginY4XL: Record<import('../..').SpacingKeys, string>;
382
+ marginTopSM: Record<import('../..').SpacingKeys, string>;
383
+ marginTopMD: Record<import('../..').SpacingKeys, string>;
384
+ marginTopLG: Record<import('../..').SpacingKeys, string>;
385
+ marginTopXL: Record<import('../..').SpacingKeys, string>;
386
+ marginTop2XL: Record<import('../..').SpacingKeys, string>;
387
+ marginTop3XL: Record<import('../..').SpacingKeys, string>;
388
+ marginTop4XL: Record<import('../..').SpacingKeys, string>;
389
+ marginBottomSM: Record<import('../..').SpacingKeys, string>;
390
+ marginBottomMD: Record<import('../..').SpacingKeys, string>;
391
+ marginBottomLG: Record<import('../..').SpacingKeys, string>;
392
+ marginBottomXL: Record<import('../..').SpacingKeys, string>;
393
+ marginBottom2XL: Record<import('../..').SpacingKeys, string>;
394
+ marginBottom3XL: Record<import('../..').SpacingKeys, string>;
395
+ marginBottom4XL: Record<import('../..').SpacingKeys, string>;
396
+ marginLeftSM: Record<import('../..').SpacingKeys, string>;
397
+ marginLeftMD: Record<import('../..').SpacingKeys, string>;
398
+ marginLeftLG: Record<import('../..').SpacingKeys, string>;
399
+ marginLeftXL: Record<import('../..').SpacingKeys, string>;
400
+ marginLeft2XL: Record<import('../..').SpacingKeys, string>;
401
+ marginLeft3XL: Record<import('../..').SpacingKeys, string>;
402
+ marginLeft4XL: Record<import('../..').SpacingKeys, string>;
403
+ marginRightSM: Record<import('../..').SpacingKeys, string>;
404
+ marginRightMD: Record<import('../..').SpacingKeys, string>;
405
+ marginRightLG: Record<import('../..').SpacingKeys, string>;
406
+ marginRightXL: Record<import('../..').SpacingKeys, string>;
407
+ marginRight2XL: Record<import('../..').SpacingKeys, string>;
408
+ marginRight3XL: Record<import('../..').SpacingKeys, string>;
409
+ marginRight4XL: Record<import('../..').SpacingKeys, string>;
410
+ padding: Record<import('../..').SpacingKeys, string>;
411
+ paddingSM: Record<import('../..').SpacingKeys, string>;
412
+ paddingMD: Record<import('../..').SpacingKeys, string>;
413
+ paddingLG: Record<import('../..').SpacingKeys, string>;
414
+ paddingXL: Record<import('../..').SpacingKeys, string>;
415
+ padding2XL: Record<import('../..').SpacingKeys, string>;
416
+ padding3XL: Record<import('../..').SpacingKeys, string>;
417
+ padding4XL: Record<import('../..').SpacingKeys, string>;
418
+ paddingX: Record<import('../..').SpacingKeys, string>;
419
+ paddingY: Record<import('../..').SpacingKeys, string>;
420
+ paddingTop: Record<import('../..').SpacingKeys, string>;
421
+ paddingBottom: Record<import('../..').SpacingKeys, string>;
422
+ paddingLeft: Record<import('../..').SpacingKeys, string>;
423
+ paddingRight: Record<import('../..').SpacingKeys, string>;
424
+ paddingXSM: Record<import('../..').SpacingKeys, string>;
425
+ paddingXMD: Record<import('../..').SpacingKeys, string>;
426
+ paddingXLG: Record<import('../..').SpacingKeys, string>;
427
+ paddingXXL: Record<import('../..').SpacingKeys, string>;
428
+ paddingX2XL: Record<import('../..').SpacingKeys, string>;
429
+ paddingX3XL: Record<import('../..').SpacingKeys, string>;
430
+ paddingX4XL: Record<import('../..').SpacingKeys, string>;
431
+ paddingYSM: Record<import('../..').SpacingKeys, string>;
432
+ paddingYMD: Record<import('../..').SpacingKeys, string>;
433
+ paddingYLG: Record<import('../..').SpacingKeys, string>;
434
+ paddingYXL: Record<import('../..').SpacingKeys, string>;
435
+ paddingY2XL: Record<import('../..').SpacingKeys, string>;
436
+ paddingY3XL: Record<import('../..').SpacingKeys, string>;
437
+ paddingY4XL: Record<import('../..').SpacingKeys, string>;
438
+ paddingTopSM: Record<import('../..').SpacingKeys, string>;
439
+ paddingTopMD: Record<import('../..').SpacingKeys, string>;
440
+ paddingTopLG: Record<import('../..').SpacingKeys, string>;
441
+ paddingTopXL: Record<import('../..').SpacingKeys, string>;
442
+ paddingTop2XL: Record<import('../..').SpacingKeys, string>;
443
+ paddingTop3XL: Record<import('../..').SpacingKeys, string>;
444
+ paddingTop4XL: Record<import('../..').SpacingKeys, string>;
445
+ paddingBottomSM: Record<import('../..').SpacingKeys, string>;
446
+ paddingBottomMD: Record<import('../..').SpacingKeys, string>;
447
+ paddingBottomLG: Record<import('../..').SpacingKeys, string>;
448
+ paddingBottomXL: Record<import('../..').SpacingKeys, string>;
449
+ paddingBottom2XL: Record<import('../..').SpacingKeys, string>;
450
+ paddingBottom3XL: Record<import('../..').SpacingKeys, string>;
451
+ paddingBottom4XL: Record<import('../..').SpacingKeys, string>;
452
+ paddingLeftSM: Record<import('../..').SpacingKeys, string>;
453
+ paddingLeftMD: Record<import('../..').SpacingKeys, string>;
454
+ paddingLeftLG: Record<import('../..').SpacingKeys, string>;
455
+ paddingLeftXL: Record<import('../..').SpacingKeys, string>;
456
+ paddingLeft2XL: Record<import('../..').SpacingKeys, string>;
457
+ paddingLeft3XL: Record<import('../..').SpacingKeys, string>;
458
+ paddingLeft4XL: Record<import('../..').SpacingKeys, string>;
459
+ paddingRightSM: Record<import('../..').SpacingKeys, string>;
460
+ paddingRightMD: Record<import('../..').SpacingKeys, string>;
461
+ paddingRightLG: Record<import('../..').SpacingKeys, string>;
462
+ paddingRightXL: Record<import('../..').SpacingKeys, string>;
463
+ paddingRight2XL: Record<import('../..').SpacingKeys, string>;
464
+ paddingRight3XL: Record<import('../..').SpacingKeys, string>;
465
+ paddingRight4XL: Record<import('../..').SpacingKeys, string>;
466
+ gap: Record<import('../..').SpacingKeys, string>;
467
+ gapSM: Record<import('../..').SpacingKeys, string>;
468
+ gapMD: Record<import('../..').SpacingKeys, string>;
469
+ gapLG: Record<import('../..').SpacingKeys, string>;
470
+ gapXL: Record<import('../..').SpacingKeys, string>;
471
+ gap2XL: Record<import('../..').SpacingKeys, string>;
472
+ gap3XL: Record<import('../..').SpacingKeys, string>;
473
+ gap4XL: Record<import('../..').SpacingKeys, string>;
474
+ gapRow: Record<import('../..').SpacingKeys, string>;
475
+ gapColumn: Record<import('../..').SpacingKeys, string>;
476
+ gapRowSM: Record<import('../..').SpacingKeys, string>;
477
+ gapRowMD: Record<import('../..').SpacingKeys, string>;
478
+ gapRowLG: Record<import('../..').SpacingKeys, string>;
479
+ gapRowXL: Record<import('../..').SpacingKeys, string>;
480
+ gapRow2XL: Record<import('../..').SpacingKeys, string>;
481
+ gapRow3XL: Record<import('../..').SpacingKeys, string>;
482
+ gapRow4XL: Record<import('../..').SpacingKeys, string>;
483
+ gapColumnSM: Record<import('../..').SpacingKeys, string>;
484
+ gapColumnMD: Record<import('../..').SpacingKeys, string>;
485
+ gapColumnLG: Record<import('../..').SpacingKeys, string>;
486
+ gapColumnXL: Record<import('../..').SpacingKeys, string>;
487
+ gapColumn2XL: Record<import('../..').SpacingKeys, string>;
488
+ gapColumn3XL: Record<import('../..').SpacingKeys, string>;
489
+ gapColumn4XL: Record<import('../..').SpacingKeys, string>;
490
+ wrap: Record<import('../..').FlexWrap, string>;
491
+ wrapSM: Record<import('../..').FlexWrap, string>;
492
+ wrapMD: Record<import('../..').FlexWrap, string>;
493
+ wrapLG: Record<import('../..').FlexWrap, string>;
494
+ wrapXL: Record<import('../..').FlexWrap, string>;
495
+ wrap2XL: Record<import('../..').FlexWrap, string>;
496
+ wrap3XL: Record<import('../..').FlexWrap, string>;
497
+ wrap4XL: Record<import('../..').FlexWrap, string>;
498
+ align: Record<import('../..').AlignItems, string>;
499
+ alignSM: Record<import('../..').AlignItems, string>;
500
+ alignMD: Record<import('../..').AlignItems, string>;
501
+ alignLG: Record<import('../..').AlignItems, string>;
502
+ alignXL: Record<import('../..').AlignItems, string>;
503
+ align2XL: Record<import('../..').AlignItems, string>;
504
+ align3XL: Record<import('../..').AlignItems, string>;
505
+ align4XL: Record<import('../..').AlignItems, string>;
506
+ justify: Record<import('../..').JustifyContent, string>;
507
+ justifySM: Record<import('../..').JustifyContent, string>;
508
+ justifyMD: Record<import('../..').JustifyContent, string>;
509
+ justifyLG: Record<import('../..').JustifyContent, string>;
510
+ justifyXL: Record<import('../..').JustifyContent, string>;
511
+ justify2XL: Record<import('../..').JustifyContent, string>;
512
+ justify3XL: Record<import('../..').JustifyContent, string>;
513
+ justify4XL: Record<import('../..').JustifyContent, string>;
514
+ direction: Record<import('../..').FlexDirection, string>;
515
+ directionSM: Record<import('../..').FlexDirection, string>;
516
+ directionMD: Record<import('../..').FlexDirection, string>;
517
+ directionLG: Record<import('../..').FlexDirection, string>;
518
+ directionXL: Record<import('../..').FlexDirection, string>;
519
+ direction2XL: Record<import('../..').FlexDirection, string>;
520
+ direction3XL: Record<import('../..').FlexDirection, string>;
521
+ direction4XL: Record<import('../..').FlexDirection, string>;
522
+ clickable: {
523
+ true: string[];
524
+ false: never[];
525
+ };
526
+ hasClassName: {
527
+ false: string;
528
+ };
529
+ }, undefined, string[], unknown, unknown, undefined>>;
@@ -0,0 +1,84 @@
1
+ import { ReactNode } from 'react';
2
+ import { AlignItems, FlexDirection, FlexWrap, Gap, JustifyContent, Margin, Padding, ResponsiveType } from '../../types';
3
+ export interface StackProps extends React.HTMLAttributes<HTMLDivElement> {
4
+ /**
5
+ * The children of the button.
6
+ */
7
+ children: ReactNode;
8
+ /**
9
+ * Define gap between elements.
10
+ *
11
+ * Accepts either a single spacing key applied to both axes, or an object
12
+ * with `row` / `column` keys to target each axis independently.
13
+ * Fully responsive: any per-breakpoint value can itself be a spacing key
14
+ * or a `{ row, column }` object.
15
+ *
16
+ * @example
17
+ * gap="md"
18
+ * gap={{ row: 'sm', column: 'md' }}
19
+ * gap={{ minimum: 'sm', mobile: { row: 'md', column: 'lg' } }}
20
+ */
21
+ gap?: ResponsiveType<Gap>;
22
+ /**
23
+ * Define the direction of the stack
24
+ */
25
+ direction?: ResponsiveType<FlexDirection>;
26
+ /**
27
+ * Define how to justify the content
28
+ * All CSS properties from `justify-content` are accepted
29
+ */
30
+ justify?: ResponsiveType<JustifyContent>;
31
+ /**
32
+ * Define how to align the items
33
+ * All CSS properties from `align-items` are accepted
34
+ * @default 'baseline'
35
+ */
36
+ align?: ResponsiveType<AlignItems>;
37
+ /**
38
+ * Define how to align the items
39
+ * All CSS properties from `flex-wrap` are accepted
40
+ */
41
+ wrap?: ResponsiveType<FlexWrap>;
42
+ /**
43
+ * Define padding to the stack wrapper.
44
+ */
45
+ padding?: ResponsiveType<Padding>;
46
+ /**
47
+ * Define margin to the stack wrapper.
48
+ */
49
+ margin?: ResponsiveType<Margin>;
50
+ /**
51
+ * @deprecated Use the `height`, `width`, `minHeight`, `maxHeight`, `minWidth`, `maxWidth` props instead.
52
+ */
53
+ className?: string;
54
+ /**
55
+ * The height of the stack.
56
+ * @default 'auto'
57
+ */
58
+ height?: ResponsiveType<number | string>;
59
+ /**
60
+ * The width of the stack.
61
+ * @default '100%'
62
+ */
63
+ width?: ResponsiveType<number | string>;
64
+ /**
65
+ * The min height of the stack.
66
+ * @default 'auto'
67
+ */
68
+ minHeight?: ResponsiveType<number | string>;
69
+ /**
70
+ * The max height of the stack.
71
+ * @default 'auto'
72
+ */
73
+ maxHeight?: ResponsiveType<number | string>;
74
+ /**
75
+ * The min width of the stack.
76
+ * @default 'auto'
77
+ */
78
+ minWidth?: ResponsiveType<number | string>;
79
+ /**
80
+ * The max width of the stack.
81
+ * @default 'auto'
82
+ */
83
+ maxWidth?: ResponsiveType<number | string>;
84
+ }
@@ -0,0 +1,2 @@
1
+ export { default as Stack } from './Stack';
2
+ export type { StackProps } from './Stack.types';
@@ -0,0 +1,4 @@
1
+ import { default as React } from 'react';
2
+ import { SwitchProps } from './Switch.types';
3
+ declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLInputElement>>;
4
+ export default Switch;