@nextui-org/react 1.0.1-alpha.9 → 1.0.2-beta.2

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 (832) hide show
  1. package/README.md +52 -45
  2. package/avatar/package.json +6 -0
  3. package/backdrop/package.json +6 -0
  4. package/button/package.json +6 -0
  5. package/card/package.json +6 -0
  6. package/checkbox/package.json +6 -0
  7. package/cjs/avatar/avatar-group.d.ts +13 -0
  8. package/cjs/avatar/avatar-group.js +35 -0
  9. package/cjs/avatar/avatar-group.styles.d.ts +1851 -0
  10. package/cjs/avatar/avatar-group.styles.js +52 -0
  11. package/cjs/avatar/avatar.d.ts +21 -0
  12. package/cjs/avatar/avatar.js +75 -0
  13. package/cjs/avatar/avatar.styles.d.ts +937 -0
  14. package/cjs/avatar/avatar.styles.js +334 -0
  15. package/cjs/avatar/index.d.ts +7 -0
  16. package/cjs/avatar/index.js +22 -0
  17. package/cjs/backdrop/backdrop.d.ts +37 -0
  18. package/cjs/backdrop/backdrop.js +137 -0
  19. package/cjs/backdrop/backdrop.styles.d.ts +2776 -0
  20. package/cjs/backdrop/backdrop.styles.js +119 -0
  21. package/cjs/backdrop/index.d.ts +5 -0
  22. package/cjs/backdrop/index.js +16 -0
  23. package/{dist/components → cjs}/button/button-group-context.d.ts +3 -1
  24. package/cjs/button/button-group-context.js +21 -0
  25. package/cjs/button/button-group.d.ts +34 -0
  26. package/cjs/button/button-group.js +81 -0
  27. package/cjs/button/button-group.styles.d.ts +932 -0
  28. package/cjs/button/button-group.styles.js +136 -0
  29. package/cjs/button/button-icon.d.ts +942 -0
  30. package/cjs/button/button-icon.js +68 -0
  31. package/cjs/button/button.d.ts +30 -0
  32. package/cjs/button/button.js +145 -0
  33. package/cjs/button/button.styles.d.ts +940 -0
  34. package/cjs/button/button.styles.js +726 -0
  35. package/cjs/button/index.d.ts +10 -0
  36. package/cjs/button/index.js +25 -0
  37. package/{dist/components → cjs}/button/utils.d.ts +2 -2
  38. package/cjs/button/utils.js +27 -0
  39. package/cjs/card/card.d.ts +23 -0
  40. package/cjs/card/card.js +117 -0
  41. package/cjs/card/card.styles.d.ts +3707 -0
  42. package/cjs/card/card.styles.js +267 -0
  43. package/cjs/card/index.d.ts +5 -0
  44. package/cjs/card/index.js +24 -0
  45. package/{dist/components → cjs}/checkbox/checkbox-context.d.ts +3 -2
  46. package/cjs/checkbox/checkbox-context.js +25 -0
  47. package/cjs/checkbox/checkbox-group.d.ts +29 -0
  48. package/cjs/checkbox/checkbox-group.js +89 -0
  49. package/{dist/components → cjs}/checkbox/checkbox.d.ts +21 -10
  50. package/cjs/checkbox/checkbox.js +192 -0
  51. package/cjs/checkbox/checkbox.styles.d.ts +8351 -0
  52. package/cjs/checkbox/checkbox.styles.js +563 -0
  53. package/cjs/checkbox/index.d.ts +6 -0
  54. package/cjs/checkbox/index.js +26 -0
  55. package/cjs/code/code.d.ts +15 -0
  56. package/cjs/code/code.js +42 -0
  57. package/cjs/code/code.styles.d.ts +1848 -0
  58. package/cjs/code/code.styles.js +14 -0
  59. package/cjs/code/index.d.ts +5 -0
  60. package/cjs/code/index.js +15 -0
  61. package/{dist/components → cjs}/col/col.d.ts +5 -7
  62. package/cjs/col/col.js +46 -0
  63. package/cjs/col/col.styles.d.ts +926 -0
  64. package/cjs/col/col.styles.js +16 -0
  65. package/cjs/col/index.d.ts +5 -0
  66. package/cjs/col/index.js +14 -0
  67. package/cjs/collapse/collapse-context.d.ts +9 -0
  68. package/cjs/collapse/collapse-context.js +20 -0
  69. package/cjs/collapse/collapse-group.d.ts +18 -0
  70. package/cjs/collapse/collapse-group.js +90 -0
  71. package/cjs/collapse/collapse-icon.d.ts +19 -0
  72. package/cjs/collapse/collapse-icon.js +41 -0
  73. package/cjs/collapse/collapse.d.ts +43 -0
  74. package/cjs/collapse/collapse.js +191 -0
  75. package/cjs/collapse/collapse.styles.d.ts +4637 -0
  76. package/cjs/collapse/collapse.styles.js +256 -0
  77. package/cjs/collapse/index.d.ts +6 -0
  78. package/cjs/collapse/index.js +22 -0
  79. package/cjs/container/container.d.ts +40 -0
  80. package/cjs/container/container.js +91 -0
  81. package/cjs/container/container.styles.d.ts +929 -0
  82. package/cjs/container/container.styles.js +45 -0
  83. package/cjs/container/index.d.ts +5 -0
  84. package/cjs/container/index.js +14 -0
  85. package/{dist/components → cjs}/css-baseline/css-baseline.d.ts +2 -2
  86. package/cjs/css-baseline/css-baseline.js +247 -0
  87. package/{dist/components → cjs}/css-baseline/index.d.ts +0 -0
  88. package/cjs/css-baseline/index.js +11 -0
  89. package/cjs/divider/divider.d.ts +22 -0
  90. package/cjs/divider/divider.js +82 -0
  91. package/cjs/divider/divider.styles.d.ts +1853 -0
  92. package/cjs/divider/divider.styles.js +77 -0
  93. package/cjs/divider/index.d.ts +5 -0
  94. package/cjs/divider/index.js +15 -0
  95. package/cjs/grid/grid-container.d.ts +22 -0
  96. package/cjs/grid/grid-container.js +60 -0
  97. package/{dist/components/grid/basic-item.d.ts → cjs/grid/grid-item.d.ts} +14 -5
  98. package/cjs/grid/grid-item.js +123 -0
  99. package/cjs/grid/grid.d.ts +9 -0
  100. package/cjs/grid/grid.js +29 -0
  101. package/cjs/grid/grid.styles.d.ts +1849 -0
  102. package/cjs/grid/grid.styles.js +15 -0
  103. package/cjs/grid/index.d.ts +7 -0
  104. package/cjs/grid/index.js +18 -0
  105. package/{dist/components → cjs}/image/image.d.ts +17 -15
  106. package/cjs/image/image.js +150 -0
  107. package/cjs/image/image.skeleton.d.ts +19 -0
  108. package/cjs/image/image.skeleton.js +50 -0
  109. package/cjs/image/image.styles.d.ts +2775 -0
  110. package/cjs/image/image.styles.js +57 -0
  111. package/cjs/image/index.d.ts +5 -0
  112. package/cjs/image/index.js +16 -0
  113. package/cjs/index.d.ts +79 -0
  114. package/cjs/index.js +435 -0
  115. package/cjs/input/index.d.ts +7 -0
  116. package/cjs/input/index.js +30 -0
  117. package/cjs/input/input-password.d.ts +98 -0
  118. package/cjs/input/input-password.js +80 -0
  119. package/cjs/input/input-props.d.ts +66 -0
  120. package/cjs/input/input-props.js +30 -0
  121. package/cjs/input/input.d.ts +18 -0
  122. package/cjs/input/input.js +318 -0
  123. package/cjs/input/input.styles.d.ts +10217 -0
  124. package/cjs/input/input.styles.js +878 -0
  125. package/cjs/input/password-icon.d.ts +6 -0
  126. package/cjs/input/password-icon.js +51 -0
  127. package/{dist/components → cjs}/link/icon.d.ts +0 -0
  128. package/cjs/link/icon.js +42 -0
  129. package/cjs/link/index.d.ts +5 -0
  130. package/cjs/link/index.js +15 -0
  131. package/cjs/link/link.d.ts +43 -0
  132. package/cjs/link/link.js +42 -0
  133. package/cjs/link/link.styles.d.ts +1854 -0
  134. package/cjs/link/link.styles.js +135 -0
  135. package/cjs/loading/index.d.ts +7 -0
  136. package/cjs/loading/index.js +24 -0
  137. package/{dist/components → cjs}/loading/loading.d.ts +11 -9
  138. package/cjs/loading/loading.js +80 -0
  139. package/cjs/loading/loading.styles.d.ts +5554 -0
  140. package/cjs/loading/loading.styles.js +438 -0
  141. package/cjs/loading/spinner.d.ts +17 -0
  142. package/cjs/loading/spinner.js +47 -0
  143. package/cjs/modal/index.d.ts +8 -0
  144. package/cjs/modal/index.js +28 -0
  145. package/cjs/modal/modal-body.d.ts +45 -0
  146. package/cjs/modal/modal-body.js +62 -0
  147. package/cjs/modal/modal-close-button.d.ts +13 -0
  148. package/cjs/modal/modal-close-button.js +49 -0
  149. package/cjs/modal/modal-context.d.ts +8 -0
  150. package/cjs/modal/modal-context.js +18 -0
  151. package/cjs/modal/modal-footer.d.ts +24 -0
  152. package/cjs/modal/modal-footer.js +69 -0
  153. package/cjs/modal/modal-header.d.ts +24 -0
  154. package/cjs/modal/modal-header.js +69 -0
  155. package/cjs/modal/modal-wrapper.d.ts +24 -0
  156. package/cjs/modal/modal-wrapper.js +153 -0
  157. package/cjs/modal/modal.d.ts +42 -0
  158. package/cjs/modal/modal.js +159 -0
  159. package/cjs/modal/modal.styles.d.ts +5560 -0
  160. package/cjs/modal/modal.styles.js +243 -0
  161. package/cjs/modal/use-modal.d.ts +11 -0
  162. package/cjs/modal/use-modal.js +25 -0
  163. package/cjs/pagination/index.d.ts +7 -0
  164. package/cjs/pagination/index.js +19 -0
  165. package/cjs/pagination/pagination-ellipsis.d.ts +11 -0
  166. package/cjs/pagination/pagination-ellipsis.js +86 -0
  167. package/cjs/pagination/pagination-highlight.d.ts +14 -0
  168. package/cjs/pagination/pagination-highlight.js +52 -0
  169. package/cjs/pagination/pagination-icon.d.ts +16 -0
  170. package/cjs/pagination/pagination-icon.js +59 -0
  171. package/cjs/pagination/pagination-item.d.ts +22 -0
  172. package/cjs/pagination/pagination-item.js +104 -0
  173. package/cjs/pagination/pagination.d.ts +46 -0
  174. package/cjs/pagination/pagination.js +169 -0
  175. package/cjs/pagination/pagination.styles.d.ts +5567 -0
  176. package/cjs/pagination/pagination.styles.js +361 -0
  177. package/cjs/progress/index.d.ts +5 -0
  178. package/cjs/progress/index.js +15 -0
  179. package/cjs/progress/progress.d.ts +65 -0
  180. package/cjs/progress/progress.js +101 -0
  181. package/cjs/progress/progress.styles.d.ts +1859 -0
  182. package/cjs/progress/progress.styles.js +165 -0
  183. package/cjs/radio/index.d.ts +4 -0
  184. package/cjs/radio/index.js +24 -0
  185. package/{dist/components → cjs}/radio/radio-context.d.ts +3 -2
  186. package/cjs/radio/radio-context.js +24 -0
  187. package/cjs/radio/radio-group.d.ts +30 -0
  188. package/cjs/radio/radio-group.js +78 -0
  189. package/{dist/components → cjs}/radio/radio.d.ts +19 -16
  190. package/cjs/radio/radio.js +156 -0
  191. package/cjs/radio/radio.styles.d.ts +5555 -0
  192. package/cjs/radio/radio.styles.js +240 -0
  193. package/cjs/row/index.d.ts +5 -0
  194. package/cjs/row/index.js +14 -0
  195. package/cjs/row/row.d.ts +21 -0
  196. package/cjs/row/row.js +54 -0
  197. package/cjs/row/row.styles.d.ts +928 -0
  198. package/cjs/row/row.styles.js +25 -0
  199. package/cjs/snippet/index.d.ts +5 -0
  200. package/cjs/snippet/index.js +16 -0
  201. package/{dist/components → cjs}/snippet/snippet-icon.d.ts +5 -2
  202. package/cjs/snippet/snippet-icon.js +52 -0
  203. package/cjs/snippet/snippet.d.ts +35 -0
  204. package/cjs/snippet/snippet.js +137 -0
  205. package/cjs/snippet/snippet.styles.d.ts +3702 -0
  206. package/cjs/snippet/snippet.styles.js +141 -0
  207. package/cjs/spacer/index.d.ts +5 -0
  208. package/cjs/spacer/index.js +14 -0
  209. package/cjs/spacer/spacer.d.ts +41 -0
  210. package/cjs/spacer/spacer.js +49 -0
  211. package/cjs/spacer/spacer.styles.d.ts +927 -0
  212. package/cjs/spacer/spacer.styles.js +24 -0
  213. package/cjs/switch/index.d.ts +5 -0
  214. package/cjs/switch/index.js +17 -0
  215. package/cjs/switch/switch.d.ts +82 -0
  216. package/cjs/switch/switch.js +142 -0
  217. package/cjs/switch/switch.styles.d.ts +3708 -0
  218. package/cjs/switch/switch.styles.js +283 -0
  219. package/cjs/text/child.d.ts +23 -0
  220. package/cjs/text/child.js +83 -0
  221. package/cjs/text/index.d.ts +4 -0
  222. package/cjs/text/index.js +14 -0
  223. package/{dist/components → cjs}/text/text.d.ts +13 -17
  224. package/cjs/text/text.js +124 -0
  225. package/cjs/text/text.styles.d.ts +927 -0
  226. package/cjs/text/text.styles.js +41 -0
  227. package/cjs/textarea/index.d.ts +3 -0
  228. package/cjs/textarea/index.js +12 -0
  229. package/cjs/textarea/textarea.d.ts +42 -0
  230. package/cjs/textarea/textarea.js +126 -0
  231. package/cjs/textarea/utils.d.ts +13 -0
  232. package/cjs/textarea/utils.js +126 -0
  233. package/cjs/theme/common.d.ts +1644 -0
  234. package/cjs/theme/common.js +503 -0
  235. package/cjs/theme/dark-theme.d.ts +33 -0
  236. package/cjs/theme/dark-theme.js +38 -0
  237. package/cjs/theme/index.js +31 -0
  238. package/cjs/theme/light-theme.d.ts +28 -0
  239. package/cjs/theme/light-theme.js +33 -0
  240. package/cjs/theme/stitches.config.d.ts +9004 -0
  241. package/cjs/theme/stitches.config.js +88 -0
  242. package/cjs/theme/theme-context.d.ts +5 -0
  243. package/cjs/theme/theme-context.js +22 -0
  244. package/cjs/theme/theme-provider.d.ts +14 -0
  245. package/cjs/theme/theme-provider.js +111 -0
  246. package/cjs/theme/types.d.ts +76 -0
  247. package/cjs/theme/types.js +3 -0
  248. package/cjs/theme/utils.d.ts +16 -0
  249. package/cjs/theme/utils.js +113 -0
  250. package/cjs/tooltip/index.d.ts +6 -0
  251. package/cjs/tooltip/index.js +17 -0
  252. package/cjs/tooltip/placement.d.ts +39 -0
  253. package/cjs/tooltip/placement.js +193 -0
  254. package/cjs/tooltip/tooltip-content.d.ts +27 -0
  255. package/cjs/tooltip/tooltip-content.js +135 -0
  256. package/cjs/tooltip/tooltip.d.ts +59 -0
  257. package/cjs/tooltip/tooltip.js +143 -0
  258. package/cjs/tooltip/tooltip.styles.d.ts +3703 -0
  259. package/cjs/tooltip/tooltip.styles.js +159 -0
  260. package/cjs/use-body-scroll/index.d.ts +3 -0
  261. package/cjs/use-body-scroll/index.js +12 -0
  262. package/cjs/use-body-scroll/use-body-scroll.d.ts +9 -0
  263. package/cjs/use-body-scroll/use-body-scroll.js +77 -0
  264. package/cjs/use-click-anywhere/index.d.ts +2 -0
  265. package/cjs/use-click-anywhere/index.js +12 -0
  266. package/cjs/use-click-anywhere/use-click-anywhere.d.ts +2 -0
  267. package/cjs/use-click-anywhere/use-click-anywhere.js +19 -0
  268. package/cjs/use-click-away/index.d.ts +2 -0
  269. package/cjs/use-click-away/index.js +12 -0
  270. package/cjs/use-click-away/use-click-away.d.ts +3 -0
  271. package/cjs/use-click-away/use-click-away.js +23 -0
  272. package/cjs/use-clipboard/index.d.ts +3 -0
  273. package/cjs/use-clipboard/index.js +12 -0
  274. package/{dist/hooks → cjs/use-clipboard}/use-clipboard.d.ts +0 -0
  275. package/cjs/use-clipboard/use-clipboard.js +57 -0
  276. package/cjs/use-current-state/index.d.ts +2 -0
  277. package/cjs/use-current-state/index.js +12 -0
  278. package/{dist/hooks → cjs/use-current-state}/use-current-state.d.ts +0 -0
  279. package/cjs/use-current-state/use-current-state.js +28 -0
  280. package/cjs/use-drip/index.d.ts +2 -0
  281. package/cjs/use-drip/index.js +12 -0
  282. package/cjs/use-drip/use-drip.d.ts +9 -0
  283. package/cjs/use-drip/use-drip.js +38 -0
  284. package/cjs/use-input/index.d.ts +2 -0
  285. package/cjs/use-input/index.js +12 -0
  286. package/cjs/use-input/use-input.d.ts +13 -0
  287. package/cjs/use-input/use-input.js +32 -0
  288. package/cjs/use-keyboard/codes.d.ts +92 -0
  289. package/cjs/use-keyboard/codes.js +104 -0
  290. package/cjs/use-keyboard/helper.d.ts +3 -0
  291. package/cjs/use-keyboard/helper.js +35 -0
  292. package/cjs/use-keyboard/index.d.ts +5 -0
  293. package/cjs/use-keyboard/index.js +15 -0
  294. package/cjs/use-keyboard/use-keyboard.d.ts +22 -0
  295. package/cjs/use-keyboard/use-keyboard.js +76 -0
  296. package/cjs/use-pagination/index.d.ts +20 -0
  297. package/cjs/use-pagination/index.js +88 -0
  298. package/cjs/use-portal/index.d.ts +2 -0
  299. package/cjs/use-portal/index.js +12 -0
  300. package/{dist/hooks → cjs/use-portal}/use-portal.d.ts +0 -0
  301. package/cjs/use-portal/use-portal.js +43 -0
  302. package/cjs/use-real-shape/index.d.ts +2 -0
  303. package/cjs/use-real-shape/index.js +12 -0
  304. package/{dist/hooks → cjs/use-real-shape}/use-real-shape.d.ts +0 -0
  305. package/cjs/use-real-shape/use-real-shape.js +55 -0
  306. package/cjs/use-resize/index.d.ts +2 -0
  307. package/cjs/use-resize/index.js +12 -0
  308. package/{dist/hooks → cjs/use-resize}/use-resize.d.ts +0 -0
  309. package/cjs/use-resize/use-resize.js +23 -0
  310. package/cjs/use-ssr/index.d.ts +2 -0
  311. package/cjs/use-ssr/index.js +12 -0
  312. package/{dist/hooks → cjs/use-ssr}/use-ssr.d.ts +0 -0
  313. package/cjs/use-ssr/use-ssr.js +25 -0
  314. package/cjs/use-theme/index.d.ts +2 -0
  315. package/cjs/use-theme/index.js +12 -0
  316. package/cjs/use-theme/use-theme.d.ts +3 -0
  317. package/cjs/use-theme/use-theme.js +16 -0
  318. package/cjs/use-warning/index.d.ts +2 -0
  319. package/cjs/use-warning/index.js +12 -0
  320. package/{dist/hooks → cjs/use-warning}/use-warning.d.ts +0 -0
  321. package/cjs/use-warning/use-warning.js +23 -0
  322. package/cjs/user/index.d.ts +6 -0
  323. package/cjs/user/index.js +21 -0
  324. package/cjs/user/user-link.d.ts +32 -0
  325. package/cjs/user/user-link.js +46 -0
  326. package/{dist/components → cjs}/user/user.d.ts +12 -7
  327. package/cjs/user/user.js +63 -0
  328. package/cjs/user/user.styles.d.ts +4621 -0
  329. package/cjs/user/user.styles.js +56 -0
  330. package/cjs/utils/assertion.d.ts +8 -0
  331. package/cjs/utils/assertion.js +42 -0
  332. package/cjs/utils/clear-icon.d.ts +16 -0
  333. package/cjs/utils/clear-icon.js +70 -0
  334. package/cjs/utils/clsx.d.ts +1 -0
  335. package/cjs/utils/clsx.js +57 -0
  336. package/cjs/utils/collections.d.ts +12 -0
  337. package/cjs/utils/collections.js +110 -0
  338. package/{dist → cjs}/utils/color.d.ts +6 -6
  339. package/cjs/utils/color.js +187 -0
  340. package/cjs/utils/css-transition.d.ts +27 -0
  341. package/cjs/utils/css-transition.js +76 -0
  342. package/cjs/utils/deep-merge.d.ts +1 -0
  343. package/cjs/utils/deep-merge.js +33 -0
  344. package/{dist → cjs}/utils/dimensions.d.ts +0 -0
  345. package/cjs/utils/dimensions.js +10 -0
  346. package/cjs/utils/dom.js +110 -0
  347. package/cjs/utils/drip.d.ts +969 -0
  348. package/cjs/utils/drip.js +116 -0
  349. package/cjs/utils/expand.d.ts +20 -0
  350. package/cjs/utils/expand.js +109 -0
  351. package/cjs/utils/icons.js +481 -0
  352. package/cjs/utils/numbers.d.ts +9 -0
  353. package/cjs/utils/numbers.js +23 -0
  354. package/cjs/utils/object.d.ts +11 -0
  355. package/cjs/utils/object.js +40 -0
  356. package/cjs/utils/prop-types.d.ts +54 -0
  357. package/cjs/utils/prop-types.js +56 -0
  358. package/cjs/utils/react.js +24 -0
  359. package/cjs/utils/strings.js +18 -0
  360. package/cjs/utils/types.d.js +3 -0
  361. package/{dist → cjs}/utils/with-defaults.d.ts +0 -0
  362. package/cjs/utils/with-defaults.js +13 -0
  363. package/code/package.json +6 -0
  364. package/col/package.json +6 -0
  365. package/collapse/package.json +6 -0
  366. package/container/package.json +6 -0
  367. package/css-baseline/package.json +6 -0
  368. package/divider/package.json +6 -0
  369. package/esm/avatar/avatar-group.d.ts +13 -0
  370. package/esm/avatar/avatar-group.js +35 -0
  371. package/esm/avatar/avatar-group.styles.d.ts +1851 -0
  372. package/esm/avatar/avatar-group.styles.js +52 -0
  373. package/esm/avatar/avatar.d.ts +21 -0
  374. package/esm/avatar/avatar.js +75 -0
  375. package/esm/avatar/avatar.styles.d.ts +937 -0
  376. package/esm/avatar/avatar.styles.js +334 -0
  377. package/esm/avatar/index.d.ts +7 -0
  378. package/esm/avatar/index.js +22 -0
  379. package/esm/backdrop/backdrop.d.ts +37 -0
  380. package/esm/backdrop/backdrop.js +137 -0
  381. package/esm/backdrop/backdrop.styles.d.ts +2776 -0
  382. package/esm/backdrop/backdrop.styles.js +119 -0
  383. package/esm/backdrop/index.d.ts +5 -0
  384. package/esm/backdrop/index.js +16 -0
  385. package/esm/button/button-group-context.d.ts +20 -0
  386. package/esm/button/button-group-context.js +21 -0
  387. package/esm/button/button-group.d.ts +34 -0
  388. package/esm/button/button-group.js +81 -0
  389. package/esm/button/button-group.styles.d.ts +932 -0
  390. package/esm/button/button-group.styles.js +136 -0
  391. package/esm/button/button-icon.d.ts +942 -0
  392. package/esm/button/button-icon.js +68 -0
  393. package/esm/button/button.d.ts +30 -0
  394. package/esm/button/button.js +145 -0
  395. package/esm/button/button.styles.d.ts +940 -0
  396. package/esm/button/button.styles.js +726 -0
  397. package/esm/button/index.d.ts +10 -0
  398. package/esm/button/index.js +25 -0
  399. package/esm/button/utils.d.ts +4 -0
  400. package/esm/button/utils.js +27 -0
  401. package/esm/card/card.d.ts +23 -0
  402. package/esm/card/card.js +117 -0
  403. package/esm/card/card.styles.d.ts +3707 -0
  404. package/esm/card/card.styles.js +267 -0
  405. package/esm/card/index.d.ts +5 -0
  406. package/esm/card/index.js +24 -0
  407. package/esm/checkbox/checkbox-context.d.ts +13 -0
  408. package/esm/checkbox/checkbox-context.js +25 -0
  409. package/esm/checkbox/checkbox-group.d.ts +29 -0
  410. package/esm/checkbox/checkbox-group.js +89 -0
  411. package/esm/checkbox/checkbox.d.ts +58 -0
  412. package/esm/checkbox/checkbox.js +192 -0
  413. package/esm/checkbox/checkbox.styles.d.ts +8351 -0
  414. package/esm/checkbox/checkbox.styles.js +563 -0
  415. package/esm/checkbox/index.d.ts +6 -0
  416. package/esm/checkbox/index.js +26 -0
  417. package/esm/code/code.d.ts +15 -0
  418. package/esm/code/code.js +42 -0
  419. package/esm/code/code.styles.d.ts +1848 -0
  420. package/esm/code/code.styles.js +14 -0
  421. package/esm/code/index.d.ts +5 -0
  422. package/esm/code/index.js +15 -0
  423. package/esm/col/col.d.ts +20 -0
  424. package/esm/col/col.js +46 -0
  425. package/esm/col/col.styles.d.ts +926 -0
  426. package/esm/col/col.styles.js +16 -0
  427. package/esm/col/index.d.ts +5 -0
  428. package/esm/col/index.js +14 -0
  429. package/esm/collapse/collapse-context.d.ts +9 -0
  430. package/esm/collapse/collapse-context.js +20 -0
  431. package/esm/collapse/collapse-group.d.ts +18 -0
  432. package/esm/collapse/collapse-group.js +90 -0
  433. package/esm/collapse/collapse-icon.d.ts +19 -0
  434. package/esm/collapse/collapse-icon.js +41 -0
  435. package/esm/collapse/collapse.d.ts +43 -0
  436. package/esm/collapse/collapse.js +191 -0
  437. package/esm/collapse/collapse.styles.d.ts +4637 -0
  438. package/esm/collapse/collapse.styles.js +256 -0
  439. package/esm/collapse/index.d.ts +6 -0
  440. package/esm/collapse/index.js +22 -0
  441. package/esm/container/container.d.ts +40 -0
  442. package/esm/container/container.js +91 -0
  443. package/esm/container/container.styles.d.ts +929 -0
  444. package/esm/container/container.styles.js +45 -0
  445. package/esm/container/index.d.ts +5 -0
  446. package/esm/container/index.js +14 -0
  447. package/esm/css-baseline/css-baseline.d.ts +9 -0
  448. package/esm/css-baseline/css-baseline.js +247 -0
  449. package/esm/css-baseline/index.d.ts +1 -0
  450. package/esm/css-baseline/index.js +11 -0
  451. package/esm/divider/divider.d.ts +22 -0
  452. package/esm/divider/divider.js +82 -0
  453. package/esm/divider/divider.styles.d.ts +1853 -0
  454. package/esm/divider/divider.styles.js +77 -0
  455. package/esm/divider/index.d.ts +5 -0
  456. package/esm/divider/index.js +15 -0
  457. package/esm/grid/grid-container.d.ts +22 -0
  458. package/esm/grid/grid-container.js +60 -0
  459. package/esm/grid/grid-item.d.ts +37 -0
  460. package/esm/grid/grid-item.js +123 -0
  461. package/esm/grid/grid.d.ts +9 -0
  462. package/esm/grid/grid.js +29 -0
  463. package/esm/grid/grid.styles.d.ts +1849 -0
  464. package/esm/grid/grid.styles.js +15 -0
  465. package/esm/grid/index.d.ts +7 -0
  466. package/esm/grid/index.js +18 -0
  467. package/esm/image/image.d.ts +29 -0
  468. package/esm/image/image.js +150 -0
  469. package/esm/image/image.skeleton.d.ts +19 -0
  470. package/esm/image/image.skeleton.js +50 -0
  471. package/esm/image/image.styles.d.ts +2775 -0
  472. package/esm/image/image.styles.js +57 -0
  473. package/esm/image/index.d.ts +5 -0
  474. package/esm/image/index.js +16 -0
  475. package/esm/index.d.ts +79 -0
  476. package/esm/index.js +435 -0
  477. package/esm/input/index.d.ts +7 -0
  478. package/esm/input/index.js +30 -0
  479. package/esm/input/input-password.d.ts +98 -0
  480. package/esm/input/input-password.js +80 -0
  481. package/esm/input/input-props.d.ts +66 -0
  482. package/esm/input/input-props.js +30 -0
  483. package/esm/input/input.d.ts +18 -0
  484. package/esm/input/input.js +318 -0
  485. package/esm/input/input.styles.d.ts +10217 -0
  486. package/esm/input/input.styles.js +878 -0
  487. package/esm/input/password-icon.d.ts +6 -0
  488. package/esm/input/password-icon.js +51 -0
  489. package/esm/link/icon.d.ts +4 -0
  490. package/esm/link/icon.js +42 -0
  491. package/esm/link/index.d.ts +5 -0
  492. package/esm/link/index.js +15 -0
  493. package/esm/link/link.d.ts +43 -0
  494. package/esm/link/link.js +42 -0
  495. package/esm/link/link.styles.d.ts +1854 -0
  496. package/esm/link/link.styles.js +135 -0
  497. package/esm/loading/index.d.ts +7 -0
  498. package/esm/loading/index.js +24 -0
  499. package/esm/loading/loading.d.ts +24 -0
  500. package/esm/loading/loading.js +80 -0
  501. package/esm/loading/loading.styles.d.ts +5554 -0
  502. package/esm/loading/loading.styles.js +438 -0
  503. package/esm/loading/spinner.d.ts +17 -0
  504. package/esm/loading/spinner.js +47 -0
  505. package/esm/modal/index.d.ts +8 -0
  506. package/esm/modal/index.js +28 -0
  507. package/esm/modal/modal-body.d.ts +45 -0
  508. package/esm/modal/modal-body.js +62 -0
  509. package/esm/modal/modal-close-button.d.ts +13 -0
  510. package/esm/modal/modal-close-button.js +49 -0
  511. package/esm/modal/modal-context.d.ts +8 -0
  512. package/esm/modal/modal-context.js +18 -0
  513. package/esm/modal/modal-footer.d.ts +24 -0
  514. package/esm/modal/modal-footer.js +69 -0
  515. package/esm/modal/modal-header.d.ts +24 -0
  516. package/esm/modal/modal-header.js +69 -0
  517. package/esm/modal/modal-wrapper.d.ts +24 -0
  518. package/esm/modal/modal-wrapper.js +153 -0
  519. package/esm/modal/modal.d.ts +42 -0
  520. package/esm/modal/modal.js +159 -0
  521. package/esm/modal/modal.styles.d.ts +5560 -0
  522. package/esm/modal/modal.styles.js +243 -0
  523. package/esm/modal/use-modal.d.ts +11 -0
  524. package/esm/modal/use-modal.js +25 -0
  525. package/esm/pagination/index.d.ts +7 -0
  526. package/esm/pagination/index.js +19 -0
  527. package/esm/pagination/pagination-ellipsis.d.ts +11 -0
  528. package/esm/pagination/pagination-ellipsis.js +86 -0
  529. package/esm/pagination/pagination-highlight.d.ts +14 -0
  530. package/esm/pagination/pagination-highlight.js +52 -0
  531. package/esm/pagination/pagination-icon.d.ts +16 -0
  532. package/esm/pagination/pagination-icon.js +59 -0
  533. package/esm/pagination/pagination-item.d.ts +22 -0
  534. package/esm/pagination/pagination-item.js +104 -0
  535. package/esm/pagination/pagination.d.ts +46 -0
  536. package/esm/pagination/pagination.js +169 -0
  537. package/esm/pagination/pagination.styles.d.ts +5567 -0
  538. package/esm/pagination/pagination.styles.js +361 -0
  539. package/esm/progress/index.d.ts +5 -0
  540. package/esm/progress/index.js +15 -0
  541. package/esm/progress/progress.d.ts +65 -0
  542. package/esm/progress/progress.js +101 -0
  543. package/esm/progress/progress.styles.d.ts +1859 -0
  544. package/esm/progress/progress.styles.js +165 -0
  545. package/esm/radio/index.d.ts +4 -0
  546. package/esm/radio/index.js +24 -0
  547. package/esm/radio/radio-context.d.ts +13 -0
  548. package/esm/radio/radio-context.js +24 -0
  549. package/esm/radio/radio-group.d.ts +30 -0
  550. package/esm/radio/radio-group.js +78 -0
  551. package/esm/radio/radio.d.ts +45 -0
  552. package/esm/radio/radio.js +156 -0
  553. package/esm/radio/radio.styles.d.ts +5555 -0
  554. package/esm/radio/radio.styles.js +240 -0
  555. package/esm/row/index.d.ts +5 -0
  556. package/esm/row/index.js +14 -0
  557. package/esm/row/row.d.ts +21 -0
  558. package/esm/row/row.js +54 -0
  559. package/esm/row/row.styles.d.ts +928 -0
  560. package/esm/row/row.styles.js +25 -0
  561. package/esm/snippet/index.d.ts +5 -0
  562. package/esm/snippet/index.js +16 -0
  563. package/esm/snippet/snippet-icon.d.ts +21 -0
  564. package/esm/snippet/snippet-icon.js +52 -0
  565. package/esm/snippet/snippet.d.ts +35 -0
  566. package/esm/snippet/snippet.js +137 -0
  567. package/esm/snippet/snippet.styles.d.ts +3702 -0
  568. package/esm/snippet/snippet.styles.js +141 -0
  569. package/esm/spacer/index.d.ts +5 -0
  570. package/esm/spacer/index.js +14 -0
  571. package/esm/spacer/spacer.d.ts +41 -0
  572. package/esm/spacer/spacer.js +49 -0
  573. package/esm/spacer/spacer.styles.d.ts +927 -0
  574. package/esm/spacer/spacer.styles.js +24 -0
  575. package/esm/switch/index.d.ts +5 -0
  576. package/esm/switch/index.js +17 -0
  577. package/esm/switch/switch.d.ts +82 -0
  578. package/esm/switch/switch.js +142 -0
  579. package/esm/switch/switch.styles.d.ts +3708 -0
  580. package/esm/switch/switch.styles.js +283 -0
  581. package/esm/text/child.d.ts +23 -0
  582. package/esm/text/child.js +83 -0
  583. package/esm/text/index.d.ts +4 -0
  584. package/esm/text/index.js +14 -0
  585. package/esm/text/text.d.ts +59 -0
  586. package/esm/text/text.js +124 -0
  587. package/esm/text/text.styles.d.ts +927 -0
  588. package/esm/text/text.styles.js +41 -0
  589. package/esm/textarea/index.d.ts +3 -0
  590. package/esm/textarea/index.js +12 -0
  591. package/esm/textarea/textarea.d.ts +42 -0
  592. package/esm/textarea/textarea.js +126 -0
  593. package/esm/textarea/utils.d.ts +13 -0
  594. package/esm/textarea/utils.js +126 -0
  595. package/esm/theme/common.d.ts +1644 -0
  596. package/esm/theme/common.js +503 -0
  597. package/esm/theme/dark-theme.d.ts +33 -0
  598. package/esm/theme/dark-theme.js +38 -0
  599. package/esm/theme/index.js +31 -0
  600. package/esm/theme/light-theme.d.ts +28 -0
  601. package/esm/theme/light-theme.js +33 -0
  602. package/esm/theme/stitches.config.d.ts +9004 -0
  603. package/esm/theme/stitches.config.js +88 -0
  604. package/esm/theme/theme-context.d.ts +5 -0
  605. package/esm/theme/theme-context.js +22 -0
  606. package/esm/theme/theme-provider.d.ts +14 -0
  607. package/esm/theme/theme-provider.js +111 -0
  608. package/esm/theme/types.d.ts +76 -0
  609. package/esm/theme/types.js +3 -0
  610. package/esm/theme/utils.d.ts +16 -0
  611. package/esm/theme/utils.js +113 -0
  612. package/esm/tooltip/index.d.ts +6 -0
  613. package/esm/tooltip/index.js +17 -0
  614. package/esm/tooltip/placement.d.ts +39 -0
  615. package/esm/tooltip/placement.js +193 -0
  616. package/esm/tooltip/tooltip-content.d.ts +27 -0
  617. package/esm/tooltip/tooltip-content.js +135 -0
  618. package/esm/tooltip/tooltip.d.ts +59 -0
  619. package/esm/tooltip/tooltip.js +143 -0
  620. package/esm/tooltip/tooltip.styles.d.ts +3703 -0
  621. package/esm/tooltip/tooltip.styles.js +159 -0
  622. package/esm/use-body-scroll/index.d.ts +3 -0
  623. package/esm/use-body-scroll/index.js +12 -0
  624. package/esm/use-body-scroll/use-body-scroll.d.ts +9 -0
  625. package/esm/use-body-scroll/use-body-scroll.js +77 -0
  626. package/esm/use-click-anywhere/index.d.ts +2 -0
  627. package/esm/use-click-anywhere/index.js +12 -0
  628. package/esm/use-click-anywhere/use-click-anywhere.d.ts +2 -0
  629. package/esm/use-click-anywhere/use-click-anywhere.js +19 -0
  630. package/esm/use-click-away/index.d.ts +2 -0
  631. package/esm/use-click-away/index.js +12 -0
  632. package/esm/use-click-away/use-click-away.d.ts +3 -0
  633. package/esm/use-click-away/use-click-away.js +23 -0
  634. package/esm/use-clipboard/index.d.ts +3 -0
  635. package/esm/use-clipboard/index.js +12 -0
  636. package/esm/use-clipboard/use-clipboard.d.ts +8 -0
  637. package/esm/use-clipboard/use-clipboard.js +57 -0
  638. package/esm/use-current-state/index.d.ts +2 -0
  639. package/esm/use-current-state/index.js +12 -0
  640. package/esm/use-current-state/use-current-state.d.ts +8 -0
  641. package/esm/use-current-state/use-current-state.js +28 -0
  642. package/esm/use-drip/index.d.ts +2 -0
  643. package/esm/use-drip/index.js +12 -0
  644. package/esm/use-drip/use-drip.d.ts +9 -0
  645. package/esm/use-drip/use-drip.js +38 -0
  646. package/esm/use-input/index.d.ts +2 -0
  647. package/esm/use-input/index.js +12 -0
  648. package/esm/use-input/use-input.d.ts +13 -0
  649. package/esm/use-input/use-input.js +32 -0
  650. package/esm/use-keyboard/codes.d.ts +92 -0
  651. package/esm/use-keyboard/codes.js +104 -0
  652. package/esm/use-keyboard/helper.d.ts +3 -0
  653. package/esm/use-keyboard/helper.js +35 -0
  654. package/esm/use-keyboard/index.d.ts +5 -0
  655. package/esm/use-keyboard/index.js +15 -0
  656. package/esm/use-keyboard/use-keyboard.d.ts +22 -0
  657. package/esm/use-keyboard/use-keyboard.js +76 -0
  658. package/esm/use-pagination/index.d.ts +20 -0
  659. package/esm/use-pagination/index.js +88 -0
  660. package/esm/use-portal/index.d.ts +2 -0
  661. package/esm/use-portal/index.js +12 -0
  662. package/esm/use-portal/use-portal.d.ts +2 -0
  663. package/esm/use-portal/use-portal.js +43 -0
  664. package/esm/use-real-shape/index.d.ts +2 -0
  665. package/esm/use-real-shape/index.js +12 -0
  666. package/esm/use-real-shape/use-real-shape.d.ts +9 -0
  667. package/esm/use-real-shape/use-real-shape.js +55 -0
  668. package/esm/use-resize/index.d.ts +2 -0
  669. package/esm/use-resize/index.js +12 -0
  670. package/esm/use-resize/use-resize.d.ts +2 -0
  671. package/esm/use-resize/use-resize.js +23 -0
  672. package/esm/use-ssr/index.d.ts +2 -0
  673. package/esm/use-ssr/index.js +12 -0
  674. package/esm/use-ssr/use-ssr.d.ts +6 -0
  675. package/esm/use-ssr/use-ssr.js +25 -0
  676. package/esm/use-theme/index.d.ts +2 -0
  677. package/esm/use-theme/index.js +12 -0
  678. package/esm/use-theme/use-theme.d.ts +3 -0
  679. package/esm/use-theme/use-theme.js +16 -0
  680. package/esm/use-warning/index.d.ts +2 -0
  681. package/esm/use-warning/index.js +12 -0
  682. package/esm/use-warning/use-warning.d.ts +2 -0
  683. package/esm/use-warning/use-warning.js +23 -0
  684. package/esm/user/index.d.ts +6 -0
  685. package/esm/user/index.js +21 -0
  686. package/esm/user/user-link.d.ts +32 -0
  687. package/esm/user/user-link.js +46 -0
  688. package/esm/user/user.d.ts +35 -0
  689. package/esm/user/user.js +63 -0
  690. package/esm/user/user.styles.d.ts +4621 -0
  691. package/esm/user/user.styles.js +56 -0
  692. package/esm/utils/assertion.d.ts +8 -0
  693. package/esm/utils/assertion.js +42 -0
  694. package/esm/utils/clear-icon.d.ts +16 -0
  695. package/esm/utils/clear-icon.js +70 -0
  696. package/esm/utils/clsx.d.ts +1 -0
  697. package/esm/utils/clsx.js +57 -0
  698. package/esm/utils/collections.d.ts +12 -0
  699. package/esm/utils/collections.js +110 -0
  700. package/esm/utils/color.d.ts +28 -0
  701. package/esm/utils/color.js +187 -0
  702. package/esm/utils/css-transition.d.ts +27 -0
  703. package/esm/utils/css-transition.js +76 -0
  704. package/esm/utils/deep-merge.d.ts +1 -0
  705. package/esm/utils/deep-merge.js +33 -0
  706. package/esm/utils/dimensions.d.ts +1 -0
  707. package/esm/utils/dimensions.js +10 -0
  708. package/esm/utils/dom.js +110 -0
  709. package/esm/utils/drip.d.ts +969 -0
  710. package/esm/utils/drip.js +116 -0
  711. package/esm/utils/expand.d.ts +20 -0
  712. package/esm/utils/expand.js +109 -0
  713. package/esm/utils/icons.js +481 -0
  714. package/esm/utils/numbers.d.ts +9 -0
  715. package/esm/utils/numbers.js +23 -0
  716. package/esm/utils/object.d.ts +11 -0
  717. package/esm/utils/object.js +40 -0
  718. package/esm/utils/prop-types.d.ts +54 -0
  719. package/esm/utils/prop-types.js +56 -0
  720. package/esm/utils/react.js +24 -0
  721. package/esm/utils/strings.js +18 -0
  722. package/esm/utils/types.d.js +3 -0
  723. package/esm/utils/with-defaults.d.ts +3 -0
  724. package/esm/utils/with-defaults.js +13 -0
  725. package/grid/package.json +6 -0
  726. package/image/package.json +6 -0
  727. package/input/package.json +6 -0
  728. package/link/package.json +6 -0
  729. package/loading/package.json +6 -0
  730. package/modal/package.json +6 -0
  731. package/package.json +17 -76
  732. package/pagination/package.json +6 -0
  733. package/progress/package.json +6 -0
  734. package/radio/package.json +6 -0
  735. package/row/package.json +6 -0
  736. package/snippet/package.json +6 -0
  737. package/spacer/package.json +6 -0
  738. package/switch/package.json +6 -0
  739. package/text/package.json +6 -0
  740. package/textarea/package.json +6 -0
  741. package/tooltip/package.json +6 -0
  742. package/umd/nextui.js +14060 -0
  743. package/umd/nextui.min.js +2 -0
  744. package/umd/nextui.min.js.LICENSE.txt +14 -0
  745. package/use-body-scroll/package.json +6 -0
  746. package/use-click-anywhere/package.json +6 -0
  747. package/use-click-away/package.json +6 -0
  748. package/use-clipboard/package.json +6 -0
  749. package/use-current-state/package.json +6 -0
  750. package/use-drip/package.json +6 -0
  751. package/use-input/package.json +6 -0
  752. package/use-keyboard/package.json +6 -0
  753. package/use-portal/package.json +6 -0
  754. package/use-real-shape/package.json +6 -0
  755. package/use-resize/package.json +6 -0
  756. package/use-ssr/package.json +6 -0
  757. package/use-theme/package.json +6 -0
  758. package/use-warning/package.json +6 -0
  759. package/user/package.json +6 -0
  760. package/utils/package.json +6 -0
  761. package/dist/components/avatar/avatar-group.d.ts +0 -17
  762. package/dist/components/avatar/avatar.d.ts +0 -33
  763. package/dist/components/avatar/index.d.ts +0 -2
  764. package/dist/components/button/button-group.d.ts +0 -53
  765. package/dist/components/button/button-icon.d.ts +0 -17
  766. package/dist/components/button/button-loading.d.ts +0 -18
  767. package/dist/components/button/button.d.ts +0 -51
  768. package/dist/components/button/button.drip.d.ts +0 -20
  769. package/dist/components/button/index.d.ts +0 -2
  770. package/dist/components/button/styles.d.ts +0 -40
  771. package/dist/components/card/card-content.d.ts +0 -13
  772. package/dist/components/card/card-footer.d.ts +0 -16
  773. package/dist/components/card/card.d.ts +0 -33
  774. package/dist/components/card/index.d.ts +0 -2
  775. package/dist/components/card/styles.d.ts +0 -12
  776. package/dist/components/checkbox/checkbox-group.d.ts +0 -31
  777. package/dist/components/checkbox/index.d.ts +0 -5
  778. package/dist/components/checkbox/styles.d.ts +0 -4
  779. package/dist/components/code/code.d.ts +0 -17
  780. package/dist/components/code/index.d.ts +0 -4
  781. package/dist/components/col/index.d.ts +0 -4
  782. package/dist/components/container/container.d.ts +0 -39
  783. package/dist/components/container/index.d.ts +0 -2
  784. package/dist/components/divider/divider.d.ts +0 -30
  785. package/dist/components/divider/index.d.ts +0 -2
  786. package/dist/components/grid/grid-container.d.ts +0 -18
  787. package/dist/components/grid/grid.d.ts +0 -16
  788. package/dist/components/grid/index.d.ts +0 -2
  789. package/dist/components/image/image-browser-https-icon.d.ts +0 -3
  790. package/dist/components/image/image-browser.d.ts +0 -31
  791. package/dist/components/image/image.skeleton.d.ts +0 -12
  792. package/dist/components/image/index.d.ts +0 -2
  793. package/dist/components/image/styles.d.ts +0 -9
  794. package/dist/components/index.d.ts +0 -20
  795. package/dist/components/link/index.d.ts +0 -4
  796. package/dist/components/link/link.d.ts +0 -39
  797. package/dist/components/loading/index.d.ts +0 -2
  798. package/dist/components/loading/spinner.d.ts +0 -16
  799. package/dist/components/loading/styles.d.ts +0 -18
  800. package/dist/components/radio/index.d.ts +0 -2
  801. package/dist/components/radio/radio-description.d.ts +0 -13
  802. package/dist/components/radio/radio-group.d.ts +0 -33
  803. package/dist/components/row/index.d.ts +0 -4
  804. package/dist/components/row/row.d.ts +0 -32
  805. package/dist/components/snippet/index.d.ts +0 -2
  806. package/dist/components/snippet/snippet.d.ts +0 -36
  807. package/dist/components/snippet/styles.d.ts +0 -8
  808. package/dist/components/spacer/index.d.ts +0 -4
  809. package/dist/components/spacer/spacer.d.ts +0 -27
  810. package/dist/components/switch/index.d.ts +0 -2
  811. package/dist/components/switch/styles.d.ts +0 -6
  812. package/dist/components/switch/switch.d.ts +0 -50
  813. package/dist/components/text/child.d.ts +0 -22
  814. package/dist/components/text/index.d.ts +0 -4
  815. package/dist/components/user/index.d.ts +0 -2
  816. package/dist/components/user/user-link.d.ts +0 -16
  817. package/dist/hooks/index.d.ts +0 -5
  818. package/dist/hooks/use-theme.d.ts +0 -3
  819. package/dist/index.d.ts +0 -3
  820. package/dist/index.js +0 -5716
  821. package/dist/theme/common.d.ts +0 -63
  822. package/dist/theme/dark.d.ts +0 -8
  823. package/dist/theme/default.d.ts +0 -8
  824. package/dist/theme/index.d.ts +0 -2
  825. package/dist/theme/shared.d.ts +0 -4
  826. package/dist/theme/theme-context.d.ts +0 -4
  827. package/dist/theme/theme-provider.d.ts +0 -7
  828. package/dist/theme/types.d.ts +0 -94
  829. package/dist/theme/utils.d.ts +0 -7
  830. package/dist/utils/collections.d.ts +0 -4
  831. package/dist/utils/object.d.ts +0 -5
  832. package/dist/utils/prop-types.d.ts +0 -37
