@nextui-org/react 1.0.1-alpha.7 → 1.0.2-alpha.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 (837) hide show
  1. package/README.md +53 -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 +1785 -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 +904 -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 +2677 -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 -2
  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 +899 -0
  28. package/cjs/button/button-group.styles.js +136 -0
  29. package/cjs/button/button-icon.d.ts +909 -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 +907 -0
  34. package/cjs/button/button.styles.js +695 -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 +3575 -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 +8054 -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 +1782 -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 +893 -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 +41 -0
  74. package/cjs/collapse/collapse.js +190 -0
  75. package/cjs/collapse/collapse.styles.d.ts +4472 -0
  76. package/cjs/collapse/collapse.styles.js +254 -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 +896 -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 +1787 -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 +1783 -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 +2676 -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 +317 -0
  123. package/cjs/input/input.styles.d.ts +9854 -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 +1788 -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 +5356 -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 +5362 -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 +5369 -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 +1793 -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 +5357 -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 +895 -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 +3570 -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 +894 -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 +3576 -0
  218. package/cjs/switch/switch.styles.js +283 -0
  219. package/cjs/text/child.d.ts +21 -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 +894 -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 +1584 -0
  234. package/cjs/theme/common.js +490 -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/ssr-provider.d.ts +7 -0
  241. package/cjs/theme/ssr-provider.js +51 -0
  242. package/cjs/theme/stitches.config.d.ts +8700 -0
  243. package/cjs/theme/stitches.config.js +88 -0
  244. package/cjs/theme/theme-context.d.ts +5 -0
  245. package/cjs/theme/theme-context.js +22 -0
  246. package/cjs/theme/theme-provider.d.ts +14 -0
  247. package/cjs/theme/theme-provider.js +115 -0
  248. package/cjs/theme/types.d.ts +75 -0
  249. package/cjs/theme/types.js +3 -0
  250. package/cjs/theme/utils.d.ts +16 -0
  251. package/cjs/theme/utils.js +113 -0
  252. package/cjs/tooltip/index.d.ts +6 -0
  253. package/cjs/tooltip/index.js +17 -0
  254. package/cjs/tooltip/placement.d.ts +39 -0
  255. package/cjs/tooltip/placement.js +193 -0
  256. package/cjs/tooltip/tooltip-content.d.ts +27 -0
  257. package/cjs/tooltip/tooltip-content.js +135 -0
  258. package/cjs/tooltip/tooltip.d.ts +56 -0
  259. package/cjs/tooltip/tooltip.js +141 -0
  260. package/cjs/tooltip/tooltip.styles.d.ts +3571 -0
  261. package/cjs/tooltip/tooltip.styles.js +159 -0
  262. package/cjs/use-body-scroll/index.d.ts +3 -0
  263. package/cjs/use-body-scroll/index.js +12 -0
  264. package/cjs/use-body-scroll/use-body-scroll.d.ts +9 -0
  265. package/cjs/use-body-scroll/use-body-scroll.js +77 -0
  266. package/cjs/use-click-anywhere/index.d.ts +2 -0
  267. package/cjs/use-click-anywhere/index.js +12 -0
  268. package/cjs/use-click-anywhere/use-click-anywhere.d.ts +2 -0
  269. package/cjs/use-click-anywhere/use-click-anywhere.js +19 -0
  270. package/cjs/use-click-away/index.d.ts +2 -0
  271. package/cjs/use-click-away/index.js +12 -0
  272. package/cjs/use-click-away/use-click-away.d.ts +3 -0
  273. package/cjs/use-click-away/use-click-away.js +23 -0
  274. package/cjs/use-clipboard/index.d.ts +3 -0
  275. package/cjs/use-clipboard/index.js +12 -0
  276. package/{dist/hooks → cjs/use-clipboard}/use-clipboard.d.ts +0 -0
  277. package/cjs/use-clipboard/use-clipboard.js +57 -0
  278. package/cjs/use-current-state/index.d.ts +2 -0
  279. package/cjs/use-current-state/index.js +12 -0
  280. package/{dist/hooks → cjs/use-current-state}/use-current-state.d.ts +0 -0
  281. package/cjs/use-current-state/use-current-state.js +28 -0
  282. package/cjs/use-drip/index.d.ts +2 -0
  283. package/cjs/use-drip/index.js +12 -0
  284. package/cjs/use-drip/use-drip.d.ts +9 -0
  285. package/cjs/use-drip/use-drip.js +38 -0
  286. package/cjs/use-input/index.d.ts +2 -0
  287. package/cjs/use-input/index.js +12 -0
  288. package/cjs/use-input/use-input.d.ts +13 -0
  289. package/cjs/use-input/use-input.js +32 -0
  290. package/cjs/use-keyboard/codes.d.ts +92 -0
  291. package/cjs/use-keyboard/codes.js +104 -0
  292. package/cjs/use-keyboard/helper.d.ts +3 -0
  293. package/cjs/use-keyboard/helper.js +35 -0
  294. package/cjs/use-keyboard/index.d.ts +5 -0
  295. package/cjs/use-keyboard/index.js +15 -0
  296. package/cjs/use-keyboard/use-keyboard.d.ts +22 -0
  297. package/cjs/use-keyboard/use-keyboard.js +76 -0
  298. package/cjs/use-pagination/index.d.ts +20 -0
  299. package/cjs/use-pagination/index.js +88 -0
  300. package/cjs/use-portal/index.d.ts +2 -0
  301. package/cjs/use-portal/index.js +12 -0
  302. package/{dist/hooks → cjs/use-portal}/use-portal.d.ts +0 -0
  303. package/cjs/use-portal/use-portal.js +43 -0
  304. package/cjs/use-real-shape/index.d.ts +2 -0
  305. package/cjs/use-real-shape/index.js +12 -0
  306. package/{dist/hooks → cjs/use-real-shape}/use-real-shape.d.ts +0 -0
  307. package/cjs/use-real-shape/use-real-shape.js +55 -0
  308. package/cjs/use-resize/index.d.ts +2 -0
  309. package/cjs/use-resize/index.js +12 -0
  310. package/{dist/hooks → cjs/use-resize}/use-resize.d.ts +0 -0
  311. package/cjs/use-resize/use-resize.js +23 -0
  312. package/cjs/use-ssr/index.d.ts +2 -0
  313. package/cjs/use-ssr/index.js +12 -0
  314. package/{dist/hooks → cjs/use-ssr}/use-ssr.d.ts +0 -0
  315. package/cjs/use-ssr/use-ssr.js +25 -0
  316. package/cjs/use-theme/index.d.ts +2 -0
  317. package/cjs/use-theme/index.js +12 -0
  318. package/cjs/use-theme/use-theme.d.ts +3 -0
  319. package/cjs/use-theme/use-theme.js +16 -0
  320. package/cjs/use-warning/index.d.ts +2 -0
  321. package/cjs/use-warning/index.js +12 -0
  322. package/{dist/hooks → cjs/use-warning}/use-warning.d.ts +0 -0
  323. package/cjs/use-warning/use-warning.js +23 -0
  324. package/cjs/user/index.d.ts +6 -0
  325. package/cjs/user/index.js +21 -0
  326. package/cjs/user/user-link.d.ts +32 -0
  327. package/cjs/user/user-link.js +46 -0
  328. package/{dist/components → cjs}/user/user.d.ts +12 -7
  329. package/cjs/user/user.js +63 -0
  330. package/cjs/user/user.styles.d.ts +4456 -0
  331. package/cjs/user/user.styles.js +56 -0
  332. package/cjs/utils/assertion.d.ts +8 -0
  333. package/cjs/utils/assertion.js +42 -0
  334. package/cjs/utils/clear-icon.d.ts +16 -0
  335. package/cjs/utils/clear-icon.js +70 -0
  336. package/cjs/utils/clsx.d.ts +1 -0
  337. package/cjs/utils/clsx.js +57 -0
  338. package/cjs/utils/collections.d.ts +12 -0
  339. package/cjs/utils/collections.js +110 -0
  340. package/{dist → cjs}/utils/color.d.ts +6 -6
  341. package/cjs/utils/color.js +187 -0
  342. package/cjs/utils/css-transition.d.ts +27 -0
  343. package/cjs/utils/css-transition.js +76 -0
  344. package/cjs/utils/deep-merge.d.ts +1 -0
  345. package/cjs/utils/deep-merge.js +33 -0
  346. package/{dist → cjs}/utils/dimensions.d.ts +0 -0
  347. package/cjs/utils/dimensions.js +10 -0
  348. package/cjs/utils/dom.js +110 -0
  349. package/cjs/utils/drip.d.ts +936 -0
  350. package/cjs/utils/drip.js +116 -0
  351. package/cjs/utils/expand.d.ts +20 -0
  352. package/cjs/utils/expand.js +109 -0
  353. package/cjs/utils/icons.js +481 -0
  354. package/cjs/utils/numbers.d.ts +9 -0
  355. package/cjs/utils/numbers.js +23 -0
  356. package/cjs/utils/object.d.ts +11 -0
  357. package/cjs/utils/object.js +40 -0
  358. package/cjs/utils/prop-types.d.ts +54 -0
  359. package/cjs/utils/prop-types.js +56 -0
  360. package/cjs/utils/react.js +24 -0
  361. package/cjs/utils/strings.js +18 -0
  362. package/cjs/utils/types.d.js +3 -0
  363. package/{dist → cjs}/utils/with-defaults.d.ts +0 -0
  364. package/cjs/utils/with-defaults.js +13 -0
  365. package/code/package.json +6 -0
  366. package/col/package.json +6 -0
  367. package/collapse/package.json +6 -0
  368. package/container/package.json +6 -0
  369. package/css-baseline/package.json +6 -0
  370. package/divider/package.json +6 -0
  371. package/esm/avatar/avatar-group.d.ts +13 -0
  372. package/esm/avatar/avatar-group.js +35 -0
  373. package/esm/avatar/avatar-group.styles.d.ts +1785 -0
  374. package/esm/avatar/avatar-group.styles.js +52 -0
  375. package/esm/avatar/avatar.d.ts +21 -0
  376. package/esm/avatar/avatar.js +75 -0
  377. package/esm/avatar/avatar.styles.d.ts +904 -0
  378. package/esm/avatar/avatar.styles.js +334 -0
  379. package/esm/avatar/index.d.ts +7 -0
  380. package/esm/avatar/index.js +22 -0
  381. package/esm/backdrop/backdrop.d.ts +37 -0
  382. package/esm/backdrop/backdrop.js +137 -0
  383. package/esm/backdrop/backdrop.styles.d.ts +2677 -0
  384. package/esm/backdrop/backdrop.styles.js +119 -0
  385. package/esm/backdrop/index.d.ts +5 -0
  386. package/esm/backdrop/index.js +16 -0
  387. package/esm/button/button-group-context.d.ts +20 -0
  388. package/esm/button/button-group-context.js +21 -0
  389. package/esm/button/button-group.d.ts +34 -0
  390. package/esm/button/button-group.js +81 -0
  391. package/esm/button/button-group.styles.d.ts +899 -0
  392. package/esm/button/button-group.styles.js +136 -0
  393. package/esm/button/button-icon.d.ts +909 -0
  394. package/esm/button/button-icon.js +68 -0
  395. package/esm/button/button.d.ts +30 -0
  396. package/esm/button/button.js +145 -0
  397. package/esm/button/button.styles.d.ts +907 -0
  398. package/esm/button/button.styles.js +695 -0
  399. package/esm/button/index.d.ts +10 -0
  400. package/esm/button/index.js +25 -0
  401. package/esm/button/utils.d.ts +4 -0
  402. package/esm/button/utils.js +27 -0
  403. package/esm/card/card.d.ts +23 -0
  404. package/esm/card/card.js +117 -0
  405. package/esm/card/card.styles.d.ts +3575 -0
  406. package/esm/card/card.styles.js +267 -0
  407. package/esm/card/index.d.ts +5 -0
  408. package/esm/card/index.js +24 -0
  409. package/esm/checkbox/checkbox-context.d.ts +13 -0
  410. package/esm/checkbox/checkbox-context.js +25 -0
  411. package/esm/checkbox/checkbox-group.d.ts +29 -0
  412. package/esm/checkbox/checkbox-group.js +89 -0
  413. package/esm/checkbox/checkbox.d.ts +58 -0
  414. package/esm/checkbox/checkbox.js +192 -0
  415. package/esm/checkbox/checkbox.styles.d.ts +8054 -0
  416. package/esm/checkbox/checkbox.styles.js +563 -0
  417. package/esm/checkbox/index.d.ts +6 -0
  418. package/esm/checkbox/index.js +26 -0
  419. package/esm/code/code.d.ts +15 -0
  420. package/esm/code/code.js +42 -0
  421. package/esm/code/code.styles.d.ts +1782 -0
  422. package/esm/code/code.styles.js +14 -0
  423. package/esm/code/index.d.ts +5 -0
  424. package/esm/code/index.js +15 -0
  425. package/esm/col/col.d.ts +20 -0
  426. package/esm/col/col.js +46 -0
  427. package/esm/col/col.styles.d.ts +893 -0
  428. package/esm/col/col.styles.js +16 -0
  429. package/esm/col/index.d.ts +5 -0
  430. package/esm/col/index.js +14 -0
  431. package/esm/collapse/collapse-context.d.ts +9 -0
  432. package/esm/collapse/collapse-context.js +20 -0
  433. package/esm/collapse/collapse-group.d.ts +18 -0
  434. package/esm/collapse/collapse-group.js +90 -0
  435. package/esm/collapse/collapse-icon.d.ts +19 -0
  436. package/esm/collapse/collapse-icon.js +41 -0
  437. package/esm/collapse/collapse.d.ts +41 -0
  438. package/esm/collapse/collapse.js +190 -0
  439. package/esm/collapse/collapse.styles.d.ts +4472 -0
  440. package/esm/collapse/collapse.styles.js +254 -0
  441. package/esm/collapse/index.d.ts +6 -0
  442. package/esm/collapse/index.js +22 -0
  443. package/esm/container/container.d.ts +40 -0
  444. package/esm/container/container.js +91 -0
  445. package/esm/container/container.styles.d.ts +896 -0
  446. package/esm/container/container.styles.js +45 -0
  447. package/esm/container/index.d.ts +5 -0
  448. package/esm/container/index.js +14 -0
  449. package/esm/css-baseline/css-baseline.d.ts +9 -0
  450. package/esm/css-baseline/css-baseline.js +247 -0
  451. package/esm/css-baseline/index.d.ts +1 -0
  452. package/esm/css-baseline/index.js +11 -0
  453. package/esm/divider/divider.d.ts +22 -0
  454. package/esm/divider/divider.js +82 -0
  455. package/esm/divider/divider.styles.d.ts +1787 -0
  456. package/esm/divider/divider.styles.js +77 -0
  457. package/esm/divider/index.d.ts +5 -0
  458. package/esm/divider/index.js +15 -0
  459. package/esm/grid/grid-container.d.ts +22 -0
  460. package/esm/grid/grid-container.js +60 -0
  461. package/esm/grid/grid-item.d.ts +37 -0
  462. package/esm/grid/grid-item.js +123 -0
  463. package/esm/grid/grid.d.ts +9 -0
  464. package/esm/grid/grid.js +29 -0
  465. package/esm/grid/grid.styles.d.ts +1783 -0
  466. package/esm/grid/grid.styles.js +15 -0
  467. package/esm/grid/index.d.ts +7 -0
  468. package/esm/grid/index.js +18 -0
  469. package/esm/image/image.d.ts +29 -0
  470. package/esm/image/image.js +150 -0
  471. package/esm/image/image.skeleton.d.ts +19 -0
  472. package/esm/image/image.skeleton.js +50 -0
  473. package/esm/image/image.styles.d.ts +2676 -0
  474. package/esm/image/image.styles.js +57 -0
  475. package/esm/image/index.d.ts +5 -0
  476. package/esm/image/index.js +16 -0
  477. package/esm/index.d.ts +79 -0
  478. package/esm/index.js +435 -0
  479. package/esm/input/index.d.ts +7 -0
  480. package/esm/input/index.js +30 -0
  481. package/esm/input/input-password.d.ts +98 -0
  482. package/esm/input/input-password.js +80 -0
  483. package/esm/input/input-props.d.ts +66 -0
  484. package/esm/input/input-props.js +30 -0
  485. package/esm/input/input.d.ts +18 -0
  486. package/esm/input/input.js +317 -0
  487. package/esm/input/input.styles.d.ts +9854 -0
  488. package/esm/input/input.styles.js +878 -0
  489. package/esm/input/password-icon.d.ts +6 -0
  490. package/esm/input/password-icon.js +51 -0
  491. package/esm/link/icon.d.ts +4 -0
  492. package/esm/link/icon.js +42 -0
  493. package/esm/link/index.d.ts +5 -0
  494. package/esm/link/index.js +15 -0
  495. package/esm/link/link.d.ts +43 -0
  496. package/esm/link/link.js +42 -0
  497. package/esm/link/link.styles.d.ts +1788 -0
  498. package/esm/link/link.styles.js +135 -0
  499. package/esm/loading/index.d.ts +7 -0
  500. package/esm/loading/index.js +24 -0
  501. package/esm/loading/loading.d.ts +24 -0
  502. package/esm/loading/loading.js +80 -0
  503. package/esm/loading/loading.styles.d.ts +5356 -0
  504. package/esm/loading/loading.styles.js +438 -0
  505. package/esm/loading/spinner.d.ts +17 -0
  506. package/esm/loading/spinner.js +47 -0
  507. package/esm/modal/index.d.ts +8 -0
  508. package/esm/modal/index.js +28 -0
  509. package/esm/modal/modal-body.d.ts +45 -0
  510. package/esm/modal/modal-body.js +62 -0
  511. package/esm/modal/modal-close-button.d.ts +13 -0
  512. package/esm/modal/modal-close-button.js +49 -0
  513. package/esm/modal/modal-context.d.ts +8 -0
  514. package/esm/modal/modal-context.js +18 -0
  515. package/esm/modal/modal-footer.d.ts +24 -0
  516. package/esm/modal/modal-footer.js +69 -0
  517. package/esm/modal/modal-header.d.ts +24 -0
  518. package/esm/modal/modal-header.js +69 -0
  519. package/esm/modal/modal-wrapper.d.ts +24 -0
  520. package/esm/modal/modal-wrapper.js +153 -0
  521. package/esm/modal/modal.d.ts +42 -0
  522. package/esm/modal/modal.js +159 -0
  523. package/esm/modal/modal.styles.d.ts +5362 -0
  524. package/esm/modal/modal.styles.js +243 -0
  525. package/esm/modal/use-modal.d.ts +11 -0
  526. package/esm/modal/use-modal.js +25 -0
  527. package/esm/pagination/index.d.ts +7 -0
  528. package/esm/pagination/index.js +19 -0
  529. package/esm/pagination/pagination-ellipsis.d.ts +11 -0
  530. package/esm/pagination/pagination-ellipsis.js +86 -0
  531. package/esm/pagination/pagination-highlight.d.ts +14 -0
  532. package/esm/pagination/pagination-highlight.js +52 -0
  533. package/esm/pagination/pagination-icon.d.ts +16 -0
  534. package/esm/pagination/pagination-icon.js +59 -0
  535. package/esm/pagination/pagination-item.d.ts +22 -0
  536. package/esm/pagination/pagination-item.js +104 -0
  537. package/esm/pagination/pagination.d.ts +46 -0
  538. package/esm/pagination/pagination.js +169 -0
  539. package/esm/pagination/pagination.styles.d.ts +5369 -0
  540. package/esm/pagination/pagination.styles.js +361 -0
  541. package/esm/progress/index.d.ts +5 -0
  542. package/esm/progress/index.js +15 -0
  543. package/esm/progress/progress.d.ts +65 -0
  544. package/esm/progress/progress.js +101 -0
  545. package/esm/progress/progress.styles.d.ts +1793 -0
  546. package/esm/progress/progress.styles.js +165 -0
  547. package/esm/radio/index.d.ts +4 -0
  548. package/esm/radio/index.js +24 -0
  549. package/esm/radio/radio-context.d.ts +13 -0
  550. package/esm/radio/radio-context.js +24 -0
  551. package/esm/radio/radio-group.d.ts +30 -0
  552. package/esm/radio/radio-group.js +78 -0
  553. package/esm/radio/radio.d.ts +45 -0
  554. package/esm/radio/radio.js +156 -0
  555. package/esm/radio/radio.styles.d.ts +5357 -0
  556. package/esm/radio/radio.styles.js +240 -0
  557. package/esm/row/index.d.ts +5 -0
  558. package/esm/row/index.js +14 -0
  559. package/esm/row/row.d.ts +21 -0
  560. package/esm/row/row.js +54 -0
  561. package/esm/row/row.styles.d.ts +895 -0
  562. package/esm/row/row.styles.js +25 -0
  563. package/esm/snippet/index.d.ts +5 -0
  564. package/esm/snippet/index.js +16 -0
  565. package/esm/snippet/snippet-icon.d.ts +21 -0
  566. package/esm/snippet/snippet-icon.js +52 -0
  567. package/esm/snippet/snippet.d.ts +35 -0
  568. package/esm/snippet/snippet.js +137 -0
  569. package/esm/snippet/snippet.styles.d.ts +3570 -0
  570. package/esm/snippet/snippet.styles.js +141 -0
  571. package/esm/spacer/index.d.ts +5 -0
  572. package/esm/spacer/index.js +14 -0
  573. package/esm/spacer/spacer.d.ts +41 -0
  574. package/esm/spacer/spacer.js +49 -0
  575. package/esm/spacer/spacer.styles.d.ts +894 -0
  576. package/esm/spacer/spacer.styles.js +24 -0
  577. package/esm/switch/index.d.ts +5 -0
  578. package/esm/switch/index.js +17 -0
  579. package/esm/switch/switch.d.ts +82 -0
  580. package/esm/switch/switch.js +142 -0
  581. package/esm/switch/switch.styles.d.ts +3576 -0
  582. package/esm/switch/switch.styles.js +283 -0
  583. package/esm/text/child.d.ts +21 -0
  584. package/esm/text/child.js +83 -0
  585. package/esm/text/index.d.ts +4 -0
  586. package/esm/text/index.js +14 -0
  587. package/esm/text/text.d.ts +59 -0
  588. package/esm/text/text.js +124 -0
  589. package/esm/text/text.styles.d.ts +894 -0
  590. package/esm/text/text.styles.js +41 -0
  591. package/esm/textarea/index.d.ts +3 -0
  592. package/esm/textarea/index.js +12 -0
  593. package/esm/textarea/textarea.d.ts +42 -0
  594. package/esm/textarea/textarea.js +126 -0
  595. package/esm/textarea/utils.d.ts +13 -0
  596. package/esm/textarea/utils.js +126 -0
  597. package/esm/theme/common.d.ts +1584 -0
  598. package/esm/theme/common.js +490 -0
  599. package/esm/theme/dark-theme.d.ts +33 -0
  600. package/esm/theme/dark-theme.js +38 -0
  601. package/esm/theme/index.js +31 -0
  602. package/esm/theme/light-theme.d.ts +28 -0
  603. package/esm/theme/light-theme.js +33 -0
  604. package/esm/theme/ssr-provider.d.ts +7 -0
  605. package/esm/theme/ssr-provider.js +51 -0
  606. package/esm/theme/stitches.config.d.ts +8700 -0
  607. package/esm/theme/stitches.config.js +88 -0
  608. package/esm/theme/theme-context.d.ts +5 -0
  609. package/esm/theme/theme-context.js +22 -0
  610. package/esm/theme/theme-provider.d.ts +14 -0
  611. package/esm/theme/theme-provider.js +115 -0
  612. package/esm/theme/types.d.ts +75 -0
  613. package/esm/theme/types.js +3 -0
  614. package/esm/theme/utils.d.ts +16 -0
  615. package/esm/theme/utils.js +113 -0
  616. package/esm/tooltip/index.d.ts +6 -0
  617. package/esm/tooltip/index.js +17 -0
  618. package/esm/tooltip/placement.d.ts +39 -0
  619. package/esm/tooltip/placement.js +193 -0
  620. package/esm/tooltip/tooltip-content.d.ts +27 -0
  621. package/esm/tooltip/tooltip-content.js +135 -0
  622. package/esm/tooltip/tooltip.d.ts +56 -0
  623. package/esm/tooltip/tooltip.js +141 -0
  624. package/esm/tooltip/tooltip.styles.d.ts +3571 -0
  625. package/esm/tooltip/tooltip.styles.js +159 -0
  626. package/esm/use-body-scroll/index.d.ts +3 -0
  627. package/esm/use-body-scroll/index.js +12 -0
  628. package/esm/use-body-scroll/use-body-scroll.d.ts +9 -0
  629. package/esm/use-body-scroll/use-body-scroll.js +77 -0
  630. package/esm/use-click-anywhere/index.d.ts +2 -0
  631. package/esm/use-click-anywhere/index.js +12 -0
  632. package/esm/use-click-anywhere/use-click-anywhere.d.ts +2 -0
  633. package/esm/use-click-anywhere/use-click-anywhere.js +19 -0
  634. package/esm/use-click-away/index.d.ts +2 -0
  635. package/esm/use-click-away/index.js +12 -0
  636. package/esm/use-click-away/use-click-away.d.ts +3 -0
  637. package/esm/use-click-away/use-click-away.js +23 -0
  638. package/esm/use-clipboard/index.d.ts +3 -0
  639. package/esm/use-clipboard/index.js +12 -0
  640. package/esm/use-clipboard/use-clipboard.d.ts +8 -0
  641. package/esm/use-clipboard/use-clipboard.js +57 -0
  642. package/esm/use-current-state/index.d.ts +2 -0
  643. package/esm/use-current-state/index.js +12 -0
  644. package/esm/use-current-state/use-current-state.d.ts +8 -0
  645. package/esm/use-current-state/use-current-state.js +28 -0
  646. package/esm/use-drip/index.d.ts +2 -0
  647. package/esm/use-drip/index.js +12 -0
  648. package/esm/use-drip/use-drip.d.ts +9 -0
  649. package/esm/use-drip/use-drip.js +38 -0
  650. package/esm/use-input/index.d.ts +2 -0
  651. package/esm/use-input/index.js +12 -0
  652. package/esm/use-input/use-input.d.ts +13 -0
  653. package/esm/use-input/use-input.js +32 -0
  654. package/esm/use-keyboard/codes.d.ts +92 -0
  655. package/esm/use-keyboard/codes.js +104 -0
  656. package/esm/use-keyboard/helper.d.ts +3 -0
  657. package/esm/use-keyboard/helper.js +35 -0
  658. package/esm/use-keyboard/index.d.ts +5 -0
  659. package/esm/use-keyboard/index.js +15 -0
  660. package/esm/use-keyboard/use-keyboard.d.ts +22 -0
  661. package/esm/use-keyboard/use-keyboard.js +76 -0
  662. package/esm/use-pagination/index.d.ts +20 -0
  663. package/esm/use-pagination/index.js +88 -0
  664. package/esm/use-portal/index.d.ts +2 -0
  665. package/esm/use-portal/index.js +12 -0
  666. package/esm/use-portal/use-portal.d.ts +2 -0
  667. package/esm/use-portal/use-portal.js +43 -0
  668. package/esm/use-real-shape/index.d.ts +2 -0
  669. package/esm/use-real-shape/index.js +12 -0
  670. package/esm/use-real-shape/use-real-shape.d.ts +9 -0
  671. package/esm/use-real-shape/use-real-shape.js +55 -0
  672. package/esm/use-resize/index.d.ts +2 -0
  673. package/esm/use-resize/index.js +12 -0
  674. package/esm/use-resize/use-resize.d.ts +2 -0
  675. package/esm/use-resize/use-resize.js +23 -0
  676. package/esm/use-ssr/index.d.ts +2 -0
  677. package/esm/use-ssr/index.js +12 -0
  678. package/esm/use-ssr/use-ssr.d.ts +6 -0
  679. package/esm/use-ssr/use-ssr.js +25 -0
  680. package/esm/use-theme/index.d.ts +2 -0
  681. package/esm/use-theme/index.js +12 -0
  682. package/esm/use-theme/use-theme.d.ts +3 -0
  683. package/esm/use-theme/use-theme.js +16 -0
  684. package/esm/use-warning/index.d.ts +2 -0
  685. package/esm/use-warning/index.js +12 -0
  686. package/esm/use-warning/use-warning.d.ts +2 -0
  687. package/esm/use-warning/use-warning.js +23 -0
  688. package/esm/user/index.d.ts +6 -0
  689. package/esm/user/index.js +21 -0
  690. package/esm/user/user-link.d.ts +32 -0
  691. package/esm/user/user-link.js +46 -0
  692. package/esm/user/user.d.ts +35 -0
  693. package/esm/user/user.js +63 -0
  694. package/esm/user/user.styles.d.ts +4456 -0
  695. package/esm/user/user.styles.js +56 -0
  696. package/esm/utils/assertion.d.ts +8 -0
  697. package/esm/utils/assertion.js +42 -0
  698. package/esm/utils/clear-icon.d.ts +16 -0
  699. package/esm/utils/clear-icon.js +70 -0
  700. package/esm/utils/clsx.d.ts +1 -0
  701. package/esm/utils/clsx.js +57 -0
  702. package/esm/utils/collections.d.ts +12 -0
  703. package/esm/utils/collections.js +110 -0
  704. package/esm/utils/color.d.ts +28 -0
  705. package/esm/utils/color.js +187 -0
  706. package/esm/utils/css-transition.d.ts +27 -0
  707. package/esm/utils/css-transition.js +76 -0
  708. package/esm/utils/deep-merge.d.ts +1 -0
  709. package/esm/utils/deep-merge.js +33 -0
  710. package/esm/utils/dimensions.d.ts +1 -0
  711. package/esm/utils/dimensions.js +10 -0
  712. package/esm/utils/dom.js +110 -0
  713. package/esm/utils/drip.d.ts +936 -0
  714. package/esm/utils/drip.js +116 -0
  715. package/esm/utils/expand.d.ts +20 -0
  716. package/esm/utils/expand.js +109 -0
  717. package/esm/utils/icons.js +481 -0
  718. package/esm/utils/numbers.d.ts +9 -0
  719. package/esm/utils/numbers.js +23 -0
  720. package/esm/utils/object.d.ts +11 -0
  721. package/esm/utils/object.js +40 -0
  722. package/esm/utils/prop-types.d.ts +54 -0
  723. package/esm/utils/prop-types.js +56 -0
  724. package/esm/utils/react.js +24 -0
  725. package/esm/utils/strings.js +18 -0
  726. package/esm/utils/types.d.js +3 -0
  727. package/esm/utils/with-defaults.d.ts +3 -0
  728. package/esm/utils/with-defaults.js +13 -0
  729. package/grid/package.json +6 -0
  730. package/image/package.json +6 -0
  731. package/input/package.json +6 -0
  732. package/link/package.json +6 -0
  733. package/loading/package.json +6 -0
  734. package/modal/package.json +6 -0
  735. package/package.json +16 -76
  736. package/pagination/package.json +6 -0
  737. package/progress/package.json +6 -0
  738. package/radio/package.json +6 -0
  739. package/row/package.json +6 -0
  740. package/snippet/package.json +6 -0
  741. package/spacer/package.json +6 -0
  742. package/switch/package.json +6 -0
  743. package/text/package.json +6 -0
  744. package/textarea/package.json +6 -0
  745. package/tooltip/package.json +6 -0
  746. package/umd/nextui.js +14059 -0
  747. package/umd/nextui.min.js +2 -0
  748. package/umd/nextui.min.js.LICENSE.txt +14 -0
  749. package/use-body-scroll/package.json +6 -0
  750. package/use-click-anywhere/package.json +6 -0
  751. package/use-click-away/package.json +6 -0
  752. package/use-clipboard/package.json +6 -0
  753. package/use-current-state/package.json +6 -0
  754. package/use-drip/package.json +6 -0
  755. package/use-input/package.json +6 -0
  756. package/use-keyboard/package.json +6 -0
  757. package/use-portal/package.json +6 -0
  758. package/use-real-shape/package.json +6 -0
  759. package/use-resize/package.json +6 -0
  760. package/use-ssr/package.json +6 -0
  761. package/use-theme/package.json +6 -0
  762. package/use-warning/package.json +6 -0
  763. package/user/package.json +6 -0
  764. package/utils/package.json +6 -0
  765. package/dist/components/avatar/avatar-group.d.ts +0 -17
  766. package/dist/components/avatar/avatar.d.ts +0 -33
  767. package/dist/components/avatar/index.d.ts +0 -2
  768. package/dist/components/button/button-group.d.ts +0 -56
  769. package/dist/components/button/button-icon.d.ts +0 -17
  770. package/dist/components/button/button-loading.d.ts +0 -18
  771. package/dist/components/button/button.d.ts +0 -51
  772. package/dist/components/button/button.drip.d.ts +0 -20
  773. package/dist/components/button/index.d.ts +0 -2
  774. package/dist/components/button/styles.d.ts +0 -40
  775. package/dist/components/card/card-content.d.ts +0 -13
  776. package/dist/components/card/card-footer.d.ts +0 -16
  777. package/dist/components/card/card.d.ts +0 -33
  778. package/dist/components/card/index.d.ts +0 -2
  779. package/dist/components/card/styles.d.ts +0 -12
  780. package/dist/components/checkbox/checkbox-group.d.ts +0 -31
  781. package/dist/components/checkbox/index.d.ts +0 -5
  782. package/dist/components/checkbox/styles.d.ts +0 -4
  783. package/dist/components/code/code.d.ts +0 -17
  784. package/dist/components/code/index.d.ts +0 -4
  785. package/dist/components/col/index.d.ts +0 -4
  786. package/dist/components/container/container.d.ts +0 -39
  787. package/dist/components/container/index.d.ts +0 -2
  788. package/dist/components/divider/divider.d.ts +0 -30
  789. package/dist/components/divider/index.d.ts +0 -2
  790. package/dist/components/grid/grid-container.d.ts +0 -18
  791. package/dist/components/grid/grid.d.ts +0 -16
  792. package/dist/components/grid/index.d.ts +0 -2
  793. package/dist/components/image/image-browser-https-icon.d.ts +0 -3
  794. package/dist/components/image/image-browser.d.ts +0 -31
  795. package/dist/components/image/image.skeleton.d.ts +0 -12
  796. package/dist/components/image/index.d.ts +0 -2
  797. package/dist/components/image/styles.d.ts +0 -9
  798. package/dist/components/index.d.ts +0 -20
  799. package/dist/components/link/index.d.ts +0 -4
  800. package/dist/components/link/link.d.ts +0 -39
  801. package/dist/components/loading/index.d.ts +0 -2
  802. package/dist/components/loading/spinner.d.ts +0 -16
  803. package/dist/components/loading/styles.d.ts +0 -18
  804. package/dist/components/radio/index.d.ts +0 -2
  805. package/dist/components/radio/radio-description.d.ts +0 -13
  806. package/dist/components/radio/radio-group.d.ts +0 -33
  807. package/dist/components/row/index.d.ts +0 -4
  808. package/dist/components/row/row.d.ts +0 -32
  809. package/dist/components/snippet/index.d.ts +0 -2
  810. package/dist/components/snippet/snippet.d.ts +0 -36
  811. package/dist/components/snippet/styles.d.ts +0 -8
  812. package/dist/components/spacer/index.d.ts +0 -4
  813. package/dist/components/spacer/spacer.d.ts +0 -27
  814. package/dist/components/switch/index.d.ts +0 -2
  815. package/dist/components/switch/styles.d.ts +0 -6
  816. package/dist/components/switch/switch.d.ts +0 -50
  817. package/dist/components/text/child.d.ts +0 -22
  818. package/dist/components/text/index.d.ts +0 -4
  819. package/dist/components/user/index.d.ts +0 -2
  820. package/dist/components/user/user-link.d.ts +0 -16
  821. package/dist/hooks/index.d.ts +0 -5
  822. package/dist/hooks/use-theme.d.ts +0 -3
  823. package/dist/index.d.ts +0 -3
  824. package/dist/index.js +0 -1
  825. package/dist/index.min.js +0 -1
  826. package/dist/theme/common.d.ts +0 -63
  827. package/dist/theme/dark.d.ts +0 -8
  828. package/dist/theme/default.d.ts +0 -8
  829. package/dist/theme/index.d.ts +0 -2
  830. package/dist/theme/shared.d.ts +0 -4
  831. package/dist/theme/theme-context.d.ts +0 -4
  832. package/dist/theme/theme-provider.d.ts +0 -7
  833. package/dist/theme/types.d.ts +0 -94
  834. package/dist/theme/utils.d.ts +0 -7
  835. package/dist/utils/collections.d.ts +0 -4
  836. package/dist/utils/object.d.ts +0 -5
  837. package/dist/utils/prop-types.d.ts +0 -37
