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