@@ -0,0 +1,1644 @@
1
+ import type * as Stitches from '@stitches/react';
2
+ export declare const defaultTokens: {
3
+ fonts: {
4
+ sans: string;
5
+ mono: string;
6
+ };
7
+ fontSizes: {
8
+ tiny: string;
9
+ xs: string;
10
+ base: string;
11
+ sm: string;
12
+ md: string;
13
+ lg: string;
14
+ xl: string;
15
+ };
16
+ fontWeights: {
17
+ hairline: number;
18
+ thin: number;
19
+ light: number;
20
+ normal: number;
21
+ medium: number;
22
+ semibold: number;
23
+ bold: number;
24
+ extrabold: number;
25
+ black: number;
26
+ };
27
+ lineHeights: {
28
+ xs: number;
29
+ sm: number;
30
+ md: number;
31
+ lg: number;
32
+ xl: number;
33
+ };
34
+ letterSpacings: {
35
+ tighter: string;
36
+ tight: string;
37
+ normal: string;
38
+ wide: string;
39
+ wider: string;
40
+ widest: string;
41
+ };
42
+ space: {
43
+ 0: string;
44
+ xs: string;
45
+ sm: string;
46
+ md: string;
47
+ lg: string;
48
+ xl: string;
49
+ px: string;
50
+ 1: string;
51
+ 2: string;
52
+ 3: string;
53
+ 4: string;
54
+ 5: string;
55
+ 6: string;
56
+ 7: string;
57
+ 8: string;
58
+ 9: string;
59
+ 10: string;
60
+ 11: string;
61
+ 12: string;
62
+ 13: string;
63
+ 14: string;
64
+ 15: string;
65
+ 16: string;
66
+ 17: string;
67
+ 18: string;
68
+ 20: string;
69
+ 24: string;
70
+ 28: string;
71
+ 32: string;
72
+ 36: string;
73
+ 40: string;
74
+ 44: string;
75
+ 48: string;
76
+ 52: string;
77
+ 56: string;
78
+ 60: string;
79
+ 64: string;
80
+ 72: string;
81
+ 80: string;
82
+ 96: string;
83
+ };
84
+ radii: {
85
+ xs: string;
86
+ sm: string;
87
+ md: string;
88
+ base: string;
89
+ lg: string;
90
+ xl: string;
91
+ squared: string;
92
+ rounded: string;
93
+ pill: string;
94
+ };
95
+ zIndices: {
96
+ 1: string;
97
+ 2: string;
98
+ 3: string;
99
+ 4: string;
100
+ 5: string;
101
+ 10: string;
102
+ max: string;
103
+ };
104
+ borderWeights: {
105
+ light: string;
106
+ normal: string;
107
+ bold: string;
108
+ extrabold: string;
109
+ black: string;
110
+ };
111
+ transitions: {
112
+ default: string;
113
+ };
114
+ breakpoints: {
115
+ xs: string;
116
+ sm: string;
117
+ md: string;
118
+ lg: string;
119
+ xl: string;
120
+ };
121
+ };
122
+ export declare const defaultColors: {
123
+ white: string;
124
+ black: string;
125
+ blue100: string;
126
+ blue200: string;
127
+ blue300: string;
128
+ blue400: string;
129
+ blue500: string;
130
+ blue600: string;
131
+ blue700: string;
132
+ blue800: string;
133
+ blue900: string;
134
+ purple100: string;
135
+ purple200: string;
136
+ purple300: string;
137
+ purple400: string;
138
+ purple500: string;
139
+ purple600: string;
140
+ purple700: string;
141
+ purple800: string;
142
+ purple900: string;
143
+ green100: string;
144
+ green200: string;
145
+ green300: string;
146
+ green400: string;
147
+ green500: string;
148
+ green600: string;
149
+ green700: string;
150
+ green800: string;
151
+ green900: string;
152
+ yellow100: string;
153
+ yellow200: string;
154
+ yellow300: string;
155
+ yellow400: string;
156
+ yellow500: string;
157
+ yellow600: string;
158
+ yellow700: string;
159
+ yellow800: string;
160
+ yellow900: string;
161
+ red100: string;
162
+ red200: string;
163
+ red300: string;
164
+ red400: string;
165
+ red500: string;
166
+ red600: string;
167
+ red700: string;
168
+ red800: string;
169
+ red900: string;
170
+ cyan100: string;
171
+ cyan200: string;
172
+ cyan300: string;
173
+ cyan400: string;
174
+ cyan500: string;
175
+ cyan600: string;
176
+ cyan700: string;
177
+ cyan800: string;
178
+ cyan900: string;
179
+ pink100: string;
180
+ pink200: string;
181
+ pink300: string;
182
+ pink400: string;
183
+ pink500: string;
184
+ pink600: string;
185
+ pink700: string;
186
+ pink800: string;
187
+ pink900: string;
188
+ gray100: string;
189
+ gray200: string;
190
+ gray300: string;
191
+ gray400: string;
192
+ gray500: string;
193
+ gray600: string;
194
+ gray700: string;
195
+ gray800: string;
196
+ gray900: string;
197
+ primaryLight: string;
198
+ primary: string;
199
+ primaryDark: string;
200
+ secondaryLight: string;
201
+ secondary: string;
202
+ secondaryDark: string;
203
+ successLight: string;
204
+ success: string;
205
+ successDark: string;
206
+ warningLight: string;
207
+ warning: string;
208
+ warningDark: string;
209
+ errorLight: string;
210
+ error: string;
211
+ errorDark: string;
212
+ gradient: string;
213
+ link: string;
214
+ };
215
+ export declare const defaultMedia: {
216
+ xs: string;
217
+ sm: string;
218
+ md: string;
219
+ lg: string;
220
+ xl: string;
221
+ xsMax: string;
222
+ smMax: string;
223
+ mdMax: string;
224
+ lgMax: string;
225
+ xlMax: string;
226
+ motion: string;
227
+ safari: string;
228
+ hover: string;
229
+ dark: string;
230
+ light: string;
231
+ };
232
+ export declare const defaultUtils: {
233
+ p: (value: Stitches.PropertyValue<'padding'>) => {
234
+ padding: {
235
+ readonly [$$PropertyValue]: "padding";
236
+ };
237
+ };
238
+ pt: (value: Stitches.PropertyValue<'paddingTop'>) => {
239
+ paddingTop: {
240
+ readonly [$$PropertyValue]: "paddingTop";
241
+ };
242
+ };
243
+ pr: (value: Stitches.PropertyValue<'paddingRight'>) => {
244
+ paddingRight: {
245
+ readonly [$$PropertyValue]: "paddingRight";
246
+ };
247
+ };
248
+ pb: (value: Stitches.PropertyValue<'paddingBottom'>) => {
249
+ paddingBottom: {
250
+ readonly [$$PropertyValue]: "paddingBottom";
251
+ };
252
+ };
253
+ pl: (value: Stitches.PropertyValue<'paddingLeft'>) => {
254
+ paddingLeft: {
255
+ readonly [$$PropertyValue]: "paddingLeft";
256
+ };
257
+ };
258
+ px: (value: Stitches.PropertyValue<'paddingLeft'>) => {
259
+ paddingLeft: {
260
+ readonly [$$PropertyValue]: "paddingLeft";
261
+ };
262
+ paddingRight: {
263
+ readonly [$$PropertyValue]: "paddingLeft";
264
+ };
265
+ };
266
+ py: (value: Stitches.PropertyValue<'paddingTop'>) => {
267
+ paddingTop: {
268
+ readonly [$$PropertyValue]: "paddingTop";
269
+ };
270
+ paddingBottom: {
271
+ readonly [$$PropertyValue]: "paddingTop";
272
+ };
273
+ };
274
+ m: (value: Stitches.PropertyValue<'margin'>) => {
275
+ margin: {
276
+ readonly [$$PropertyValue]: "margin";
277
+ };
278
+ };
279
+ mt: (value: Stitches.PropertyValue<'marginTop'>) => {
280
+ marginTop: {
281
+ readonly [$$PropertyValue]: "marginTop";
282
+ };
283
+ };
284
+ mr: (value: Stitches.PropertyValue<'marginRight'>) => {
285
+ marginRight: {
286
+ readonly [$$PropertyValue]: "marginRight";
287
+ };
288
+ };
289
+ mb: (value: Stitches.PropertyValue<'marginBottom'>) => {
290
+ marginBottom: {
291
+ readonly [$$PropertyValue]: "marginBottom";
292
+ };
293
+ };
294
+ ml: (value: Stitches.PropertyValue<'marginLeft'>) => {
295
+ marginLeft: {
296
+ readonly [$$PropertyValue]: "marginLeft";
297
+ };
298
+ };
299
+ mx: (value: Stitches.PropertyValue<'marginLeft'>) => {
300
+ marginLeft: {
301
+ readonly [$$PropertyValue]: "marginLeft";
302
+ };
303
+ marginRight: {
304
+ readonly [$$PropertyValue]: "marginLeft";
305
+ };
306
+ };
307
+ my: (value: Stitches.PropertyValue<'marginTop'>) => {
308
+ marginTop: {
309
+ readonly [$$PropertyValue]: "marginTop";
310
+ };
311
+ marginBottom: {
312
+ readonly [$$PropertyValue]: "marginTop";
313
+ };
314
+ };
315
+ ta: (value: Stitches.PropertyValue<'textAlign'>) => {
316
+ textAlign: {
317
+ readonly [$$PropertyValue]: "textAlign";
318
+ };
319
+ };
320
+ tt: (value: Stitches.PropertyValue<'textTransform'>) => {
321
+ textTransform: {
322
+ readonly [$$PropertyValue]: "textTransform";
323
+ };
324
+ };
325
+ to: (value: Stitches.PropertyValue<'textOverflow'>) => {
326
+ textOverflow: {
327
+ readonly [$$PropertyValue]: "textOverflow";
328
+ };
329
+ };
330
+ d: (value: Stitches.PropertyValue<'display'>) => {
331
+ display: {
332
+ readonly [$$PropertyValue]: "display";
333
+ };
334
+ };
335
+ dflex: (value: Stitches.PropertyValue<'alignItems'>) => {
336
+ display: string;
337
+ alignItems: {
338
+ readonly [$$PropertyValue]: "alignItems";
339
+ };
340
+ justifyContent: {
341
+ readonly [$$PropertyValue]: "alignItems";
342
+ };
343
+ };
344
+ fd: (value: Stitches.PropertyValue<'flexDirection'>) => {
345
+ flexDirection: {
346
+ readonly [$$PropertyValue]: "flexDirection";
347
+ };
348
+ };
349
+ fw: (value: Stitches.PropertyValue<'flexWrap'>) => {
350
+ flexWrap: {
351
+ readonly [$$PropertyValue]: "flexWrap";
352
+ };
353
+ };
354
+ ai: (value: Stitches.PropertyValue<'alignItems'>) => {
355
+ alignItems: {
356
+ readonly [$$PropertyValue]: "alignItems";
357
+ };
358
+ };
359
+ ac: (value: Stitches.PropertyValue<'alignContent'>) => {
360
+ alignContent: {
361
+ readonly [$$PropertyValue]: "alignContent";
362
+ };
363
+ };
364
+ jc: (value: Stitches.PropertyValue<'justifyContent'>) => {
365
+ justifyContent: {
366
+ readonly [$$PropertyValue]: "justifyContent";
367
+ };
368
+ };
369
+ as: (value: Stitches.PropertyValue<'alignSelf'>) => {
370
+ alignSelf: {
371
+ readonly [$$PropertyValue]: "alignSelf";
372
+ };
373
+ };
374
+ fg: (value: Stitches.PropertyValue<'flexGrow'>) => {
375
+ flexGrow: {
376
+ readonly [$$PropertyValue]: "flexGrow";
377
+ };
378
+ };
379
+ fs: (value: Stitches.PropertyValue<'fontSize'>) => {
380
+ fontSize: {
381
+ readonly [$$PropertyValue]: "fontSize";
382
+ };
383
+ };
384
+ fb: (value: Stitches.PropertyValue<'flexBasis'>) => {
385
+ flexBasis: {
386
+ readonly [$$PropertyValue]: "flexBasis";
387
+ };
388
+ };
389
+ bc: (value: Stitches.PropertyValue<'backgroundColor'>) => {
390
+ backgroundColor: {
391
+ readonly [$$PropertyValue]: "backgroundColor";
392
+ };
393
+ };
394
+ bf: (value: Stitches.PropertyValue<'backdropFilter'>) => {
395
+ backdropFilter: {
396
+ readonly [$$PropertyValue]: "backdropFilter";
397
+ };
398
+ };
399
+ bg: (value: Stitches.PropertyValue<'backgroundColor'>) => {
400
+ background: {
401
+ readonly [$$PropertyValue]: "backgroundColor";
402
+ };
403
+ };
404
+ bgBlur: (value: Stitches.PropertyValue<'backgroundColor'>) => {
405
+ bf: string;
406
+ bg: string;
407
+ };
408
+ bgColor: (value: Stitches.PropertyValue<'backgroundColor'>) => {
409
+ backgroundColor: {
410
+ readonly [$$PropertyValue]: "backgroundColor";
411
+ };
412
+ };
413
+ backgroundClip: (value: Stitches.PropertyValue<'backgroundClip'>) => {
414
+ WebkitBackgroundClip: {
415
+ readonly [$$PropertyValue]: "backgroundClip";
416
+ };
417
+ backgroundClip: {
418
+ readonly [$$PropertyValue]: "backgroundClip";
419
+ };
420
+ };
421
+ bgClip: (value: Stitches.PropertyValue<'backgroundClip'>) => {
422
+ WebkitBackgroundClip: {
423
+ readonly [$$PropertyValue]: "backgroundClip";
424
+ };
425
+ backgroundClip: {
426
+ readonly [$$PropertyValue]: "backgroundClip";
427
+ };
428
+ };
429
+ br: (value: Stitches.PropertyValue<'borderRadius'>) => {
430
+ borderRadius: {
431
+ readonly [$$PropertyValue]: "borderRadius";
432
+ };
433
+ };
434
+ bw: (value: Stitches.PropertyValue<'borderWidth'>) => {
435
+ borderWidth: {
436
+ readonly [$$PropertyValue]: "borderWidth";
437
+ };
438
+ };
439
+ btrr: (value: Stitches.PropertyValue<'borderTopRightRadius'>) => {
440
+ borderTopRightRadius: {
441
+ readonly [$$PropertyValue]: "borderTopRightRadius";
442
+ };
443
+ };
444
+ bbrr: (value: Stitches.PropertyValue<'borderBottomRightRadius'>) => {
445
+ borderBottomRightRadius: {
446
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
447
+ };
448
+ };
449
+ bblr: (value: Stitches.PropertyValue<'borderBottomLeftRadius'>) => {
450
+ borderBottomLeftRadius: {
451
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
452
+ };
453
+ };
454
+ btlr: (value: Stitches.PropertyValue<'borderTopLeftRadius'>) => {
455
+ borderTopLeftRadius: {
456
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
457
+ };
458
+ };
459
+ bs: (value: Stitches.PropertyValue<'boxShadow'>) => {
460
+ boxShadow: {
461
+ readonly [$$PropertyValue]: "boxShadow";
462
+ };
463
+ };
464
+ normalShadow: (value: Stitches.PropertyValue<'backgroundColor'>) => {
465
+ boxShadow: string;
466
+ };
467
+ normalShadowVar: (value: Stitches.PropertyValue<'backgroundColor'>) => {
468
+ boxShadow: string;
469
+ };
470
+ lh: (value: Stitches.PropertyValue<'lineHeight'>) => {
471
+ lineHeight: {
472
+ readonly [$$PropertyValue]: "lineHeight";
473
+ };
474
+ };
475
+ ov: (value: Stitches.PropertyValue<'overflow'>) => {
476
+ overflow: {
477
+ readonly [$$PropertyValue]: "overflow";
478
+ };
479
+ };
480
+ ox: (value: Stitches.PropertyValue<'overflowX'>) => {
481
+ overflowX: {
482
+ readonly [$$PropertyValue]: "overflowX";
483
+ };
484
+ };
485
+ oy: (value: Stitches.PropertyValue<'overflowY'>) => {
486
+ overflowY: {
487
+ readonly [$$PropertyValue]: "overflowY";
488
+ };
489
+ };
490
+ pe: (value: Stitches.PropertyValue<'pointerEvents'>) => {
491
+ pointerEvents: {
492
+ readonly [$$PropertyValue]: "pointerEvents";
493
+ };
494
+ };
495
+ events: (value: Stitches.PropertyValue<'pointerEvents'>) => {
496
+ pointerEvents: {
497
+ readonly [$$PropertyValue]: "pointerEvents";
498
+ };
499
+ };
500
+ us: (value: Stitches.PropertyValue<'userSelect'>) => {
501
+ WebkitUserSelect: {
502
+ readonly [$$PropertyValue]: "userSelect";
503
+ };
504
+ userSelect: {
505
+ readonly [$$PropertyValue]: "userSelect";
506
+ };
507
+ };
508
+ userSelect: (value: Stitches.PropertyValue<'userSelect'>) => {
509
+ WebkitUserSelect: {
510
+ readonly [$$PropertyValue]: "userSelect";
511
+ };
512
+ userSelect: {
513
+ readonly [$$PropertyValue]: "userSelect";
514
+ };
515
+ };
516
+ w: (value: Stitches.PropertyValue<'width'>) => {
517
+ width: {
518
+ readonly [$$PropertyValue]: "width";
519
+ };
520
+ };
521
+ h: (value: Stitches.PropertyValue<'height'>) => {
522
+ height: {
523
+ readonly [$$PropertyValue]: "height";
524
+ };
525
+ };
526
+ mw: (value: Stitches.PropertyValue<'maxWidth'>) => {
527
+ maxWidth: {
528
+ readonly [$$PropertyValue]: "maxWidth";
529
+ };
530
+ };
531
+ maxW: (value: Stitches.PropertyValue<'maxWidth'>) => {
532
+ maxWidth: {
533
+ readonly [$$PropertyValue]: "maxWidth";
534
+ };
535
+ };
536
+ mh: (value: Stitches.PropertyValue<'maxHeight'>) => {
537
+ maxHeight: {
538
+ readonly [$$PropertyValue]: "maxHeight";
539
+ };
540
+ };
541
+ maxH: (value: Stitches.PropertyValue<'maxHeight'>) => {
542
+ maxHeight: {
543
+ readonly [$$PropertyValue]: "maxHeight";
544
+ };
545
+ };
546
+ size: (value: Stitches.PropertyValue<'width'>) => {
547
+ width: {
548
+ readonly [$$PropertyValue]: "width";
549
+ };
550
+ height: {
551
+ readonly [$$PropertyValue]: "width";
552
+ };
553
+ };
554
+ minSize: (value: Stitches.PropertyValue<'width'>) => {
555
+ minWidth: {
556
+ readonly [$$PropertyValue]: "width";
557
+ };
558
+ minHeight: {
559
+ readonly [$$PropertyValue]: "width";
560
+ };
561
+ width: {
562
+ readonly [$$PropertyValue]: "width";
563
+ };
564
+ height: {
565
+ readonly [$$PropertyValue]: "width";
566
+ };
567
+ };
568
+ sizeMin: (value: Stitches.PropertyValue<'width'>) => {
569
+ minWidth: {
570
+ readonly [$$PropertyValue]: "width";
571
+ };
572
+ minHeight: {
573
+ readonly [$$PropertyValue]: "width";
574
+ };
575
+ width: {
576
+ readonly [$$PropertyValue]: "width";
577
+ };
578
+ height: {
579
+ readonly [$$PropertyValue]: "width";
580
+ };
581
+ };
582
+ maxSize: (value: Stitches.PropertyValue<'width'>) => {
583
+ maxWidth: {
584
+ readonly [$$PropertyValue]: "width";
585
+ };
586
+ maxHeight: {
587
+ readonly [$$PropertyValue]: "width";
588
+ };
589
+ };
590
+ sizeMax: (value: Stitches.PropertyValue<'width'>) => {
591
+ maxWidth: {
592
+ readonly [$$PropertyValue]: "width";
593
+ };
594
+ maxHeight: {
595
+ readonly [$$PropertyValue]: "width";
596
+ };
597
+ };
598
+ appearance: (value: Stitches.PropertyValue<'appearance'>) => {
599
+ WebkitAppearance: {
600
+ readonly [$$PropertyValue]: "appearance";
601
+ };
602
+ appearance: {
603
+ readonly [$$PropertyValue]: "appearance";
604
+ };
605
+ };
606
+ scale: (value: Stitches.PropertyValue<'scale'>) => {
607
+ transform: string;
608
+ };
609
+ linearGradient: (value: Stitches.PropertyValue<'backgroundImage'>) => {
610
+ backgroundImage: string;
611
+ };
612
+ tdl: (value: Stitches.PropertyValue<'textDecorationLine'>) => {
613
+ textDecorationLine: {
614
+ readonly [$$PropertyValue]: "textDecorationLine";
615
+ };
616
+ };
617
+ textGradient: (value: Stitches.PropertyValue<'backgroundImage'>) => {
618
+ backgroundImage: string;
619
+ WebkitBackgroundClip: string;
620
+ WebkitTextFillColor: string;
621
+ };
622
+ };
623
+ export declare const defaultThemeMap: {
624
+ width: string;
625
+ height: string;
626
+ minWidth: string;
627
+ maxWidth: string;
628
+ minHeight: string;
629
+ maxHeight: string;
630
+ flexBasis: string;
631
+ gridTemplateColumns: string;
632
+ gridTemplateRows: string;
633
+ blockSize: string;
634
+ minBlockSize: string;
635
+ maxBlockSize: string;
636
+ inlineSize: string;
637
+ minInlineSize: string;
638
+ maxInlineSize: string;
639
+ borderWidth: string;
640
+ gap: "space";
641
+ gridGap: "space";
642
+ columnGap: "space";
643
+ gridColumnGap: "space";
644
+ rowGap: "space";
645
+ gridRowGap: "space";
646
+ inset: "space";
647
+ insetBlock: "space";
648
+ insetBlockEnd: "space";
649
+ insetBlockStart: "space";
650
+ insetInline: "space";
651
+ insetInlineEnd: "space";
652
+ insetInlineStart: "space";
653
+ margin: "space";
654
+ marginTop: "space";
655
+ marginRight: "space";
656
+ marginBottom: "space";
657
+ marginLeft: "space";
658
+ marginBlock: "space";
659
+ marginBlockEnd: "space";
660
+ marginBlockStart: "space";
661
+ marginInline: "space";
662
+ marginInlineEnd: "space";
663
+ marginInlineStart: "space";
664
+ padding: "space";
665
+ paddingTop: "space";
666
+ paddingRight: "space";
667
+ paddingBottom: "space";
668
+ paddingLeft: "space";
669
+ paddingBlock: "space";
670
+ paddingBlockEnd: "space";
671
+ paddingBlockStart: "space";
672
+ paddingInline: "space";
673
+ paddingInlineEnd: "space";
674
+ paddingInlineStart: "space";
675
+ scrollMargin: "space";
676
+ scrollMarginTop: "space";
677
+ scrollMarginRight: "space";
678
+ scrollMarginBottom: "space";
679
+ scrollMarginLeft: "space";
680
+ scrollMarginBlock: "space";
681
+ scrollMarginBlockEnd: "space";
682
+ scrollMarginBlockStart: "space";
683
+ scrollMarginInline: "space";
684
+ scrollMarginInlineEnd: "space";
685
+ scrollMarginInlineStart: "space";
686
+ scrollPadding: "space";
687
+ scrollPaddingTop: "space";
688
+ scrollPaddingRight: "space";
689
+ scrollPaddingBottom: "space";
690
+ scrollPaddingLeft: "space";
691
+ scrollPaddingBlock: "space";
692
+ scrollPaddingBlockEnd: "space";
693
+ scrollPaddingBlockStart: "space";
694
+ scrollPaddingInline: "space";
695
+ scrollPaddingInlineEnd: "space";
696
+ scrollPaddingInlineStart: "space";
697
+ top: "space";
698
+ right: "space";
699
+ bottom: "space";
700
+ left: "space";
701
+ fontSize: "fontSizes";
702
+ background: "colors";
703
+ backgroundColor: "colors";
704
+ backgroundImage: "colors";
705
+ borderImage: "colors";
706
+ border: "colors";
707
+ borderBlock: "colors";
708
+ borderBlockEnd: "colors";
709
+ borderBlockStart: "colors";
710
+ borderBottom: "colors";
711
+ borderBottomColor: "colors";
712
+ borderColor: "colors";
713
+ borderInline: "colors";
714
+ borderInlineEnd: "colors";
715
+ borderInlineStart: "colors";
716
+ borderLeft: "colors";
717
+ borderLeftColor: "colors";
718
+ borderRight: "colors";
719
+ borderRightColor: "colors";
720
+ borderTop: "colors";
721
+ borderTopColor: "colors";
722
+ caretColor: "colors";
723
+ color: "colors";
724
+ columnRuleColor: "colors";
725
+ outline: "colors";
726
+ outlineColor: "colors";
727
+ fill: "colors";
728
+ stroke: "colors";
729
+ textDecorationColor: "colors";
730
+ fontFamily: "fonts";
731
+ fontWeight: "fontWeights";
732
+ lineHeight: "lineHeights";
733
+ letterSpacing: "letterSpacings";
734
+ borderTopWidth: "borderWidths";
735
+ borderLeftWidth: "borderWidths";
736
+ borderRightWidth: "borderWidths";
737
+ borderBottomWidth: "borderWidths";
738
+ borderStyle: "borderStyles";
739
+ borderTopStyle: "borderStyles";
740
+ borderLeftStyle: "borderStyles";
741
+ borderRightStyle: "borderStyles";
742
+ borderBottomStyle: "borderStyles";
743
+ borderRadius: "radii";
744
+ borderTopLeftRadius: "radii";
745
+ borderTopRightRadius: "radii";
746
+ borderBottomRightRadius: "radii";
747
+ borderBottomLeftRadius: "radii";
748
+ boxShadow: "shadows";
749
+ textShadow: "shadows";
750
+ transition: "transitions";
751
+ zIndex: "zIndices";
752
+ };
753
+ declare const _default: {
754
+ prefix: string;
755
+ theme: {
756
+ colors: {
757
+ white: string;
758
+ black: string;
759
+ blue100: string;
760
+ blue200: string;
761
+ blue300: string;
762
+ blue400: string;
763
+ blue500: string;
764
+ blue600: string;
765
+ blue700: string;
766
+ blue800: string;
767
+ blue900: string;
768
+ purple100: string;
769
+ purple200: string;
770
+ purple300: string;
771
+ purple400: string;
772
+ purple500: string;
773
+ purple600: string;
774
+ purple700: string;
775
+ purple800: string;
776
+ purple900: string;
777
+ green100: string;
778
+ green200: string;
779
+ green300: string;
780
+ green400: string;
781
+ green500: string;
782
+ green600: string;
783
+ green700: string;
784
+ green800: string;
785
+ green900: string;
786
+ yellow100: string;
787
+ yellow200: string;
788
+ yellow300: string;
789
+ yellow400: string;
790
+ yellow500: string;
791
+ yellow600: string;
792
+ yellow700: string;
793
+ yellow800: string;
794
+ yellow900: string;
795
+ red100: string;
796
+ red200: string;
797
+ red300: string;
798
+ red400: string;
799
+ red500: string;
800
+ red600: string;
801
+ red700: string;
802
+ red800: string;
803
+ red900: string;
804
+ cyan100: string;
805
+ cyan200: string;
806
+ cyan300: string;
807
+ cyan400: string;
808
+ cyan500: string;
809
+ cyan600: string;
810
+ cyan700: string;
811
+ cyan800: string;
812
+ cyan900: string;
813
+ pink100: string;
814
+ pink200: string;
815
+ pink300: string;
816
+ pink400: string;
817
+ pink500: string;
818
+ pink600: string;
819
+ pink700: string;
820
+ pink800: string;
821
+ pink900: string;
822
+ gray100: string;
823
+ gray200: string;
824
+ gray300: string;
825
+ gray400: string;
826
+ gray500: string;
827
+ gray600: string;
828
+ gray700: string;
829
+ gray800: string;
830
+ gray900: string;
831
+ primaryLight: string;
832
+ primary: string;
833
+ primaryDark: string;
834
+ secondaryLight: string;
835
+ secondary: string;
836
+ secondaryDark: string;
837
+ successLight: string;
838
+ success: string;
839
+ successDark: string;
840
+ warningLight: string;
841
+ warning: string;
842
+ warningDark: string;
843
+ errorLight: string;
844
+ error: string;
845
+ errorDark: string;
846
+ gradient: string;
847
+ link: string;
848
+ };
849
+ shadows: {};
850
+ fonts: {
851
+ sans: string;
852
+ mono: string;
853
+ };
854
+ fontSizes: {
855
+ tiny: string;
856
+ xs: string;
857
+ base: string;
858
+ sm: string;
859
+ md: string;
860
+ lg: string;
861
+ xl: string;
862
+ };
863
+ fontWeights: {
864
+ hairline: number;
865
+ thin: number;
866
+ light: number;
867
+ normal: number;
868
+ medium: number;
869
+ semibold: number;
870
+ bold: number;
871
+ extrabold: number;
872
+ black: number;
873
+ };
874
+ lineHeights: {
875
+ xs: number;
876
+ sm: number;
877
+ md: number;
878
+ lg: number;
879
+ xl: number;
880
+ };
881
+ letterSpacings: {
882
+ tighter: string;
883
+ tight: string;
884
+ normal: string;
885
+ wide: string;
886
+ wider: string;
887
+ widest: string;
888
+ };
889
+ space: {
890
+ 0: string;
891
+ xs: string;
892
+ sm: string;
893
+ md: string;
894
+ lg: string;
895
+ xl: string;
896
+ px: string;
897
+ 1: string;
898
+ 2: string;
899
+ 3: string;
900
+ 4: string;
901
+ 5: string;
902
+ 6: string;
903
+ 7: string;
904
+ 8: string;
905
+ 9: string;
906
+ 10: string;
907
+ 11: string;
908
+ 12: string;
909
+ 13: string;
910
+ 14: string;
911
+ 15: string;
912
+ 16: string;
913
+ 17: string;
914
+ 18: string;
915
+ 20: string;
916
+ 24: string;
917
+ 28: string;
918
+ 32: string;
919
+ 36: string;
920
+ 40: string;
921
+ 44: string;
922
+ 48: string;
923
+ 52: string;
924
+ 56: string;
925
+ 60: string;
926
+ 64: string;
927
+ 72: string;
928
+ 80: string;
929
+ 96: string;
930
+ };
931
+ radii: {
932
+ xs: string;
933
+ sm: string;
934
+ md: string;
935
+ base: string;
936
+ lg: string;
937
+ xl: string;
938
+ squared: string;
939
+ rounded: string;
940
+ pill: string;
941
+ };
942
+ zIndices: {
943
+ 1: string;
944
+ 2: string;
945
+ 3: string;
946
+ 4: string;
947
+ 5: string;
948
+ 10: string;
949
+ max: string;
950
+ };
951
+ borderWeights: {
952
+ light: string;
953
+ normal: string;
954
+ bold: string;
955
+ extrabold: string;
956
+ black: string;
957
+ };
958
+ transitions: {
959
+ default: string;
960
+ };
961
+ breakpoints: {
962
+ xs: string;
963
+ sm: string;
964
+ md: string;
965
+ lg: string;
966
+ xl: string;
967
+ };
968
+ };
969
+ media: {
970
+ xs: string;
971
+ sm: string;
972
+ md: string;
973
+ lg: string;
974
+ xl: string;
975
+ xsMax: string;
976
+ smMax: string;
977
+ mdMax: string;
978
+ lgMax: string;
979
+ xlMax: string;
980
+ motion: string;
981
+ safari: string;
982
+ hover: string;
983
+ dark: string;
984
+ light: string;
985
+ };
986
+ utils: {
987
+ p: (value: {
988
+ readonly [$$PropertyValue]: "padding";
989
+ }) => {
990
+ padding: {
991
+ readonly [$$PropertyValue]: "padding";
992
+ };
993
+ };
994
+ pt: (value: {
995
+ readonly [$$PropertyValue]: "paddingTop";
996
+ }) => {
997
+ paddingTop: {
998
+ readonly [$$PropertyValue]: "paddingTop";
999
+ };
1000
+ };
1001
+ pr: (value: {
1002
+ readonly [$$PropertyValue]: "paddingRight";
1003
+ }) => {
1004
+ paddingRight: {
1005
+ readonly [$$PropertyValue]: "paddingRight";
1006
+ };
1007
+ };
1008
+ pb: (value: {
1009
+ readonly [$$PropertyValue]: "paddingBottom";
1010
+ }) => {
1011
+ paddingBottom: {
1012
+ readonly [$$PropertyValue]: "paddingBottom";
1013
+ };
1014
+ };
1015
+ pl: (value: {
1016
+ readonly [$$PropertyValue]: "paddingLeft";
1017
+ }) => {
1018
+ paddingLeft: {
1019
+ readonly [$$PropertyValue]: "paddingLeft";
1020
+ };
1021
+ };
1022
+ px: (value: {
1023
+ readonly [$$PropertyValue]: "paddingLeft";
1024
+ }) => {
1025
+ paddingLeft: {
1026
+ readonly [$$PropertyValue]: "paddingLeft";
1027
+ };
1028
+ paddingRight: {
1029
+ readonly [$$PropertyValue]: "paddingLeft";
1030
+ };
1031
+ };
1032
+ py: (value: {
1033
+ readonly [$$PropertyValue]: "paddingTop";
1034
+ }) => {
1035
+ paddingTop: {
1036
+ readonly [$$PropertyValue]: "paddingTop";
1037
+ };
1038
+ paddingBottom: {
1039
+ readonly [$$PropertyValue]: "paddingTop";
1040
+ };
1041
+ };
1042
+ m: (value: {
1043
+ readonly [$$PropertyValue]: "margin";
1044
+ }) => {
1045
+ margin: {
1046
+ readonly [$$PropertyValue]: "margin";
1047
+ };
1048
+ };
1049
+ mt: (value: {
1050
+ readonly [$$PropertyValue]: "marginTop";
1051
+ }) => {
1052
+ marginTop: {
1053
+ readonly [$$PropertyValue]: "marginTop";
1054
+ };
1055
+ };
1056
+ mr: (value: {
1057
+ readonly [$$PropertyValue]: "marginRight";
1058
+ }) => {
1059
+ marginRight: {
1060
+ readonly [$$PropertyValue]: "marginRight";
1061
+ };
1062
+ };
1063
+ mb: (value: {
1064
+ readonly [$$PropertyValue]: "marginBottom";
1065
+ }) => {
1066
+ marginBottom: {
1067
+ readonly [$$PropertyValue]: "marginBottom";
1068
+ };
1069
+ };
1070
+ ml: (value: {
1071
+ readonly [$$PropertyValue]: "marginLeft";
1072
+ }) => {
1073
+ marginLeft: {
1074
+ readonly [$$PropertyValue]: "marginLeft";
1075
+ };
1076
+ };
1077
+ mx: (value: {
1078
+ readonly [$$PropertyValue]: "marginLeft";
1079
+ }) => {
1080
+ marginLeft: {
1081
+ readonly [$$PropertyValue]: "marginLeft";
1082
+ };
1083
+ marginRight: {
1084
+ readonly [$$PropertyValue]: "marginLeft";
1085
+ };
1086
+ };
1087
+ my: (value: {
1088
+ readonly [$$PropertyValue]: "marginTop";
1089
+ }) => {
1090
+ marginTop: {
1091
+ readonly [$$PropertyValue]: "marginTop";
1092
+ };
1093
+ marginBottom: {
1094
+ readonly [$$PropertyValue]: "marginTop";
1095
+ };
1096
+ };
1097
+ ta: (value: {
1098
+ readonly [$$PropertyValue]: "textAlign";
1099
+ }) => {
1100
+ textAlign: {
1101
+ readonly [$$PropertyValue]: "textAlign";
1102
+ };
1103
+ };
1104
+ tt: (value: {
1105
+ readonly [$$PropertyValue]: "textTransform";
1106
+ }) => {
1107
+ textTransform: {
1108
+ readonly [$$PropertyValue]: "textTransform";
1109
+ };
1110
+ };
1111
+ to: (value: {
1112
+ readonly [$$PropertyValue]: "textOverflow";
1113
+ }) => {
1114
+ textOverflow: {
1115
+ readonly [$$PropertyValue]: "textOverflow";
1116
+ };
1117
+ };
1118
+ d: (value: {
1119
+ readonly [$$PropertyValue]: "display";
1120
+ }) => {
1121
+ display: {
1122
+ readonly [$$PropertyValue]: "display";
1123
+ };
1124
+ };
1125
+ dflex: (value: {
1126
+ readonly [$$PropertyValue]: "alignItems";
1127
+ }) => {
1128
+ display: string;
1129
+ alignItems: {
1130
+ readonly [$$PropertyValue]: "alignItems";
1131
+ };
1132
+ justifyContent: {
1133
+ readonly [$$PropertyValue]: "alignItems";
1134
+ };
1135
+ };
1136
+ fd: (value: {
1137
+ readonly [$$PropertyValue]: "flexDirection";
1138
+ }) => {
1139
+ flexDirection: {
1140
+ readonly [$$PropertyValue]: "flexDirection";
1141
+ };
1142
+ };
1143
+ fw: (value: {
1144
+ readonly [$$PropertyValue]: "flexWrap";
1145
+ }) => {
1146
+ flexWrap: {
1147
+ readonly [$$PropertyValue]: "flexWrap";
1148
+ };
1149
+ };
1150
+ ai: (value: {
1151
+ readonly [$$PropertyValue]: "alignItems";
1152
+ }) => {
1153
+ alignItems: {
1154
+ readonly [$$PropertyValue]: "alignItems";
1155
+ };
1156
+ };
1157
+ ac: (value: {
1158
+ readonly [$$PropertyValue]: "alignContent";
1159
+ }) => {
1160
+ alignContent: {
1161
+ readonly [$$PropertyValue]: "alignContent";
1162
+ };
1163
+ };
1164
+ jc: (value: {
1165
+ readonly [$$PropertyValue]: "justifyContent";
1166
+ }) => {
1167
+ justifyContent: {
1168
+ readonly [$$PropertyValue]: "justifyContent";
1169
+ };
1170
+ };
1171
+ as: (value: {
1172
+ readonly [$$PropertyValue]: "alignSelf";
1173
+ }) => {
1174
+ alignSelf: {
1175
+ readonly [$$PropertyValue]: "alignSelf";
1176
+ };
1177
+ };
1178
+ fg: (value: {
1179
+ readonly [$$PropertyValue]: "flexGrow";
1180
+ }) => {
1181
+ flexGrow: {
1182
+ readonly [$$PropertyValue]: "flexGrow";
1183
+ };
1184
+ };
1185
+ fs: (value: {
1186
+ readonly [$$PropertyValue]: "fontSize";
1187
+ }) => {
1188
+ fontSize: {
1189
+ readonly [$$PropertyValue]: "fontSize";
1190
+ };
1191
+ };
1192
+ fb: (value: {
1193
+ readonly [$$PropertyValue]: "flexBasis";
1194
+ }) => {
1195
+ flexBasis: {
1196
+ readonly [$$PropertyValue]: "flexBasis";
1197
+ };
1198
+ };
1199
+ bc: (value: {
1200
+ readonly [$$PropertyValue]: "backgroundColor";
1201
+ }) => {
1202
+ backgroundColor: {
1203
+ readonly [$$PropertyValue]: "backgroundColor";
1204
+ };
1205
+ };
1206
+ bf: (value: {
1207
+ readonly [$$PropertyValue]: "backdropFilter";
1208
+ }) => {
1209
+ backdropFilter: {
1210
+ readonly [$$PropertyValue]: "backdropFilter";
1211
+ };
1212
+ };
1213
+ bg: (value: {
1214
+ readonly [$$PropertyValue]: "backgroundColor";
1215
+ }) => {
1216
+ background: {
1217
+ readonly [$$PropertyValue]: "backgroundColor";
1218
+ };
1219
+ };
1220
+ bgBlur: (value: {
1221
+ readonly [$$PropertyValue]: "backgroundColor";
1222
+ }) => {
1223
+ bf: string;
1224
+ bg: string;
1225
+ };
1226
+ bgColor: (value: {
1227
+ readonly [$$PropertyValue]: "backgroundColor";
1228
+ }) => {
1229
+ backgroundColor: {
1230
+ readonly [$$PropertyValue]: "backgroundColor";
1231
+ };
1232
+ };
1233
+ backgroundClip: (value: {
1234
+ readonly [$$PropertyValue]: "backgroundClip";
1235
+ }) => {
1236
+ WebkitBackgroundClip: {
1237
+ readonly [$$PropertyValue]: "backgroundClip";
1238
+ };
1239
+ backgroundClip: {
1240
+ readonly [$$PropertyValue]: "backgroundClip";
1241
+ };
1242
+ };
1243
+ bgClip: (value: {
1244
+ readonly [$$PropertyValue]: "backgroundClip";
1245
+ }) => {
1246
+ WebkitBackgroundClip: {
1247
+ readonly [$$PropertyValue]: "backgroundClip";
1248
+ };
1249
+ backgroundClip: {
1250
+ readonly [$$PropertyValue]: "backgroundClip";
1251
+ };
1252
+ };
1253
+ br: (value: {
1254
+ readonly [$$PropertyValue]: "borderRadius";
1255
+ }) => {
1256
+ borderRadius: {
1257
+ readonly [$$PropertyValue]: "borderRadius";
1258
+ };
1259
+ };
1260
+ bw: (value: {
1261
+ readonly [$$PropertyValue]: "borderWidth";
1262
+ }) => {
1263
+ borderWidth: {
1264
+ readonly [$$PropertyValue]: "borderWidth";
1265
+ };
1266
+ };
1267
+ btrr: (value: {
1268
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1269
+ }) => {
1270
+ borderTopRightRadius: {
1271
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1272
+ };
1273
+ };
1274
+ bbrr: (value: {
1275
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1276
+ }) => {
1277
+ borderBottomRightRadius: {
1278
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1279
+ };
1280
+ };
1281
+ bblr: (value: {
1282
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1283
+ }) => {
1284
+ borderBottomLeftRadius: {
1285
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1286
+ };
1287
+ };
1288
+ btlr: (value: {
1289
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1290
+ }) => {
1291
+ borderTopLeftRadius: {
1292
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1293
+ };
1294
+ };
1295
+ bs: (value: {
1296
+ readonly [$$PropertyValue]: "boxShadow";
1297
+ }) => {
1298
+ boxShadow: {
1299
+ readonly [$$PropertyValue]: "boxShadow";
1300
+ };
1301
+ };
1302
+ normalShadow: (value: {
1303
+ readonly [$$PropertyValue]: "backgroundColor";
1304
+ }) => {
1305
+ boxShadow: string;
1306
+ };
1307
+ normalShadowVar: (value: {
1308
+ readonly [$$PropertyValue]: "backgroundColor";
1309
+ }) => {
1310
+ boxShadow: string;
1311
+ };
1312
+ lh: (value: {
1313
+ readonly [$$PropertyValue]: "lineHeight";
1314
+ }) => {
1315
+ lineHeight: {
1316
+ readonly [$$PropertyValue]: "lineHeight";
1317
+ };
1318
+ };
1319
+ ov: (value: {
1320
+ readonly [$$PropertyValue]: "overflow";
1321
+ }) => {
1322
+ overflow: {
1323
+ readonly [$$PropertyValue]: "overflow";
1324
+ };
1325
+ };
1326
+ ox: (value: {
1327
+ readonly [$$PropertyValue]: "overflowX";
1328
+ }) => {
1329
+ overflowX: {
1330
+ readonly [$$PropertyValue]: "overflowX";
1331
+ };
1332
+ };
1333
+ oy: (value: {
1334
+ readonly [$$PropertyValue]: "overflowY";
1335
+ }) => {
1336
+ overflowY: {
1337
+ readonly [$$PropertyValue]: "overflowY";
1338
+ };
1339
+ };
1340
+ pe: (value: {
1341
+ readonly [$$PropertyValue]: "pointerEvents";
1342
+ }) => {
1343
+ pointerEvents: {
1344
+ readonly [$$PropertyValue]: "pointerEvents";
1345
+ };
1346
+ };
1347
+ events: (value: {
1348
+ readonly [$$PropertyValue]: "pointerEvents";
1349
+ }) => {
1350
+ pointerEvents: {
1351
+ readonly [$$PropertyValue]: "pointerEvents";
1352
+ };
1353
+ };
1354
+ us: (value: {
1355
+ readonly [$$PropertyValue]: "userSelect";
1356
+ }) => {
1357
+ WebkitUserSelect: {
1358
+ readonly [$$PropertyValue]: "userSelect";
1359
+ };
1360
+ userSelect: {
1361
+ readonly [$$PropertyValue]: "userSelect";
1362
+ };
1363
+ };
1364
+ userSelect: (value: {
1365
+ readonly [$$PropertyValue]: "userSelect";
1366
+ }) => {
1367
+ WebkitUserSelect: {
1368
+ readonly [$$PropertyValue]: "userSelect";
1369
+ };
1370
+ userSelect: {
1371
+ readonly [$$PropertyValue]: "userSelect";
1372
+ };
1373
+ };
1374
+ w: (value: {
1375
+ readonly [$$PropertyValue]: "width";
1376
+ }) => {
1377
+ width: {
1378
+ readonly [$$PropertyValue]: "width";
1379
+ };
1380
+ };
1381
+ h: (value: {
1382
+ readonly [$$PropertyValue]: "height";
1383
+ }) => {
1384
+ height: {
1385
+ readonly [$$PropertyValue]: "height";
1386
+ };
1387
+ };
1388
+ mw: (value: {
1389
+ readonly [$$PropertyValue]: "maxWidth";
1390
+ }) => {
1391
+ maxWidth: {
1392
+ readonly [$$PropertyValue]: "maxWidth";
1393
+ };
1394
+ };
1395
+ maxW: (value: {
1396
+ readonly [$$PropertyValue]: "maxWidth";
1397
+ }) => {
1398
+ maxWidth: {
1399
+ readonly [$$PropertyValue]: "maxWidth";
1400
+ };
1401
+ };
1402
+ mh: (value: {
1403
+ readonly [$$PropertyValue]: "maxHeight";
1404
+ }) => {
1405
+ maxHeight: {
1406
+ readonly [$$PropertyValue]: "maxHeight";
1407
+ };
1408
+ };
1409
+ maxH: (value: {
1410
+ readonly [$$PropertyValue]: "maxHeight";
1411
+ }) => {
1412
+ maxHeight: {
1413
+ readonly [$$PropertyValue]: "maxHeight";
1414
+ };
1415
+ };
1416
+ size: (value: {
1417
+ readonly [$$PropertyValue]: "width";
1418
+ }) => {
1419
+ width: {
1420
+ readonly [$$PropertyValue]: "width";
1421
+ };
1422
+ height: {
1423
+ readonly [$$PropertyValue]: "width";
1424
+ };
1425
+ };
1426
+ minSize: (value: {
1427
+ readonly [$$PropertyValue]: "width";
1428
+ }) => {
1429
+ minWidth: {
1430
+ readonly [$$PropertyValue]: "width";
1431
+ };
1432
+ minHeight: {
1433
+ readonly [$$PropertyValue]: "width";
1434
+ };
1435
+ width: {
1436
+ readonly [$$PropertyValue]: "width";
1437
+ };
1438
+ height: {
1439
+ readonly [$$PropertyValue]: "width";
1440
+ };
1441
+ };
1442
+ sizeMin: (value: {
1443
+ readonly [$$PropertyValue]: "width";
1444
+ }) => {
1445
+ minWidth: {
1446
+ readonly [$$PropertyValue]: "width";
1447
+ };
1448
+ minHeight: {
1449
+ readonly [$$PropertyValue]: "width";
1450
+ };
1451
+ width: {
1452
+ readonly [$$PropertyValue]: "width";
1453
+ };
1454
+ height: {
1455
+ readonly [$$PropertyValue]: "width";
1456
+ };
1457
+ };
1458
+ maxSize: (value: {
1459
+ readonly [$$PropertyValue]: "width";
1460
+ }) => {
1461
+ maxWidth: {
1462
+ readonly [$$PropertyValue]: "width";
1463
+ };
1464
+ maxHeight: {
1465
+ readonly [$$PropertyValue]: "width";
1466
+ };
1467
+ };
1468
+ sizeMax: (value: {
1469
+ readonly [$$PropertyValue]: "width";
1470
+ }) => {
1471
+ maxWidth: {
1472
+ readonly [$$PropertyValue]: "width";
1473
+ };
1474
+ maxHeight: {
1475
+ readonly [$$PropertyValue]: "width";
1476
+ };
1477
+ };
1478
+ appearance: (value: {
1479
+ readonly [$$PropertyValue]: "appearance";
1480
+ }) => {
1481
+ WebkitAppearance: {
1482
+ readonly [$$PropertyValue]: "appearance";
1483
+ };
1484
+ appearance: {
1485
+ readonly [$$PropertyValue]: "appearance";
1486
+ };
1487
+ };
1488
+ scale: (value: {
1489
+ readonly [$$PropertyValue]: "scale";
1490
+ }) => {
1491
+ transform: string;
1492
+ };
1493
+ linearGradient: (value: {
1494
+ readonly [$$PropertyValue]: "backgroundImage";
1495
+ }) => {
1496
+ backgroundImage: string;
1497
+ };
1498
+ tdl: (value: {
1499
+ readonly [$$PropertyValue]: "textDecorationLine";
1500
+ }) => {
1501
+ textDecorationLine: {
1502
+ readonly [$$PropertyValue]: "textDecorationLine";
1503
+ };
1504
+ };
1505
+ textGradient: (value: {
1506
+ readonly [$$PropertyValue]: "backgroundImage";
1507
+ }) => {
1508
+ backgroundImage: string;
1509
+ WebkitBackgroundClip: string;
1510
+ WebkitTextFillColor: string;
1511
+ };
1512
+ };
1513
+ themeMap: {
1514
+ width: string;
1515
+ height: string;
1516
+ minWidth: string;
1517
+ maxWidth: string;
1518
+ minHeight: string;
1519
+ maxHeight: string;
1520
+ flexBasis: string;
1521
+ gridTemplateColumns: string;
1522
+ gridTemplateRows: string;
1523
+ blockSize: string;
1524
+ minBlockSize: string;
1525
+ maxBlockSize: string;
1526
+ inlineSize: string;
1527
+ minInlineSize: string;
1528
+ maxInlineSize: string;
1529
+ borderWidth: string;
1530
+ gap: "space";
1531
+ gridGap: "space";
1532
+ columnGap: "space";
1533
+ gridColumnGap: "space";
1534
+ rowGap: "space";
1535
+ gridRowGap: "space";
1536
+ inset: "space";
1537
+ insetBlock: "space";
1538
+ insetBlockEnd: "space";
1539
+ insetBlockStart: "space";
1540
+ insetInline: "space";
1541
+ insetInlineEnd: "space";
1542
+ insetInlineStart: "space";
1543
+ margin: "space";
1544
+ marginTop: "space";
1545
+ marginRight: "space";
1546
+ marginBottom: "space";
1547
+ marginLeft: "space";
1548
+ marginBlock: "space";
1549
+ marginBlockEnd: "space";
1550
+ marginBlockStart: "space";
1551
+ marginInline: "space";
1552
+ marginInlineEnd: "space";
1553
+ marginInlineStart: "space";
1554
+ padding: "space";
1555
+ paddingTop: "space";
1556
+ paddingRight: "space";
1557
+ paddingBottom: "space";
1558
+ paddingLeft: "space";
1559
+ paddingBlock: "space";
1560
+ paddingBlockEnd: "space";
1561
+ paddingBlockStart: "space";
1562
+ paddingInline: "space";
1563
+ paddingInlineEnd: "space";
1564
+ paddingInlineStart: "space";
1565
+ scrollMargin: "space";
1566
+ scrollMarginTop: "space";
1567
+ scrollMarginRight: "space";
1568
+ scrollMarginBottom: "space";
1569
+ scrollMarginLeft: "space";
1570
+ scrollMarginBlock: "space";
1571
+ scrollMarginBlockEnd: "space";
1572
+ scrollMarginBlockStart: "space";
1573
+ scrollMarginInline: "space";
1574
+ scrollMarginInlineEnd: "space";
1575
+ scrollMarginInlineStart: "space";
1576
+ scrollPadding: "space";
1577
+ scrollPaddingTop: "space";
1578
+ scrollPaddingRight: "space";
1579
+ scrollPaddingBottom: "space";
1580
+ scrollPaddingLeft: "space";
1581
+ scrollPaddingBlock: "space";
1582
+ scrollPaddingBlockEnd: "space";
1583
+ scrollPaddingBlockStart: "space";
1584
+ scrollPaddingInline: "space";
1585
+ scrollPaddingInlineEnd: "space";
1586
+ scrollPaddingInlineStart: "space";
1587
+ top: "space";
1588
+ right: "space";
1589
+ bottom: "space";
1590
+ left: "space";
1591
+ fontSize: "fontSizes";
1592
+ background: "colors";
1593
+ backgroundColor: "colors";
1594
+ backgroundImage: "colors";
1595
+ borderImage: "colors";
1596
+ border: "colors";
1597
+ borderBlock: "colors";
1598
+ borderBlockEnd: "colors";
1599
+ borderBlockStart: "colors";
1600
+ borderBottom: "colors";
1601
+ borderBottomColor: "colors";
1602
+ borderColor: "colors";
1603
+ borderInline: "colors";
1604
+ borderInlineEnd: "colors";
1605
+ borderInlineStart: "colors";
1606
+ borderLeft: "colors";
1607
+ borderLeftColor: "colors";
1608
+ borderRight: "colors";
1609
+ borderRightColor: "colors";
1610
+ borderTop: "colors";
1611
+ borderTopColor: "colors";
1612
+ caretColor: "colors";
1613
+ color: "colors";
1614
+ columnRuleColor: "colors";
1615
+ outline: "colors";
1616
+ outlineColor: "colors";
1617
+ fill: "colors";
1618
+ stroke: "colors";
1619
+ textDecorationColor: "colors";
1620
+ fontFamily: "fonts";
1621
+ fontWeight: "fontWeights";
1622
+ lineHeight: "lineHeights";
1623
+ letterSpacing: "letterSpacings";
1624
+ borderTopWidth: "borderWidths";
1625
+ borderLeftWidth: "borderWidths";
1626
+ borderRightWidth: "borderWidths";
1627
+ borderBottomWidth: "borderWidths";
1628
+ borderStyle: "borderStyles";
1629
+ borderTopStyle: "borderStyles";
1630
+ borderLeftStyle: "borderStyles";
1631
+ borderRightStyle: "borderStyles";
1632
+ borderBottomStyle: "borderStyles";
1633
+ borderRadius: "radii";
1634
+ borderTopLeftRadius: "radii";
1635
+ borderTopRightRadius: "radii";
1636
+ borderBottomRightRadius: "radii";
1637
+ borderBottomLeftRadius: "radii";
1638
+ boxShadow: "shadows";
1639
+ textShadow: "shadows";
1640
+ transition: "transitions";
1641
+ zIndex: "zIndices";
1642
+ };
1643
+ };
1644
+ export default _default;