@@ -0,0 +1,4472 @@
1
+ import { VariantProps } from '../theme/stitches.config';
2
+ export declare const StyledCollapse: import("@stitches/react/types/styled-component").StyledComponent<"div", {
3
+ shadow?: boolean | "true" | undefined;
4
+ borderWeight?: "light" | "normal" | "bold" | "extrabold" | "black" | undefined;
5
+ divider?: boolean | "true" | undefined;
6
+ bordered?: boolean | "true" | undefined;
7
+ animated?: boolean | "true" | "false" | undefined;
8
+ visible?: boolean | "true" | "false" | undefined;
9
+ isDark?: boolean | "true" | undefined;
10
+ }, {
11
+ xs: string;
12
+ sm: string;
13
+ md: string;
14
+ lg: string;
15
+ xl: string;
16
+ xsMax: string;
17
+ smMax: string;
18
+ mdMax: string;
19
+ lgMax: string;
20
+ xlMax: string;
21
+ motion: string;
22
+ safari: string;
23
+ hover: string;
24
+ dark: string;
25
+ light: string;
26
+ }, import("@stitches/react/types/css-util").CSS<{
27
+ xs: string;
28
+ sm: string;
29
+ md: string;
30
+ lg: string;
31
+ xl: string;
32
+ xsMax: string;
33
+ smMax: string;
34
+ mdMax: string;
35
+ lgMax: string;
36
+ xlMax: string;
37
+ motion: string;
38
+ safari: string;
39
+ hover: string;
40
+ dark: string;
41
+ light: string;
42
+ }, {
43
+ shadows: {
44
+ xs: string;
45
+ sm: string;
46
+ md: string;
47
+ lg: string;
48
+ xl: string;
49
+ };
50
+ colors: {
51
+ accents1: string;
52
+ accents2: string;
53
+ accents3: string;
54
+ accents4: string;
55
+ accents5: string;
56
+ accents6: string;
57
+ accents7: string;
58
+ accents8: string;
59
+ accents9: string;
60
+ text: string;
61
+ background: string;
62
+ foreground: string;
63
+ codeLight: string;
64
+ code: string;
65
+ border: string;
66
+ selection: string;
67
+ white: string;
68
+ black: string;
69
+ blue100: string;
70
+ blue200: string;
71
+ blue300: string;
72
+ blue400: string;
73
+ blue500: string;
74
+ blue600: string;
75
+ blue700: string;
76
+ blue800: string;
77
+ blue900: string;
78
+ purple100: string;
79
+ purple200: string;
80
+ purple300: string;
81
+ purple400: string;
82
+ purple500: string;
83
+ purple600: string;
84
+ purple700: string;
85
+ purple800: string;
86
+ purple900: string;
87
+ green100: string;
88
+ green200: string;
89
+ green300: string;
90
+ green400: string;
91
+ green500: string;
92
+ green600: string;
93
+ green700: string;
94
+ green800: string;
95
+ green900: string;
96
+ yellow100: string;
97
+ yellow200: string;
98
+ yellow300: string;
99
+ yellow400: string;
100
+ yellow500: string;
101
+ yellow600: string;
102
+ yellow700: string;
103
+ yellow800: string;
104
+ yellow900: string;
105
+ red100: string;
106
+ red200: string;
107
+ red300: string;
108
+ red400: string;
109
+ red500: string;
110
+ red600: string;
111
+ red700: string;
112
+ red800: string;
113
+ red900: string;
114
+ cyan100: string;
115
+ cyan200: string;
116
+ cyan300: string;
117
+ cyan400: string;
118
+ cyan500: string;
119
+ cyan600: string;
120
+ cyan700: string;
121
+ cyan800: string;
122
+ cyan900: string;
123
+ pink100: string;
124
+ pink200: string;
125
+ pink300: string;
126
+ pink400: string;
127
+ pink500: string;
128
+ pink600: string;
129
+ pink700: string;
130
+ pink800: string;
131
+ pink900: string;
132
+ gray100: string;
133
+ gray200: string;
134
+ gray300: string;
135
+ gray400: string;
136
+ gray500: string;
137
+ gray600: string;
138
+ gray700: string;
139
+ gray800: string;
140
+ gray900: string;
141
+ primaryLight: string;
142
+ primary: string;
143
+ primaryDark: string;
144
+ secondaryLight: string;
145
+ secondary: string;
146
+ secondaryDark: string;
147
+ successLight: string;
148
+ success: string;
149
+ successDark: string;
150
+ warningLight: string;
151
+ warning: string;
152
+ warningDark: string;
153
+ errorLight: string;
154
+ error: string;
155
+ errorDark: string;
156
+ gradient: string;
157
+ link: string;
158
+ };
159
+ fonts: {
160
+ sans: string;
161
+ mono: string;
162
+ };
163
+ fontSizes: {
164
+ tiny: string;
165
+ xs: string;
166
+ base: string;
167
+ sm: string;
168
+ md: string;
169
+ lg: string;
170
+ xl: string;
171
+ };
172
+ fontWeights: {
173
+ hairline: number;
174
+ thin: number;
175
+ light: number;
176
+ normal: number;
177
+ medium: number;
178
+ semibold: number;
179
+ bold: number;
180
+ extrabold: number;
181
+ black: number;
182
+ };
183
+ lineHeights: {
184
+ xs: number;
185
+ sm: number;
186
+ md: number;
187
+ lg: number;
188
+ xl: number;
189
+ };
190
+ letterSpacings: {
191
+ tighter: string;
192
+ tight: string;
193
+ normal: string;
194
+ wide: string;
195
+ wider: string;
196
+ widest: string;
197
+ };
198
+ space: {
199
+ 0: string;
200
+ xs: string;
201
+ sm: string;
202
+ md: string;
203
+ lg: string;
204
+ xl: string;
205
+ px: string;
206
+ 1: string;
207
+ 2: string;
208
+ 3: string;
209
+ 4: string;
210
+ 5: string;
211
+ 6: string;
212
+ 7: string;
213
+ 8: string;
214
+ 9: string;
215
+ 10: string;
216
+ 11: string;
217
+ 12: string;
218
+ 13: string;
219
+ 14: string;
220
+ 15: string;
221
+ 16: string;
222
+ 17: string;
223
+ 18: string;
224
+ 20: string;
225
+ 24: string;
226
+ 28: string;
227
+ 32: string;
228
+ 36: string;
229
+ 40: string;
230
+ 44: string;
231
+ 48: string;
232
+ 52: string;
233
+ 56: string;
234
+ 60: string;
235
+ 64: string;
236
+ 72: string;
237
+ 80: string;
238
+ 96: string;
239
+ };
240
+ radii: {
241
+ xs: string;
242
+ sm: string;
243
+ md: string;
244
+ base: string;
245
+ lg: string;
246
+ xl: string;
247
+ squared: string;
248
+ rounded: string;
249
+ pill: string;
250
+ };
251
+ zIndices: {
252
+ 1: string;
253
+ 2: string;
254
+ 3: string;
255
+ 4: string;
256
+ 5: string;
257
+ 10: string;
258
+ max: string;
259
+ };
260
+ borderWeights: {
261
+ light: string;
262
+ normal: string;
263
+ bold: string;
264
+ extrabold: string;
265
+ black: string;
266
+ };
267
+ transitions: {
268
+ default: string;
269
+ };
270
+ breakpoints: {
271
+ xs: string;
272
+ sm: string;
273
+ md: string;
274
+ lg: string;
275
+ xl: string;
276
+ };
277
+ }, {
278
+ width: string;
279
+ height: string;
280
+ minWidth: string;
281
+ maxWidth: string;
282
+ minHeight: string;
283
+ maxHeight: string;
284
+ flexBasis: string;
285
+ gridTemplateColumns: string;
286
+ gridTemplateRows: string;
287
+ blockSize: string;
288
+ minBlockSize: string;
289
+ maxBlockSize: string;
290
+ inlineSize: string;
291
+ minInlineSize: string;
292
+ maxInlineSize: string;
293
+ borderWidth: string;
294
+ gap: "space";
295
+ gridGap: "space";
296
+ columnGap: "space";
297
+ gridColumnGap: "space";
298
+ rowGap: "space";
299
+ gridRowGap: "space";
300
+ inset: "space";
301
+ insetBlock: "space";
302
+ insetBlockEnd: "space";
303
+ insetBlockStart: "space";
304
+ insetInline: "space";
305
+ insetInlineEnd: "space";
306
+ insetInlineStart: "space";
307
+ margin: "space";
308
+ marginTop: "space";
309
+ marginRight: "space";
310
+ marginBottom: "space";
311
+ marginLeft: "space";
312
+ marginBlock: "space";
313
+ marginBlockEnd: "space";
314
+ marginBlockStart: "space";
315
+ marginInline: "space";
316
+ marginInlineEnd: "space";
317
+ marginInlineStart: "space";
318
+ padding: "space";
319
+ paddingTop: "space";
320
+ paddingRight: "space";
321
+ paddingBottom: "space";
322
+ paddingLeft: "space";
323
+ paddingBlock: "space";
324
+ paddingBlockEnd: "space";
325
+ paddingBlockStart: "space";
326
+ paddingInline: "space";
327
+ paddingInlineEnd: "space";
328
+ paddingInlineStart: "space";
329
+ scrollMargin: "space";
330
+ scrollMarginTop: "space";
331
+ scrollMarginRight: "space";
332
+ scrollMarginBottom: "space";
333
+ scrollMarginLeft: "space";
334
+ scrollMarginBlock: "space";
335
+ scrollMarginBlockEnd: "space";
336
+ scrollMarginBlockStart: "space";
337
+ scrollMarginInline: "space";
338
+ scrollMarginInlineEnd: "space";
339
+ scrollMarginInlineStart: "space";
340
+ scrollPadding: "space";
341
+ scrollPaddingTop: "space";
342
+ scrollPaddingRight: "space";
343
+ scrollPaddingBottom: "space";
344
+ scrollPaddingLeft: "space";
345
+ scrollPaddingBlock: "space";
346
+ scrollPaddingBlockEnd: "space";
347
+ scrollPaddingBlockStart: "space";
348
+ scrollPaddingInline: "space";
349
+ scrollPaddingInlineEnd: "space";
350
+ scrollPaddingInlineStart: "space";
351
+ top: "space";
352
+ right: "space";
353
+ bottom: "space";
354
+ left: "space";
355
+ fontSize: "fontSizes";
356
+ background: "colors";
357
+ backgroundColor: "colors";
358
+ backgroundImage: "colors";
359
+ borderImage: "colors";
360
+ border: "colors";
361
+ borderBlock: "colors";
362
+ borderBlockEnd: "colors";
363
+ borderBlockStart: "colors";
364
+ borderBottom: "colors";
365
+ borderBottomColor: "colors";
366
+ borderColor: "colors";
367
+ borderInline: "colors";
368
+ borderInlineEnd: "colors";
369
+ borderInlineStart: "colors";
370
+ borderLeft: "colors";
371
+ borderLeftColor: "colors";
372
+ borderRight: "colors";
373
+ borderRightColor: "colors";
374
+ borderTop: "colors";
375
+ borderTopColor: "colors";
376
+ caretColor: "colors";
377
+ color: "colors";
378
+ columnRuleColor: "colors";
379
+ outline: "colors";
380
+ outlineColor: "colors";
381
+ fill: "colors";
382
+ stroke: "colors";
383
+ textDecorationColor: "colors";
384
+ fontFamily: "fonts";
385
+ fontWeight: "fontWeights";
386
+ lineHeight: "lineHeights";
387
+ letterSpacing: "letterSpacings";
388
+ borderTopWidth: "borderWidths";
389
+ borderLeftWidth: "borderWidths";
390
+ borderRightWidth: "borderWidths";
391
+ borderBottomWidth: "borderWidths";
392
+ borderStyle: "borderStyles";
393
+ borderTopStyle: "borderStyles";
394
+ borderLeftStyle: "borderStyles";
395
+ borderRightStyle: "borderStyles";
396
+ borderBottomStyle: "borderStyles";
397
+ borderRadius: "radii";
398
+ borderTopLeftRadius: "radii";
399
+ borderTopRightRadius: "radii";
400
+ borderBottomRightRadius: "radii";
401
+ borderBottomLeftRadius: "radii";
402
+ boxShadow: "shadows";
403
+ textShadow: "shadows";
404
+ transition: "transitions";
405
+ zIndex: "zIndices";
406
+ }, {
407
+ p: (value: {
408
+ readonly [$$PropertyValue]: "padding";
409
+ }) => {
410
+ padding: {
411
+ readonly [$$PropertyValue]: "padding";
412
+ };
413
+ };
414
+ pt: (value: {
415
+ readonly [$$PropertyValue]: "paddingTop";
416
+ }) => {
417
+ paddingTop: {
418
+ readonly [$$PropertyValue]: "paddingTop";
419
+ };
420
+ };
421
+ pr: (value: {
422
+ readonly [$$PropertyValue]: "paddingRight";
423
+ }) => {
424
+ paddingRight: {
425
+ readonly [$$PropertyValue]: "paddingRight";
426
+ };
427
+ };
428
+ pb: (value: {
429
+ readonly [$$PropertyValue]: "paddingBottom";
430
+ }) => {
431
+ paddingBottom: {
432
+ readonly [$$PropertyValue]: "paddingBottom";
433
+ };
434
+ };
435
+ pl: (value: {
436
+ readonly [$$PropertyValue]: "paddingLeft";
437
+ }) => {
438
+ paddingLeft: {
439
+ readonly [$$PropertyValue]: "paddingLeft";
440
+ };
441
+ };
442
+ px: (value: {
443
+ readonly [$$PropertyValue]: "paddingLeft";
444
+ }) => {
445
+ paddingLeft: {
446
+ readonly [$$PropertyValue]: "paddingLeft";
447
+ };
448
+ paddingRight: {
449
+ readonly [$$PropertyValue]: "paddingLeft";
450
+ };
451
+ };
452
+ py: (value: {
453
+ readonly [$$PropertyValue]: "paddingTop";
454
+ }) => {
455
+ paddingTop: {
456
+ readonly [$$PropertyValue]: "paddingTop";
457
+ };
458
+ paddingBottom: {
459
+ readonly [$$PropertyValue]: "paddingTop";
460
+ };
461
+ };
462
+ m: (value: {
463
+ readonly [$$PropertyValue]: "margin";
464
+ }) => {
465
+ margin: {
466
+ readonly [$$PropertyValue]: "margin";
467
+ };
468
+ };
469
+ mt: (value: {
470
+ readonly [$$PropertyValue]: "marginTop";
471
+ }) => {
472
+ marginTop: {
473
+ readonly [$$PropertyValue]: "marginTop";
474
+ };
475
+ };
476
+ mr: (value: {
477
+ readonly [$$PropertyValue]: "marginRight";
478
+ }) => {
479
+ marginRight: {
480
+ readonly [$$PropertyValue]: "marginRight";
481
+ };
482
+ };
483
+ mb: (value: {
484
+ readonly [$$PropertyValue]: "marginBottom";
485
+ }) => {
486
+ marginBottom: {
487
+ readonly [$$PropertyValue]: "marginBottom";
488
+ };
489
+ };
490
+ ml: (value: {
491
+ readonly [$$PropertyValue]: "marginLeft";
492
+ }) => {
493
+ marginLeft: {
494
+ readonly [$$PropertyValue]: "marginLeft";
495
+ };
496
+ };
497
+ mx: (value: {
498
+ readonly [$$PropertyValue]: "marginLeft";
499
+ }) => {
500
+ marginLeft: {
501
+ readonly [$$PropertyValue]: "marginLeft";
502
+ };
503
+ marginRight: {
504
+ readonly [$$PropertyValue]: "marginLeft";
505
+ };
506
+ };
507
+ my: (value: {
508
+ readonly [$$PropertyValue]: "marginTop";
509
+ }) => {
510
+ marginTop: {
511
+ readonly [$$PropertyValue]: "marginTop";
512
+ };
513
+ marginBottom: {
514
+ readonly [$$PropertyValue]: "marginTop";
515
+ };
516
+ };
517
+ ta: (value: {
518
+ readonly [$$PropertyValue]: "textAlign";
519
+ }) => {
520
+ textAlign: {
521
+ readonly [$$PropertyValue]: "textAlign";
522
+ };
523
+ };
524
+ tt: (value: {
525
+ readonly [$$PropertyValue]: "textTransform";
526
+ }) => {
527
+ textTransform: {
528
+ readonly [$$PropertyValue]: "textTransform";
529
+ };
530
+ };
531
+ to: (value: {
532
+ readonly [$$PropertyValue]: "textOverflow";
533
+ }) => {
534
+ textOverflow: {
535
+ readonly [$$PropertyValue]: "textOverflow";
536
+ };
537
+ };
538
+ d: (value: {
539
+ readonly [$$PropertyValue]: "display";
540
+ }) => {
541
+ display: {
542
+ readonly [$$PropertyValue]: "display";
543
+ };
544
+ };
545
+ dflex: (value: {
546
+ readonly [$$PropertyValue]: "alignItems";
547
+ }) => {
548
+ display: string;
549
+ alignItems: {
550
+ readonly [$$PropertyValue]: "alignItems";
551
+ };
552
+ justifyContent: {
553
+ readonly [$$PropertyValue]: "alignItems";
554
+ };
555
+ };
556
+ fd: (value: {
557
+ readonly [$$PropertyValue]: "flexDirection";
558
+ }) => {
559
+ flexDirection: {
560
+ readonly [$$PropertyValue]: "flexDirection";
561
+ };
562
+ };
563
+ fw: (value: {
564
+ readonly [$$PropertyValue]: "flexWrap";
565
+ }) => {
566
+ flexWrap: {
567
+ readonly [$$PropertyValue]: "flexWrap";
568
+ };
569
+ };
570
+ ai: (value: {
571
+ readonly [$$PropertyValue]: "alignItems";
572
+ }) => {
573
+ alignItems: {
574
+ readonly [$$PropertyValue]: "alignItems";
575
+ };
576
+ };
577
+ ac: (value: {
578
+ readonly [$$PropertyValue]: "alignContent";
579
+ }) => {
580
+ alignContent: {
581
+ readonly [$$PropertyValue]: "alignContent";
582
+ };
583
+ };
584
+ jc: (value: {
585
+ readonly [$$PropertyValue]: "justifyContent";
586
+ }) => {
587
+ justifyContent: {
588
+ readonly [$$PropertyValue]: "justifyContent";
589
+ };
590
+ };
591
+ as: (value: {
592
+ readonly [$$PropertyValue]: "alignSelf";
593
+ }) => {
594
+ alignSelf: {
595
+ readonly [$$PropertyValue]: "alignSelf";
596
+ };
597
+ };
598
+ fg: (value: {
599
+ readonly [$$PropertyValue]: "flexGrow";
600
+ }) => {
601
+ flexGrow: {
602
+ readonly [$$PropertyValue]: "flexGrow";
603
+ };
604
+ };
605
+ fs: (value: {
606
+ readonly [$$PropertyValue]: "fontSize";
607
+ }) => {
608
+ fontSize: {
609
+ readonly [$$PropertyValue]: "fontSize";
610
+ };
611
+ };
612
+ fb: (value: {
613
+ readonly [$$PropertyValue]: "flexBasis";
614
+ }) => {
615
+ flexBasis: {
616
+ readonly [$$PropertyValue]: "flexBasis";
617
+ };
618
+ };
619
+ bc: (value: {
620
+ readonly [$$PropertyValue]: "backgroundColor";
621
+ }) => {
622
+ backgroundColor: {
623
+ readonly [$$PropertyValue]: "backgroundColor";
624
+ };
625
+ };
626
+ bf: (value: {
627
+ readonly [$$PropertyValue]: "backdropFilter";
628
+ }) => {
629
+ backdropFilter: {
630
+ readonly [$$PropertyValue]: "backdropFilter";
631
+ };
632
+ };
633
+ bg: (value: {
634
+ readonly [$$PropertyValue]: "backgroundColor";
635
+ }) => {
636
+ background: {
637
+ readonly [$$PropertyValue]: "backgroundColor";
638
+ };
639
+ };
640
+ bgBlur: (value: {
641
+ readonly [$$PropertyValue]: "backgroundColor";
642
+ }) => {
643
+ bf: string;
644
+ bg: string;
645
+ };
646
+ bgColor: (value: {
647
+ readonly [$$PropertyValue]: "backgroundColor";
648
+ }) => {
649
+ backgroundColor: {
650
+ readonly [$$PropertyValue]: "backgroundColor";
651
+ };
652
+ };
653
+ backgroundClip: (value: {
654
+ readonly [$$PropertyValue]: "backgroundClip";
655
+ }) => {
656
+ WebkitBackgroundClip: {
657
+ readonly [$$PropertyValue]: "backgroundClip";
658
+ };
659
+ backgroundClip: {
660
+ readonly [$$PropertyValue]: "backgroundClip";
661
+ };
662
+ };
663
+ bgClip: (value: {
664
+ readonly [$$PropertyValue]: "backgroundClip";
665
+ }) => {
666
+ WebkitBackgroundClip: {
667
+ readonly [$$PropertyValue]: "backgroundClip";
668
+ };
669
+ backgroundClip: {
670
+ readonly [$$PropertyValue]: "backgroundClip";
671
+ };
672
+ };
673
+ br: (value: {
674
+ readonly [$$PropertyValue]: "borderRadius";
675
+ }) => {
676
+ borderRadius: {
677
+ readonly [$$PropertyValue]: "borderRadius";
678
+ };
679
+ };
680
+ bw: (value: {
681
+ readonly [$$PropertyValue]: "borderWidth";
682
+ }) => {
683
+ borderWidth: {
684
+ readonly [$$PropertyValue]: "borderWidth";
685
+ };
686
+ };
687
+ btrr: (value: {
688
+ readonly [$$PropertyValue]: "borderTopRightRadius";
689
+ }) => {
690
+ borderTopRightRadius: {
691
+ readonly [$$PropertyValue]: "borderTopRightRadius";
692
+ };
693
+ };
694
+ bbrr: (value: {
695
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
696
+ }) => {
697
+ borderBottomRightRadius: {
698
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
699
+ };
700
+ };
701
+ bblr: (value: {
702
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
703
+ }) => {
704
+ borderBottomLeftRadius: {
705
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
706
+ };
707
+ };
708
+ btlr: (value: {
709
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
710
+ }) => {
711
+ borderTopLeftRadius: {
712
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
713
+ };
714
+ };
715
+ bs: (value: {
716
+ readonly [$$PropertyValue]: "boxShadow";
717
+ }) => {
718
+ boxShadow: {
719
+ readonly [$$PropertyValue]: "boxShadow";
720
+ };
721
+ };
722
+ normalShadow: (value: {
723
+ readonly [$$PropertyValue]: "backgroundColor";
724
+ }) => {
725
+ boxShadow: string;
726
+ };
727
+ normalShadowVar: (value: {
728
+ readonly [$$PropertyValue]: "backgroundColor";
729
+ }) => {
730
+ boxShadow: string;
731
+ };
732
+ lh: (value: {
733
+ readonly [$$PropertyValue]: "lineHeight";
734
+ }) => {
735
+ lineHeight: {
736
+ readonly [$$PropertyValue]: "lineHeight";
737
+ };
738
+ };
739
+ ov: (value: {
740
+ readonly [$$PropertyValue]: "overflow";
741
+ }) => {
742
+ overflow: {
743
+ readonly [$$PropertyValue]: "overflow";
744
+ };
745
+ };
746
+ ox: (value: {
747
+ readonly [$$PropertyValue]: "overflowX";
748
+ }) => {
749
+ overflowX: {
750
+ readonly [$$PropertyValue]: "overflowX";
751
+ };
752
+ };
753
+ oy: (value: {
754
+ readonly [$$PropertyValue]: "overflowY";
755
+ }) => {
756
+ overflowY: {
757
+ readonly [$$PropertyValue]: "overflowY";
758
+ };
759
+ };
760
+ pe: (value: {
761
+ readonly [$$PropertyValue]: "pointerEvents";
762
+ }) => {
763
+ pointerEvents: {
764
+ readonly [$$PropertyValue]: "pointerEvents";
765
+ };
766
+ };
767
+ events: (value: {
768
+ readonly [$$PropertyValue]: "pointerEvents";
769
+ }) => {
770
+ pointerEvents: {
771
+ readonly [$$PropertyValue]: "pointerEvents";
772
+ };
773
+ };
774
+ us: (value: {
775
+ readonly [$$PropertyValue]: "userSelect";
776
+ }) => {
777
+ WebkitUserSelect: {
778
+ readonly [$$PropertyValue]: "userSelect";
779
+ };
780
+ userSelect: {
781
+ readonly [$$PropertyValue]: "userSelect";
782
+ };
783
+ };
784
+ userSelect: (value: {
785
+ readonly [$$PropertyValue]: "userSelect";
786
+ }) => {
787
+ WebkitUserSelect: {
788
+ readonly [$$PropertyValue]: "userSelect";
789
+ };
790
+ userSelect: {
791
+ readonly [$$PropertyValue]: "userSelect";
792
+ };
793
+ };
794
+ w: (value: {
795
+ readonly [$$PropertyValue]: "width";
796
+ }) => {
797
+ width: {
798
+ readonly [$$PropertyValue]: "width";
799
+ };
800
+ };
801
+ h: (value: {
802
+ readonly [$$PropertyValue]: "height";
803
+ }) => {
804
+ height: {
805
+ readonly [$$PropertyValue]: "height";
806
+ };
807
+ };
808
+ mw: (value: {
809
+ readonly [$$PropertyValue]: "maxWidth";
810
+ }) => {
811
+ maxWidth: {
812
+ readonly [$$PropertyValue]: "maxWidth";
813
+ };
814
+ };
815
+ maxW: (value: {
816
+ readonly [$$PropertyValue]: "maxWidth";
817
+ }) => {
818
+ maxWidth: {
819
+ readonly [$$PropertyValue]: "maxWidth";
820
+ };
821
+ };
822
+ mh: (value: {
823
+ readonly [$$PropertyValue]: "maxHeight";
824
+ }) => {
825
+ maxHeight: {
826
+ readonly [$$PropertyValue]: "maxHeight";
827
+ };
828
+ };
829
+ maxH: (value: {
830
+ readonly [$$PropertyValue]: "maxHeight";
831
+ }) => {
832
+ maxHeight: {
833
+ readonly [$$PropertyValue]: "maxHeight";
834
+ };
835
+ };
836
+ size: (value: {
837
+ readonly [$$PropertyValue]: "width";
838
+ }) => {
839
+ width: {
840
+ readonly [$$PropertyValue]: "width";
841
+ };
842
+ height: {
843
+ readonly [$$PropertyValue]: "width";
844
+ };
845
+ };
846
+ sizeMin: (value: {
847
+ readonly [$$PropertyValue]: "width";
848
+ }) => {
849
+ minWidth: {
850
+ readonly [$$PropertyValue]: "width";
851
+ };
852
+ minHeight: {
853
+ readonly [$$PropertyValue]: "width";
854
+ };
855
+ width: {
856
+ readonly [$$PropertyValue]: "width";
857
+ };
858
+ height: {
859
+ readonly [$$PropertyValue]: "width";
860
+ };
861
+ };
862
+ sizeMax: (value: {
863
+ readonly [$$PropertyValue]: "width";
864
+ }) => {
865
+ maxWidth: {
866
+ readonly [$$PropertyValue]: "width";
867
+ };
868
+ maxHeight: {
869
+ readonly [$$PropertyValue]: "width";
870
+ };
871
+ };
872
+ appearance: (value: {
873
+ readonly [$$PropertyValue]: "appearance";
874
+ }) => {
875
+ WebkitAppearance: {
876
+ readonly [$$PropertyValue]: "appearance";
877
+ };
878
+ appearance: {
879
+ readonly [$$PropertyValue]: "appearance";
880
+ };
881
+ };
882
+ scale: (value: {
883
+ readonly [$$PropertyValue]: "scale";
884
+ }) => {
885
+ transform: string;
886
+ };
887
+ linearGradient: (value: {
888
+ readonly [$$PropertyValue]: "backgroundImage";
889
+ }) => {
890
+ backgroundImage: string;
891
+ };
892
+ textGradient: (value: {
893
+ readonly [$$PropertyValue]: "backgroundImage";
894
+ }) => {
895
+ backgroundImage: string;
896
+ WebkitBackgroundClip: string;
897
+ WebkitTextFillColor: string;
898
+ };
899
+ }>>;
900
+ export declare const StyledCollapseView: import("@stitches/react/types/styled-component").StyledComponent<"div", {
901
+ disabled?: boolean | "true" | undefined;
902
+ }, {
903
+ xs: string;
904
+ sm: string;
905
+ md: string;
906
+ lg: string;
907
+ xl: string;
908
+ xsMax: string;
909
+ smMax: string;
910
+ mdMax: string;
911
+ lgMax: string;
912
+ xlMax: string;
913
+ motion: string;
914
+ safari: string;
915
+ hover: string;
916
+ dark: string;
917
+ light: string;
918
+ }, import("@stitches/react/types/css-util").CSS<{
919
+ xs: string;
920
+ sm: string;
921
+ md: string;
922
+ lg: string;
923
+ xl: string;
924
+ xsMax: string;
925
+ smMax: string;
926
+ mdMax: string;
927
+ lgMax: string;
928
+ xlMax: string;
929
+ motion: string;
930
+ safari: string;
931
+ hover: string;
932
+ dark: string;
933
+ light: string;
934
+ }, {
935
+ shadows: {
936
+ xs: string;
937
+ sm: string;
938
+ md: string;
939
+ lg: string;
940
+ xl: string;
941
+ };
942
+ colors: {
943
+ accents1: string;
944
+ accents2: string;
945
+ accents3: string;
946
+ accents4: string;
947
+ accents5: string;
948
+ accents6: string;
949
+ accents7: string;
950
+ accents8: string;
951
+ accents9: string;
952
+ text: string;
953
+ background: string;
954
+ foreground: string;
955
+ codeLight: string;
956
+ code: string;
957
+ border: string;
958
+ selection: string;
959
+ white: string;
960
+ black: string;
961
+ blue100: string;
962
+ blue200: string;
963
+ blue300: string;
964
+ blue400: string;
965
+ blue500: string;
966
+ blue600: string;
967
+ blue700: string;
968
+ blue800: string;
969
+ blue900: string;
970
+ purple100: string;
971
+ purple200: string;
972
+ purple300: string;
973
+ purple400: string;
974
+ purple500: string;
975
+ purple600: string;
976
+ purple700: string;
977
+ purple800: string;
978
+ purple900: string;
979
+ green100: string;
980
+ green200: string;
981
+ green300: string;
982
+ green400: string;
983
+ green500: string;
984
+ green600: string;
985
+ green700: string;
986
+ green800: string;
987
+ green900: string;
988
+ yellow100: string;
989
+ yellow200: string;
990
+ yellow300: string;
991
+ yellow400: string;
992
+ yellow500: string;
993
+ yellow600: string;
994
+ yellow700: string;
995
+ yellow800: string;
996
+ yellow900: string;
997
+ red100: string;
998
+ red200: string;
999
+ red300: string;
1000
+ red400: string;
1001
+ red500: string;
1002
+ red600: string;
1003
+ red700: string;
1004
+ red800: string;
1005
+ red900: string;
1006
+ cyan100: string;
1007
+ cyan200: string;
1008
+ cyan300: string;
1009
+ cyan400: string;
1010
+ cyan500: string;
1011
+ cyan600: string;
1012
+ cyan700: string;
1013
+ cyan800: string;
1014
+ cyan900: string;
1015
+ pink100: string;
1016
+ pink200: string;
1017
+ pink300: string;
1018
+ pink400: string;
1019
+ pink500: string;
1020
+ pink600: string;
1021
+ pink700: string;
1022
+ pink800: string;
1023
+ pink900: string;
1024
+ gray100: string;
1025
+ gray200: string;
1026
+ gray300: string;
1027
+ gray400: string;
1028
+ gray500: string;
1029
+ gray600: string;
1030
+ gray700: string;
1031
+ gray800: string;
1032
+ gray900: string;
1033
+ primaryLight: string;
1034
+ primary: string;
1035
+ primaryDark: string;
1036
+ secondaryLight: string;
1037
+ secondary: string;
1038
+ secondaryDark: string;
1039
+ successLight: string;
1040
+ success: string;
1041
+ successDark: string;
1042
+ warningLight: string;
1043
+ warning: string;
1044
+ warningDark: string;
1045
+ errorLight: string;
1046
+ error: string;
1047
+ errorDark: string;
1048
+ gradient: string;
1049
+ link: string;
1050
+ };
1051
+ fonts: {
1052
+ sans: string;
1053
+ mono: string;
1054
+ };
1055
+ fontSizes: {
1056
+ tiny: string;
1057
+ xs: string;
1058
+ base: string;
1059
+ sm: string;
1060
+ md: string;
1061
+ lg: string;
1062
+ xl: string;
1063
+ };
1064
+ fontWeights: {
1065
+ hairline: number;
1066
+ thin: number;
1067
+ light: number;
1068
+ normal: number;
1069
+ medium: number;
1070
+ semibold: number;
1071
+ bold: number;
1072
+ extrabold: number;
1073
+ black: number;
1074
+ };
1075
+ lineHeights: {
1076
+ xs: number;
1077
+ sm: number;
1078
+ md: number;
1079
+ lg: number;
1080
+ xl: number;
1081
+ };
1082
+ letterSpacings: {
1083
+ tighter: string;
1084
+ tight: string;
1085
+ normal: string;
1086
+ wide: string;
1087
+ wider: string;
1088
+ widest: string;
1089
+ };
1090
+ space: {
1091
+ 0: string;
1092
+ xs: string;
1093
+ sm: string;
1094
+ md: string;
1095
+ lg: string;
1096
+ xl: string;
1097
+ px: string;
1098
+ 1: string;
1099
+ 2: string;
1100
+ 3: string;
1101
+ 4: string;
1102
+ 5: string;
1103
+ 6: string;
1104
+ 7: string;
1105
+ 8: string;
1106
+ 9: string;
1107
+ 10: string;
1108
+ 11: string;
1109
+ 12: string;
1110
+ 13: string;
1111
+ 14: string;
1112
+ 15: string;
1113
+ 16: string;
1114
+ 17: string;
1115
+ 18: string;
1116
+ 20: string;
1117
+ 24: string;
1118
+ 28: string;
1119
+ 32: string;
1120
+ 36: string;
1121
+ 40: string;
1122
+ 44: string;
1123
+ 48: string;
1124
+ 52: string;
1125
+ 56: string;
1126
+ 60: string;
1127
+ 64: string;
1128
+ 72: string;
1129
+ 80: string;
1130
+ 96: string;
1131
+ };
1132
+ radii: {
1133
+ xs: string;
1134
+ sm: string;
1135
+ md: string;
1136
+ base: string;
1137
+ lg: string;
1138
+ xl: string;
1139
+ squared: string;
1140
+ rounded: string;
1141
+ pill: string;
1142
+ };
1143
+ zIndices: {
1144
+ 1: string;
1145
+ 2: string;
1146
+ 3: string;
1147
+ 4: string;
1148
+ 5: string;
1149
+ 10: string;
1150
+ max: string;
1151
+ };
1152
+ borderWeights: {
1153
+ light: string;
1154
+ normal: string;
1155
+ bold: string;
1156
+ extrabold: string;
1157
+ black: string;
1158
+ };
1159
+ transitions: {
1160
+ default: string;
1161
+ };
1162
+ breakpoints: {
1163
+ xs: string;
1164
+ sm: string;
1165
+ md: string;
1166
+ lg: string;
1167
+ xl: string;
1168
+ };
1169
+ }, {
1170
+ width: string;
1171
+ height: string;
1172
+ minWidth: string;
1173
+ maxWidth: string;
1174
+ minHeight: string;
1175
+ maxHeight: string;
1176
+ flexBasis: string;
1177
+ gridTemplateColumns: string;
1178
+ gridTemplateRows: string;
1179
+ blockSize: string;
1180
+ minBlockSize: string;
1181
+ maxBlockSize: string;
1182
+ inlineSize: string;
1183
+ minInlineSize: string;
1184
+ maxInlineSize: string;
1185
+ borderWidth: string;
1186
+ gap: "space";
1187
+ gridGap: "space";
1188
+ columnGap: "space";
1189
+ gridColumnGap: "space";
1190
+ rowGap: "space";
1191
+ gridRowGap: "space";
1192
+ inset: "space";
1193
+ insetBlock: "space";
1194
+ insetBlockEnd: "space";
1195
+ insetBlockStart: "space";
1196
+ insetInline: "space";
1197
+ insetInlineEnd: "space";
1198
+ insetInlineStart: "space";
1199
+ margin: "space";
1200
+ marginTop: "space";
1201
+ marginRight: "space";
1202
+ marginBottom: "space";
1203
+ marginLeft: "space";
1204
+ marginBlock: "space";
1205
+ marginBlockEnd: "space";
1206
+ marginBlockStart: "space";
1207
+ marginInline: "space";
1208
+ marginInlineEnd: "space";
1209
+ marginInlineStart: "space";
1210
+ padding: "space";
1211
+ paddingTop: "space";
1212
+ paddingRight: "space";
1213
+ paddingBottom: "space";
1214
+ paddingLeft: "space";
1215
+ paddingBlock: "space";
1216
+ paddingBlockEnd: "space";
1217
+ paddingBlockStart: "space";
1218
+ paddingInline: "space";
1219
+ paddingInlineEnd: "space";
1220
+ paddingInlineStart: "space";
1221
+ scrollMargin: "space";
1222
+ scrollMarginTop: "space";
1223
+ scrollMarginRight: "space";
1224
+ scrollMarginBottom: "space";
1225
+ scrollMarginLeft: "space";
1226
+ scrollMarginBlock: "space";
1227
+ scrollMarginBlockEnd: "space";
1228
+ scrollMarginBlockStart: "space";
1229
+ scrollMarginInline: "space";
1230
+ scrollMarginInlineEnd: "space";
1231
+ scrollMarginInlineStart: "space";
1232
+ scrollPadding: "space";
1233
+ scrollPaddingTop: "space";
1234
+ scrollPaddingRight: "space";
1235
+ scrollPaddingBottom: "space";
1236
+ scrollPaddingLeft: "space";
1237
+ scrollPaddingBlock: "space";
1238
+ scrollPaddingBlockEnd: "space";
1239
+ scrollPaddingBlockStart: "space";
1240
+ scrollPaddingInline: "space";
1241
+ scrollPaddingInlineEnd: "space";
1242
+ scrollPaddingInlineStart: "space";
1243
+ top: "space";
1244
+ right: "space";
1245
+ bottom: "space";
1246
+ left: "space";
1247
+ fontSize: "fontSizes";
1248
+ background: "colors";
1249
+ backgroundColor: "colors";
1250
+ backgroundImage: "colors";
1251
+ borderImage: "colors";
1252
+ border: "colors";
1253
+ borderBlock: "colors";
1254
+ borderBlockEnd: "colors";
1255
+ borderBlockStart: "colors";
1256
+ borderBottom: "colors";
1257
+ borderBottomColor: "colors";
1258
+ borderColor: "colors";
1259
+ borderInline: "colors";
1260
+ borderInlineEnd: "colors";
1261
+ borderInlineStart: "colors";
1262
+ borderLeft: "colors";
1263
+ borderLeftColor: "colors";
1264
+ borderRight: "colors";
1265
+ borderRightColor: "colors";
1266
+ borderTop: "colors";
1267
+ borderTopColor: "colors";
1268
+ caretColor: "colors";
1269
+ color: "colors";
1270
+ columnRuleColor: "colors";
1271
+ outline: "colors";
1272
+ outlineColor: "colors";
1273
+ fill: "colors";
1274
+ stroke: "colors";
1275
+ textDecorationColor: "colors";
1276
+ fontFamily: "fonts";
1277
+ fontWeight: "fontWeights";
1278
+ lineHeight: "lineHeights";
1279
+ letterSpacing: "letterSpacings";
1280
+ borderTopWidth: "borderWidths";
1281
+ borderLeftWidth: "borderWidths";
1282
+ borderRightWidth: "borderWidths";
1283
+ borderBottomWidth: "borderWidths";
1284
+ borderStyle: "borderStyles";
1285
+ borderTopStyle: "borderStyles";
1286
+ borderLeftStyle: "borderStyles";
1287
+ borderRightStyle: "borderStyles";
1288
+ borderBottomStyle: "borderStyles";
1289
+ borderRadius: "radii";
1290
+ borderTopLeftRadius: "radii";
1291
+ borderTopRightRadius: "radii";
1292
+ borderBottomRightRadius: "radii";
1293
+ borderBottomLeftRadius: "radii";
1294
+ boxShadow: "shadows";
1295
+ textShadow: "shadows";
1296
+ transition: "transitions";
1297
+ zIndex: "zIndices";
1298
+ }, {
1299
+ p: (value: {
1300
+ readonly [$$PropertyValue]: "padding";
1301
+ }) => {
1302
+ padding: {
1303
+ readonly [$$PropertyValue]: "padding";
1304
+ };
1305
+ };
1306
+ pt: (value: {
1307
+ readonly [$$PropertyValue]: "paddingTop";
1308
+ }) => {
1309
+ paddingTop: {
1310
+ readonly [$$PropertyValue]: "paddingTop";
1311
+ };
1312
+ };
1313
+ pr: (value: {
1314
+ readonly [$$PropertyValue]: "paddingRight";
1315
+ }) => {
1316
+ paddingRight: {
1317
+ readonly [$$PropertyValue]: "paddingRight";
1318
+ };
1319
+ };
1320
+ pb: (value: {
1321
+ readonly [$$PropertyValue]: "paddingBottom";
1322
+ }) => {
1323
+ paddingBottom: {
1324
+ readonly [$$PropertyValue]: "paddingBottom";
1325
+ };
1326
+ };
1327
+ pl: (value: {
1328
+ readonly [$$PropertyValue]: "paddingLeft";
1329
+ }) => {
1330
+ paddingLeft: {
1331
+ readonly [$$PropertyValue]: "paddingLeft";
1332
+ };
1333
+ };
1334
+ px: (value: {
1335
+ readonly [$$PropertyValue]: "paddingLeft";
1336
+ }) => {
1337
+ paddingLeft: {
1338
+ readonly [$$PropertyValue]: "paddingLeft";
1339
+ };
1340
+ paddingRight: {
1341
+ readonly [$$PropertyValue]: "paddingLeft";
1342
+ };
1343
+ };
1344
+ py: (value: {
1345
+ readonly [$$PropertyValue]: "paddingTop";
1346
+ }) => {
1347
+ paddingTop: {
1348
+ readonly [$$PropertyValue]: "paddingTop";
1349
+ };
1350
+ paddingBottom: {
1351
+ readonly [$$PropertyValue]: "paddingTop";
1352
+ };
1353
+ };
1354
+ m: (value: {
1355
+ readonly [$$PropertyValue]: "margin";
1356
+ }) => {
1357
+ margin: {
1358
+ readonly [$$PropertyValue]: "margin";
1359
+ };
1360
+ };
1361
+ mt: (value: {
1362
+ readonly [$$PropertyValue]: "marginTop";
1363
+ }) => {
1364
+ marginTop: {
1365
+ readonly [$$PropertyValue]: "marginTop";
1366
+ };
1367
+ };
1368
+ mr: (value: {
1369
+ readonly [$$PropertyValue]: "marginRight";
1370
+ }) => {
1371
+ marginRight: {
1372
+ readonly [$$PropertyValue]: "marginRight";
1373
+ };
1374
+ };
1375
+ mb: (value: {
1376
+ readonly [$$PropertyValue]: "marginBottom";
1377
+ }) => {
1378
+ marginBottom: {
1379
+ readonly [$$PropertyValue]: "marginBottom";
1380
+ };
1381
+ };
1382
+ ml: (value: {
1383
+ readonly [$$PropertyValue]: "marginLeft";
1384
+ }) => {
1385
+ marginLeft: {
1386
+ readonly [$$PropertyValue]: "marginLeft";
1387
+ };
1388
+ };
1389
+ mx: (value: {
1390
+ readonly [$$PropertyValue]: "marginLeft";
1391
+ }) => {
1392
+ marginLeft: {
1393
+ readonly [$$PropertyValue]: "marginLeft";
1394
+ };
1395
+ marginRight: {
1396
+ readonly [$$PropertyValue]: "marginLeft";
1397
+ };
1398
+ };
1399
+ my: (value: {
1400
+ readonly [$$PropertyValue]: "marginTop";
1401
+ }) => {
1402
+ marginTop: {
1403
+ readonly [$$PropertyValue]: "marginTop";
1404
+ };
1405
+ marginBottom: {
1406
+ readonly [$$PropertyValue]: "marginTop";
1407
+ };
1408
+ };
1409
+ ta: (value: {
1410
+ readonly [$$PropertyValue]: "textAlign";
1411
+ }) => {
1412
+ textAlign: {
1413
+ readonly [$$PropertyValue]: "textAlign";
1414
+ };
1415
+ };
1416
+ tt: (value: {
1417
+ readonly [$$PropertyValue]: "textTransform";
1418
+ }) => {
1419
+ textTransform: {
1420
+ readonly [$$PropertyValue]: "textTransform";
1421
+ };
1422
+ };
1423
+ to: (value: {
1424
+ readonly [$$PropertyValue]: "textOverflow";
1425
+ }) => {
1426
+ textOverflow: {
1427
+ readonly [$$PropertyValue]: "textOverflow";
1428
+ };
1429
+ };
1430
+ d: (value: {
1431
+ readonly [$$PropertyValue]: "display";
1432
+ }) => {
1433
+ display: {
1434
+ readonly [$$PropertyValue]: "display";
1435
+ };
1436
+ };
1437
+ dflex: (value: {
1438
+ readonly [$$PropertyValue]: "alignItems";
1439
+ }) => {
1440
+ display: string;
1441
+ alignItems: {
1442
+ readonly [$$PropertyValue]: "alignItems";
1443
+ };
1444
+ justifyContent: {
1445
+ readonly [$$PropertyValue]: "alignItems";
1446
+ };
1447
+ };
1448
+ fd: (value: {
1449
+ readonly [$$PropertyValue]: "flexDirection";
1450
+ }) => {
1451
+ flexDirection: {
1452
+ readonly [$$PropertyValue]: "flexDirection";
1453
+ };
1454
+ };
1455
+ fw: (value: {
1456
+ readonly [$$PropertyValue]: "flexWrap";
1457
+ }) => {
1458
+ flexWrap: {
1459
+ readonly [$$PropertyValue]: "flexWrap";
1460
+ };
1461
+ };
1462
+ ai: (value: {
1463
+ readonly [$$PropertyValue]: "alignItems";
1464
+ }) => {
1465
+ alignItems: {
1466
+ readonly [$$PropertyValue]: "alignItems";
1467
+ };
1468
+ };
1469
+ ac: (value: {
1470
+ readonly [$$PropertyValue]: "alignContent";
1471
+ }) => {
1472
+ alignContent: {
1473
+ readonly [$$PropertyValue]: "alignContent";
1474
+ };
1475
+ };
1476
+ jc: (value: {
1477
+ readonly [$$PropertyValue]: "justifyContent";
1478
+ }) => {
1479
+ justifyContent: {
1480
+ readonly [$$PropertyValue]: "justifyContent";
1481
+ };
1482
+ };
1483
+ as: (value: {
1484
+ readonly [$$PropertyValue]: "alignSelf";
1485
+ }) => {
1486
+ alignSelf: {
1487
+ readonly [$$PropertyValue]: "alignSelf";
1488
+ };
1489
+ };
1490
+ fg: (value: {
1491
+ readonly [$$PropertyValue]: "flexGrow";
1492
+ }) => {
1493
+ flexGrow: {
1494
+ readonly [$$PropertyValue]: "flexGrow";
1495
+ };
1496
+ };
1497
+ fs: (value: {
1498
+ readonly [$$PropertyValue]: "fontSize";
1499
+ }) => {
1500
+ fontSize: {
1501
+ readonly [$$PropertyValue]: "fontSize";
1502
+ };
1503
+ };
1504
+ fb: (value: {
1505
+ readonly [$$PropertyValue]: "flexBasis";
1506
+ }) => {
1507
+ flexBasis: {
1508
+ readonly [$$PropertyValue]: "flexBasis";
1509
+ };
1510
+ };
1511
+ bc: (value: {
1512
+ readonly [$$PropertyValue]: "backgroundColor";
1513
+ }) => {
1514
+ backgroundColor: {
1515
+ readonly [$$PropertyValue]: "backgroundColor";
1516
+ };
1517
+ };
1518
+ bf: (value: {
1519
+ readonly [$$PropertyValue]: "backdropFilter";
1520
+ }) => {
1521
+ backdropFilter: {
1522
+ readonly [$$PropertyValue]: "backdropFilter";
1523
+ };
1524
+ };
1525
+ bg: (value: {
1526
+ readonly [$$PropertyValue]: "backgroundColor";
1527
+ }) => {
1528
+ background: {
1529
+ readonly [$$PropertyValue]: "backgroundColor";
1530
+ };
1531
+ };
1532
+ bgBlur: (value: {
1533
+ readonly [$$PropertyValue]: "backgroundColor";
1534
+ }) => {
1535
+ bf: string;
1536
+ bg: string;
1537
+ };
1538
+ bgColor: (value: {
1539
+ readonly [$$PropertyValue]: "backgroundColor";
1540
+ }) => {
1541
+ backgroundColor: {
1542
+ readonly [$$PropertyValue]: "backgroundColor";
1543
+ };
1544
+ };
1545
+ backgroundClip: (value: {
1546
+ readonly [$$PropertyValue]: "backgroundClip";
1547
+ }) => {
1548
+ WebkitBackgroundClip: {
1549
+ readonly [$$PropertyValue]: "backgroundClip";
1550
+ };
1551
+ backgroundClip: {
1552
+ readonly [$$PropertyValue]: "backgroundClip";
1553
+ };
1554
+ };
1555
+ bgClip: (value: {
1556
+ readonly [$$PropertyValue]: "backgroundClip";
1557
+ }) => {
1558
+ WebkitBackgroundClip: {
1559
+ readonly [$$PropertyValue]: "backgroundClip";
1560
+ };
1561
+ backgroundClip: {
1562
+ readonly [$$PropertyValue]: "backgroundClip";
1563
+ };
1564
+ };
1565
+ br: (value: {
1566
+ readonly [$$PropertyValue]: "borderRadius";
1567
+ }) => {
1568
+ borderRadius: {
1569
+ readonly [$$PropertyValue]: "borderRadius";
1570
+ };
1571
+ };
1572
+ bw: (value: {
1573
+ readonly [$$PropertyValue]: "borderWidth";
1574
+ }) => {
1575
+ borderWidth: {
1576
+ readonly [$$PropertyValue]: "borderWidth";
1577
+ };
1578
+ };
1579
+ btrr: (value: {
1580
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1581
+ }) => {
1582
+ borderTopRightRadius: {
1583
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1584
+ };
1585
+ };
1586
+ bbrr: (value: {
1587
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1588
+ }) => {
1589
+ borderBottomRightRadius: {
1590
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1591
+ };
1592
+ };
1593
+ bblr: (value: {
1594
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1595
+ }) => {
1596
+ borderBottomLeftRadius: {
1597
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1598
+ };
1599
+ };
1600
+ btlr: (value: {
1601
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1602
+ }) => {
1603
+ borderTopLeftRadius: {
1604
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1605
+ };
1606
+ };
1607
+ bs: (value: {
1608
+ readonly [$$PropertyValue]: "boxShadow";
1609
+ }) => {
1610
+ boxShadow: {
1611
+ readonly [$$PropertyValue]: "boxShadow";
1612
+ };
1613
+ };
1614
+ normalShadow: (value: {
1615
+ readonly [$$PropertyValue]: "backgroundColor";
1616
+ }) => {
1617
+ boxShadow: string;
1618
+ };
1619
+ normalShadowVar: (value: {
1620
+ readonly [$$PropertyValue]: "backgroundColor";
1621
+ }) => {
1622
+ boxShadow: string;
1623
+ };
1624
+ lh: (value: {
1625
+ readonly [$$PropertyValue]: "lineHeight";
1626
+ }) => {
1627
+ lineHeight: {
1628
+ readonly [$$PropertyValue]: "lineHeight";
1629
+ };
1630
+ };
1631
+ ov: (value: {
1632
+ readonly [$$PropertyValue]: "overflow";
1633
+ }) => {
1634
+ overflow: {
1635
+ readonly [$$PropertyValue]: "overflow";
1636
+ };
1637
+ };
1638
+ ox: (value: {
1639
+ readonly [$$PropertyValue]: "overflowX";
1640
+ }) => {
1641
+ overflowX: {
1642
+ readonly [$$PropertyValue]: "overflowX";
1643
+ };
1644
+ };
1645
+ oy: (value: {
1646
+ readonly [$$PropertyValue]: "overflowY";
1647
+ }) => {
1648
+ overflowY: {
1649
+ readonly [$$PropertyValue]: "overflowY";
1650
+ };
1651
+ };
1652
+ pe: (value: {
1653
+ readonly [$$PropertyValue]: "pointerEvents";
1654
+ }) => {
1655
+ pointerEvents: {
1656
+ readonly [$$PropertyValue]: "pointerEvents";
1657
+ };
1658
+ };
1659
+ events: (value: {
1660
+ readonly [$$PropertyValue]: "pointerEvents";
1661
+ }) => {
1662
+ pointerEvents: {
1663
+ readonly [$$PropertyValue]: "pointerEvents";
1664
+ };
1665
+ };
1666
+ us: (value: {
1667
+ readonly [$$PropertyValue]: "userSelect";
1668
+ }) => {
1669
+ WebkitUserSelect: {
1670
+ readonly [$$PropertyValue]: "userSelect";
1671
+ };
1672
+ userSelect: {
1673
+ readonly [$$PropertyValue]: "userSelect";
1674
+ };
1675
+ };
1676
+ userSelect: (value: {
1677
+ readonly [$$PropertyValue]: "userSelect";
1678
+ }) => {
1679
+ WebkitUserSelect: {
1680
+ readonly [$$PropertyValue]: "userSelect";
1681
+ };
1682
+ userSelect: {
1683
+ readonly [$$PropertyValue]: "userSelect";
1684
+ };
1685
+ };
1686
+ w: (value: {
1687
+ readonly [$$PropertyValue]: "width";
1688
+ }) => {
1689
+ width: {
1690
+ readonly [$$PropertyValue]: "width";
1691
+ };
1692
+ };
1693
+ h: (value: {
1694
+ readonly [$$PropertyValue]: "height";
1695
+ }) => {
1696
+ height: {
1697
+ readonly [$$PropertyValue]: "height";
1698
+ };
1699
+ };
1700
+ mw: (value: {
1701
+ readonly [$$PropertyValue]: "maxWidth";
1702
+ }) => {
1703
+ maxWidth: {
1704
+ readonly [$$PropertyValue]: "maxWidth";
1705
+ };
1706
+ };
1707
+ maxW: (value: {
1708
+ readonly [$$PropertyValue]: "maxWidth";
1709
+ }) => {
1710
+ maxWidth: {
1711
+ readonly [$$PropertyValue]: "maxWidth";
1712
+ };
1713
+ };
1714
+ mh: (value: {
1715
+ readonly [$$PropertyValue]: "maxHeight";
1716
+ }) => {
1717
+ maxHeight: {
1718
+ readonly [$$PropertyValue]: "maxHeight";
1719
+ };
1720
+ };
1721
+ maxH: (value: {
1722
+ readonly [$$PropertyValue]: "maxHeight";
1723
+ }) => {
1724
+ maxHeight: {
1725
+ readonly [$$PropertyValue]: "maxHeight";
1726
+ };
1727
+ };
1728
+ size: (value: {
1729
+ readonly [$$PropertyValue]: "width";
1730
+ }) => {
1731
+ width: {
1732
+ readonly [$$PropertyValue]: "width";
1733
+ };
1734
+ height: {
1735
+ readonly [$$PropertyValue]: "width";
1736
+ };
1737
+ };
1738
+ sizeMin: (value: {
1739
+ readonly [$$PropertyValue]: "width";
1740
+ }) => {
1741
+ minWidth: {
1742
+ readonly [$$PropertyValue]: "width";
1743
+ };
1744
+ minHeight: {
1745
+ readonly [$$PropertyValue]: "width";
1746
+ };
1747
+ width: {
1748
+ readonly [$$PropertyValue]: "width";
1749
+ };
1750
+ height: {
1751
+ readonly [$$PropertyValue]: "width";
1752
+ };
1753
+ };
1754
+ sizeMax: (value: {
1755
+ readonly [$$PropertyValue]: "width";
1756
+ }) => {
1757
+ maxWidth: {
1758
+ readonly [$$PropertyValue]: "width";
1759
+ };
1760
+ maxHeight: {
1761
+ readonly [$$PropertyValue]: "width";
1762
+ };
1763
+ };
1764
+ appearance: (value: {
1765
+ readonly [$$PropertyValue]: "appearance";
1766
+ }) => {
1767
+ WebkitAppearance: {
1768
+ readonly [$$PropertyValue]: "appearance";
1769
+ };
1770
+ appearance: {
1771
+ readonly [$$PropertyValue]: "appearance";
1772
+ };
1773
+ };
1774
+ scale: (value: {
1775
+ readonly [$$PropertyValue]: "scale";
1776
+ }) => {
1777
+ transform: string;
1778
+ };
1779
+ linearGradient: (value: {
1780
+ readonly [$$PropertyValue]: "backgroundImage";
1781
+ }) => {
1782
+ backgroundImage: string;
1783
+ };
1784
+ textGradient: (value: {
1785
+ readonly [$$PropertyValue]: "backgroundImage";
1786
+ }) => {
1787
+ backgroundImage: string;
1788
+ WebkitBackgroundClip: string;
1789
+ WebkitTextFillColor: string;
1790
+ };
1791
+ }>>;
1792
+ export declare const StyledCollapseContent: import("@stitches/react/types/styled-component").StyledComponent<"div", {}, {
1793
+ xs: string;
1794
+ sm: string;
1795
+ md: string;
1796
+ lg: string;
1797
+ xl: string;
1798
+ xsMax: string;
1799
+ smMax: string;
1800
+ mdMax: string;
1801
+ lgMax: string;
1802
+ xlMax: string;
1803
+ motion: string;
1804
+ safari: string;
1805
+ hover: string;
1806
+ dark: string;
1807
+ light: string;
1808
+ }, import("@stitches/react/types/css-util").CSS<{
1809
+ xs: string;
1810
+ sm: string;
1811
+ md: string;
1812
+ lg: string;
1813
+ xl: string;
1814
+ xsMax: string;
1815
+ smMax: string;
1816
+ mdMax: string;
1817
+ lgMax: string;
1818
+ xlMax: string;
1819
+ motion: string;
1820
+ safari: string;
1821
+ hover: string;
1822
+ dark: string;
1823
+ light: string;
1824
+ }, {
1825
+ shadows: {
1826
+ xs: string;
1827
+ sm: string;
1828
+ md: string;
1829
+ lg: string;
1830
+ xl: string;
1831
+ };
1832
+ colors: {
1833
+ accents1: string;
1834
+ accents2: string;
1835
+ accents3: string;
1836
+ accents4: string;
1837
+ accents5: string;
1838
+ accents6: string;
1839
+ accents7: string;
1840
+ accents8: string;
1841
+ accents9: string;
1842
+ text: string;
1843
+ background: string;
1844
+ foreground: string;
1845
+ codeLight: string;
1846
+ code: string;
1847
+ border: string;
1848
+ selection: string;
1849
+ white: string;
1850
+ black: string;
1851
+ blue100: string;
1852
+ blue200: string;
1853
+ blue300: string;
1854
+ blue400: string;
1855
+ blue500: string;
1856
+ blue600: string;
1857
+ blue700: string;
1858
+ blue800: string;
1859
+ blue900: string;
1860
+ purple100: string;
1861
+ purple200: string;
1862
+ purple300: string;
1863
+ purple400: string;
1864
+ purple500: string;
1865
+ purple600: string;
1866
+ purple700: string;
1867
+ purple800: string;
1868
+ purple900: string;
1869
+ green100: string;
1870
+ green200: string;
1871
+ green300: string;
1872
+ green400: string;
1873
+ green500: string;
1874
+ green600: string;
1875
+ green700: string;
1876
+ green800: string;
1877
+ green900: string;
1878
+ yellow100: string;
1879
+ yellow200: string;
1880
+ yellow300: string;
1881
+ yellow400: string;
1882
+ yellow500: string;
1883
+ yellow600: string;
1884
+ yellow700: string;
1885
+ yellow800: string;
1886
+ yellow900: string;
1887
+ red100: string;
1888
+ red200: string;
1889
+ red300: string;
1890
+ red400: string;
1891
+ red500: string;
1892
+ red600: string;
1893
+ red700: string;
1894
+ red800: string;
1895
+ red900: string;
1896
+ cyan100: string;
1897
+ cyan200: string;
1898
+ cyan300: string;
1899
+ cyan400: string;
1900
+ cyan500: string;
1901
+ cyan600: string;
1902
+ cyan700: string;
1903
+ cyan800: string;
1904
+ cyan900: string;
1905
+ pink100: string;
1906
+ pink200: string;
1907
+ pink300: string;
1908
+ pink400: string;
1909
+ pink500: string;
1910
+ pink600: string;
1911
+ pink700: string;
1912
+ pink800: string;
1913
+ pink900: string;
1914
+ gray100: string;
1915
+ gray200: string;
1916
+ gray300: string;
1917
+ gray400: string;
1918
+ gray500: string;
1919
+ gray600: string;
1920
+ gray700: string;
1921
+ gray800: string;
1922
+ gray900: string;
1923
+ primaryLight: string;
1924
+ primary: string;
1925
+ primaryDark: string;
1926
+ secondaryLight: string;
1927
+ secondary: string;
1928
+ secondaryDark: string;
1929
+ successLight: string;
1930
+ success: string;
1931
+ successDark: string;
1932
+ warningLight: string;
1933
+ warning: string;
1934
+ warningDark: string;
1935
+ errorLight: string;
1936
+ error: string;
1937
+ errorDark: string;
1938
+ gradient: string;
1939
+ link: string;
1940
+ };
1941
+ fonts: {
1942
+ sans: string;
1943
+ mono: string;
1944
+ };
1945
+ fontSizes: {
1946
+ tiny: string;
1947
+ xs: string;
1948
+ base: string;
1949
+ sm: string;
1950
+ md: string;
1951
+ lg: string;
1952
+ xl: string;
1953
+ };
1954
+ fontWeights: {
1955
+ hairline: number;
1956
+ thin: number;
1957
+ light: number;
1958
+ normal: number;
1959
+ medium: number;
1960
+ semibold: number;
1961
+ bold: number;
1962
+ extrabold: number;
1963
+ black: number;
1964
+ };
1965
+ lineHeights: {
1966
+ xs: number;
1967
+ sm: number;
1968
+ md: number;
1969
+ lg: number;
1970
+ xl: number;
1971
+ };
1972
+ letterSpacings: {
1973
+ tighter: string;
1974
+ tight: string;
1975
+ normal: string;
1976
+ wide: string;
1977
+ wider: string;
1978
+ widest: string;
1979
+ };
1980
+ space: {
1981
+ 0: string;
1982
+ xs: string;
1983
+ sm: string;
1984
+ md: string;
1985
+ lg: string;
1986
+ xl: string;
1987
+ px: string;
1988
+ 1: string;
1989
+ 2: string;
1990
+ 3: string;
1991
+ 4: string;
1992
+ 5: string;
1993
+ 6: string;
1994
+ 7: string;
1995
+ 8: string;
1996
+ 9: string;
1997
+ 10: string;
1998
+ 11: string;
1999
+ 12: string;
2000
+ 13: string;
2001
+ 14: string;
2002
+ 15: string;
2003
+ 16: string;
2004
+ 17: string;
2005
+ 18: string;
2006
+ 20: string;
2007
+ 24: string;
2008
+ 28: string;
2009
+ 32: string;
2010
+ 36: string;
2011
+ 40: string;
2012
+ 44: string;
2013
+ 48: string;
2014
+ 52: string;
2015
+ 56: string;
2016
+ 60: string;
2017
+ 64: string;
2018
+ 72: string;
2019
+ 80: string;
2020
+ 96: string;
2021
+ };
2022
+ radii: {
2023
+ xs: string;
2024
+ sm: string;
2025
+ md: string;
2026
+ base: string;
2027
+ lg: string;
2028
+ xl: string;
2029
+ squared: string;
2030
+ rounded: string;
2031
+ pill: string;
2032
+ };
2033
+ zIndices: {
2034
+ 1: string;
2035
+ 2: string;
2036
+ 3: string;
2037
+ 4: string;
2038
+ 5: string;
2039
+ 10: string;
2040
+ max: string;
2041
+ };
2042
+ borderWeights: {
2043
+ light: string;
2044
+ normal: string;
2045
+ bold: string;
2046
+ extrabold: string;
2047
+ black: string;
2048
+ };
2049
+ transitions: {
2050
+ default: string;
2051
+ };
2052
+ breakpoints: {
2053
+ xs: string;
2054
+ sm: string;
2055
+ md: string;
2056
+ lg: string;
2057
+ xl: string;
2058
+ };
2059
+ }, {
2060
+ width: string;
2061
+ height: string;
2062
+ minWidth: string;
2063
+ maxWidth: string;
2064
+ minHeight: string;
2065
+ maxHeight: string;
2066
+ flexBasis: string;
2067
+ gridTemplateColumns: string;
2068
+ gridTemplateRows: string;
2069
+ blockSize: string;
2070
+ minBlockSize: string;
2071
+ maxBlockSize: string;
2072
+ inlineSize: string;
2073
+ minInlineSize: string;
2074
+ maxInlineSize: string;
2075
+ borderWidth: string;
2076
+ gap: "space";
2077
+ gridGap: "space";
2078
+ columnGap: "space";
2079
+ gridColumnGap: "space";
2080
+ rowGap: "space";
2081
+ gridRowGap: "space";
2082
+ inset: "space";
2083
+ insetBlock: "space";
2084
+ insetBlockEnd: "space";
2085
+ insetBlockStart: "space";
2086
+ insetInline: "space";
2087
+ insetInlineEnd: "space";
2088
+ insetInlineStart: "space";
2089
+ margin: "space";
2090
+ marginTop: "space";
2091
+ marginRight: "space";
2092
+ marginBottom: "space";
2093
+ marginLeft: "space";
2094
+ marginBlock: "space";
2095
+ marginBlockEnd: "space";
2096
+ marginBlockStart: "space";
2097
+ marginInline: "space";
2098
+ marginInlineEnd: "space";
2099
+ marginInlineStart: "space";
2100
+ padding: "space";
2101
+ paddingTop: "space";
2102
+ paddingRight: "space";
2103
+ paddingBottom: "space";
2104
+ paddingLeft: "space";
2105
+ paddingBlock: "space";
2106
+ paddingBlockEnd: "space";
2107
+ paddingBlockStart: "space";
2108
+ paddingInline: "space";
2109
+ paddingInlineEnd: "space";
2110
+ paddingInlineStart: "space";
2111
+ scrollMargin: "space";
2112
+ scrollMarginTop: "space";
2113
+ scrollMarginRight: "space";
2114
+ scrollMarginBottom: "space";
2115
+ scrollMarginLeft: "space";
2116
+ scrollMarginBlock: "space";
2117
+ scrollMarginBlockEnd: "space";
2118
+ scrollMarginBlockStart: "space";
2119
+ scrollMarginInline: "space";
2120
+ scrollMarginInlineEnd: "space";
2121
+ scrollMarginInlineStart: "space";
2122
+ scrollPadding: "space";
2123
+ scrollPaddingTop: "space";
2124
+ scrollPaddingRight: "space";
2125
+ scrollPaddingBottom: "space";
2126
+ scrollPaddingLeft: "space";
2127
+ scrollPaddingBlock: "space";
2128
+ scrollPaddingBlockEnd: "space";
2129
+ scrollPaddingBlockStart: "space";
2130
+ scrollPaddingInline: "space";
2131
+ scrollPaddingInlineEnd: "space";
2132
+ scrollPaddingInlineStart: "space";
2133
+ top: "space";
2134
+ right: "space";
2135
+ bottom: "space";
2136
+ left: "space";
2137
+ fontSize: "fontSizes";
2138
+ background: "colors";
2139
+ backgroundColor: "colors";
2140
+ backgroundImage: "colors";
2141
+ borderImage: "colors";
2142
+ border: "colors";
2143
+ borderBlock: "colors";
2144
+ borderBlockEnd: "colors";
2145
+ borderBlockStart: "colors";
2146
+ borderBottom: "colors";
2147
+ borderBottomColor: "colors";
2148
+ borderColor: "colors";
2149
+ borderInline: "colors";
2150
+ borderInlineEnd: "colors";
2151
+ borderInlineStart: "colors";
2152
+ borderLeft: "colors";
2153
+ borderLeftColor: "colors";
2154
+ borderRight: "colors";
2155
+ borderRightColor: "colors";
2156
+ borderTop: "colors";
2157
+ borderTopColor: "colors";
2158
+ caretColor: "colors";
2159
+ color: "colors";
2160
+ columnRuleColor: "colors";
2161
+ outline: "colors";
2162
+ outlineColor: "colors";
2163
+ fill: "colors";
2164
+ stroke: "colors";
2165
+ textDecorationColor: "colors";
2166
+ fontFamily: "fonts";
2167
+ fontWeight: "fontWeights";
2168
+ lineHeight: "lineHeights";
2169
+ letterSpacing: "letterSpacings";
2170
+ borderTopWidth: "borderWidths";
2171
+ borderLeftWidth: "borderWidths";
2172
+ borderRightWidth: "borderWidths";
2173
+ borderBottomWidth: "borderWidths";
2174
+ borderStyle: "borderStyles";
2175
+ borderTopStyle: "borderStyles";
2176
+ borderLeftStyle: "borderStyles";
2177
+ borderRightStyle: "borderStyles";
2178
+ borderBottomStyle: "borderStyles";
2179
+ borderRadius: "radii";
2180
+ borderTopLeftRadius: "radii";
2181
+ borderTopRightRadius: "radii";
2182
+ borderBottomRightRadius: "radii";
2183
+ borderBottomLeftRadius: "radii";
2184
+ boxShadow: "shadows";
2185
+ textShadow: "shadows";
2186
+ transition: "transitions";
2187
+ zIndex: "zIndices";
2188
+ }, {
2189
+ p: (value: {
2190
+ readonly [$$PropertyValue]: "padding";
2191
+ }) => {
2192
+ padding: {
2193
+ readonly [$$PropertyValue]: "padding";
2194
+ };
2195
+ };
2196
+ pt: (value: {
2197
+ readonly [$$PropertyValue]: "paddingTop";
2198
+ }) => {
2199
+ paddingTop: {
2200
+ readonly [$$PropertyValue]: "paddingTop";
2201
+ };
2202
+ };
2203
+ pr: (value: {
2204
+ readonly [$$PropertyValue]: "paddingRight";
2205
+ }) => {
2206
+ paddingRight: {
2207
+ readonly [$$PropertyValue]: "paddingRight";
2208
+ };
2209
+ };
2210
+ pb: (value: {
2211
+ readonly [$$PropertyValue]: "paddingBottom";
2212
+ }) => {
2213
+ paddingBottom: {
2214
+ readonly [$$PropertyValue]: "paddingBottom";
2215
+ };
2216
+ };
2217
+ pl: (value: {
2218
+ readonly [$$PropertyValue]: "paddingLeft";
2219
+ }) => {
2220
+ paddingLeft: {
2221
+ readonly [$$PropertyValue]: "paddingLeft";
2222
+ };
2223
+ };
2224
+ px: (value: {
2225
+ readonly [$$PropertyValue]: "paddingLeft";
2226
+ }) => {
2227
+ paddingLeft: {
2228
+ readonly [$$PropertyValue]: "paddingLeft";
2229
+ };
2230
+ paddingRight: {
2231
+ readonly [$$PropertyValue]: "paddingLeft";
2232
+ };
2233
+ };
2234
+ py: (value: {
2235
+ readonly [$$PropertyValue]: "paddingTop";
2236
+ }) => {
2237
+ paddingTop: {
2238
+ readonly [$$PropertyValue]: "paddingTop";
2239
+ };
2240
+ paddingBottom: {
2241
+ readonly [$$PropertyValue]: "paddingTop";
2242
+ };
2243
+ };
2244
+ m: (value: {
2245
+ readonly [$$PropertyValue]: "margin";
2246
+ }) => {
2247
+ margin: {
2248
+ readonly [$$PropertyValue]: "margin";
2249
+ };
2250
+ };
2251
+ mt: (value: {
2252
+ readonly [$$PropertyValue]: "marginTop";
2253
+ }) => {
2254
+ marginTop: {
2255
+ readonly [$$PropertyValue]: "marginTop";
2256
+ };
2257
+ };
2258
+ mr: (value: {
2259
+ readonly [$$PropertyValue]: "marginRight";
2260
+ }) => {
2261
+ marginRight: {
2262
+ readonly [$$PropertyValue]: "marginRight";
2263
+ };
2264
+ };
2265
+ mb: (value: {
2266
+ readonly [$$PropertyValue]: "marginBottom";
2267
+ }) => {
2268
+ marginBottom: {
2269
+ readonly [$$PropertyValue]: "marginBottom";
2270
+ };
2271
+ };
2272
+ ml: (value: {
2273
+ readonly [$$PropertyValue]: "marginLeft";
2274
+ }) => {
2275
+ marginLeft: {
2276
+ readonly [$$PropertyValue]: "marginLeft";
2277
+ };
2278
+ };
2279
+ mx: (value: {
2280
+ readonly [$$PropertyValue]: "marginLeft";
2281
+ }) => {
2282
+ marginLeft: {
2283
+ readonly [$$PropertyValue]: "marginLeft";
2284
+ };
2285
+ marginRight: {
2286
+ readonly [$$PropertyValue]: "marginLeft";
2287
+ };
2288
+ };
2289
+ my: (value: {
2290
+ readonly [$$PropertyValue]: "marginTop";
2291
+ }) => {
2292
+ marginTop: {
2293
+ readonly [$$PropertyValue]: "marginTop";
2294
+ };
2295
+ marginBottom: {
2296
+ readonly [$$PropertyValue]: "marginTop";
2297
+ };
2298
+ };
2299
+ ta: (value: {
2300
+ readonly [$$PropertyValue]: "textAlign";
2301
+ }) => {
2302
+ textAlign: {
2303
+ readonly [$$PropertyValue]: "textAlign";
2304
+ };
2305
+ };
2306
+ tt: (value: {
2307
+ readonly [$$PropertyValue]: "textTransform";
2308
+ }) => {
2309
+ textTransform: {
2310
+ readonly [$$PropertyValue]: "textTransform";
2311
+ };
2312
+ };
2313
+ to: (value: {
2314
+ readonly [$$PropertyValue]: "textOverflow";
2315
+ }) => {
2316
+ textOverflow: {
2317
+ readonly [$$PropertyValue]: "textOverflow";
2318
+ };
2319
+ };
2320
+ d: (value: {
2321
+ readonly [$$PropertyValue]: "display";
2322
+ }) => {
2323
+ display: {
2324
+ readonly [$$PropertyValue]: "display";
2325
+ };
2326
+ };
2327
+ dflex: (value: {
2328
+ readonly [$$PropertyValue]: "alignItems";
2329
+ }) => {
2330
+ display: string;
2331
+ alignItems: {
2332
+ readonly [$$PropertyValue]: "alignItems";
2333
+ };
2334
+ justifyContent: {
2335
+ readonly [$$PropertyValue]: "alignItems";
2336
+ };
2337
+ };
2338
+ fd: (value: {
2339
+ readonly [$$PropertyValue]: "flexDirection";
2340
+ }) => {
2341
+ flexDirection: {
2342
+ readonly [$$PropertyValue]: "flexDirection";
2343
+ };
2344
+ };
2345
+ fw: (value: {
2346
+ readonly [$$PropertyValue]: "flexWrap";
2347
+ }) => {
2348
+ flexWrap: {
2349
+ readonly [$$PropertyValue]: "flexWrap";
2350
+ };
2351
+ };
2352
+ ai: (value: {
2353
+ readonly [$$PropertyValue]: "alignItems";
2354
+ }) => {
2355
+ alignItems: {
2356
+ readonly [$$PropertyValue]: "alignItems";
2357
+ };
2358
+ };
2359
+ ac: (value: {
2360
+ readonly [$$PropertyValue]: "alignContent";
2361
+ }) => {
2362
+ alignContent: {
2363
+ readonly [$$PropertyValue]: "alignContent";
2364
+ };
2365
+ };
2366
+ jc: (value: {
2367
+ readonly [$$PropertyValue]: "justifyContent";
2368
+ }) => {
2369
+ justifyContent: {
2370
+ readonly [$$PropertyValue]: "justifyContent";
2371
+ };
2372
+ };
2373
+ as: (value: {
2374
+ readonly [$$PropertyValue]: "alignSelf";
2375
+ }) => {
2376
+ alignSelf: {
2377
+ readonly [$$PropertyValue]: "alignSelf";
2378
+ };
2379
+ };
2380
+ fg: (value: {
2381
+ readonly [$$PropertyValue]: "flexGrow";
2382
+ }) => {
2383
+ flexGrow: {
2384
+ readonly [$$PropertyValue]: "flexGrow";
2385
+ };
2386
+ };
2387
+ fs: (value: {
2388
+ readonly [$$PropertyValue]: "fontSize";
2389
+ }) => {
2390
+ fontSize: {
2391
+ readonly [$$PropertyValue]: "fontSize";
2392
+ };
2393
+ };
2394
+ fb: (value: {
2395
+ readonly [$$PropertyValue]: "flexBasis";
2396
+ }) => {
2397
+ flexBasis: {
2398
+ readonly [$$PropertyValue]: "flexBasis";
2399
+ };
2400
+ };
2401
+ bc: (value: {
2402
+ readonly [$$PropertyValue]: "backgroundColor";
2403
+ }) => {
2404
+ backgroundColor: {
2405
+ readonly [$$PropertyValue]: "backgroundColor";
2406
+ };
2407
+ };
2408
+ bf: (value: {
2409
+ readonly [$$PropertyValue]: "backdropFilter";
2410
+ }) => {
2411
+ backdropFilter: {
2412
+ readonly [$$PropertyValue]: "backdropFilter";
2413
+ };
2414
+ };
2415
+ bg: (value: {
2416
+ readonly [$$PropertyValue]: "backgroundColor";
2417
+ }) => {
2418
+ background: {
2419
+ readonly [$$PropertyValue]: "backgroundColor";
2420
+ };
2421
+ };
2422
+ bgBlur: (value: {
2423
+ readonly [$$PropertyValue]: "backgroundColor";
2424
+ }) => {
2425
+ bf: string;
2426
+ bg: string;
2427
+ };
2428
+ bgColor: (value: {
2429
+ readonly [$$PropertyValue]: "backgroundColor";
2430
+ }) => {
2431
+ backgroundColor: {
2432
+ readonly [$$PropertyValue]: "backgroundColor";
2433
+ };
2434
+ };
2435
+ backgroundClip: (value: {
2436
+ readonly [$$PropertyValue]: "backgroundClip";
2437
+ }) => {
2438
+ WebkitBackgroundClip: {
2439
+ readonly [$$PropertyValue]: "backgroundClip";
2440
+ };
2441
+ backgroundClip: {
2442
+ readonly [$$PropertyValue]: "backgroundClip";
2443
+ };
2444
+ };
2445
+ bgClip: (value: {
2446
+ readonly [$$PropertyValue]: "backgroundClip";
2447
+ }) => {
2448
+ WebkitBackgroundClip: {
2449
+ readonly [$$PropertyValue]: "backgroundClip";
2450
+ };
2451
+ backgroundClip: {
2452
+ readonly [$$PropertyValue]: "backgroundClip";
2453
+ };
2454
+ };
2455
+ br: (value: {
2456
+ readonly [$$PropertyValue]: "borderRadius";
2457
+ }) => {
2458
+ borderRadius: {
2459
+ readonly [$$PropertyValue]: "borderRadius";
2460
+ };
2461
+ };
2462
+ bw: (value: {
2463
+ readonly [$$PropertyValue]: "borderWidth";
2464
+ }) => {
2465
+ borderWidth: {
2466
+ readonly [$$PropertyValue]: "borderWidth";
2467
+ };
2468
+ };
2469
+ btrr: (value: {
2470
+ readonly [$$PropertyValue]: "borderTopRightRadius";
2471
+ }) => {
2472
+ borderTopRightRadius: {
2473
+ readonly [$$PropertyValue]: "borderTopRightRadius";
2474
+ };
2475
+ };
2476
+ bbrr: (value: {
2477
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
2478
+ }) => {
2479
+ borderBottomRightRadius: {
2480
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
2481
+ };
2482
+ };
2483
+ bblr: (value: {
2484
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
2485
+ }) => {
2486
+ borderBottomLeftRadius: {
2487
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
2488
+ };
2489
+ };
2490
+ btlr: (value: {
2491
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
2492
+ }) => {
2493
+ borderTopLeftRadius: {
2494
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
2495
+ };
2496
+ };
2497
+ bs: (value: {
2498
+ readonly [$$PropertyValue]: "boxShadow";
2499
+ }) => {
2500
+ boxShadow: {
2501
+ readonly [$$PropertyValue]: "boxShadow";
2502
+ };
2503
+ };
2504
+ normalShadow: (value: {
2505
+ readonly [$$PropertyValue]: "backgroundColor";
2506
+ }) => {
2507
+ boxShadow: string;
2508
+ };
2509
+ normalShadowVar: (value: {
2510
+ readonly [$$PropertyValue]: "backgroundColor";
2511
+ }) => {
2512
+ boxShadow: string;
2513
+ };
2514
+ lh: (value: {
2515
+ readonly [$$PropertyValue]: "lineHeight";
2516
+ }) => {
2517
+ lineHeight: {
2518
+ readonly [$$PropertyValue]: "lineHeight";
2519
+ };
2520
+ };
2521
+ ov: (value: {
2522
+ readonly [$$PropertyValue]: "overflow";
2523
+ }) => {
2524
+ overflow: {
2525
+ readonly [$$PropertyValue]: "overflow";
2526
+ };
2527
+ };
2528
+ ox: (value: {
2529
+ readonly [$$PropertyValue]: "overflowX";
2530
+ }) => {
2531
+ overflowX: {
2532
+ readonly [$$PropertyValue]: "overflowX";
2533
+ };
2534
+ };
2535
+ oy: (value: {
2536
+ readonly [$$PropertyValue]: "overflowY";
2537
+ }) => {
2538
+ overflowY: {
2539
+ readonly [$$PropertyValue]: "overflowY";
2540
+ };
2541
+ };
2542
+ pe: (value: {
2543
+ readonly [$$PropertyValue]: "pointerEvents";
2544
+ }) => {
2545
+ pointerEvents: {
2546
+ readonly [$$PropertyValue]: "pointerEvents";
2547
+ };
2548
+ };
2549
+ events: (value: {
2550
+ readonly [$$PropertyValue]: "pointerEvents";
2551
+ }) => {
2552
+ pointerEvents: {
2553
+ readonly [$$PropertyValue]: "pointerEvents";
2554
+ };
2555
+ };
2556
+ us: (value: {
2557
+ readonly [$$PropertyValue]: "userSelect";
2558
+ }) => {
2559
+ WebkitUserSelect: {
2560
+ readonly [$$PropertyValue]: "userSelect";
2561
+ };
2562
+ userSelect: {
2563
+ readonly [$$PropertyValue]: "userSelect";
2564
+ };
2565
+ };
2566
+ userSelect: (value: {
2567
+ readonly [$$PropertyValue]: "userSelect";
2568
+ }) => {
2569
+ WebkitUserSelect: {
2570
+ readonly [$$PropertyValue]: "userSelect";
2571
+ };
2572
+ userSelect: {
2573
+ readonly [$$PropertyValue]: "userSelect";
2574
+ };
2575
+ };
2576
+ w: (value: {
2577
+ readonly [$$PropertyValue]: "width";
2578
+ }) => {
2579
+ width: {
2580
+ readonly [$$PropertyValue]: "width";
2581
+ };
2582
+ };
2583
+ h: (value: {
2584
+ readonly [$$PropertyValue]: "height";
2585
+ }) => {
2586
+ height: {
2587
+ readonly [$$PropertyValue]: "height";
2588
+ };
2589
+ };
2590
+ mw: (value: {
2591
+ readonly [$$PropertyValue]: "maxWidth";
2592
+ }) => {
2593
+ maxWidth: {
2594
+ readonly [$$PropertyValue]: "maxWidth";
2595
+ };
2596
+ };
2597
+ maxW: (value: {
2598
+ readonly [$$PropertyValue]: "maxWidth";
2599
+ }) => {
2600
+ maxWidth: {
2601
+ readonly [$$PropertyValue]: "maxWidth";
2602
+ };
2603
+ };
2604
+ mh: (value: {
2605
+ readonly [$$PropertyValue]: "maxHeight";
2606
+ }) => {
2607
+ maxHeight: {
2608
+ readonly [$$PropertyValue]: "maxHeight";
2609
+ };
2610
+ };
2611
+ maxH: (value: {
2612
+ readonly [$$PropertyValue]: "maxHeight";
2613
+ }) => {
2614
+ maxHeight: {
2615
+ readonly [$$PropertyValue]: "maxHeight";
2616
+ };
2617
+ };
2618
+ size: (value: {
2619
+ readonly [$$PropertyValue]: "width";
2620
+ }) => {
2621
+ width: {
2622
+ readonly [$$PropertyValue]: "width";
2623
+ };
2624
+ height: {
2625
+ readonly [$$PropertyValue]: "width";
2626
+ };
2627
+ };
2628
+ sizeMin: (value: {
2629
+ readonly [$$PropertyValue]: "width";
2630
+ }) => {
2631
+ minWidth: {
2632
+ readonly [$$PropertyValue]: "width";
2633
+ };
2634
+ minHeight: {
2635
+ readonly [$$PropertyValue]: "width";
2636
+ };
2637
+ width: {
2638
+ readonly [$$PropertyValue]: "width";
2639
+ };
2640
+ height: {
2641
+ readonly [$$PropertyValue]: "width";
2642
+ };
2643
+ };
2644
+ sizeMax: (value: {
2645
+ readonly [$$PropertyValue]: "width";
2646
+ }) => {
2647
+ maxWidth: {
2648
+ readonly [$$PropertyValue]: "width";
2649
+ };
2650
+ maxHeight: {
2651
+ readonly [$$PropertyValue]: "width";
2652
+ };
2653
+ };
2654
+ appearance: (value: {
2655
+ readonly [$$PropertyValue]: "appearance";
2656
+ }) => {
2657
+ WebkitAppearance: {
2658
+ readonly [$$PropertyValue]: "appearance";
2659
+ };
2660
+ appearance: {
2661
+ readonly [$$PropertyValue]: "appearance";
2662
+ };
2663
+ };
2664
+ scale: (value: {
2665
+ readonly [$$PropertyValue]: "scale";
2666
+ }) => {
2667
+ transform: string;
2668
+ };
2669
+ linearGradient: (value: {
2670
+ readonly [$$PropertyValue]: "backgroundImage";
2671
+ }) => {
2672
+ backgroundImage: string;
2673
+ };
2674
+ textGradient: (value: {
2675
+ readonly [$$PropertyValue]: "backgroundImage";
2676
+ }) => {
2677
+ backgroundImage: string;
2678
+ WebkitBackgroundClip: string;
2679
+ WebkitTextFillColor: string;
2680
+ };
2681
+ }>>;
2682
+ export declare const StyledCollapseIcon: import("@stitches/react/types/styled-component").StyledComponent<"svg", {}, {
2683
+ xs: string;
2684
+ sm: string;
2685
+ md: string;
2686
+ lg: string;
2687
+ xl: string;
2688
+ xsMax: string;
2689
+ smMax: string;
2690
+ mdMax: string;
2691
+ lgMax: string;
2692
+ xlMax: string;
2693
+ motion: string;
2694
+ safari: string;
2695
+ hover: string;
2696
+ dark: string;
2697
+ light: string;
2698
+ }, import("@stitches/react/types/css-util").CSS<{
2699
+ xs: string;
2700
+ sm: string;
2701
+ md: string;
2702
+ lg: string;
2703
+ xl: string;
2704
+ xsMax: string;
2705
+ smMax: string;
2706
+ mdMax: string;
2707
+ lgMax: string;
2708
+ xlMax: string;
2709
+ motion: string;
2710
+ safari: string;
2711
+ hover: string;
2712
+ dark: string;
2713
+ light: string;
2714
+ }, {
2715
+ shadows: {
2716
+ xs: string;
2717
+ sm: string;
2718
+ md: string;
2719
+ lg: string;
2720
+ xl: string;
2721
+ };
2722
+ colors: {
2723
+ accents1: string;
2724
+ accents2: string;
2725
+ accents3: string;
2726
+ accents4: string;
2727
+ accents5: string;
2728
+ accents6: string;
2729
+ accents7: string;
2730
+ accents8: string;
2731
+ accents9: string;
2732
+ text: string;
2733
+ background: string;
2734
+ foreground: string;
2735
+ codeLight: string;
2736
+ code: string;
2737
+ border: string;
2738
+ selection: string;
2739
+ white: string;
2740
+ black: string;
2741
+ blue100: string;
2742
+ blue200: string;
2743
+ blue300: string;
2744
+ blue400: string;
2745
+ blue500: string;
2746
+ blue600: string;
2747
+ blue700: string;
2748
+ blue800: string;
2749
+ blue900: string;
2750
+ purple100: string;
2751
+ purple200: string;
2752
+ purple300: string;
2753
+ purple400: string;
2754
+ purple500: string;
2755
+ purple600: string;
2756
+ purple700: string;
2757
+ purple800: string;
2758
+ purple900: string;
2759
+ green100: string;
2760
+ green200: string;
2761
+ green300: string;
2762
+ green400: string;
2763
+ green500: string;
2764
+ green600: string;
2765
+ green700: string;
2766
+ green800: string;
2767
+ green900: string;
2768
+ yellow100: string;
2769
+ yellow200: string;
2770
+ yellow300: string;
2771
+ yellow400: string;
2772
+ yellow500: string;
2773
+ yellow600: string;
2774
+ yellow700: string;
2775
+ yellow800: string;
2776
+ yellow900: string;
2777
+ red100: string;
2778
+ red200: string;
2779
+ red300: string;
2780
+ red400: string;
2781
+ red500: string;
2782
+ red600: string;
2783
+ red700: string;
2784
+ red800: string;
2785
+ red900: string;
2786
+ cyan100: string;
2787
+ cyan200: string;
2788
+ cyan300: string;
2789
+ cyan400: string;
2790
+ cyan500: string;
2791
+ cyan600: string;
2792
+ cyan700: string;
2793
+ cyan800: string;
2794
+ cyan900: string;
2795
+ pink100: string;
2796
+ pink200: string;
2797
+ pink300: string;
2798
+ pink400: string;
2799
+ pink500: string;
2800
+ pink600: string;
2801
+ pink700: string;
2802
+ pink800: string;
2803
+ pink900: string;
2804
+ gray100: string;
2805
+ gray200: string;
2806
+ gray300: string;
2807
+ gray400: string;
2808
+ gray500: string;
2809
+ gray600: string;
2810
+ gray700: string;
2811
+ gray800: string;
2812
+ gray900: string;
2813
+ primaryLight: string;
2814
+ primary: string;
2815
+ primaryDark: string;
2816
+ secondaryLight: string;
2817
+ secondary: string;
2818
+ secondaryDark: string;
2819
+ successLight: string;
2820
+ success: string;
2821
+ successDark: string;
2822
+ warningLight: string;
2823
+ warning: string;
2824
+ warningDark: string;
2825
+ errorLight: string;
2826
+ error: string;
2827
+ errorDark: string;
2828
+ gradient: string;
2829
+ link: string;
2830
+ };
2831
+ fonts: {
2832
+ sans: string;
2833
+ mono: string;
2834
+ };
2835
+ fontSizes: {
2836
+ tiny: string;
2837
+ xs: string;
2838
+ base: string;
2839
+ sm: string;
2840
+ md: string;
2841
+ lg: string;
2842
+ xl: string;
2843
+ };
2844
+ fontWeights: {
2845
+ hairline: number;
2846
+ thin: number;
2847
+ light: number;
2848
+ normal: number;
2849
+ medium: number;
2850
+ semibold: number;
2851
+ bold: number;
2852
+ extrabold: number;
2853
+ black: number;
2854
+ };
2855
+ lineHeights: {
2856
+ xs: number;
2857
+ sm: number;
2858
+ md: number;
2859
+ lg: number;
2860
+ xl: number;
2861
+ };
2862
+ letterSpacings: {
2863
+ tighter: string;
2864
+ tight: string;
2865
+ normal: string;
2866
+ wide: string;
2867
+ wider: string;
2868
+ widest: string;
2869
+ };
2870
+ space: {
2871
+ 0: string;
2872
+ xs: string;
2873
+ sm: string;
2874
+ md: string;
2875
+ lg: string;
2876
+ xl: string;
2877
+ px: string;
2878
+ 1: string;
2879
+ 2: string;
2880
+ 3: string;
2881
+ 4: string;
2882
+ 5: string;
2883
+ 6: string;
2884
+ 7: string;
2885
+ 8: string;
2886
+ 9: string;
2887
+ 10: string;
2888
+ 11: string;
2889
+ 12: string;
2890
+ 13: string;
2891
+ 14: string;
2892
+ 15: string;
2893
+ 16: string;
2894
+ 17: string;
2895
+ 18: string;
2896
+ 20: string;
2897
+ 24: string;
2898
+ 28: string;
2899
+ 32: string;
2900
+ 36: string;
2901
+ 40: string;
2902
+ 44: string;
2903
+ 48: string;
2904
+ 52: string;
2905
+ 56: string;
2906
+ 60: string;
2907
+ 64: string;
2908
+ 72: string;
2909
+ 80: string;
2910
+ 96: string;
2911
+ };
2912
+ radii: {
2913
+ xs: string;
2914
+ sm: string;
2915
+ md: string;
2916
+ base: string;
2917
+ lg: string;
2918
+ xl: string;
2919
+ squared: string;
2920
+ rounded: string;
2921
+ pill: string;
2922
+ };
2923
+ zIndices: {
2924
+ 1: string;
2925
+ 2: string;
2926
+ 3: string;
2927
+ 4: string;
2928
+ 5: string;
2929
+ 10: string;
2930
+ max: string;
2931
+ };
2932
+ borderWeights: {
2933
+ light: string;
2934
+ normal: string;
2935
+ bold: string;
2936
+ extrabold: string;
2937
+ black: string;
2938
+ };
2939
+ transitions: {
2940
+ default: string;
2941
+ };
2942
+ breakpoints: {
2943
+ xs: string;
2944
+ sm: string;
2945
+ md: string;
2946
+ lg: string;
2947
+ xl: string;
2948
+ };
2949
+ }, {
2950
+ width: string;
2951
+ height: string;
2952
+ minWidth: string;
2953
+ maxWidth: string;
2954
+ minHeight: string;
2955
+ maxHeight: string;
2956
+ flexBasis: string;
2957
+ gridTemplateColumns: string;
2958
+ gridTemplateRows: string;
2959
+ blockSize: string;
2960
+ minBlockSize: string;
2961
+ maxBlockSize: string;
2962
+ inlineSize: string;
2963
+ minInlineSize: string;
2964
+ maxInlineSize: string;
2965
+ borderWidth: string;
2966
+ gap: "space";
2967
+ gridGap: "space";
2968
+ columnGap: "space";
2969
+ gridColumnGap: "space";
2970
+ rowGap: "space";
2971
+ gridRowGap: "space";
2972
+ inset: "space";
2973
+ insetBlock: "space";
2974
+ insetBlockEnd: "space";
2975
+ insetBlockStart: "space";
2976
+ insetInline: "space";
2977
+ insetInlineEnd: "space";
2978
+ insetInlineStart: "space";
2979
+ margin: "space";
2980
+ marginTop: "space";
2981
+ marginRight: "space";
2982
+ marginBottom: "space";
2983
+ marginLeft: "space";
2984
+ marginBlock: "space";
2985
+ marginBlockEnd: "space";
2986
+ marginBlockStart: "space";
2987
+ marginInline: "space";
2988
+ marginInlineEnd: "space";
2989
+ marginInlineStart: "space";
2990
+ padding: "space";
2991
+ paddingTop: "space";
2992
+ paddingRight: "space";
2993
+ paddingBottom: "space";
2994
+ paddingLeft: "space";
2995
+ paddingBlock: "space";
2996
+ paddingBlockEnd: "space";
2997
+ paddingBlockStart: "space";
2998
+ paddingInline: "space";
2999
+ paddingInlineEnd: "space";
3000
+ paddingInlineStart: "space";
3001
+ scrollMargin: "space";
3002
+ scrollMarginTop: "space";
3003
+ scrollMarginRight: "space";
3004
+ scrollMarginBottom: "space";
3005
+ scrollMarginLeft: "space";
3006
+ scrollMarginBlock: "space";
3007
+ scrollMarginBlockEnd: "space";
3008
+ scrollMarginBlockStart: "space";
3009
+ scrollMarginInline: "space";
3010
+ scrollMarginInlineEnd: "space";
3011
+ scrollMarginInlineStart: "space";
3012
+ scrollPadding: "space";
3013
+ scrollPaddingTop: "space";
3014
+ scrollPaddingRight: "space";
3015
+ scrollPaddingBottom: "space";
3016
+ scrollPaddingLeft: "space";
3017
+ scrollPaddingBlock: "space";
3018
+ scrollPaddingBlockEnd: "space";
3019
+ scrollPaddingBlockStart: "space";
3020
+ scrollPaddingInline: "space";
3021
+ scrollPaddingInlineEnd: "space";
3022
+ scrollPaddingInlineStart: "space";
3023
+ top: "space";
3024
+ right: "space";
3025
+ bottom: "space";
3026
+ left: "space";
3027
+ fontSize: "fontSizes";
3028
+ background: "colors";
3029
+ backgroundColor: "colors";
3030
+ backgroundImage: "colors";
3031
+ borderImage: "colors";
3032
+ border: "colors";
3033
+ borderBlock: "colors";
3034
+ borderBlockEnd: "colors";
3035
+ borderBlockStart: "colors";
3036
+ borderBottom: "colors";
3037
+ borderBottomColor: "colors";
3038
+ borderColor: "colors";
3039
+ borderInline: "colors";
3040
+ borderInlineEnd: "colors";
3041
+ borderInlineStart: "colors";
3042
+ borderLeft: "colors";
3043
+ borderLeftColor: "colors";
3044
+ borderRight: "colors";
3045
+ borderRightColor: "colors";
3046
+ borderTop: "colors";
3047
+ borderTopColor: "colors";
3048
+ caretColor: "colors";
3049
+ color: "colors";
3050
+ columnRuleColor: "colors";
3051
+ outline: "colors";
3052
+ outlineColor: "colors";
3053
+ fill: "colors";
3054
+ stroke: "colors";
3055
+ textDecorationColor: "colors";
3056
+ fontFamily: "fonts";
3057
+ fontWeight: "fontWeights";
3058
+ lineHeight: "lineHeights";
3059
+ letterSpacing: "letterSpacings";
3060
+ borderTopWidth: "borderWidths";
3061
+ borderLeftWidth: "borderWidths";
3062
+ borderRightWidth: "borderWidths";
3063
+ borderBottomWidth: "borderWidths";
3064
+ borderStyle: "borderStyles";
3065
+ borderTopStyle: "borderStyles";
3066
+ borderLeftStyle: "borderStyles";
3067
+ borderRightStyle: "borderStyles";
3068
+ borderBottomStyle: "borderStyles";
3069
+ borderRadius: "radii";
3070
+ borderTopLeftRadius: "radii";
3071
+ borderTopRightRadius: "radii";
3072
+ borderBottomRightRadius: "radii";
3073
+ borderBottomLeftRadius: "radii";
3074
+ boxShadow: "shadows";
3075
+ textShadow: "shadows";
3076
+ transition: "transitions";
3077
+ zIndex: "zIndices";
3078
+ }, {
3079
+ p: (value: {
3080
+ readonly [$$PropertyValue]: "padding";
3081
+ }) => {
3082
+ padding: {
3083
+ readonly [$$PropertyValue]: "padding";
3084
+ };
3085
+ };
3086
+ pt: (value: {
3087
+ readonly [$$PropertyValue]: "paddingTop";
3088
+ }) => {
3089
+ paddingTop: {
3090
+ readonly [$$PropertyValue]: "paddingTop";
3091
+ };
3092
+ };
3093
+ pr: (value: {
3094
+ readonly [$$PropertyValue]: "paddingRight";
3095
+ }) => {
3096
+ paddingRight: {
3097
+ readonly [$$PropertyValue]: "paddingRight";
3098
+ };
3099
+ };
3100
+ pb: (value: {
3101
+ readonly [$$PropertyValue]: "paddingBottom";
3102
+ }) => {
3103
+ paddingBottom: {
3104
+ readonly [$$PropertyValue]: "paddingBottom";
3105
+ };
3106
+ };
3107
+ pl: (value: {
3108
+ readonly [$$PropertyValue]: "paddingLeft";
3109
+ }) => {
3110
+ paddingLeft: {
3111
+ readonly [$$PropertyValue]: "paddingLeft";
3112
+ };
3113
+ };
3114
+ px: (value: {
3115
+ readonly [$$PropertyValue]: "paddingLeft";
3116
+ }) => {
3117
+ paddingLeft: {
3118
+ readonly [$$PropertyValue]: "paddingLeft";
3119
+ };
3120
+ paddingRight: {
3121
+ readonly [$$PropertyValue]: "paddingLeft";
3122
+ };
3123
+ };
3124
+ py: (value: {
3125
+ readonly [$$PropertyValue]: "paddingTop";
3126
+ }) => {
3127
+ paddingTop: {
3128
+ readonly [$$PropertyValue]: "paddingTop";
3129
+ };
3130
+ paddingBottom: {
3131
+ readonly [$$PropertyValue]: "paddingTop";
3132
+ };
3133
+ };
3134
+ m: (value: {
3135
+ readonly [$$PropertyValue]: "margin";
3136
+ }) => {
3137
+ margin: {
3138
+ readonly [$$PropertyValue]: "margin";
3139
+ };
3140
+ };
3141
+ mt: (value: {
3142
+ readonly [$$PropertyValue]: "marginTop";
3143
+ }) => {
3144
+ marginTop: {
3145
+ readonly [$$PropertyValue]: "marginTop";
3146
+ };
3147
+ };
3148
+ mr: (value: {
3149
+ readonly [$$PropertyValue]: "marginRight";
3150
+ }) => {
3151
+ marginRight: {
3152
+ readonly [$$PropertyValue]: "marginRight";
3153
+ };
3154
+ };
3155
+ mb: (value: {
3156
+ readonly [$$PropertyValue]: "marginBottom";
3157
+ }) => {
3158
+ marginBottom: {
3159
+ readonly [$$PropertyValue]: "marginBottom";
3160
+ };
3161
+ };
3162
+ ml: (value: {
3163
+ readonly [$$PropertyValue]: "marginLeft";
3164
+ }) => {
3165
+ marginLeft: {
3166
+ readonly [$$PropertyValue]: "marginLeft";
3167
+ };
3168
+ };
3169
+ mx: (value: {
3170
+ readonly [$$PropertyValue]: "marginLeft";
3171
+ }) => {
3172
+ marginLeft: {
3173
+ readonly [$$PropertyValue]: "marginLeft";
3174
+ };
3175
+ marginRight: {
3176
+ readonly [$$PropertyValue]: "marginLeft";
3177
+ };
3178
+ };
3179
+ my: (value: {
3180
+ readonly [$$PropertyValue]: "marginTop";
3181
+ }) => {
3182
+ marginTop: {
3183
+ readonly [$$PropertyValue]: "marginTop";
3184
+ };
3185
+ marginBottom: {
3186
+ readonly [$$PropertyValue]: "marginTop";
3187
+ };
3188
+ };
3189
+ ta: (value: {
3190
+ readonly [$$PropertyValue]: "textAlign";
3191
+ }) => {
3192
+ textAlign: {
3193
+ readonly [$$PropertyValue]: "textAlign";
3194
+ };
3195
+ };
3196
+ tt: (value: {
3197
+ readonly [$$PropertyValue]: "textTransform";
3198
+ }) => {
3199
+ textTransform: {
3200
+ readonly [$$PropertyValue]: "textTransform";
3201
+ };
3202
+ };
3203
+ to: (value: {
3204
+ readonly [$$PropertyValue]: "textOverflow";
3205
+ }) => {
3206
+ textOverflow: {
3207
+ readonly [$$PropertyValue]: "textOverflow";
3208
+ };
3209
+ };
3210
+ d: (value: {
3211
+ readonly [$$PropertyValue]: "display";
3212
+ }) => {
3213
+ display: {
3214
+ readonly [$$PropertyValue]: "display";
3215
+ };
3216
+ };
3217
+ dflex: (value: {
3218
+ readonly [$$PropertyValue]: "alignItems";
3219
+ }) => {
3220
+ display: string;
3221
+ alignItems: {
3222
+ readonly [$$PropertyValue]: "alignItems";
3223
+ };
3224
+ justifyContent: {
3225
+ readonly [$$PropertyValue]: "alignItems";
3226
+ };
3227
+ };
3228
+ fd: (value: {
3229
+ readonly [$$PropertyValue]: "flexDirection";
3230
+ }) => {
3231
+ flexDirection: {
3232
+ readonly [$$PropertyValue]: "flexDirection";
3233
+ };
3234
+ };
3235
+ fw: (value: {
3236
+ readonly [$$PropertyValue]: "flexWrap";
3237
+ }) => {
3238
+ flexWrap: {
3239
+ readonly [$$PropertyValue]: "flexWrap";
3240
+ };
3241
+ };
3242
+ ai: (value: {
3243
+ readonly [$$PropertyValue]: "alignItems";
3244
+ }) => {
3245
+ alignItems: {
3246
+ readonly [$$PropertyValue]: "alignItems";
3247
+ };
3248
+ };
3249
+ ac: (value: {
3250
+ readonly [$$PropertyValue]: "alignContent";
3251
+ }) => {
3252
+ alignContent: {
3253
+ readonly [$$PropertyValue]: "alignContent";
3254
+ };
3255
+ };
3256
+ jc: (value: {
3257
+ readonly [$$PropertyValue]: "justifyContent";
3258
+ }) => {
3259
+ justifyContent: {
3260
+ readonly [$$PropertyValue]: "justifyContent";
3261
+ };
3262
+ };
3263
+ as: (value: {
3264
+ readonly [$$PropertyValue]: "alignSelf";
3265
+ }) => {
3266
+ alignSelf: {
3267
+ readonly [$$PropertyValue]: "alignSelf";
3268
+ };
3269
+ };
3270
+ fg: (value: {
3271
+ readonly [$$PropertyValue]: "flexGrow";
3272
+ }) => {
3273
+ flexGrow: {
3274
+ readonly [$$PropertyValue]: "flexGrow";
3275
+ };
3276
+ };
3277
+ fs: (value: {
3278
+ readonly [$$PropertyValue]: "fontSize";
3279
+ }) => {
3280
+ fontSize: {
3281
+ readonly [$$PropertyValue]: "fontSize";
3282
+ };
3283
+ };
3284
+ fb: (value: {
3285
+ readonly [$$PropertyValue]: "flexBasis";
3286
+ }) => {
3287
+ flexBasis: {
3288
+ readonly [$$PropertyValue]: "flexBasis";
3289
+ };
3290
+ };
3291
+ bc: (value: {
3292
+ readonly [$$PropertyValue]: "backgroundColor";
3293
+ }) => {
3294
+ backgroundColor: {
3295
+ readonly [$$PropertyValue]: "backgroundColor";
3296
+ };
3297
+ };
3298
+ bf: (value: {
3299
+ readonly [$$PropertyValue]: "backdropFilter";
3300
+ }) => {
3301
+ backdropFilter: {
3302
+ readonly [$$PropertyValue]: "backdropFilter";
3303
+ };
3304
+ };
3305
+ bg: (value: {
3306
+ readonly [$$PropertyValue]: "backgroundColor";
3307
+ }) => {
3308
+ background: {
3309
+ readonly [$$PropertyValue]: "backgroundColor";
3310
+ };
3311
+ };
3312
+ bgBlur: (value: {
3313
+ readonly [$$PropertyValue]: "backgroundColor";
3314
+ }) => {
3315
+ bf: string;
3316
+ bg: string;
3317
+ };
3318
+ bgColor: (value: {
3319
+ readonly [$$PropertyValue]: "backgroundColor";
3320
+ }) => {
3321
+ backgroundColor: {
3322
+ readonly [$$PropertyValue]: "backgroundColor";
3323
+ };
3324
+ };
3325
+ backgroundClip: (value: {
3326
+ readonly [$$PropertyValue]: "backgroundClip";
3327
+ }) => {
3328
+ WebkitBackgroundClip: {
3329
+ readonly [$$PropertyValue]: "backgroundClip";
3330
+ };
3331
+ backgroundClip: {
3332
+ readonly [$$PropertyValue]: "backgroundClip";
3333
+ };
3334
+ };
3335
+ bgClip: (value: {
3336
+ readonly [$$PropertyValue]: "backgroundClip";
3337
+ }) => {
3338
+ WebkitBackgroundClip: {
3339
+ readonly [$$PropertyValue]: "backgroundClip";
3340
+ };
3341
+ backgroundClip: {
3342
+ readonly [$$PropertyValue]: "backgroundClip";
3343
+ };
3344
+ };
3345
+ br: (value: {
3346
+ readonly [$$PropertyValue]: "borderRadius";
3347
+ }) => {
3348
+ borderRadius: {
3349
+ readonly [$$PropertyValue]: "borderRadius";
3350
+ };
3351
+ };
3352
+ bw: (value: {
3353
+ readonly [$$PropertyValue]: "borderWidth";
3354
+ }) => {
3355
+ borderWidth: {
3356
+ readonly [$$PropertyValue]: "borderWidth";
3357
+ };
3358
+ };
3359
+ btrr: (value: {
3360
+ readonly [$$PropertyValue]: "borderTopRightRadius";
3361
+ }) => {
3362
+ borderTopRightRadius: {
3363
+ readonly [$$PropertyValue]: "borderTopRightRadius";
3364
+ };
3365
+ };
3366
+ bbrr: (value: {
3367
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
3368
+ }) => {
3369
+ borderBottomRightRadius: {
3370
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
3371
+ };
3372
+ };
3373
+ bblr: (value: {
3374
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
3375
+ }) => {
3376
+ borderBottomLeftRadius: {
3377
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
3378
+ };
3379
+ };
3380
+ btlr: (value: {
3381
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
3382
+ }) => {
3383
+ borderTopLeftRadius: {
3384
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
3385
+ };
3386
+ };
3387
+ bs: (value: {
3388
+ readonly [$$PropertyValue]: "boxShadow";
3389
+ }) => {
3390
+ boxShadow: {
3391
+ readonly [$$PropertyValue]: "boxShadow";
3392
+ };
3393
+ };
3394
+ normalShadow: (value: {
3395
+ readonly [$$PropertyValue]: "backgroundColor";
3396
+ }) => {
3397
+ boxShadow: string;
3398
+ };
3399
+ normalShadowVar: (value: {
3400
+ readonly [$$PropertyValue]: "backgroundColor";
3401
+ }) => {
3402
+ boxShadow: string;
3403
+ };
3404
+ lh: (value: {
3405
+ readonly [$$PropertyValue]: "lineHeight";
3406
+ }) => {
3407
+ lineHeight: {
3408
+ readonly [$$PropertyValue]: "lineHeight";
3409
+ };
3410
+ };
3411
+ ov: (value: {
3412
+ readonly [$$PropertyValue]: "overflow";
3413
+ }) => {
3414
+ overflow: {
3415
+ readonly [$$PropertyValue]: "overflow";
3416
+ };
3417
+ };
3418
+ ox: (value: {
3419
+ readonly [$$PropertyValue]: "overflowX";
3420
+ }) => {
3421
+ overflowX: {
3422
+ readonly [$$PropertyValue]: "overflowX";
3423
+ };
3424
+ };
3425
+ oy: (value: {
3426
+ readonly [$$PropertyValue]: "overflowY";
3427
+ }) => {
3428
+ overflowY: {
3429
+ readonly [$$PropertyValue]: "overflowY";
3430
+ };
3431
+ };
3432
+ pe: (value: {
3433
+ readonly [$$PropertyValue]: "pointerEvents";
3434
+ }) => {
3435
+ pointerEvents: {
3436
+ readonly [$$PropertyValue]: "pointerEvents";
3437
+ };
3438
+ };
3439
+ events: (value: {
3440
+ readonly [$$PropertyValue]: "pointerEvents";
3441
+ }) => {
3442
+ pointerEvents: {
3443
+ readonly [$$PropertyValue]: "pointerEvents";
3444
+ };
3445
+ };
3446
+ us: (value: {
3447
+ readonly [$$PropertyValue]: "userSelect";
3448
+ }) => {
3449
+ WebkitUserSelect: {
3450
+ readonly [$$PropertyValue]: "userSelect";
3451
+ };
3452
+ userSelect: {
3453
+ readonly [$$PropertyValue]: "userSelect";
3454
+ };
3455
+ };
3456
+ userSelect: (value: {
3457
+ readonly [$$PropertyValue]: "userSelect";
3458
+ }) => {
3459
+ WebkitUserSelect: {
3460
+ readonly [$$PropertyValue]: "userSelect";
3461
+ };
3462
+ userSelect: {
3463
+ readonly [$$PropertyValue]: "userSelect";
3464
+ };
3465
+ };
3466
+ w: (value: {
3467
+ readonly [$$PropertyValue]: "width";
3468
+ }) => {
3469
+ width: {
3470
+ readonly [$$PropertyValue]: "width";
3471
+ };
3472
+ };
3473
+ h: (value: {
3474
+ readonly [$$PropertyValue]: "height";
3475
+ }) => {
3476
+ height: {
3477
+ readonly [$$PropertyValue]: "height";
3478
+ };
3479
+ };
3480
+ mw: (value: {
3481
+ readonly [$$PropertyValue]: "maxWidth";
3482
+ }) => {
3483
+ maxWidth: {
3484
+ readonly [$$PropertyValue]: "maxWidth";
3485
+ };
3486
+ };
3487
+ maxW: (value: {
3488
+ readonly [$$PropertyValue]: "maxWidth";
3489
+ }) => {
3490
+ maxWidth: {
3491
+ readonly [$$PropertyValue]: "maxWidth";
3492
+ };
3493
+ };
3494
+ mh: (value: {
3495
+ readonly [$$PropertyValue]: "maxHeight";
3496
+ }) => {
3497
+ maxHeight: {
3498
+ readonly [$$PropertyValue]: "maxHeight";
3499
+ };
3500
+ };
3501
+ maxH: (value: {
3502
+ readonly [$$PropertyValue]: "maxHeight";
3503
+ }) => {
3504
+ maxHeight: {
3505
+ readonly [$$PropertyValue]: "maxHeight";
3506
+ };
3507
+ };
3508
+ size: (value: {
3509
+ readonly [$$PropertyValue]: "width";
3510
+ }) => {
3511
+ width: {
3512
+ readonly [$$PropertyValue]: "width";
3513
+ };
3514
+ height: {
3515
+ readonly [$$PropertyValue]: "width";
3516
+ };
3517
+ };
3518
+ sizeMin: (value: {
3519
+ readonly [$$PropertyValue]: "width";
3520
+ }) => {
3521
+ minWidth: {
3522
+ readonly [$$PropertyValue]: "width";
3523
+ };
3524
+ minHeight: {
3525
+ readonly [$$PropertyValue]: "width";
3526
+ };
3527
+ width: {
3528
+ readonly [$$PropertyValue]: "width";
3529
+ };
3530
+ height: {
3531
+ readonly [$$PropertyValue]: "width";
3532
+ };
3533
+ };
3534
+ sizeMax: (value: {
3535
+ readonly [$$PropertyValue]: "width";
3536
+ }) => {
3537
+ maxWidth: {
3538
+ readonly [$$PropertyValue]: "width";
3539
+ };
3540
+ maxHeight: {
3541
+ readonly [$$PropertyValue]: "width";
3542
+ };
3543
+ };
3544
+ appearance: (value: {
3545
+ readonly [$$PropertyValue]: "appearance";
3546
+ }) => {
3547
+ WebkitAppearance: {
3548
+ readonly [$$PropertyValue]: "appearance";
3549
+ };
3550
+ appearance: {
3551
+ readonly [$$PropertyValue]: "appearance";
3552
+ };
3553
+ };
3554
+ scale: (value: {
3555
+ readonly [$$PropertyValue]: "scale";
3556
+ }) => {
3557
+ transform: string;
3558
+ };
3559
+ linearGradient: (value: {
3560
+ readonly [$$PropertyValue]: "backgroundImage";
3561
+ }) => {
3562
+ backgroundImage: string;
3563
+ };
3564
+ textGradient: (value: {
3565
+ readonly [$$PropertyValue]: "backgroundImage";
3566
+ }) => {
3567
+ backgroundImage: string;
3568
+ WebkitBackgroundClip: string;
3569
+ WebkitTextFillColor: string;
3570
+ };
3571
+ }>>;
3572
+ export declare const StyledCollapseGroup: import("@stitches/react/types/styled-component").StyledComponent<"div", {
3573
+ borderWeight?: "light" | "normal" | "bold" | "extrabold" | "black" | undefined;
3574
+ shadow?: boolean | "true" | undefined;
3575
+ bordered?: boolean | "true" | undefined;
3576
+ splitted?: boolean | "true" | undefined;
3577
+ isDark?: boolean | "true" | undefined;
3578
+ }, {
3579
+ xs: string;
3580
+ sm: string;
3581
+ md: string;
3582
+ lg: string;
3583
+ xl: string;
3584
+ xsMax: string;
3585
+ smMax: string;
3586
+ mdMax: string;
3587
+ lgMax: string;
3588
+ xlMax: string;
3589
+ motion: string;
3590
+ safari: string;
3591
+ hover: string;
3592
+ dark: string;
3593
+ light: string;
3594
+ }, import("@stitches/react/types/css-util").CSS<{
3595
+ xs: string;
3596
+ sm: string;
3597
+ md: string;
3598
+ lg: string;
3599
+ xl: string;
3600
+ xsMax: string;
3601
+ smMax: string;
3602
+ mdMax: string;
3603
+ lgMax: string;
3604
+ xlMax: string;
3605
+ motion: string;
3606
+ safari: string;
3607
+ hover: string;
3608
+ dark: string;
3609
+ light: string;
3610
+ }, {
3611
+ shadows: {
3612
+ xs: string;
3613
+ sm: string;
3614
+ md: string;
3615
+ lg: string;
3616
+ xl: string;
3617
+ };
3618
+ colors: {
3619
+ accents1: string;
3620
+ accents2: string;
3621
+ accents3: string;
3622
+ accents4: string;
3623
+ accents5: string;
3624
+ accents6: string;
3625
+ accents7: string;
3626
+ accents8: string;
3627
+ accents9: string;
3628
+ text: string;
3629
+ background: string;
3630
+ foreground: string;
3631
+ codeLight: string;
3632
+ code: string;
3633
+ border: string;
3634
+ selection: string;
3635
+ white: string;
3636
+ black: string;
3637
+ blue100: string;
3638
+ blue200: string;
3639
+ blue300: string;
3640
+ blue400: string;
3641
+ blue500: string;
3642
+ blue600: string;
3643
+ blue700: string;
3644
+ blue800: string;
3645
+ blue900: string;
3646
+ purple100: string;
3647
+ purple200: string;
3648
+ purple300: string;
3649
+ purple400: string;
3650
+ purple500: string;
3651
+ purple600: string;
3652
+ purple700: string;
3653
+ purple800: string;
3654
+ purple900: string;
3655
+ green100: string;
3656
+ green200: string;
3657
+ green300: string;
3658
+ green400: string;
3659
+ green500: string;
3660
+ green600: string;
3661
+ green700: string;
3662
+ green800: string;
3663
+ green900: string;
3664
+ yellow100: string;
3665
+ yellow200: string;
3666
+ yellow300: string;
3667
+ yellow400: string;
3668
+ yellow500: string;
3669
+ yellow600: string;
3670
+ yellow700: string;
3671
+ yellow800: string;
3672
+ yellow900: string;
3673
+ red100: string;
3674
+ red200: string;
3675
+ red300: string;
3676
+ red400: string;
3677
+ red500: string;
3678
+ red600: string;
3679
+ red700: string;
3680
+ red800: string;
3681
+ red900: string;
3682
+ cyan100: string;
3683
+ cyan200: string;
3684
+ cyan300: string;
3685
+ cyan400: string;
3686
+ cyan500: string;
3687
+ cyan600: string;
3688
+ cyan700: string;
3689
+ cyan800: string;
3690
+ cyan900: string;
3691
+ pink100: string;
3692
+ pink200: string;
3693
+ pink300: string;
3694
+ pink400: string;
3695
+ pink500: string;
3696
+ pink600: string;
3697
+ pink700: string;
3698
+ pink800: string;
3699
+ pink900: string;
3700
+ gray100: string;
3701
+ gray200: string;
3702
+ gray300: string;
3703
+ gray400: string;
3704
+ gray500: string;
3705
+ gray600: string;
3706
+ gray700: string;
3707
+ gray800: string;
3708
+ gray900: string;
3709
+ primaryLight: string;
3710
+ primary: string;
3711
+ primaryDark: string;
3712
+ secondaryLight: string;
3713
+ secondary: string;
3714
+ secondaryDark: string;
3715
+ successLight: string;
3716
+ success: string;
3717
+ successDark: string;
3718
+ warningLight: string;
3719
+ warning: string;
3720
+ warningDark: string;
3721
+ errorLight: string;
3722
+ error: string;
3723
+ errorDark: string;
3724
+ gradient: string;
3725
+ link: string;
3726
+ };
3727
+ fonts: {
3728
+ sans: string;
3729
+ mono: string;
3730
+ };
3731
+ fontSizes: {
3732
+ tiny: string;
3733
+ xs: string;
3734
+ base: string;
3735
+ sm: string;
3736
+ md: string;
3737
+ lg: string;
3738
+ xl: string;
3739
+ };
3740
+ fontWeights: {
3741
+ hairline: number;
3742
+ thin: number;
3743
+ light: number;
3744
+ normal: number;
3745
+ medium: number;
3746
+ semibold: number;
3747
+ bold: number;
3748
+ extrabold: number;
3749
+ black: number;
3750
+ };
3751
+ lineHeights: {
3752
+ xs: number;
3753
+ sm: number;
3754
+ md: number;
3755
+ lg: number;
3756
+ xl: number;
3757
+ };
3758
+ letterSpacings: {
3759
+ tighter: string;
3760
+ tight: string;
3761
+ normal: string;
3762
+ wide: string;
3763
+ wider: string;
3764
+ widest: string;
3765
+ };
3766
+ space: {
3767
+ 0: string;
3768
+ xs: string;
3769
+ sm: string;
3770
+ md: string;
3771
+ lg: string;
3772
+ xl: string;
3773
+ px: string;
3774
+ 1: string;
3775
+ 2: string;
3776
+ 3: string;
3777
+ 4: string;
3778
+ 5: string;
3779
+ 6: string;
3780
+ 7: string;
3781
+ 8: string;
3782
+ 9: string;
3783
+ 10: string;
3784
+ 11: string;
3785
+ 12: string;
3786
+ 13: string;
3787
+ 14: string;
3788
+ 15: string;
3789
+ 16: string;
3790
+ 17: string;
3791
+ 18: string;
3792
+ 20: string;
3793
+ 24: string;
3794
+ 28: string;
3795
+ 32: string;
3796
+ 36: string;
3797
+ 40: string;
3798
+ 44: string;
3799
+ 48: string;
3800
+ 52: string;
3801
+ 56: string;
3802
+ 60: string;
3803
+ 64: string;
3804
+ 72: string;
3805
+ 80: string;
3806
+ 96: string;
3807
+ };
3808
+ radii: {
3809
+ xs: string;
3810
+ sm: string;
3811
+ md: string;
3812
+ base: string;
3813
+ lg: string;
3814
+ xl: string;
3815
+ squared: string;
3816
+ rounded: string;
3817
+ pill: string;
3818
+ };
3819
+ zIndices: {
3820
+ 1: string;
3821
+ 2: string;
3822
+ 3: string;
3823
+ 4: string;
3824
+ 5: string;
3825
+ 10: string;
3826
+ max: string;
3827
+ };
3828
+ borderWeights: {
3829
+ light: string;
3830
+ normal: string;
3831
+ bold: string;
3832
+ extrabold: string;
3833
+ black: string;
3834
+ };
3835
+ transitions: {
3836
+ default: string;
3837
+ };
3838
+ breakpoints: {
3839
+ xs: string;
3840
+ sm: string;
3841
+ md: string;
3842
+ lg: string;
3843
+ xl: string;
3844
+ };
3845
+ }, {
3846
+ width: string;
3847
+ height: string;
3848
+ minWidth: string;
3849
+ maxWidth: string;
3850
+ minHeight: string;
3851
+ maxHeight: string;
3852
+ flexBasis: string;
3853
+ gridTemplateColumns: string;
3854
+ gridTemplateRows: string;
3855
+ blockSize: string;
3856
+ minBlockSize: string;
3857
+ maxBlockSize: string;
3858
+ inlineSize: string;
3859
+ minInlineSize: string;
3860
+ maxInlineSize: string;
3861
+ borderWidth: string;
3862
+ gap: "space";
3863
+ gridGap: "space";
3864
+ columnGap: "space";
3865
+ gridColumnGap: "space";
3866
+ rowGap: "space";
3867
+ gridRowGap: "space";
3868
+ inset: "space";
3869
+ insetBlock: "space";
3870
+ insetBlockEnd: "space";
3871
+ insetBlockStart: "space";
3872
+ insetInline: "space";
3873
+ insetInlineEnd: "space";
3874
+ insetInlineStart: "space";
3875
+ margin: "space";
3876
+ marginTop: "space";
3877
+ marginRight: "space";
3878
+ marginBottom: "space";
3879
+ marginLeft: "space";
3880
+ marginBlock: "space";
3881
+ marginBlockEnd: "space";
3882
+ marginBlockStart: "space";
3883
+ marginInline: "space";
3884
+ marginInlineEnd: "space";
3885
+ marginInlineStart: "space";
3886
+ padding: "space";
3887
+ paddingTop: "space";
3888
+ paddingRight: "space";
3889
+ paddingBottom: "space";
3890
+ paddingLeft: "space";
3891
+ paddingBlock: "space";
3892
+ paddingBlockEnd: "space";
3893
+ paddingBlockStart: "space";
3894
+ paddingInline: "space";
3895
+ paddingInlineEnd: "space";
3896
+ paddingInlineStart: "space";
3897
+ scrollMargin: "space";
3898
+ scrollMarginTop: "space";
3899
+ scrollMarginRight: "space";
3900
+ scrollMarginBottom: "space";
3901
+ scrollMarginLeft: "space";
3902
+ scrollMarginBlock: "space";
3903
+ scrollMarginBlockEnd: "space";
3904
+ scrollMarginBlockStart: "space";
3905
+ scrollMarginInline: "space";
3906
+ scrollMarginInlineEnd: "space";
3907
+ scrollMarginInlineStart: "space";
3908
+ scrollPadding: "space";
3909
+ scrollPaddingTop: "space";
3910
+ scrollPaddingRight: "space";
3911
+ scrollPaddingBottom: "space";
3912
+ scrollPaddingLeft: "space";
3913
+ scrollPaddingBlock: "space";
3914
+ scrollPaddingBlockEnd: "space";
3915
+ scrollPaddingBlockStart: "space";
3916
+ scrollPaddingInline: "space";
3917
+ scrollPaddingInlineEnd: "space";
3918
+ scrollPaddingInlineStart: "space";
3919
+ top: "space";
3920
+ right: "space";
3921
+ bottom: "space";
3922
+ left: "space";
3923
+ fontSize: "fontSizes";
3924
+ background: "colors";
3925
+ backgroundColor: "colors";
3926
+ backgroundImage: "colors";
3927
+ borderImage: "colors";
3928
+ border: "colors";
3929
+ borderBlock: "colors";
3930
+ borderBlockEnd: "colors";
3931
+ borderBlockStart: "colors";
3932
+ borderBottom: "colors";
3933
+ borderBottomColor: "colors";
3934
+ borderColor: "colors";
3935
+ borderInline: "colors";
3936
+ borderInlineEnd: "colors";
3937
+ borderInlineStart: "colors";
3938
+ borderLeft: "colors";
3939
+ borderLeftColor: "colors";
3940
+ borderRight: "colors";
3941
+ borderRightColor: "colors";
3942
+ borderTop: "colors";
3943
+ borderTopColor: "colors";
3944
+ caretColor: "colors";
3945
+ color: "colors";
3946
+ columnRuleColor: "colors";
3947
+ outline: "colors";
3948
+ outlineColor: "colors";
3949
+ fill: "colors";
3950
+ stroke: "colors";
3951
+ textDecorationColor: "colors";
3952
+ fontFamily: "fonts";
3953
+ fontWeight: "fontWeights";
3954
+ lineHeight: "lineHeights";
3955
+ letterSpacing: "letterSpacings";
3956
+ borderTopWidth: "borderWidths";
3957
+ borderLeftWidth: "borderWidths";
3958
+ borderRightWidth: "borderWidths";
3959
+ borderBottomWidth: "borderWidths";
3960
+ borderStyle: "borderStyles";
3961
+ borderTopStyle: "borderStyles";
3962
+ borderLeftStyle: "borderStyles";
3963
+ borderRightStyle: "borderStyles";
3964
+ borderBottomStyle: "borderStyles";
3965
+ borderRadius: "radii";
3966
+ borderTopLeftRadius: "radii";
3967
+ borderTopRightRadius: "radii";
3968
+ borderBottomRightRadius: "radii";
3969
+ borderBottomLeftRadius: "radii";
3970
+ boxShadow: "shadows";
3971
+ textShadow: "shadows";
3972
+ transition: "transitions";
3973
+ zIndex: "zIndices";
3974
+ }, {
3975
+ p: (value: {
3976
+ readonly [$$PropertyValue]: "padding";
3977
+ }) => {
3978
+ padding: {
3979
+ readonly [$$PropertyValue]: "padding";
3980
+ };
3981
+ };
3982
+ pt: (value: {
3983
+ readonly [$$PropertyValue]: "paddingTop";
3984
+ }) => {
3985
+ paddingTop: {
3986
+ readonly [$$PropertyValue]: "paddingTop";
3987
+ };
3988
+ };
3989
+ pr: (value: {
3990
+ readonly [$$PropertyValue]: "paddingRight";
3991
+ }) => {
3992
+ paddingRight: {
3993
+ readonly [$$PropertyValue]: "paddingRight";
3994
+ };
3995
+ };
3996
+ pb: (value: {
3997
+ readonly [$$PropertyValue]: "paddingBottom";
3998
+ }) => {
3999
+ paddingBottom: {
4000
+ readonly [$$PropertyValue]: "paddingBottom";
4001
+ };
4002
+ };
4003
+ pl: (value: {
4004
+ readonly [$$PropertyValue]: "paddingLeft";
4005
+ }) => {
4006
+ paddingLeft: {
4007
+ readonly [$$PropertyValue]: "paddingLeft";
4008
+ };
4009
+ };
4010
+ px: (value: {
4011
+ readonly [$$PropertyValue]: "paddingLeft";
4012
+ }) => {
4013
+ paddingLeft: {
4014
+ readonly [$$PropertyValue]: "paddingLeft";
4015
+ };
4016
+ paddingRight: {
4017
+ readonly [$$PropertyValue]: "paddingLeft";
4018
+ };
4019
+ };
4020
+ py: (value: {
4021
+ readonly [$$PropertyValue]: "paddingTop";
4022
+ }) => {
4023
+ paddingTop: {
4024
+ readonly [$$PropertyValue]: "paddingTop";
4025
+ };
4026
+ paddingBottom: {
4027
+ readonly [$$PropertyValue]: "paddingTop";
4028
+ };
4029
+ };
4030
+ m: (value: {
4031
+ readonly [$$PropertyValue]: "margin";
4032
+ }) => {
4033
+ margin: {
4034
+ readonly [$$PropertyValue]: "margin";
4035
+ };
4036
+ };
4037
+ mt: (value: {
4038
+ readonly [$$PropertyValue]: "marginTop";
4039
+ }) => {
4040
+ marginTop: {
4041
+ readonly [$$PropertyValue]: "marginTop";
4042
+ };
4043
+ };
4044
+ mr: (value: {
4045
+ readonly [$$PropertyValue]: "marginRight";
4046
+ }) => {
4047
+ marginRight: {
4048
+ readonly [$$PropertyValue]: "marginRight";
4049
+ };
4050
+ };
4051
+ mb: (value: {
4052
+ readonly [$$PropertyValue]: "marginBottom";
4053
+ }) => {
4054
+ marginBottom: {
4055
+ readonly [$$PropertyValue]: "marginBottom";
4056
+ };
4057
+ };
4058
+ ml: (value: {
4059
+ readonly [$$PropertyValue]: "marginLeft";
4060
+ }) => {
4061
+ marginLeft: {
4062
+ readonly [$$PropertyValue]: "marginLeft";
4063
+ };
4064
+ };
4065
+ mx: (value: {
4066
+ readonly [$$PropertyValue]: "marginLeft";
4067
+ }) => {
4068
+ marginLeft: {
4069
+ readonly [$$PropertyValue]: "marginLeft";
4070
+ };
4071
+ marginRight: {
4072
+ readonly [$$PropertyValue]: "marginLeft";
4073
+ };
4074
+ };
4075
+ my: (value: {
4076
+ readonly [$$PropertyValue]: "marginTop";
4077
+ }) => {
4078
+ marginTop: {
4079
+ readonly [$$PropertyValue]: "marginTop";
4080
+ };
4081
+ marginBottom: {
4082
+ readonly [$$PropertyValue]: "marginTop";
4083
+ };
4084
+ };
4085
+ ta: (value: {
4086
+ readonly [$$PropertyValue]: "textAlign";
4087
+ }) => {
4088
+ textAlign: {
4089
+ readonly [$$PropertyValue]: "textAlign";
4090
+ };
4091
+ };
4092
+ tt: (value: {
4093
+ readonly [$$PropertyValue]: "textTransform";
4094
+ }) => {
4095
+ textTransform: {
4096
+ readonly [$$PropertyValue]: "textTransform";
4097
+ };
4098
+ };
4099
+ to: (value: {
4100
+ readonly [$$PropertyValue]: "textOverflow";
4101
+ }) => {
4102
+ textOverflow: {
4103
+ readonly [$$PropertyValue]: "textOverflow";
4104
+ };
4105
+ };
4106
+ d: (value: {
4107
+ readonly [$$PropertyValue]: "display";
4108
+ }) => {
4109
+ display: {
4110
+ readonly [$$PropertyValue]: "display";
4111
+ };
4112
+ };
4113
+ dflex: (value: {
4114
+ readonly [$$PropertyValue]: "alignItems";
4115
+ }) => {
4116
+ display: string;
4117
+ alignItems: {
4118
+ readonly [$$PropertyValue]: "alignItems";
4119
+ };
4120
+ justifyContent: {
4121
+ readonly [$$PropertyValue]: "alignItems";
4122
+ };
4123
+ };
4124
+ fd: (value: {
4125
+ readonly [$$PropertyValue]: "flexDirection";
4126
+ }) => {
4127
+ flexDirection: {
4128
+ readonly [$$PropertyValue]: "flexDirection";
4129
+ };
4130
+ };
4131
+ fw: (value: {
4132
+ readonly [$$PropertyValue]: "flexWrap";
4133
+ }) => {
4134
+ flexWrap: {
4135
+ readonly [$$PropertyValue]: "flexWrap";
4136
+ };
4137
+ };
4138
+ ai: (value: {
4139
+ readonly [$$PropertyValue]: "alignItems";
4140
+ }) => {
4141
+ alignItems: {
4142
+ readonly [$$PropertyValue]: "alignItems";
4143
+ };
4144
+ };
4145
+ ac: (value: {
4146
+ readonly [$$PropertyValue]: "alignContent";
4147
+ }) => {
4148
+ alignContent: {
4149
+ readonly [$$PropertyValue]: "alignContent";
4150
+ };
4151
+ };
4152
+ jc: (value: {
4153
+ readonly [$$PropertyValue]: "justifyContent";
4154
+ }) => {
4155
+ justifyContent: {
4156
+ readonly [$$PropertyValue]: "justifyContent";
4157
+ };
4158
+ };
4159
+ as: (value: {
4160
+ readonly [$$PropertyValue]: "alignSelf";
4161
+ }) => {
4162
+ alignSelf: {
4163
+ readonly [$$PropertyValue]: "alignSelf";
4164
+ };
4165
+ };
4166
+ fg: (value: {
4167
+ readonly [$$PropertyValue]: "flexGrow";
4168
+ }) => {
4169
+ flexGrow: {
4170
+ readonly [$$PropertyValue]: "flexGrow";
4171
+ };
4172
+ };
4173
+ fs: (value: {
4174
+ readonly [$$PropertyValue]: "fontSize";
4175
+ }) => {
4176
+ fontSize: {
4177
+ readonly [$$PropertyValue]: "fontSize";
4178
+ };
4179
+ };
4180
+ fb: (value: {
4181
+ readonly [$$PropertyValue]: "flexBasis";
4182
+ }) => {
4183
+ flexBasis: {
4184
+ readonly [$$PropertyValue]: "flexBasis";
4185
+ };
4186
+ };
4187
+ bc: (value: {
4188
+ readonly [$$PropertyValue]: "backgroundColor";
4189
+ }) => {
4190
+ backgroundColor: {
4191
+ readonly [$$PropertyValue]: "backgroundColor";
4192
+ };
4193
+ };
4194
+ bf: (value: {
4195
+ readonly [$$PropertyValue]: "backdropFilter";
4196
+ }) => {
4197
+ backdropFilter: {
4198
+ readonly [$$PropertyValue]: "backdropFilter";
4199
+ };
4200
+ };
4201
+ bg: (value: {
4202
+ readonly [$$PropertyValue]: "backgroundColor";
4203
+ }) => {
4204
+ background: {
4205
+ readonly [$$PropertyValue]: "backgroundColor";
4206
+ };
4207
+ };
4208
+ bgBlur: (value: {
4209
+ readonly [$$PropertyValue]: "backgroundColor";
4210
+ }) => {
4211
+ bf: string;
4212
+ bg: string;
4213
+ };
4214
+ bgColor: (value: {
4215
+ readonly [$$PropertyValue]: "backgroundColor";
4216
+ }) => {
4217
+ backgroundColor: {
4218
+ readonly [$$PropertyValue]: "backgroundColor";
4219
+ };
4220
+ };
4221
+ backgroundClip: (value: {
4222
+ readonly [$$PropertyValue]: "backgroundClip";
4223
+ }) => {
4224
+ WebkitBackgroundClip: {
4225
+ readonly [$$PropertyValue]: "backgroundClip";
4226
+ };
4227
+ backgroundClip: {
4228
+ readonly [$$PropertyValue]: "backgroundClip";
4229
+ };
4230
+ };
4231
+ bgClip: (value: {
4232
+ readonly [$$PropertyValue]: "backgroundClip";
4233
+ }) => {
4234
+ WebkitBackgroundClip: {
4235
+ readonly [$$PropertyValue]: "backgroundClip";
4236
+ };
4237
+ backgroundClip: {
4238
+ readonly [$$PropertyValue]: "backgroundClip";
4239
+ };
4240
+ };
4241
+ br: (value: {
4242
+ readonly [$$PropertyValue]: "borderRadius";
4243
+ }) => {
4244
+ borderRadius: {
4245
+ readonly [$$PropertyValue]: "borderRadius";
4246
+ };
4247
+ };
4248
+ bw: (value: {
4249
+ readonly [$$PropertyValue]: "borderWidth";
4250
+ }) => {
4251
+ borderWidth: {
4252
+ readonly [$$PropertyValue]: "borderWidth";
4253
+ };
4254
+ };
4255
+ btrr: (value: {
4256
+ readonly [$$PropertyValue]: "borderTopRightRadius";
4257
+ }) => {
4258
+ borderTopRightRadius: {
4259
+ readonly [$$PropertyValue]: "borderTopRightRadius";
4260
+ };
4261
+ };
4262
+ bbrr: (value: {
4263
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
4264
+ }) => {
4265
+ borderBottomRightRadius: {
4266
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
4267
+ };
4268
+ };
4269
+ bblr: (value: {
4270
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
4271
+ }) => {
4272
+ borderBottomLeftRadius: {
4273
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
4274
+ };
4275
+ };
4276
+ btlr: (value: {
4277
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
4278
+ }) => {
4279
+ borderTopLeftRadius: {
4280
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
4281
+ };
4282
+ };
4283
+ bs: (value: {
4284
+ readonly [$$PropertyValue]: "boxShadow";
4285
+ }) => {
4286
+ boxShadow: {
4287
+ readonly [$$PropertyValue]: "boxShadow";
4288
+ };
4289
+ };
4290
+ normalShadow: (value: {
4291
+ readonly [$$PropertyValue]: "backgroundColor";
4292
+ }) => {
4293
+ boxShadow: string;
4294
+ };
4295
+ normalShadowVar: (value: {
4296
+ readonly [$$PropertyValue]: "backgroundColor";
4297
+ }) => {
4298
+ boxShadow: string;
4299
+ };
4300
+ lh: (value: {
4301
+ readonly [$$PropertyValue]: "lineHeight";
4302
+ }) => {
4303
+ lineHeight: {
4304
+ readonly [$$PropertyValue]: "lineHeight";
4305
+ };
4306
+ };
4307
+ ov: (value: {
4308
+ readonly [$$PropertyValue]: "overflow";
4309
+ }) => {
4310
+ overflow: {
4311
+ readonly [$$PropertyValue]: "overflow";
4312
+ };
4313
+ };
4314
+ ox: (value: {
4315
+ readonly [$$PropertyValue]: "overflowX";
4316
+ }) => {
4317
+ overflowX: {
4318
+ readonly [$$PropertyValue]: "overflowX";
4319
+ };
4320
+ };
4321
+ oy: (value: {
4322
+ readonly [$$PropertyValue]: "overflowY";
4323
+ }) => {
4324
+ overflowY: {
4325
+ readonly [$$PropertyValue]: "overflowY";
4326
+ };
4327
+ };
4328
+ pe: (value: {
4329
+ readonly [$$PropertyValue]: "pointerEvents";
4330
+ }) => {
4331
+ pointerEvents: {
4332
+ readonly [$$PropertyValue]: "pointerEvents";
4333
+ };
4334
+ };
4335
+ events: (value: {
4336
+ readonly [$$PropertyValue]: "pointerEvents";
4337
+ }) => {
4338
+ pointerEvents: {
4339
+ readonly [$$PropertyValue]: "pointerEvents";
4340
+ };
4341
+ };
4342
+ us: (value: {
4343
+ readonly [$$PropertyValue]: "userSelect";
4344
+ }) => {
4345
+ WebkitUserSelect: {
4346
+ readonly [$$PropertyValue]: "userSelect";
4347
+ };
4348
+ userSelect: {
4349
+ readonly [$$PropertyValue]: "userSelect";
4350
+ };
4351
+ };
4352
+ userSelect: (value: {
4353
+ readonly [$$PropertyValue]: "userSelect";
4354
+ }) => {
4355
+ WebkitUserSelect: {
4356
+ readonly [$$PropertyValue]: "userSelect";
4357
+ };
4358
+ userSelect: {
4359
+ readonly [$$PropertyValue]: "userSelect";
4360
+ };
4361
+ };
4362
+ w: (value: {
4363
+ readonly [$$PropertyValue]: "width";
4364
+ }) => {
4365
+ width: {
4366
+ readonly [$$PropertyValue]: "width";
4367
+ };
4368
+ };
4369
+ h: (value: {
4370
+ readonly [$$PropertyValue]: "height";
4371
+ }) => {
4372
+ height: {
4373
+ readonly [$$PropertyValue]: "height";
4374
+ };
4375
+ };
4376
+ mw: (value: {
4377
+ readonly [$$PropertyValue]: "maxWidth";
4378
+ }) => {
4379
+ maxWidth: {
4380
+ readonly [$$PropertyValue]: "maxWidth";
4381
+ };
4382
+ };
4383
+ maxW: (value: {
4384
+ readonly [$$PropertyValue]: "maxWidth";
4385
+ }) => {
4386
+ maxWidth: {
4387
+ readonly [$$PropertyValue]: "maxWidth";
4388
+ };
4389
+ };
4390
+ mh: (value: {
4391
+ readonly [$$PropertyValue]: "maxHeight";
4392
+ }) => {
4393
+ maxHeight: {
4394
+ readonly [$$PropertyValue]: "maxHeight";
4395
+ };
4396
+ };
4397
+ maxH: (value: {
4398
+ readonly [$$PropertyValue]: "maxHeight";
4399
+ }) => {
4400
+ maxHeight: {
4401
+ readonly [$$PropertyValue]: "maxHeight";
4402
+ };
4403
+ };
4404
+ size: (value: {
4405
+ readonly [$$PropertyValue]: "width";
4406
+ }) => {
4407
+ width: {
4408
+ readonly [$$PropertyValue]: "width";
4409
+ };
4410
+ height: {
4411
+ readonly [$$PropertyValue]: "width";
4412
+ };
4413
+ };
4414
+ sizeMin: (value: {
4415
+ readonly [$$PropertyValue]: "width";
4416
+ }) => {
4417
+ minWidth: {
4418
+ readonly [$$PropertyValue]: "width";
4419
+ };
4420
+ minHeight: {
4421
+ readonly [$$PropertyValue]: "width";
4422
+ };
4423
+ width: {
4424
+ readonly [$$PropertyValue]: "width";
4425
+ };
4426
+ height: {
4427
+ readonly [$$PropertyValue]: "width";
4428
+ };
4429
+ };
4430
+ sizeMax: (value: {
4431
+ readonly [$$PropertyValue]: "width";
4432
+ }) => {
4433
+ maxWidth: {
4434
+ readonly [$$PropertyValue]: "width";
4435
+ };
4436
+ maxHeight: {
4437
+ readonly [$$PropertyValue]: "width";
4438
+ };
4439
+ };
4440
+ appearance: (value: {
4441
+ readonly [$$PropertyValue]: "appearance";
4442
+ }) => {
4443
+ WebkitAppearance: {
4444
+ readonly [$$PropertyValue]: "appearance";
4445
+ };
4446
+ appearance: {
4447
+ readonly [$$PropertyValue]: "appearance";
4448
+ };
4449
+ };
4450
+ scale: (value: {
4451
+ readonly [$$PropertyValue]: "scale";
4452
+ }) => {
4453
+ transform: string;
4454
+ };
4455
+ linearGradient: (value: {
4456
+ readonly [$$PropertyValue]: "backgroundImage";
4457
+ }) => {
4458
+ backgroundImage: string;
4459
+ };
4460
+ textGradient: (value: {
4461
+ readonly [$$PropertyValue]: "backgroundImage";
4462
+ }) => {
4463
+ backgroundImage: string;
4464
+ WebkitBackgroundClip: string;
4465
+ WebkitTextFillColor: string;
4466
+ };
4467
+ }>>;
4468
+ export declare type CollapseVariantsProps = VariantProps<typeof StyledCollapse>;
4469
+ export declare type CollapseViewVariantsProps = VariantProps<typeof StyledCollapseView>;
4470
+ export declare type CollapseContentVariantsProps = VariantProps<typeof StyledCollapseContent>;
4471
+ export declare type CollapseIconVariantsProps = VariantProps<typeof StyledCollapseIcon>;
4472
+ export declare type CollapseGroupVariantsProps = VariantProps<typeof StyledCollapseGroup>;