@okam/stack-ui 1.25.3 → 1.25.4

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 (382) hide show
  1. package/components/Accordion/components/AccordionItem.d.ts +3 -0
  2. package/components/Accordion/components/AriaAccordionItem.d.ts +3 -0
  3. package/components/Accordion/hooks/useAccordionState.d.ts +10 -0
  4. package/components/Accordion/index.d.ts +3 -0
  5. package/{src/components/Accordion/interface.ts → components/Accordion/interface.d.ts} +17 -23
  6. package/components/Alerts/components/AlertsCloseButton.d.ts +4 -0
  7. package/components/Alerts/components/AlertsItem.d.ts +3 -0
  8. package/components/Alerts/components/AlertsNavigationButton.d.ts +8 -0
  9. package/components/Alerts/components/AlertsSwiper.d.ts +3 -0
  10. package/components/Alerts/components/pagination/AlertsPagination.d.ts +3 -0
  11. package/components/Alerts/components/pagination/AlertsPaginationBullet.d.ts +3 -0
  12. package/components/Alerts/index.d.ts +3 -0
  13. package/components/Alerts/interface.d.ts +41 -0
  14. package/components/Box/index.d.ts +5 -0
  15. package/components/Box/interface.d.ts +11 -0
  16. package/components/Button/index.d.ts +6 -0
  17. package/components/Button/interface.d.ts +20 -0
  18. package/components/Calendar/RangeCalendar.d.ts +3 -0
  19. package/components/Calendar/components/CalendarCell.d.ts +3 -0
  20. package/components/Calendar/components/CalendarGrid.d.ts +3 -0
  21. package/components/Calendar/index.d.ts +3 -0
  22. package/components/Calendar/interface.d.ts +32 -0
  23. package/components/Carousel/index.d.ts +3 -0
  24. package/components/Carousel/interface.d.ts +24 -0
  25. package/components/Date/index.d.ts +3 -0
  26. package/components/Date/interface.d.ts +6 -0
  27. package/components/Dialog/index.d.ts +2 -0
  28. package/components/Dialog/interface.d.ts +6 -0
  29. package/components/DirectusImg/index.d.ts +3 -0
  30. package/components/DirectusImg/interface.d.ts +17 -0
  31. package/components/Icon/index.d.ts +3 -0
  32. package/components/Icon/interface.d.ts +7 -0
  33. package/components/Img/index.d.ts +3 -0
  34. package/components/Img/interface.d.ts +6 -0
  35. package/components/Lightbox/index.d.ts +3 -0
  36. package/components/Lightbox/interface.d.ts +25 -0
  37. package/components/Menu/Menu.d.ts +3 -0
  38. package/components/Menu/MenuSidePanel.d.ts +3 -0
  39. package/components/Menu/components/InnerContent.d.ts +3 -0
  40. package/components/Menu/components/MenuItems.d.ts +3 -0
  41. package/components/Menu/components/TabContainer.d.ts +3 -0
  42. package/components/Menu/interface.d.ts +31 -0
  43. package/components/Modal/components/ModalDialog.d.ts +3 -0
  44. package/components/Modal/components/ModalOverlay.d.ts +3 -0
  45. package/components/Modal/index.d.ts +3 -0
  46. package/{src/components/Modal/interface.ts → components/Modal/interface.d.ts} +11 -14
  47. package/components/Popover/index.d.ts +3 -0
  48. package/components/Popover/interface.d.ts +21 -0
  49. package/components/ShareButton/index.d.ts +4 -0
  50. package/components/ShareButton/interface.d.ts +26 -0
  51. package/components/ShareButton/utils/generateUtmTags.d.ts +2 -0
  52. package/components/ShareButton/utils/useFacebookShareUrl.d.ts +2 -0
  53. package/components/ShareButton/utils/useMailToShareUrl.d.ts +2 -0
  54. package/components/ShareButton/utils/useTwitterShareUrl.d.ts +2 -0
  55. package/components/ShareButton/utils/useWindow.d.ts +5 -0
  56. package/components/SidePanel/index.d.ts +4 -0
  57. package/components/SidePanel/interface.d.ts +12 -0
  58. package/components/TabList/components/TabPanel/TabPanel.d.ts +4 -0
  59. package/components/TabList/interface.d.ts +18 -0
  60. package/components/Typography/index.d.ts +5 -0
  61. package/components/Typography/interface.d.ts +10 -0
  62. package/components/WysiwygBlock/index.d.ts +3 -0
  63. package/components/WysiwygBlock/interface.d.ts +5 -0
  64. package/components/fields/Checkbox/Checkbox.interface.d.ts +18 -0
  65. package/components/fields/Checkbox/index.d.ts +3 -0
  66. package/components/fields/CheckboxGroup/components/CheckboxGroupItem/index.d.ts +3 -0
  67. package/components/fields/CheckboxGroup/index.d.ts +3 -0
  68. package/components/fields/CheckboxGroup/interface.d.ts +13 -0
  69. package/components/fields/DatePicker/DateRangePicker.d.ts +3 -0
  70. package/components/fields/DatePicker/components/CalendarPopover.d.ts +2 -0
  71. package/components/fields/DatePicker/components/DateField.d.ts +4 -0
  72. package/components/fields/DatePicker/index.d.ts +3 -0
  73. package/components/fields/DatePicker/interface.d.ts +37 -0
  74. package/components/fields/Radio/Radio.interface.d.ts +26 -0
  75. package/components/fields/Radio/index.d.ts +4 -0
  76. package/components/fields/RadioGroup/index.d.ts +3 -0
  77. package/components/fields/RadioGroup/interface.d.ts +9 -0
  78. package/components/fields/SearchField/index.d.ts +3 -0
  79. package/components/fields/SearchField/interface.d.ts +9 -0
  80. package/components/fields/Select/Select.d.ts +4 -0
  81. package/components/fields/Select/Select.interface.d.ts +26 -0
  82. package/components/fields/Select/components/Listbox.d.ts +4 -0
  83. package/{src/components/fields/Select/components/Listbox.interface.ts → components/fields/Select/components/Listbox.interface.d.ts} +8 -11
  84. package/components/fields/Select/components/Popover.d.ts +3 -0
  85. package/components/fields/Select/components/Popover.interface.d.ts +13 -0
  86. package/components/fields/SelectItem/SelectItem.d.ts +3 -0
  87. package/{src/components/fields/SelectItem/SelectItem.interface.ts → components/fields/SelectItem/SelectItem.interface.d.ts} +3 -4
  88. package/components/fields/TextArea/index.d.ts +4 -0
  89. package/components/fields/TextInputField/index.d.ts +4 -0
  90. package/components/fields/TextInputField/interface.d.ts +24 -0
  91. package/components/icons/ArrowDown.d.ts +3 -0
  92. package/components/icons/ArrowLeft.d.ts +3 -0
  93. package/components/icons/ArrowRight.d.ts +3 -0
  94. package/components/icons/Check.d.ts +3 -0
  95. package/components/icons/ChevronLeft.d.ts +3 -0
  96. package/components/icons/ChevronRight.d.ts +3 -0
  97. package/components/icons/CloseBtn.d.ts +3 -0
  98. package/components/icons/Facebook.d.ts +3 -0
  99. package/components/icons/FacebookColored.d.ts +3 -0
  100. package/components/icons/FacebookRounded.d.ts +3 -0
  101. package/components/icons/Globe.d.ts +3 -0
  102. package/components/icons/IconFallback.d.ts +3 -0
  103. package/components/icons/Instagram.d.ts +3 -0
  104. package/components/icons/InstagramColored.d.ts +3 -0
  105. package/components/icons/Link.d.ts +3 -0
  106. package/components/icons/LinkedIn.d.ts +3 -0
  107. package/components/icons/Mail.d.ts +3 -0
  108. package/components/icons/Plus.d.ts +3 -0
  109. package/components/icons/Search.d.ts +3 -0
  110. package/components/icons/Share.d.ts +3 -0
  111. package/components/icons/Twitter.d.ts +3 -0
  112. package/components/icons/TwitterColored.d.ts +3 -0
  113. package/components/icons/Upload.d.ts +3 -0
  114. package/components/icons/X.d.ts +3 -0
  115. package/components/icons/YouTube.d.ts +3 -0
  116. package/components/icons/YouTubeColored.d.ts +3 -0
  117. package/components/icons/index.d.ts +24 -0
  118. package/{src/index.ts → index.d.ts} +57 -72
  119. package/index.js +110 -0
  120. package/index.mjs +12755 -0
  121. package/package.json +1 -1
  122. package/providers/Accordion/index.d.ts +4 -0
  123. package/providers/Accordion/interface.d.ts +12 -0
  124. package/providers/Alerts/index.d.ts +4 -0
  125. package/providers/Alerts/interface.d.ts +9 -0
  126. package/providers/CheckboxGroup/index.d.ts +5 -0
  127. package/{src/providers/CheckboxGroup/interface.ts → providers/CheckboxGroup/interface.d.ts} +4 -5
  128. package/providers/Client/index.d.ts +4 -0
  129. package/providers/Client/interface.d.ts +10 -0
  130. package/providers/Menu/index.d.ts +4 -0
  131. package/providers/Menu/interface.d.ts +28 -0
  132. package/providers/RadioGroup/RadioGroup.d.ts +5 -0
  133. package/providers/RadioGroup/RadioGroup.interface.d.ts +7 -0
  134. package/providers/SidePanel/index.d.ts +4 -0
  135. package/providers/SidePanel/interface.d.ts +23 -0
  136. package/providers/Theme/hooks.d.ts +3 -0
  137. package/providers/Theme/index.d.ts +10 -0
  138. package/providers/Theme/interface.d.ts +24 -0
  139. package/providers/Theme/utils.d.ts +2 -0
  140. package/providers/UserSearchQuery/index.d.ts +4 -0
  141. package/providers/UserSearchQuery/interface.d.ts +10 -0
  142. package/style.css +1 -0
  143. package/theme/Accordion/index.d.ts +274 -0
  144. package/theme/Alerts/index.d.ts +1167 -0
  145. package/theme/Box/index.d.ts +214 -0
  146. package/theme/Button/index.d.ts +121 -0
  147. package/theme/Calendar/index.d.ts +366 -0
  148. package/theme/Carousel/index.d.ts +9 -0
  149. package/theme/Checkbox/index.d.ts +159 -0
  150. package/theme/CheckboxGroup/index.d.ts +30 -0
  151. package/theme/DatePicker/index.d.ts +43 -0
  152. package/theme/Image/index.d.ts +3 -0
  153. package/theme/LightBox/index.d.ts +455 -0
  154. package/theme/Radio/index.d.ts +108 -0
  155. package/theme/RadioGroup/index.d.ts +30 -0
  156. package/theme/Search/index.d.ts +30 -0
  157. package/theme/ShareButton/index.d.ts +174 -0
  158. package/theme/SidePanel/index.d.ts +3 -0
  159. package/theme/TextArea/index.d.ts +29 -0
  160. package/theme/Typography/index.d.ts +233 -0
  161. package/theme/index.d.ts +5 -0
  162. package/transitions/AccordionTransition.d.ts +4 -0
  163. package/transitions/ModalTransition.d.ts +7 -0
  164. package/transitions/RenderWithOpacity.d.ts +4 -0
  165. package/transitions/RenderWithSlide.d.ts +7 -0
  166. package/transitions/SidePanelTransition.d.ts +7 -0
  167. package/types/components.d.ts +28 -0
  168. package/.eslintrc.js +0 -32
  169. package/.storybook/.eslintrc.js +0 -29
  170. package/.storybook/main.ts +0 -33
  171. package/.storybook/preview.js +0 -56
  172. package/.storybook/tsconfig.json +0 -17
  173. package/CHANGELOG.md +0 -574
  174. package/README.md +0 -8
  175. package/postcss.config.js +0 -15
  176. package/project.json +0 -77
  177. package/src/_stories/icons/code-brackets.svg +0 -1
  178. package/src/_stories/icons/colors.svg +0 -1
  179. package/src/_stories/icons/comments.svg +0 -1
  180. package/src/_stories/icons/direction.svg +0 -1
  181. package/src/_stories/icons/flow.svg +0 -1
  182. package/src/_stories/icons/plugin.svg +0 -1
  183. package/src/_stories/icons/repo.svg +0 -1
  184. package/src/_stories/icons/stackalt.svg +0 -1
  185. package/src/components/Accordion/accordion.stories.mdx +0 -240
  186. package/src/components/Accordion/components/AccordionItem.tsx +0 -53
  187. package/src/components/Accordion/components/AriaAccordionItem.tsx +0 -76
  188. package/src/components/Accordion/hooks/useAccordionState.ts +0 -46
  189. package/src/components/Accordion/index.tsx +0 -38
  190. package/src/components/Alerts/alerts.stories.mdx +0 -282
  191. package/src/components/Alerts/components/AlertsCloseButton.tsx +0 -20
  192. package/src/components/Alerts/components/AlertsItem.tsx +0 -39
  193. package/src/components/Alerts/components/AlertsNavigationButton.tsx +0 -71
  194. package/src/components/Alerts/components/AlertsSwiper.tsx +0 -125
  195. package/src/components/Alerts/components/pagination/AlertsPagination.tsx +0 -32
  196. package/src/components/Alerts/components/pagination/AlertsPaginationBullet.tsx +0 -61
  197. package/src/components/Alerts/index.tsx +0 -54
  198. package/src/components/Alerts/interface.ts +0 -51
  199. package/src/components/Box/box.stories.mdx +0 -27
  200. package/src/components/Box/index.tsx +0 -36
  201. package/src/components/Box/interface.ts +0 -10
  202. package/src/components/Button/button.stories.mdx +0 -99
  203. package/src/components/Button/index.tsx +0 -92
  204. package/src/components/Button/interface.ts +0 -22
  205. package/src/components/Calendar/RangeCalendar.tsx +0 -61
  206. package/src/components/Calendar/calendar.stories.mdx +0 -28
  207. package/src/components/Calendar/components/CalendarCell.tsx +0 -60
  208. package/src/components/Calendar/components/CalendarGrid.tsx +0 -44
  209. package/src/components/Calendar/index.tsx +0 -63
  210. package/src/components/Calendar/interface.ts +0 -37
  211. package/src/components/Carousel/carousel.stories.mdx +0 -182
  212. package/src/components/Carousel/index.tsx +0 -99
  213. package/src/components/Carousel/interface.ts +0 -26
  214. package/src/components/Date/date.stories.mdx +0 -122
  215. package/src/components/Date/index.tsx +0 -35
  216. package/src/components/Date/interface.ts +0 -7
  217. package/src/components/Dialog/index.tsx +0 -14
  218. package/src/components/Dialog/interface.ts +0 -6
  219. package/src/components/DirectusImg/index.tsx +0 -59
  220. package/src/components/DirectusImg/interface.ts +0 -19
  221. package/src/components/Icon/index.tsx +0 -40
  222. package/src/components/Icon/interface.ts +0 -8
  223. package/src/components/Img/img.stories.mdx +0 -28
  224. package/src/components/Img/index.tsx +0 -30
  225. package/src/components/Img/interface.ts +0 -9
  226. package/src/components/Lightbox/hooks/overlay/index.tsx +0 -36
  227. package/src/components/Lightbox/index.tsx +0 -82
  228. package/src/components/Lightbox/interface.ts +0 -28
  229. package/src/components/Lightbox/lightbox.stories.mdx +0 -79
  230. package/src/components/Menu/Menu.tsx +0 -43
  231. package/src/components/Menu/MenuSidePanel.tsx +0 -41
  232. package/src/components/Menu/components/InnerContent.tsx +0 -26
  233. package/src/components/Menu/components/MenuItems.tsx +0 -133
  234. package/src/components/Menu/components/TabContainer.tsx +0 -13
  235. package/src/components/Menu/interface.ts +0 -41
  236. package/src/components/Menu/menu.stories.mdx +0 -23
  237. package/src/components/Modal/components/ModalDialog.tsx +0 -31
  238. package/src/components/Modal/components/ModalOverlay.tsx +0 -21
  239. package/src/components/Modal/index.tsx +0 -32
  240. package/src/components/Popover/index.tsx +0 -138
  241. package/src/components/Popover/interface.ts +0 -25
  242. package/src/components/Popover/popover.stories.mdx +0 -66
  243. package/src/components/ShareButton/index.tsx +0 -172
  244. package/src/components/ShareButton/interface.ts +0 -29
  245. package/src/components/ShareButton/share-button.stories.mdx +0 -48
  246. package/src/components/ShareButton/utils/generateUtmTags.ts +0 -4
  247. package/src/components/ShareButton/utils/useFacebookShareUrl.ts +0 -15
  248. package/src/components/ShareButton/utils/useMailToShareUrl.ts +0 -15
  249. package/src/components/ShareButton/utils/useTwitterShareUrl.ts +0 -15
  250. package/src/components/ShareButton/utils/useWindow.ts +0 -17
  251. package/src/components/SidePanel/index.tsx +0 -43
  252. package/src/components/SidePanel/interface.ts +0 -16
  253. package/src/components/SidePanel/side-panel.stories.mdx +0 -44
  254. package/src/components/TabList/components/Tab/Tab.tsx +0 -19
  255. package/src/components/TabList/components/TabPanel/TabPanel.tsx +0 -27
  256. package/src/components/TabList/index.tsx +0 -44
  257. package/src/components/TabList/interface.ts +0 -23
  258. package/src/components/Typography/index.tsx +0 -35
  259. package/src/components/Typography/interface.ts +0 -9
  260. package/src/components/Typography/typo.stories.mdx +0 -157
  261. package/src/components/WysiwygBlock/index.tsx +0 -20
  262. package/src/components/WysiwygBlock/interface.ts +0 -7
  263. package/src/components/WysiwygBlock/wysiwyg.stories.mdx +0 -53
  264. package/src/components/fields/Checkbox/Checkbox.interface.ts +0 -21
  265. package/src/components/fields/Checkbox/Checkbox.stories.mdx +0 -127
  266. package/src/components/fields/Checkbox/index.tsx +0 -62
  267. package/src/components/fields/CheckboxGroup/checkbox-group.stories.mdx +0 -59
  268. package/src/components/fields/CheckboxGroup/components/CheckboxGroupItem/index.tsx +0 -66
  269. package/src/components/fields/CheckboxGroup/index.tsx +0 -49
  270. package/src/components/fields/CheckboxGroup/interface.ts +0 -17
  271. package/src/components/fields/DatePicker/DateRangePicker.tsx +0 -73
  272. package/src/components/fields/DatePicker/components/CalendarPopover.tsx +0 -31
  273. package/src/components/fields/DatePicker/components/DateField.tsx +0 -61
  274. package/src/components/fields/DatePicker/date-picker.stories.mdx +0 -55
  275. package/src/components/fields/DatePicker/index.tsx +0 -71
  276. package/src/components/fields/DatePicker/interface.ts +0 -69
  277. package/src/components/fields/Radio/Radio.interface.ts +0 -30
  278. package/src/components/fields/Radio/index.tsx +0 -63
  279. package/src/components/fields/RadioGroup/index.tsx +0 -33
  280. package/src/components/fields/RadioGroup/interface.ts +0 -10
  281. package/src/components/fields/RadioGroup/radio-group.stories.mdx +0 -56
  282. package/src/components/fields/SearchField/index.tsx +0 -59
  283. package/src/components/fields/SearchField/interface.ts +0 -10
  284. package/src/components/fields/SearchField/search.stories.mdx +0 -91
  285. package/src/components/fields/Select/Select.interface.ts +0 -24
  286. package/src/components/fields/Select/Select.stories.mdx +0 -53
  287. package/src/components/fields/Select/Select.tsx +0 -108
  288. package/src/components/fields/Select/components/Listbox.tsx +0 -40
  289. package/src/components/fields/Select/components/Popover.interface.ts +0 -14
  290. package/src/components/fields/Select/components/Popover.tsx +0 -32
  291. package/src/components/fields/SelectItem/SelectItem.tsx +0 -10
  292. package/src/components/fields/TextArea/index.tsx +0 -105
  293. package/src/components/fields/TextArea/textArea.stories.mdx +0 -60
  294. package/src/components/fields/TextInputField/index.tsx +0 -107
  295. package/src/components/fields/TextInputField/interface.ts +0 -30
  296. package/src/components/fields/TextInputField/text-input-field.stories.mdx +0 -64
  297. package/src/components/icons/ArrowDown.tsx +0 -11
  298. package/src/components/icons/ArrowLeft.tsx +0 -18
  299. package/src/components/icons/ArrowRight.tsx +0 -18
  300. package/src/components/icons/Check.tsx +0 -11
  301. package/src/components/icons/ChevronLeft.tsx +0 -11
  302. package/src/components/icons/ChevronRight.tsx +0 -11
  303. package/src/components/icons/CloseBtn.tsx +0 -11
  304. package/src/components/icons/Facebook.tsx +0 -14
  305. package/src/components/icons/FacebookColored.tsx +0 -16
  306. package/src/components/icons/FacebookRounded.tsx +0 -16
  307. package/src/components/icons/Globe.tsx +0 -38
  308. package/src/components/icons/IconFallback.tsx +0 -8
  309. package/src/components/icons/Instagram.tsx +0 -14
  310. package/src/components/icons/InstagramColored.tsx +0 -59
  311. package/src/components/icons/Link.tsx +0 -14
  312. package/src/components/icons/LinkedIn.tsx +0 -16
  313. package/src/components/icons/Mail.tsx +0 -16
  314. package/src/components/icons/Plus.tsx +0 -18
  315. package/src/components/icons/Search.tsx +0 -19
  316. package/src/components/icons/Share.tsx +0 -16
  317. package/src/components/icons/Twitter.tsx +0 -16
  318. package/src/components/icons/TwitterColored.tsx +0 -16
  319. package/src/components/icons/Upload.tsx +0 -14
  320. package/src/components/icons/X.tsx +0 -14
  321. package/src/components/icons/YouTube.tsx +0 -16
  322. package/src/components/icons/YouTubeColored.tsx +0 -17
  323. package/src/components/icons/index.ts +0 -24
  324. package/src/examples/PageLayout/index.tsx +0 -61
  325. package/src/examples/PageLayout/layout.stories.mdx +0 -35
  326. package/src/message.tsx +0 -8
  327. package/src/providers/Accordion/index.tsx +0 -15
  328. package/src/providers/Accordion/interface.ts +0 -14
  329. package/src/providers/Alerts/index.tsx +0 -15
  330. package/src/providers/Alerts/interface.ts +0 -11
  331. package/src/providers/CheckboxGroup/index.tsx +0 -22
  332. package/src/providers/Client/index.tsx +0 -21
  333. package/src/providers/Client/interface.ts +0 -13
  334. package/src/providers/Menu/index.tsx +0 -43
  335. package/src/providers/Menu/interface.ts +0 -32
  336. package/src/providers/RadioGroup/RadioGroup.interface.ts +0 -8
  337. package/src/providers/RadioGroup/RadioGroup.tsx +0 -25
  338. package/src/providers/SidePanel/index.tsx +0 -55
  339. package/src/providers/SidePanel/interface.ts +0 -26
  340. package/src/providers/Theme/hooks.ts +0 -25
  341. package/src/providers/Theme/index.tsx +0 -40
  342. package/src/providers/Theme/interface.ts +0 -28
  343. package/src/providers/Theme/utils.ts +0 -3
  344. package/src/providers/UserSearchQuery/index.tsx +0 -20
  345. package/src/providers/UserSearchQuery/interface.ts +0 -12
  346. package/src/storybook/Lightbox/LightboxControlledState.tsx +0 -28
  347. package/src/storybook/Menu/Menu.tsx +0 -177
  348. package/src/storybook/Menu/NestedMenu.tsx +0 -24
  349. package/src/storybook/Menu/mock.tsx +0 -84
  350. package/src/storybook/SelectField/index.tsx +0 -57
  351. package/src/storybook/ShareButtonExample/index.tsx +0 -66
  352. package/src/tailwind.css +0 -3
  353. package/src/theme/Accordion/index.tsx +0 -101
  354. package/src/theme/Alerts/index.ts +0 -97
  355. package/src/theme/Box/index.ts +0 -45
  356. package/src/theme/Button/index.tsx +0 -72
  357. package/src/theme/Calendar/index.tsx +0 -167
  358. package/src/theme/Carousel/index.ts +0 -36
  359. package/src/theme/Checkbox/index.ts +0 -49
  360. package/src/theme/CheckboxGroup/index.ts +0 -14
  361. package/src/theme/DatePicker/index.tsx +0 -42
  362. package/src/theme/Image/index.ts +0 -8
  363. package/src/theme/LightBox/index.ts +0 -56
  364. package/src/theme/Radio/index.ts +0 -31
  365. package/src/theme/RadioGroup/index.ts +0 -14
  366. package/src/theme/Search/index.ts +0 -20
  367. package/src/theme/ShareButton/index.tsx +0 -76
  368. package/src/theme/SidePanel/index.ts +0 -9
  369. package/src/theme/TextArea/index.ts +0 -25
  370. package/src/theme/Typography/index.tsx +0 -44
  371. package/src/theme/index.tsx +0 -178
  372. package/src/transitions/AccordionTransition.tsx +0 -26
  373. package/src/transitions/ModalTransition.tsx +0 -38
  374. package/src/transitions/RenderWithOpacity.tsx +0 -25
  375. package/src/transitions/RenderWithSlide.tsx +0 -21
  376. package/src/transitions/SidePanelTransition.tsx +0 -30
  377. package/src/types/components.ts +0 -34
  378. package/static/images/image.png +0 -0
  379. package/tailwind.config.js +0 -14
  380. package/tsconfig.json +0 -20
  381. package/tsconfig.lib.json +0 -25
  382. package/vite.config.ts +0 -58
@@ -0,0 +1,366 @@
1
+ export declare const calendarContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "inline-block text-gray-800", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "inline-block text-gray-800", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
2
+ export declare const calendarHeaderContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex items-center justify-between pb-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex items-center justify-between pb-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
3
+ export declare const calendarNavigationButtonsContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex items-center gap-1", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex items-center gap-1", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
4
+ export declare const calendarNavigationButtons: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "active:bg-color-1-500 p-2 rounded-full active:text-color-1-100 hover:bg-color-1-200 focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "active:bg-color-1-500 p-2 rounded-full active:text-color-1-100 hover:bg-color-1-200 focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
5
+ export declare const calendarTable: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex-1", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex-1", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
6
+ export declare const calendarDayLabel: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "text-center", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "text-center", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
7
+ export declare const calendarCellContainer: import("tailwind-variants").TVReturnType<{
8
+ isFocusVisible: {
9
+ true: "z-10";
10
+ false: "";
11
+ };
12
+ }, undefined, "py-0.5 relative", import("tailwind-variants/dist/config").TVConfig<{
13
+ isFocusVisible: {
14
+ true: "z-10";
15
+ false: "";
16
+ };
17
+ }, {
18
+ isFocusVisible: {
19
+ true: "z-10";
20
+ false: "";
21
+ };
22
+ }>, {
23
+ isFocusVisible: {
24
+ true: "z-10";
25
+ false: "";
26
+ };
27
+ }, undefined, import("tailwind-variants").TVReturnType<{
28
+ isFocusVisible: {
29
+ true: "z-10";
30
+ false: "";
31
+ };
32
+ }, undefined, "py-0.5 relative", import("tailwind-variants/dist/config").TVConfig<{
33
+ isFocusVisible: {
34
+ true: "z-10";
35
+ false: "";
36
+ };
37
+ }, {
38
+ isFocusVisible: {
39
+ true: "z-10";
40
+ false: "";
41
+ };
42
+ }>, unknown, unknown, undefined>>;
43
+ export declare const calendarCell: import("tailwind-variants").TVReturnType<{
44
+ isSelected: {
45
+ true: "";
46
+ false: "";
47
+ };
48
+ isInvalid: {
49
+ true: "";
50
+ fasle: "";
51
+ };
52
+ isDisabled: {
53
+ true: "disabled";
54
+ false: "";
55
+ };
56
+ isRoundedLeft: {
57
+ true: "rounded-l-full";
58
+ false: "";
59
+ };
60
+ isRoundedRight: {
61
+ true: "rounded-r-full";
62
+ false: "";
63
+ };
64
+ }, undefined, "w-10 h-10 outline-none group", import("tailwind-variants/dist/config").TVConfig<{
65
+ isSelected: {
66
+ true: "";
67
+ false: "";
68
+ };
69
+ isInvalid: {
70
+ true: "";
71
+ fasle: "";
72
+ };
73
+ isDisabled: {
74
+ true: "disabled";
75
+ false: "";
76
+ };
77
+ isRoundedLeft: {
78
+ true: "rounded-l-full";
79
+ false: "";
80
+ };
81
+ isRoundedRight: {
82
+ true: "rounded-r-full";
83
+ false: "";
84
+ };
85
+ }, {
86
+ isSelected: {
87
+ true: "";
88
+ false: "";
89
+ };
90
+ isInvalid: {
91
+ true: "";
92
+ fasle: "";
93
+ };
94
+ isDisabled: {
95
+ true: "disabled";
96
+ false: "";
97
+ };
98
+ isRoundedLeft: {
99
+ true: "rounded-l-full";
100
+ false: "";
101
+ };
102
+ isRoundedRight: {
103
+ true: "rounded-r-full";
104
+ false: "";
105
+ };
106
+ }>, {
107
+ isSelected: {
108
+ true: "";
109
+ false: "";
110
+ };
111
+ isInvalid: {
112
+ true: "";
113
+ fasle: "";
114
+ };
115
+ isDisabled: {
116
+ true: "disabled";
117
+ false: "";
118
+ };
119
+ isRoundedLeft: {
120
+ true: "rounded-l-full";
121
+ false: "";
122
+ };
123
+ isRoundedRight: {
124
+ true: "rounded-r-full";
125
+ false: "";
126
+ };
127
+ }, undefined, import("tailwind-variants").TVReturnType<{
128
+ isSelected: {
129
+ true: "";
130
+ false: "";
131
+ };
132
+ isInvalid: {
133
+ true: "";
134
+ fasle: "";
135
+ };
136
+ isDisabled: {
137
+ true: "disabled";
138
+ false: "";
139
+ };
140
+ isRoundedLeft: {
141
+ true: "rounded-l-full";
142
+ false: "";
143
+ };
144
+ isRoundedRight: {
145
+ true: "rounded-r-full";
146
+ false: "";
147
+ };
148
+ }, undefined, "w-10 h-10 outline-none group", import("tailwind-variants/dist/config").TVConfig<{
149
+ isSelected: {
150
+ true: "";
151
+ false: "";
152
+ };
153
+ isInvalid: {
154
+ true: "";
155
+ fasle: "";
156
+ };
157
+ isDisabled: {
158
+ true: "disabled";
159
+ false: "";
160
+ };
161
+ isRoundedLeft: {
162
+ true: "rounded-l-full";
163
+ false: "";
164
+ };
165
+ isRoundedRight: {
166
+ true: "rounded-r-full";
167
+ false: "";
168
+ };
169
+ }, {
170
+ isSelected: {
171
+ true: "";
172
+ false: "";
173
+ };
174
+ isInvalid: {
175
+ true: "";
176
+ fasle: "";
177
+ };
178
+ isDisabled: {
179
+ true: "disabled";
180
+ false: "";
181
+ };
182
+ isRoundedLeft: {
183
+ true: "rounded-l-full";
184
+ false: "";
185
+ };
186
+ isRoundedRight: {
187
+ true: "rounded-r-full";
188
+ false: "";
189
+ };
190
+ }>, unknown, unknown, undefined>>;
191
+ export declare const calendarCellFormattedDate: import("tailwind-variants").TVReturnType<{
192
+ isSelected: {
193
+ true: "";
194
+ false: "";
195
+ };
196
+ isInvalid: {
197
+ true: "";
198
+ fasle: "";
199
+ };
200
+ isDisabled: {
201
+ true: "";
202
+ false: "";
203
+ };
204
+ isFocusVisible: {
205
+ true: "ring-2 group-focus:z-2 ring-violet-600 ring-offset-2";
206
+ false: "";
207
+ };
208
+ isSelectionStart: {
209
+ true: "";
210
+ false: "";
211
+ };
212
+ isSelectionEnd: {
213
+ true: "";
214
+ false: "";
215
+ };
216
+ }, undefined, "w-full h-full rounded-full flex items-center justify-center cursor-pointer", import("tailwind-variants/dist/config").TVConfig<{
217
+ isSelected: {
218
+ true: "";
219
+ false: "";
220
+ };
221
+ isInvalid: {
222
+ true: "";
223
+ fasle: "";
224
+ };
225
+ isDisabled: {
226
+ true: "";
227
+ false: "";
228
+ };
229
+ isFocusVisible: {
230
+ true: "ring-2 group-focus:z-2 ring-violet-600 ring-offset-2";
231
+ false: "";
232
+ };
233
+ isSelectionStart: {
234
+ true: "";
235
+ false: "";
236
+ };
237
+ isSelectionEnd: {
238
+ true: "";
239
+ false: "";
240
+ };
241
+ }, {
242
+ isSelected: {
243
+ true: "";
244
+ false: "";
245
+ };
246
+ isInvalid: {
247
+ true: "";
248
+ fasle: "";
249
+ };
250
+ isDisabled: {
251
+ true: "";
252
+ false: "";
253
+ };
254
+ isFocusVisible: {
255
+ true: "ring-2 group-focus:z-2 ring-violet-600 ring-offset-2";
256
+ false: "";
257
+ };
258
+ isSelectionStart: {
259
+ true: "";
260
+ false: "";
261
+ };
262
+ isSelectionEnd: {
263
+ true: "";
264
+ false: "";
265
+ };
266
+ }>, {
267
+ isSelected: {
268
+ true: "";
269
+ false: "";
270
+ };
271
+ isInvalid: {
272
+ true: "";
273
+ fasle: "";
274
+ };
275
+ isDisabled: {
276
+ true: "";
277
+ false: "";
278
+ };
279
+ isFocusVisible: {
280
+ true: "ring-2 group-focus:z-2 ring-violet-600 ring-offset-2";
281
+ false: "";
282
+ };
283
+ isSelectionStart: {
284
+ true: "";
285
+ false: "";
286
+ };
287
+ isSelectionEnd: {
288
+ true: "";
289
+ false: "";
290
+ };
291
+ }, undefined, import("tailwind-variants").TVReturnType<{
292
+ isSelected: {
293
+ true: "";
294
+ false: "";
295
+ };
296
+ isInvalid: {
297
+ true: "";
298
+ fasle: "";
299
+ };
300
+ isDisabled: {
301
+ true: "";
302
+ false: "";
303
+ };
304
+ isFocusVisible: {
305
+ true: "ring-2 group-focus:z-2 ring-violet-600 ring-offset-2";
306
+ false: "";
307
+ };
308
+ isSelectionStart: {
309
+ true: "";
310
+ false: "";
311
+ };
312
+ isSelectionEnd: {
313
+ true: "";
314
+ false: "";
315
+ };
316
+ }, undefined, "w-full h-full rounded-full flex items-center justify-center cursor-pointer", import("tailwind-variants/dist/config").TVConfig<{
317
+ isSelected: {
318
+ true: "";
319
+ false: "";
320
+ };
321
+ isInvalid: {
322
+ true: "";
323
+ fasle: "";
324
+ };
325
+ isDisabled: {
326
+ true: "";
327
+ false: "";
328
+ };
329
+ isFocusVisible: {
330
+ true: "ring-2 group-focus:z-2 ring-violet-600 ring-offset-2";
331
+ false: "";
332
+ };
333
+ isSelectionStart: {
334
+ true: "";
335
+ false: "";
336
+ };
337
+ isSelectionEnd: {
338
+ true: "";
339
+ false: "";
340
+ };
341
+ }, {
342
+ isSelected: {
343
+ true: "";
344
+ false: "";
345
+ };
346
+ isInvalid: {
347
+ true: "";
348
+ fasle: "";
349
+ };
350
+ isDisabled: {
351
+ true: "";
352
+ false: "";
353
+ };
354
+ isFocusVisible: {
355
+ true: "ring-2 group-focus:z-2 ring-violet-600 ring-offset-2";
356
+ false: "";
357
+ };
358
+ isSelectionStart: {
359
+ true: "";
360
+ false: "";
361
+ };
362
+ isSelectionEnd: {
363
+ true: "";
364
+ false: "";
365
+ };
366
+ }>, unknown, unknown, undefined>>;
@@ -0,0 +1,9 @@
1
+ declare const carousel: {
2
+ container: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex justify-between items-center relative h-[475px] mb-18 lg:h-[650px]", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex justify-between items-center relative h-[475px] mb-18 lg:h-[650px]", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
3
+ slideContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex justify-center m-auto px-8 w-full h-full", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex justify-center m-auto px-8 w-full h-full", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
4
+ slideWrapper: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "bg-color-1-200 p-2", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "bg-color-1-200 p-2", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
5
+ navigationButtons: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "bg-color-1-500 rounded-full p-4 text-white", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "bg-color-1-500 rounded-full p-4 text-white", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
6
+ swiper: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "bg-color-1-400 !py-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "bg-color-1-400 !py-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
7
+ swiperWrapper: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "bg-color-1-100 py-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "bg-color-1-100 py-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
8
+ };
9
+ export default carousel;
@@ -0,0 +1,159 @@
1
+ export declare const checkboxContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
2
+ export declare const checkboxLabel: import("tailwind-variants").TVReturnType<{
3
+ color: {
4
+ gray: "text-gray-300";
5
+ black: "text-black";
6
+ };
7
+ isDisabled: {
8
+ true: "text-gray-6";
9
+ };
10
+ }, undefined, "hover:cursor-pointer", import("tailwind-variants/dist/config").TVConfig<{
11
+ color: {
12
+ gray: "text-gray-300";
13
+ black: "text-black";
14
+ };
15
+ isDisabled: {
16
+ true: "text-gray-6";
17
+ };
18
+ }, {
19
+ color: {
20
+ gray: "text-gray-300";
21
+ black: "text-black";
22
+ };
23
+ isDisabled: {
24
+ true: "text-gray-6";
25
+ };
26
+ }>, {
27
+ color: {
28
+ gray: "text-gray-300";
29
+ black: "text-black";
30
+ };
31
+ isDisabled: {
32
+ true: "text-gray-6";
33
+ };
34
+ }, undefined, import("tailwind-variants").TVReturnType<{
35
+ color: {
36
+ gray: "text-gray-300";
37
+ black: "text-black";
38
+ };
39
+ isDisabled: {
40
+ true: "text-gray-6";
41
+ };
42
+ }, undefined, "hover:cursor-pointer", import("tailwind-variants/dist/config").TVConfig<{
43
+ color: {
44
+ gray: "text-gray-300";
45
+ black: "text-black";
46
+ };
47
+ isDisabled: {
48
+ true: "text-gray-6";
49
+ };
50
+ }, {
51
+ color: {
52
+ gray: "text-gray-300";
53
+ black: "text-black";
54
+ };
55
+ isDisabled: {
56
+ true: "text-gray-6";
57
+ };
58
+ }>, unknown, unknown, undefined>>;
59
+ export declare const checkBox: import("tailwind-variants").TVReturnType<{
60
+ isDisabled: {
61
+ true: "border-gray-6";
62
+ };
63
+ isFocused: {
64
+ true: "outline-black [outline-offset: 2px]";
65
+ };
66
+ isError: {
67
+ true: "border-red-500";
68
+ };
69
+ }, undefined, "w-6 h-6 mt-0.5 mr-2.5 rounded-full border-2 border-gray-2 shrink-0 hover:cursor-pointer flex items-center justify-center", import("tailwind-variants/dist/config").TVConfig<{
70
+ isDisabled: {
71
+ true: "border-gray-6";
72
+ };
73
+ isFocused: {
74
+ true: "outline-black [outline-offset: 2px]";
75
+ };
76
+ isError: {
77
+ true: "border-red-500";
78
+ };
79
+ }, {
80
+ isDisabled: {
81
+ true: "border-gray-6";
82
+ };
83
+ isFocused: {
84
+ true: "outline-black [outline-offset: 2px]";
85
+ };
86
+ isError: {
87
+ true: "border-red-500";
88
+ };
89
+ }>, {
90
+ isDisabled: {
91
+ true: "border-gray-6";
92
+ };
93
+ isFocused: {
94
+ true: "outline-black [outline-offset: 2px]";
95
+ };
96
+ isError: {
97
+ true: "border-red-500";
98
+ };
99
+ }, undefined, import("tailwind-variants").TVReturnType<{
100
+ isDisabled: {
101
+ true: "border-gray-6";
102
+ };
103
+ isFocused: {
104
+ true: "outline-black [outline-offset: 2px]";
105
+ };
106
+ isError: {
107
+ true: "border-red-500";
108
+ };
109
+ }, undefined, "w-6 h-6 mt-0.5 mr-2.5 rounded-full border-2 border-gray-2 shrink-0 hover:cursor-pointer flex items-center justify-center", import("tailwind-variants/dist/config").TVConfig<{
110
+ isDisabled: {
111
+ true: "border-gray-6";
112
+ };
113
+ isFocused: {
114
+ true: "outline-black [outline-offset: 2px]";
115
+ };
116
+ isError: {
117
+ true: "border-red-500";
118
+ };
119
+ }, {
120
+ isDisabled: {
121
+ true: "border-gray-6";
122
+ };
123
+ isFocused: {
124
+ true: "outline-black [outline-offset: 2px]";
125
+ };
126
+ isError: {
127
+ true: "border-red-500";
128
+ };
129
+ }>, unknown, unknown, undefined>>;
130
+ export declare const checkMark: import("tailwind-variants").TVReturnType<{
131
+ selected: {
132
+ true: "block text-white";
133
+ };
134
+ }, undefined, "hidden w-4 h-4 bg-gray-300 rounded-full", import("tailwind-variants/dist/config").TVConfig<{
135
+ selected: {
136
+ true: "block text-white";
137
+ };
138
+ }, {
139
+ selected: {
140
+ true: "block text-white";
141
+ };
142
+ }>, {
143
+ selected: {
144
+ true: "block text-white";
145
+ };
146
+ }, undefined, import("tailwind-variants").TVReturnType<{
147
+ selected: {
148
+ true: "block text-white";
149
+ };
150
+ }, undefined, "hidden w-4 h-4 bg-gray-300 rounded-full", import("tailwind-variants/dist/config").TVConfig<{
151
+ selected: {
152
+ true: "block text-white";
153
+ };
154
+ }, {
155
+ selected: {
156
+ true: "block text-white";
157
+ };
158
+ }>, unknown, unknown, undefined>>;
159
+ export declare const checkMarkIcon: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "text-white w-4 h-4 [&_svg]:w-4 [&_svg]:h-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "text-white w-4 h-4 [&_svg]:w-4 [&_svg]:h-4", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
@@ -0,0 +1,30 @@
1
+ export declare const checkboxGroup: import("tailwind-variants").TVReturnType<{
2
+ isDisabled: {
3
+ true: "opacity-60 pointer-events-none";
4
+ };
5
+ }, undefined, "block", import("tailwind-variants/dist/config").TVConfig<{
6
+ isDisabled: {
7
+ true: "opacity-60 pointer-events-none";
8
+ };
9
+ }, {
10
+ isDisabled: {
11
+ true: "opacity-60 pointer-events-none";
12
+ };
13
+ }>, {
14
+ isDisabled: {
15
+ true: "opacity-60 pointer-events-none";
16
+ };
17
+ }, undefined, import("tailwind-variants").TVReturnType<{
18
+ isDisabled: {
19
+ true: "opacity-60 pointer-events-none";
20
+ };
21
+ }, undefined, "block", import("tailwind-variants/dist/config").TVConfig<{
22
+ isDisabled: {
23
+ true: "opacity-60 pointer-events-none";
24
+ };
25
+ }, {
26
+ isDisabled: {
27
+ true: "opacity-60 pointer-events-none";
28
+ };
29
+ }>, unknown, unknown, undefined>>;
30
+ export declare const checkboxGroupItemsGroup: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex flex-col gap-4 py-8", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex flex-col gap-4 py-8", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
@@ -0,0 +1,43 @@
1
+ export declare const datePickerContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "relative inline-flex flex-col text-left", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "relative inline-flex flex-col text-left", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
2
+ export declare const datePickerButton: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "flex items-center border-2 border-color-1-500 rounded focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "flex items-center border-2 border-color-1-500 rounded focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
3
+ export declare const datePickerCalendarPopoverUnderlay: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "fixed inset-0", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "fixed inset-0", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
4
+ export declare const datePickerCalendarPopoverContainer: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "absolute top-full bg-white border border-gray-300 rounded-md shadow-lg mt-2 p-8 z-10", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "absolute top-full bg-white border border-gray-300 rounded-md shadow-lg mt-2 p-8 z-10", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
5
+ export declare const datePickerDateField: import("tailwind-variants").TVReturnType<{
6
+ dateFieldShown: {
7
+ true: "";
8
+ false: "hidden";
9
+ };
10
+ }, undefined, "pr-1 flex gap-2", import("tailwind-variants/dist/config").TVConfig<{
11
+ dateFieldShown: {
12
+ true: "";
13
+ false: "hidden";
14
+ };
15
+ }, {
16
+ dateFieldShown: {
17
+ true: "";
18
+ false: "hidden";
19
+ };
20
+ }>, {
21
+ dateFieldShown: {
22
+ true: "";
23
+ false: "hidden";
24
+ };
25
+ }, undefined, import("tailwind-variants").TVReturnType<{
26
+ dateFieldShown: {
27
+ true: "";
28
+ false: "hidden";
29
+ };
30
+ }, undefined, "pr-1 flex gap-2", import("tailwind-variants/dist/config").TVConfig<{
31
+ dateFieldShown: {
32
+ true: "";
33
+ false: "hidden";
34
+ };
35
+ }, {
36
+ dateFieldShown: {
37
+ true: "";
38
+ false: "hidden";
39
+ };
40
+ }>, unknown, unknown, undefined>>;
41
+ export declare const datePickerDateSegment: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "focus-ring-black", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
42
+ export declare const datePickerIcon: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "text-color-1-500 bg-color-1-100 border-l-2 border-color-1-500 h-full py-2 px-2", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "text-color-1-500 bg-color-1-100 border-l-2 border-color-1-500 h-full py-2 px-2", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
43
+ export declare const datePickerLabel: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "text-color-1-500 font-bold px-2", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "text-color-1-500 font-bold px-2", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
@@ -0,0 +1,3 @@
1
+ import type { TToken } from '../../providers/Theme/interface';
2
+ export declare const imgStyles: import("tailwind-variants").TVReturnType<{} | {} | {}, undefined, "object-contain", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, {} | {}, undefined, import("tailwind-variants").TVReturnType<unknown, undefined, "object-contain", import("tailwind-variants/dist/config").TVConfig<unknown, {} | {}>, unknown, unknown, undefined>>;
3
+ export declare const imgTheme: (props: TToken) => string;