@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,3570 @@
1
+ import { VariantProps } from '../theme/stitches.config';
2
+ export declare const StyledSnippet: import("@stitches/react/types/styled-component").StyledComponent<"div", {
3
+ color?: "default" | "primary" | "secondary" | "success" | "warning" | "error" | "invert" | undefined;
4
+ borderWeight?: "light" | "normal" | "bold" | "extrabold" | "black" | undefined;
5
+ bordered?: boolean | "true" | undefined;
6
+ filled?: boolean | "true" | undefined;
7
+ }, {
8
+ xs: string;
9
+ sm: string;
10
+ md: string;
11
+ lg: string;
12
+ xl: string;
13
+ xsMax: string;
14
+ smMax: string;
15
+ mdMax: string;
16
+ lgMax: string;
17
+ xlMax: string;
18
+ motion: string;
19
+ safari: string;
20
+ hover: string;
21
+ dark: string;
22
+ light: string;
23
+ }, import("@stitches/react/types/css-util").CSS<{
24
+ xs: string;
25
+ sm: string;
26
+ md: string;
27
+ lg: string;
28
+ xl: string;
29
+ xsMax: string;
30
+ smMax: string;
31
+ mdMax: string;
32
+ lgMax: string;
33
+ xlMax: string;
34
+ motion: string;
35
+ safari: string;
36
+ hover: string;
37
+ dark: string;
38
+ light: string;
39
+ }, {
40
+ shadows: {
41
+ xs: string;
42
+ sm: string;
43
+ md: string;
44
+ lg: string;
45
+ xl: string;
46
+ };
47
+ colors: {
48
+ accents1: string;
49
+ accents2: string;
50
+ accents3: string;
51
+ accents4: string;
52
+ accents5: string;
53
+ accents6: string;
54
+ accents7: string;
55
+ accents8: string;
56
+ accents9: string;
57
+ text: string;
58
+ background: string;
59
+ foreground: string;
60
+ codeLight: string;
61
+ code: string;
62
+ border: string;
63
+ selection: string;
64
+ white: string;
65
+ black: string;
66
+ blue100: string;
67
+ blue200: string;
68
+ blue300: string;
69
+ blue400: string;
70
+ blue500: string;
71
+ blue600: string;
72
+ blue700: string;
73
+ blue800: string;
74
+ blue900: string;
75
+ purple100: string;
76
+ purple200: string;
77
+ purple300: string;
78
+ purple400: string;
79
+ purple500: string;
80
+ purple600: string;
81
+ purple700: string;
82
+ purple800: string;
83
+ purple900: string;
84
+ green100: string;
85
+ green200: string;
86
+ green300: string;
87
+ green400: string;
88
+ green500: string;
89
+ green600: string;
90
+ green700: string;
91
+ green800: string;
92
+ green900: string;
93
+ yellow100: string;
94
+ yellow200: string;
95
+ yellow300: string;
96
+ yellow400: string;
97
+ yellow500: string;
98
+ yellow600: string;
99
+ yellow700: string;
100
+ yellow800: string;
101
+ yellow900: string;
102
+ red100: string;
103
+ red200: string;
104
+ red300: string;
105
+ red400: string;
106
+ red500: string;
107
+ red600: string;
108
+ red700: string;
109
+ red800: string;
110
+ red900: string;
111
+ cyan100: string;
112
+ cyan200: string;
113
+ cyan300: string;
114
+ cyan400: string;
115
+ cyan500: string;
116
+ cyan600: string;
117
+ cyan700: string;
118
+ cyan800: string;
119
+ cyan900: string;
120
+ pink100: string;
121
+ pink200: string;
122
+ pink300: string;
123
+ pink400: string;
124
+ pink500: string;
125
+ pink600: string;
126
+ pink700: string;
127
+ pink800: string;
128
+ pink900: string;
129
+ gray100: string;
130
+ gray200: string;
131
+ gray300: string;
132
+ gray400: string;
133
+ gray500: string;
134
+ gray600: string;
135
+ gray700: string;
136
+ gray800: string;
137
+ gray900: string;
138
+ primaryLight: string;
139
+ primary: string;
140
+ primaryDark: string;
141
+ secondaryLight: string;
142
+ secondary: string;
143
+ secondaryDark: string;
144
+ successLight: string;
145
+ success: string;
146
+ successDark: string;
147
+ warningLight: string;
148
+ warning: string;
149
+ warningDark: string;
150
+ errorLight: string;
151
+ error: string;
152
+ errorDark: string;
153
+ gradient: string;
154
+ link: string;
155
+ };
156
+ fonts: {
157
+ sans: string;
158
+ mono: string;
159
+ };
160
+ fontSizes: {
161
+ tiny: string;
162
+ xs: string;
163
+ base: string;
164
+ sm: string;
165
+ md: string;
166
+ lg: string;
167
+ xl: string;
168
+ };
169
+ fontWeights: {
170
+ hairline: number;
171
+ thin: number;
172
+ light: number;
173
+ normal: number;
174
+ medium: number;
175
+ semibold: number;
176
+ bold: number;
177
+ extrabold: number;
178
+ black: number;
179
+ };
180
+ lineHeights: {
181
+ xs: number;
182
+ sm: number;
183
+ md: number;
184
+ lg: number;
185
+ xl: number;
186
+ };
187
+ letterSpacings: {
188
+ tighter: string;
189
+ tight: string;
190
+ normal: string;
191
+ wide: string;
192
+ wider: string;
193
+ widest: string;
194
+ };
195
+ space: {
196
+ 0: string;
197
+ xs: string;
198
+ sm: string;
199
+ md: string;
200
+ lg: string;
201
+ xl: string;
202
+ px: string;
203
+ 1: string;
204
+ 2: string;
205
+ 3: string;
206
+ 4: string;
207
+ 5: string;
208
+ 6: string;
209
+ 7: string;
210
+ 8: string;
211
+ 9: string;
212
+ 10: string;
213
+ 11: string;
214
+ 12: string;
215
+ 13: string;
216
+ 14: string;
217
+ 15: string;
218
+ 16: string;
219
+ 17: string;
220
+ 18: string;
221
+ 20: string;
222
+ 24: string;
223
+ 28: string;
224
+ 32: string;
225
+ 36: string;
226
+ 40: string;
227
+ 44: string;
228
+ 48: string;
229
+ 52: string;
230
+ 56: string;
231
+ 60: string;
232
+ 64: string;
233
+ 72: string;
234
+ 80: string;
235
+ 96: string;
236
+ };
237
+ radii: {
238
+ xs: string;
239
+ sm: string;
240
+ md: string;
241
+ base: string;
242
+ lg: string;
243
+ xl: string;
244
+ squared: string;
245
+ rounded: string;
246
+ pill: string;
247
+ };
248
+ zIndices: {
249
+ 1: string;
250
+ 2: string;
251
+ 3: string;
252
+ 4: string;
253
+ 5: string;
254
+ 10: string;
255
+ max: string;
256
+ };
257
+ borderWeights: {
258
+ light: string;
259
+ normal: string;
260
+ bold: string;
261
+ extrabold: string;
262
+ black: string;
263
+ };
264
+ transitions: {
265
+ default: string;
266
+ };
267
+ breakpoints: {
268
+ xs: string;
269
+ sm: string;
270
+ md: string;
271
+ lg: string;
272
+ xl: string;
273
+ };
274
+ }, {
275
+ width: string;
276
+ height: string;
277
+ minWidth: string;
278
+ maxWidth: string;
279
+ minHeight: string;
280
+ maxHeight: string;
281
+ flexBasis: string;
282
+ gridTemplateColumns: string;
283
+ gridTemplateRows: string;
284
+ blockSize: string;
285
+ minBlockSize: string;
286
+ maxBlockSize: string;
287
+ inlineSize: string;
288
+ minInlineSize: string;
289
+ maxInlineSize: string;
290
+ borderWidth: string;
291
+ gap: "space";
292
+ gridGap: "space";
293
+ columnGap: "space";
294
+ gridColumnGap: "space";
295
+ rowGap: "space";
296
+ gridRowGap: "space";
297
+ inset: "space";
298
+ insetBlock: "space";
299
+ insetBlockEnd: "space";
300
+ insetBlockStart: "space";
301
+ insetInline: "space";
302
+ insetInlineEnd: "space";
303
+ insetInlineStart: "space";
304
+ margin: "space";
305
+ marginTop: "space";
306
+ marginRight: "space";
307
+ marginBottom: "space";
308
+ marginLeft: "space";
309
+ marginBlock: "space";
310
+ marginBlockEnd: "space";
311
+ marginBlockStart: "space";
312
+ marginInline: "space";
313
+ marginInlineEnd: "space";
314
+ marginInlineStart: "space";
315
+ padding: "space";
316
+ paddingTop: "space";
317
+ paddingRight: "space";
318
+ paddingBottom: "space";
319
+ paddingLeft: "space";
320
+ paddingBlock: "space";
321
+ paddingBlockEnd: "space";
322
+ paddingBlockStart: "space";
323
+ paddingInline: "space";
324
+ paddingInlineEnd: "space";
325
+ paddingInlineStart: "space";
326
+ scrollMargin: "space";
327
+ scrollMarginTop: "space";
328
+ scrollMarginRight: "space";
329
+ scrollMarginBottom: "space";
330
+ scrollMarginLeft: "space";
331
+ scrollMarginBlock: "space";
332
+ scrollMarginBlockEnd: "space";
333
+ scrollMarginBlockStart: "space";
334
+ scrollMarginInline: "space";
335
+ scrollMarginInlineEnd: "space";
336
+ scrollMarginInlineStart: "space";
337
+ scrollPadding: "space";
338
+ scrollPaddingTop: "space";
339
+ scrollPaddingRight: "space";
340
+ scrollPaddingBottom: "space";
341
+ scrollPaddingLeft: "space";
342
+ scrollPaddingBlock: "space";
343
+ scrollPaddingBlockEnd: "space";
344
+ scrollPaddingBlockStart: "space";
345
+ scrollPaddingInline: "space";
346
+ scrollPaddingInlineEnd: "space";
347
+ scrollPaddingInlineStart: "space";
348
+ top: "space";
349
+ right: "space";
350
+ bottom: "space";
351
+ left: "space";
352
+ fontSize: "fontSizes";
353
+ background: "colors";
354
+ backgroundColor: "colors";
355
+ backgroundImage: "colors";
356
+ borderImage: "colors";
357
+ border: "colors";
358
+ borderBlock: "colors";
359
+ borderBlockEnd: "colors";
360
+ borderBlockStart: "colors";
361
+ borderBottom: "colors";
362
+ borderBottomColor: "colors";
363
+ borderColor: "colors";
364
+ borderInline: "colors";
365
+ borderInlineEnd: "colors";
366
+ borderInlineStart: "colors";
367
+ borderLeft: "colors";
368
+ borderLeftColor: "colors";
369
+ borderRight: "colors";
370
+ borderRightColor: "colors";
371
+ borderTop: "colors";
372
+ borderTopColor: "colors";
373
+ caretColor: "colors";
374
+ color: "colors";
375
+ columnRuleColor: "colors";
376
+ outline: "colors";
377
+ outlineColor: "colors";
378
+ fill: "colors";
379
+ stroke: "colors";
380
+ textDecorationColor: "colors";
381
+ fontFamily: "fonts";
382
+ fontWeight: "fontWeights";
383
+ lineHeight: "lineHeights";
384
+ letterSpacing: "letterSpacings";
385
+ borderTopWidth: "borderWidths";
386
+ borderLeftWidth: "borderWidths";
387
+ borderRightWidth: "borderWidths";
388
+ borderBottomWidth: "borderWidths";
389
+ borderStyle: "borderStyles";
390
+ borderTopStyle: "borderStyles";
391
+ borderLeftStyle: "borderStyles";
392
+ borderRightStyle: "borderStyles";
393
+ borderBottomStyle: "borderStyles";
394
+ borderRadius: "radii";
395
+ borderTopLeftRadius: "radii";
396
+ borderTopRightRadius: "radii";
397
+ borderBottomRightRadius: "radii";
398
+ borderBottomLeftRadius: "radii";
399
+ boxShadow: "shadows";
400
+ textShadow: "shadows";
401
+ transition: "transitions";
402
+ zIndex: "zIndices";
403
+ }, {
404
+ p: (value: {
405
+ readonly [$$PropertyValue]: "padding";
406
+ }) => {
407
+ padding: {
408
+ readonly [$$PropertyValue]: "padding";
409
+ };
410
+ };
411
+ pt: (value: {
412
+ readonly [$$PropertyValue]: "paddingTop";
413
+ }) => {
414
+ paddingTop: {
415
+ readonly [$$PropertyValue]: "paddingTop";
416
+ };
417
+ };
418
+ pr: (value: {
419
+ readonly [$$PropertyValue]: "paddingRight";
420
+ }) => {
421
+ paddingRight: {
422
+ readonly [$$PropertyValue]: "paddingRight";
423
+ };
424
+ };
425
+ pb: (value: {
426
+ readonly [$$PropertyValue]: "paddingBottom";
427
+ }) => {
428
+ paddingBottom: {
429
+ readonly [$$PropertyValue]: "paddingBottom";
430
+ };
431
+ };
432
+ pl: (value: {
433
+ readonly [$$PropertyValue]: "paddingLeft";
434
+ }) => {
435
+ paddingLeft: {
436
+ readonly [$$PropertyValue]: "paddingLeft";
437
+ };
438
+ };
439
+ px: (value: {
440
+ readonly [$$PropertyValue]: "paddingLeft";
441
+ }) => {
442
+ paddingLeft: {
443
+ readonly [$$PropertyValue]: "paddingLeft";
444
+ };
445
+ paddingRight: {
446
+ readonly [$$PropertyValue]: "paddingLeft";
447
+ };
448
+ };
449
+ py: (value: {
450
+ readonly [$$PropertyValue]: "paddingTop";
451
+ }) => {
452
+ paddingTop: {
453
+ readonly [$$PropertyValue]: "paddingTop";
454
+ };
455
+ paddingBottom: {
456
+ readonly [$$PropertyValue]: "paddingTop";
457
+ };
458
+ };
459
+ m: (value: {
460
+ readonly [$$PropertyValue]: "margin";
461
+ }) => {
462
+ margin: {
463
+ readonly [$$PropertyValue]: "margin";
464
+ };
465
+ };
466
+ mt: (value: {
467
+ readonly [$$PropertyValue]: "marginTop";
468
+ }) => {
469
+ marginTop: {
470
+ readonly [$$PropertyValue]: "marginTop";
471
+ };
472
+ };
473
+ mr: (value: {
474
+ readonly [$$PropertyValue]: "marginRight";
475
+ }) => {
476
+ marginRight: {
477
+ readonly [$$PropertyValue]: "marginRight";
478
+ };
479
+ };
480
+ mb: (value: {
481
+ readonly [$$PropertyValue]: "marginBottom";
482
+ }) => {
483
+ marginBottom: {
484
+ readonly [$$PropertyValue]: "marginBottom";
485
+ };
486
+ };
487
+ ml: (value: {
488
+ readonly [$$PropertyValue]: "marginLeft";
489
+ }) => {
490
+ marginLeft: {
491
+ readonly [$$PropertyValue]: "marginLeft";
492
+ };
493
+ };
494
+ mx: (value: {
495
+ readonly [$$PropertyValue]: "marginLeft";
496
+ }) => {
497
+ marginLeft: {
498
+ readonly [$$PropertyValue]: "marginLeft";
499
+ };
500
+ marginRight: {
501
+ readonly [$$PropertyValue]: "marginLeft";
502
+ };
503
+ };
504
+ my: (value: {
505
+ readonly [$$PropertyValue]: "marginTop";
506
+ }) => {
507
+ marginTop: {
508
+ readonly [$$PropertyValue]: "marginTop";
509
+ };
510
+ marginBottom: {
511
+ readonly [$$PropertyValue]: "marginTop";
512
+ };
513
+ };
514
+ ta: (value: {
515
+ readonly [$$PropertyValue]: "textAlign";
516
+ }) => {
517
+ textAlign: {
518
+ readonly [$$PropertyValue]: "textAlign";
519
+ };
520
+ };
521
+ tt: (value: {
522
+ readonly [$$PropertyValue]: "textTransform";
523
+ }) => {
524
+ textTransform: {
525
+ readonly [$$PropertyValue]: "textTransform";
526
+ };
527
+ };
528
+ to: (value: {
529
+ readonly [$$PropertyValue]: "textOverflow";
530
+ }) => {
531
+ textOverflow: {
532
+ readonly [$$PropertyValue]: "textOverflow";
533
+ };
534
+ };
535
+ d: (value: {
536
+ readonly [$$PropertyValue]: "display";
537
+ }) => {
538
+ display: {
539
+ readonly [$$PropertyValue]: "display";
540
+ };
541
+ };
542
+ dflex: (value: {
543
+ readonly [$$PropertyValue]: "alignItems";
544
+ }) => {
545
+ display: string;
546
+ alignItems: {
547
+ readonly [$$PropertyValue]: "alignItems";
548
+ };
549
+ justifyContent: {
550
+ readonly [$$PropertyValue]: "alignItems";
551
+ };
552
+ };
553
+ fd: (value: {
554
+ readonly [$$PropertyValue]: "flexDirection";
555
+ }) => {
556
+ flexDirection: {
557
+ readonly [$$PropertyValue]: "flexDirection";
558
+ };
559
+ };
560
+ fw: (value: {
561
+ readonly [$$PropertyValue]: "flexWrap";
562
+ }) => {
563
+ flexWrap: {
564
+ readonly [$$PropertyValue]: "flexWrap";
565
+ };
566
+ };
567
+ ai: (value: {
568
+ readonly [$$PropertyValue]: "alignItems";
569
+ }) => {
570
+ alignItems: {
571
+ readonly [$$PropertyValue]: "alignItems";
572
+ };
573
+ };
574
+ ac: (value: {
575
+ readonly [$$PropertyValue]: "alignContent";
576
+ }) => {
577
+ alignContent: {
578
+ readonly [$$PropertyValue]: "alignContent";
579
+ };
580
+ };
581
+ jc: (value: {
582
+ readonly [$$PropertyValue]: "justifyContent";
583
+ }) => {
584
+ justifyContent: {
585
+ readonly [$$PropertyValue]: "justifyContent";
586
+ };
587
+ };
588
+ as: (value: {
589
+ readonly [$$PropertyValue]: "alignSelf";
590
+ }) => {
591
+ alignSelf: {
592
+ readonly [$$PropertyValue]: "alignSelf";
593
+ };
594
+ };
595
+ fg: (value: {
596
+ readonly [$$PropertyValue]: "flexGrow";
597
+ }) => {
598
+ flexGrow: {
599
+ readonly [$$PropertyValue]: "flexGrow";
600
+ };
601
+ };
602
+ fs: (value: {
603
+ readonly [$$PropertyValue]: "fontSize";
604
+ }) => {
605
+ fontSize: {
606
+ readonly [$$PropertyValue]: "fontSize";
607
+ };
608
+ };
609
+ fb: (value: {
610
+ readonly [$$PropertyValue]: "flexBasis";
611
+ }) => {
612
+ flexBasis: {
613
+ readonly [$$PropertyValue]: "flexBasis";
614
+ };
615
+ };
616
+ bc: (value: {
617
+ readonly [$$PropertyValue]: "backgroundColor";
618
+ }) => {
619
+ backgroundColor: {
620
+ readonly [$$PropertyValue]: "backgroundColor";
621
+ };
622
+ };
623
+ bf: (value: {
624
+ readonly [$$PropertyValue]: "backdropFilter";
625
+ }) => {
626
+ backdropFilter: {
627
+ readonly [$$PropertyValue]: "backdropFilter";
628
+ };
629
+ };
630
+ bg: (value: {
631
+ readonly [$$PropertyValue]: "backgroundColor";
632
+ }) => {
633
+ background: {
634
+ readonly [$$PropertyValue]: "backgroundColor";
635
+ };
636
+ };
637
+ bgBlur: (value: {
638
+ readonly [$$PropertyValue]: "backgroundColor";
639
+ }) => {
640
+ bf: string;
641
+ bg: string;
642
+ };
643
+ bgColor: (value: {
644
+ readonly [$$PropertyValue]: "backgroundColor";
645
+ }) => {
646
+ backgroundColor: {
647
+ readonly [$$PropertyValue]: "backgroundColor";
648
+ };
649
+ };
650
+ backgroundClip: (value: {
651
+ readonly [$$PropertyValue]: "backgroundClip";
652
+ }) => {
653
+ WebkitBackgroundClip: {
654
+ readonly [$$PropertyValue]: "backgroundClip";
655
+ };
656
+ backgroundClip: {
657
+ readonly [$$PropertyValue]: "backgroundClip";
658
+ };
659
+ };
660
+ bgClip: (value: {
661
+ readonly [$$PropertyValue]: "backgroundClip";
662
+ }) => {
663
+ WebkitBackgroundClip: {
664
+ readonly [$$PropertyValue]: "backgroundClip";
665
+ };
666
+ backgroundClip: {
667
+ readonly [$$PropertyValue]: "backgroundClip";
668
+ };
669
+ };
670
+ br: (value: {
671
+ readonly [$$PropertyValue]: "borderRadius";
672
+ }) => {
673
+ borderRadius: {
674
+ readonly [$$PropertyValue]: "borderRadius";
675
+ };
676
+ };
677
+ bw: (value: {
678
+ readonly [$$PropertyValue]: "borderWidth";
679
+ }) => {
680
+ borderWidth: {
681
+ readonly [$$PropertyValue]: "borderWidth";
682
+ };
683
+ };
684
+ btrr: (value: {
685
+ readonly [$$PropertyValue]: "borderTopRightRadius";
686
+ }) => {
687
+ borderTopRightRadius: {
688
+ readonly [$$PropertyValue]: "borderTopRightRadius";
689
+ };
690
+ };
691
+ bbrr: (value: {
692
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
693
+ }) => {
694
+ borderBottomRightRadius: {
695
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
696
+ };
697
+ };
698
+ bblr: (value: {
699
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
700
+ }) => {
701
+ borderBottomLeftRadius: {
702
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
703
+ };
704
+ };
705
+ btlr: (value: {
706
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
707
+ }) => {
708
+ borderTopLeftRadius: {
709
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
710
+ };
711
+ };
712
+ bs: (value: {
713
+ readonly [$$PropertyValue]: "boxShadow";
714
+ }) => {
715
+ boxShadow: {
716
+ readonly [$$PropertyValue]: "boxShadow";
717
+ };
718
+ };
719
+ normalShadow: (value: {
720
+ readonly [$$PropertyValue]: "backgroundColor";
721
+ }) => {
722
+ boxShadow: string;
723
+ };
724
+ normalShadowVar: (value: {
725
+ readonly [$$PropertyValue]: "backgroundColor";
726
+ }) => {
727
+ boxShadow: string;
728
+ };
729
+ lh: (value: {
730
+ readonly [$$PropertyValue]: "lineHeight";
731
+ }) => {
732
+ lineHeight: {
733
+ readonly [$$PropertyValue]: "lineHeight";
734
+ };
735
+ };
736
+ ov: (value: {
737
+ readonly [$$PropertyValue]: "overflow";
738
+ }) => {
739
+ overflow: {
740
+ readonly [$$PropertyValue]: "overflow";
741
+ };
742
+ };
743
+ ox: (value: {
744
+ readonly [$$PropertyValue]: "overflowX";
745
+ }) => {
746
+ overflowX: {
747
+ readonly [$$PropertyValue]: "overflowX";
748
+ };
749
+ };
750
+ oy: (value: {
751
+ readonly [$$PropertyValue]: "overflowY";
752
+ }) => {
753
+ overflowY: {
754
+ readonly [$$PropertyValue]: "overflowY";
755
+ };
756
+ };
757
+ pe: (value: {
758
+ readonly [$$PropertyValue]: "pointerEvents";
759
+ }) => {
760
+ pointerEvents: {
761
+ readonly [$$PropertyValue]: "pointerEvents";
762
+ };
763
+ };
764
+ events: (value: {
765
+ readonly [$$PropertyValue]: "pointerEvents";
766
+ }) => {
767
+ pointerEvents: {
768
+ readonly [$$PropertyValue]: "pointerEvents";
769
+ };
770
+ };
771
+ us: (value: {
772
+ readonly [$$PropertyValue]: "userSelect";
773
+ }) => {
774
+ WebkitUserSelect: {
775
+ readonly [$$PropertyValue]: "userSelect";
776
+ };
777
+ userSelect: {
778
+ readonly [$$PropertyValue]: "userSelect";
779
+ };
780
+ };
781
+ userSelect: (value: {
782
+ readonly [$$PropertyValue]: "userSelect";
783
+ }) => {
784
+ WebkitUserSelect: {
785
+ readonly [$$PropertyValue]: "userSelect";
786
+ };
787
+ userSelect: {
788
+ readonly [$$PropertyValue]: "userSelect";
789
+ };
790
+ };
791
+ w: (value: {
792
+ readonly [$$PropertyValue]: "width";
793
+ }) => {
794
+ width: {
795
+ readonly [$$PropertyValue]: "width";
796
+ };
797
+ };
798
+ h: (value: {
799
+ readonly [$$PropertyValue]: "height";
800
+ }) => {
801
+ height: {
802
+ readonly [$$PropertyValue]: "height";
803
+ };
804
+ };
805
+ mw: (value: {
806
+ readonly [$$PropertyValue]: "maxWidth";
807
+ }) => {
808
+ maxWidth: {
809
+ readonly [$$PropertyValue]: "maxWidth";
810
+ };
811
+ };
812
+ maxW: (value: {
813
+ readonly [$$PropertyValue]: "maxWidth";
814
+ }) => {
815
+ maxWidth: {
816
+ readonly [$$PropertyValue]: "maxWidth";
817
+ };
818
+ };
819
+ mh: (value: {
820
+ readonly [$$PropertyValue]: "maxHeight";
821
+ }) => {
822
+ maxHeight: {
823
+ readonly [$$PropertyValue]: "maxHeight";
824
+ };
825
+ };
826
+ maxH: (value: {
827
+ readonly [$$PropertyValue]: "maxHeight";
828
+ }) => {
829
+ maxHeight: {
830
+ readonly [$$PropertyValue]: "maxHeight";
831
+ };
832
+ };
833
+ size: (value: {
834
+ readonly [$$PropertyValue]: "width";
835
+ }) => {
836
+ width: {
837
+ readonly [$$PropertyValue]: "width";
838
+ };
839
+ height: {
840
+ readonly [$$PropertyValue]: "width";
841
+ };
842
+ };
843
+ sizeMin: (value: {
844
+ readonly [$$PropertyValue]: "width";
845
+ }) => {
846
+ minWidth: {
847
+ readonly [$$PropertyValue]: "width";
848
+ };
849
+ minHeight: {
850
+ readonly [$$PropertyValue]: "width";
851
+ };
852
+ width: {
853
+ readonly [$$PropertyValue]: "width";
854
+ };
855
+ height: {
856
+ readonly [$$PropertyValue]: "width";
857
+ };
858
+ };
859
+ sizeMax: (value: {
860
+ readonly [$$PropertyValue]: "width";
861
+ }) => {
862
+ maxWidth: {
863
+ readonly [$$PropertyValue]: "width";
864
+ };
865
+ maxHeight: {
866
+ readonly [$$PropertyValue]: "width";
867
+ };
868
+ };
869
+ appearance: (value: {
870
+ readonly [$$PropertyValue]: "appearance";
871
+ }) => {
872
+ WebkitAppearance: {
873
+ readonly [$$PropertyValue]: "appearance";
874
+ };
875
+ appearance: {
876
+ readonly [$$PropertyValue]: "appearance";
877
+ };
878
+ };
879
+ scale: (value: {
880
+ readonly [$$PropertyValue]: "scale";
881
+ }) => {
882
+ transform: string;
883
+ };
884
+ linearGradient: (value: {
885
+ readonly [$$PropertyValue]: "backgroundImage";
886
+ }) => {
887
+ backgroundImage: string;
888
+ };
889
+ textGradient: (value: {
890
+ readonly [$$PropertyValue]: "backgroundImage";
891
+ }) => {
892
+ backgroundImage: string;
893
+ WebkitBackgroundClip: string;
894
+ WebkitTextFillColor: string;
895
+ };
896
+ }>>;
897
+ export declare const StyledSnippetPre: import("@stitches/react/types/styled-component").StyledComponent<"pre", {
898
+ withCopyButton?: boolean | "true" | "false" | undefined;
899
+ }, {
900
+ xs: string;
901
+ sm: string;
902
+ md: string;
903
+ lg: string;
904
+ xl: string;
905
+ xsMax: string;
906
+ smMax: string;
907
+ mdMax: string;
908
+ lgMax: string;
909
+ xlMax: string;
910
+ motion: string;
911
+ safari: string;
912
+ hover: string;
913
+ dark: string;
914
+ light: string;
915
+ }, import("@stitches/react/types/css-util").CSS<{
916
+ xs: string;
917
+ sm: string;
918
+ md: string;
919
+ lg: string;
920
+ xl: string;
921
+ xsMax: string;
922
+ smMax: string;
923
+ mdMax: string;
924
+ lgMax: string;
925
+ xlMax: string;
926
+ motion: string;
927
+ safari: string;
928
+ hover: string;
929
+ dark: string;
930
+ light: string;
931
+ }, {
932
+ shadows: {
933
+ xs: string;
934
+ sm: string;
935
+ md: string;
936
+ lg: string;
937
+ xl: string;
938
+ };
939
+ colors: {
940
+ accents1: string;
941
+ accents2: string;
942
+ accents3: string;
943
+ accents4: string;
944
+ accents5: string;
945
+ accents6: string;
946
+ accents7: string;
947
+ accents8: string;
948
+ accents9: string;
949
+ text: string;
950
+ background: string;
951
+ foreground: string;
952
+ codeLight: string;
953
+ code: string;
954
+ border: string;
955
+ selection: string;
956
+ white: string;
957
+ black: string;
958
+ blue100: string;
959
+ blue200: string;
960
+ blue300: string;
961
+ blue400: string;
962
+ blue500: string;
963
+ blue600: string;
964
+ blue700: string;
965
+ blue800: string;
966
+ blue900: string;
967
+ purple100: string;
968
+ purple200: string;
969
+ purple300: string;
970
+ purple400: string;
971
+ purple500: string;
972
+ purple600: string;
973
+ purple700: string;
974
+ purple800: string;
975
+ purple900: string;
976
+ green100: string;
977
+ green200: string;
978
+ green300: string;
979
+ green400: string;
980
+ green500: string;
981
+ green600: string;
982
+ green700: string;
983
+ green800: string;
984
+ green900: string;
985
+ yellow100: string;
986
+ yellow200: string;
987
+ yellow300: string;
988
+ yellow400: string;
989
+ yellow500: string;
990
+ yellow600: string;
991
+ yellow700: string;
992
+ yellow800: string;
993
+ yellow900: string;
994
+ red100: string;
995
+ red200: string;
996
+ red300: string;
997
+ red400: string;
998
+ red500: string;
999
+ red600: string;
1000
+ red700: string;
1001
+ red800: string;
1002
+ red900: string;
1003
+ cyan100: string;
1004
+ cyan200: string;
1005
+ cyan300: string;
1006
+ cyan400: string;
1007
+ cyan500: string;
1008
+ cyan600: string;
1009
+ cyan700: string;
1010
+ cyan800: string;
1011
+ cyan900: string;
1012
+ pink100: string;
1013
+ pink200: string;
1014
+ pink300: string;
1015
+ pink400: string;
1016
+ pink500: string;
1017
+ pink600: string;
1018
+ pink700: string;
1019
+ pink800: string;
1020
+ pink900: string;
1021
+ gray100: string;
1022
+ gray200: string;
1023
+ gray300: string;
1024
+ gray400: string;
1025
+ gray500: string;
1026
+ gray600: string;
1027
+ gray700: string;
1028
+ gray800: string;
1029
+ gray900: string;
1030
+ primaryLight: string;
1031
+ primary: string;
1032
+ primaryDark: string;
1033
+ secondaryLight: string;
1034
+ secondary: string;
1035
+ secondaryDark: string;
1036
+ successLight: string;
1037
+ success: string;
1038
+ successDark: string;
1039
+ warningLight: string;
1040
+ warning: string;
1041
+ warningDark: string;
1042
+ errorLight: string;
1043
+ error: string;
1044
+ errorDark: string;
1045
+ gradient: string;
1046
+ link: string;
1047
+ };
1048
+ fonts: {
1049
+ sans: string;
1050
+ mono: string;
1051
+ };
1052
+ fontSizes: {
1053
+ tiny: string;
1054
+ xs: string;
1055
+ base: string;
1056
+ sm: string;
1057
+ md: string;
1058
+ lg: string;
1059
+ xl: string;
1060
+ };
1061
+ fontWeights: {
1062
+ hairline: number;
1063
+ thin: number;
1064
+ light: number;
1065
+ normal: number;
1066
+ medium: number;
1067
+ semibold: number;
1068
+ bold: number;
1069
+ extrabold: number;
1070
+ black: number;
1071
+ };
1072
+ lineHeights: {
1073
+ xs: number;
1074
+ sm: number;
1075
+ md: number;
1076
+ lg: number;
1077
+ xl: number;
1078
+ };
1079
+ letterSpacings: {
1080
+ tighter: string;
1081
+ tight: string;
1082
+ normal: string;
1083
+ wide: string;
1084
+ wider: string;
1085
+ widest: string;
1086
+ };
1087
+ space: {
1088
+ 0: string;
1089
+ xs: string;
1090
+ sm: string;
1091
+ md: string;
1092
+ lg: string;
1093
+ xl: string;
1094
+ px: string;
1095
+ 1: string;
1096
+ 2: string;
1097
+ 3: string;
1098
+ 4: string;
1099
+ 5: string;
1100
+ 6: string;
1101
+ 7: string;
1102
+ 8: string;
1103
+ 9: string;
1104
+ 10: string;
1105
+ 11: string;
1106
+ 12: string;
1107
+ 13: string;
1108
+ 14: string;
1109
+ 15: string;
1110
+ 16: string;
1111
+ 17: string;
1112
+ 18: string;
1113
+ 20: string;
1114
+ 24: string;
1115
+ 28: string;
1116
+ 32: string;
1117
+ 36: string;
1118
+ 40: string;
1119
+ 44: string;
1120
+ 48: string;
1121
+ 52: string;
1122
+ 56: string;
1123
+ 60: string;
1124
+ 64: string;
1125
+ 72: string;
1126
+ 80: string;
1127
+ 96: string;
1128
+ };
1129
+ radii: {
1130
+ xs: string;
1131
+ sm: string;
1132
+ md: string;
1133
+ base: string;
1134
+ lg: string;
1135
+ xl: string;
1136
+ squared: string;
1137
+ rounded: string;
1138
+ pill: string;
1139
+ };
1140
+ zIndices: {
1141
+ 1: string;
1142
+ 2: string;
1143
+ 3: string;
1144
+ 4: string;
1145
+ 5: string;
1146
+ 10: string;
1147
+ max: string;
1148
+ };
1149
+ borderWeights: {
1150
+ light: string;
1151
+ normal: string;
1152
+ bold: string;
1153
+ extrabold: string;
1154
+ black: string;
1155
+ };
1156
+ transitions: {
1157
+ default: string;
1158
+ };
1159
+ breakpoints: {
1160
+ xs: string;
1161
+ sm: string;
1162
+ md: string;
1163
+ lg: string;
1164
+ xl: string;
1165
+ };
1166
+ }, {
1167
+ width: string;
1168
+ height: string;
1169
+ minWidth: string;
1170
+ maxWidth: string;
1171
+ minHeight: string;
1172
+ maxHeight: string;
1173
+ flexBasis: string;
1174
+ gridTemplateColumns: string;
1175
+ gridTemplateRows: string;
1176
+ blockSize: string;
1177
+ minBlockSize: string;
1178
+ maxBlockSize: string;
1179
+ inlineSize: string;
1180
+ minInlineSize: string;
1181
+ maxInlineSize: string;
1182
+ borderWidth: string;
1183
+ gap: "space";
1184
+ gridGap: "space";
1185
+ columnGap: "space";
1186
+ gridColumnGap: "space";
1187
+ rowGap: "space";
1188
+ gridRowGap: "space";
1189
+ inset: "space";
1190
+ insetBlock: "space";
1191
+ insetBlockEnd: "space";
1192
+ insetBlockStart: "space";
1193
+ insetInline: "space";
1194
+ insetInlineEnd: "space";
1195
+ insetInlineStart: "space";
1196
+ margin: "space";
1197
+ marginTop: "space";
1198
+ marginRight: "space";
1199
+ marginBottom: "space";
1200
+ marginLeft: "space";
1201
+ marginBlock: "space";
1202
+ marginBlockEnd: "space";
1203
+ marginBlockStart: "space";
1204
+ marginInline: "space";
1205
+ marginInlineEnd: "space";
1206
+ marginInlineStart: "space";
1207
+ padding: "space";
1208
+ paddingTop: "space";
1209
+ paddingRight: "space";
1210
+ paddingBottom: "space";
1211
+ paddingLeft: "space";
1212
+ paddingBlock: "space";
1213
+ paddingBlockEnd: "space";
1214
+ paddingBlockStart: "space";
1215
+ paddingInline: "space";
1216
+ paddingInlineEnd: "space";
1217
+ paddingInlineStart: "space";
1218
+ scrollMargin: "space";
1219
+ scrollMarginTop: "space";
1220
+ scrollMarginRight: "space";
1221
+ scrollMarginBottom: "space";
1222
+ scrollMarginLeft: "space";
1223
+ scrollMarginBlock: "space";
1224
+ scrollMarginBlockEnd: "space";
1225
+ scrollMarginBlockStart: "space";
1226
+ scrollMarginInline: "space";
1227
+ scrollMarginInlineEnd: "space";
1228
+ scrollMarginInlineStart: "space";
1229
+ scrollPadding: "space";
1230
+ scrollPaddingTop: "space";
1231
+ scrollPaddingRight: "space";
1232
+ scrollPaddingBottom: "space";
1233
+ scrollPaddingLeft: "space";
1234
+ scrollPaddingBlock: "space";
1235
+ scrollPaddingBlockEnd: "space";
1236
+ scrollPaddingBlockStart: "space";
1237
+ scrollPaddingInline: "space";
1238
+ scrollPaddingInlineEnd: "space";
1239
+ scrollPaddingInlineStart: "space";
1240
+ top: "space";
1241
+ right: "space";
1242
+ bottom: "space";
1243
+ left: "space";
1244
+ fontSize: "fontSizes";
1245
+ background: "colors";
1246
+ backgroundColor: "colors";
1247
+ backgroundImage: "colors";
1248
+ borderImage: "colors";
1249
+ border: "colors";
1250
+ borderBlock: "colors";
1251
+ borderBlockEnd: "colors";
1252
+ borderBlockStart: "colors";
1253
+ borderBottom: "colors";
1254
+ borderBottomColor: "colors";
1255
+ borderColor: "colors";
1256
+ borderInline: "colors";
1257
+ borderInlineEnd: "colors";
1258
+ borderInlineStart: "colors";
1259
+ borderLeft: "colors";
1260
+ borderLeftColor: "colors";
1261
+ borderRight: "colors";
1262
+ borderRightColor: "colors";
1263
+ borderTop: "colors";
1264
+ borderTopColor: "colors";
1265
+ caretColor: "colors";
1266
+ color: "colors";
1267
+ columnRuleColor: "colors";
1268
+ outline: "colors";
1269
+ outlineColor: "colors";
1270
+ fill: "colors";
1271
+ stroke: "colors";
1272
+ textDecorationColor: "colors";
1273
+ fontFamily: "fonts";
1274
+ fontWeight: "fontWeights";
1275
+ lineHeight: "lineHeights";
1276
+ letterSpacing: "letterSpacings";
1277
+ borderTopWidth: "borderWidths";
1278
+ borderLeftWidth: "borderWidths";
1279
+ borderRightWidth: "borderWidths";
1280
+ borderBottomWidth: "borderWidths";
1281
+ borderStyle: "borderStyles";
1282
+ borderTopStyle: "borderStyles";
1283
+ borderLeftStyle: "borderStyles";
1284
+ borderRightStyle: "borderStyles";
1285
+ borderBottomStyle: "borderStyles";
1286
+ borderRadius: "radii";
1287
+ borderTopLeftRadius: "radii";
1288
+ borderTopRightRadius: "radii";
1289
+ borderBottomRightRadius: "radii";
1290
+ borderBottomLeftRadius: "radii";
1291
+ boxShadow: "shadows";
1292
+ textShadow: "shadows";
1293
+ transition: "transitions";
1294
+ zIndex: "zIndices";
1295
+ }, {
1296
+ p: (value: {
1297
+ readonly [$$PropertyValue]: "padding";
1298
+ }) => {
1299
+ padding: {
1300
+ readonly [$$PropertyValue]: "padding";
1301
+ };
1302
+ };
1303
+ pt: (value: {
1304
+ readonly [$$PropertyValue]: "paddingTop";
1305
+ }) => {
1306
+ paddingTop: {
1307
+ readonly [$$PropertyValue]: "paddingTop";
1308
+ };
1309
+ };
1310
+ pr: (value: {
1311
+ readonly [$$PropertyValue]: "paddingRight";
1312
+ }) => {
1313
+ paddingRight: {
1314
+ readonly [$$PropertyValue]: "paddingRight";
1315
+ };
1316
+ };
1317
+ pb: (value: {
1318
+ readonly [$$PropertyValue]: "paddingBottom";
1319
+ }) => {
1320
+ paddingBottom: {
1321
+ readonly [$$PropertyValue]: "paddingBottom";
1322
+ };
1323
+ };
1324
+ pl: (value: {
1325
+ readonly [$$PropertyValue]: "paddingLeft";
1326
+ }) => {
1327
+ paddingLeft: {
1328
+ readonly [$$PropertyValue]: "paddingLeft";
1329
+ };
1330
+ };
1331
+ px: (value: {
1332
+ readonly [$$PropertyValue]: "paddingLeft";
1333
+ }) => {
1334
+ paddingLeft: {
1335
+ readonly [$$PropertyValue]: "paddingLeft";
1336
+ };
1337
+ paddingRight: {
1338
+ readonly [$$PropertyValue]: "paddingLeft";
1339
+ };
1340
+ };
1341
+ py: (value: {
1342
+ readonly [$$PropertyValue]: "paddingTop";
1343
+ }) => {
1344
+ paddingTop: {
1345
+ readonly [$$PropertyValue]: "paddingTop";
1346
+ };
1347
+ paddingBottom: {
1348
+ readonly [$$PropertyValue]: "paddingTop";
1349
+ };
1350
+ };
1351
+ m: (value: {
1352
+ readonly [$$PropertyValue]: "margin";
1353
+ }) => {
1354
+ margin: {
1355
+ readonly [$$PropertyValue]: "margin";
1356
+ };
1357
+ };
1358
+ mt: (value: {
1359
+ readonly [$$PropertyValue]: "marginTop";
1360
+ }) => {
1361
+ marginTop: {
1362
+ readonly [$$PropertyValue]: "marginTop";
1363
+ };
1364
+ };
1365
+ mr: (value: {
1366
+ readonly [$$PropertyValue]: "marginRight";
1367
+ }) => {
1368
+ marginRight: {
1369
+ readonly [$$PropertyValue]: "marginRight";
1370
+ };
1371
+ };
1372
+ mb: (value: {
1373
+ readonly [$$PropertyValue]: "marginBottom";
1374
+ }) => {
1375
+ marginBottom: {
1376
+ readonly [$$PropertyValue]: "marginBottom";
1377
+ };
1378
+ };
1379
+ ml: (value: {
1380
+ readonly [$$PropertyValue]: "marginLeft";
1381
+ }) => {
1382
+ marginLeft: {
1383
+ readonly [$$PropertyValue]: "marginLeft";
1384
+ };
1385
+ };
1386
+ mx: (value: {
1387
+ readonly [$$PropertyValue]: "marginLeft";
1388
+ }) => {
1389
+ marginLeft: {
1390
+ readonly [$$PropertyValue]: "marginLeft";
1391
+ };
1392
+ marginRight: {
1393
+ readonly [$$PropertyValue]: "marginLeft";
1394
+ };
1395
+ };
1396
+ my: (value: {
1397
+ readonly [$$PropertyValue]: "marginTop";
1398
+ }) => {
1399
+ marginTop: {
1400
+ readonly [$$PropertyValue]: "marginTop";
1401
+ };
1402
+ marginBottom: {
1403
+ readonly [$$PropertyValue]: "marginTop";
1404
+ };
1405
+ };
1406
+ ta: (value: {
1407
+ readonly [$$PropertyValue]: "textAlign";
1408
+ }) => {
1409
+ textAlign: {
1410
+ readonly [$$PropertyValue]: "textAlign";
1411
+ };
1412
+ };
1413
+ tt: (value: {
1414
+ readonly [$$PropertyValue]: "textTransform";
1415
+ }) => {
1416
+ textTransform: {
1417
+ readonly [$$PropertyValue]: "textTransform";
1418
+ };
1419
+ };
1420
+ to: (value: {
1421
+ readonly [$$PropertyValue]: "textOverflow";
1422
+ }) => {
1423
+ textOverflow: {
1424
+ readonly [$$PropertyValue]: "textOverflow";
1425
+ };
1426
+ };
1427
+ d: (value: {
1428
+ readonly [$$PropertyValue]: "display";
1429
+ }) => {
1430
+ display: {
1431
+ readonly [$$PropertyValue]: "display";
1432
+ };
1433
+ };
1434
+ dflex: (value: {
1435
+ readonly [$$PropertyValue]: "alignItems";
1436
+ }) => {
1437
+ display: string;
1438
+ alignItems: {
1439
+ readonly [$$PropertyValue]: "alignItems";
1440
+ };
1441
+ justifyContent: {
1442
+ readonly [$$PropertyValue]: "alignItems";
1443
+ };
1444
+ };
1445
+ fd: (value: {
1446
+ readonly [$$PropertyValue]: "flexDirection";
1447
+ }) => {
1448
+ flexDirection: {
1449
+ readonly [$$PropertyValue]: "flexDirection";
1450
+ };
1451
+ };
1452
+ fw: (value: {
1453
+ readonly [$$PropertyValue]: "flexWrap";
1454
+ }) => {
1455
+ flexWrap: {
1456
+ readonly [$$PropertyValue]: "flexWrap";
1457
+ };
1458
+ };
1459
+ ai: (value: {
1460
+ readonly [$$PropertyValue]: "alignItems";
1461
+ }) => {
1462
+ alignItems: {
1463
+ readonly [$$PropertyValue]: "alignItems";
1464
+ };
1465
+ };
1466
+ ac: (value: {
1467
+ readonly [$$PropertyValue]: "alignContent";
1468
+ }) => {
1469
+ alignContent: {
1470
+ readonly [$$PropertyValue]: "alignContent";
1471
+ };
1472
+ };
1473
+ jc: (value: {
1474
+ readonly [$$PropertyValue]: "justifyContent";
1475
+ }) => {
1476
+ justifyContent: {
1477
+ readonly [$$PropertyValue]: "justifyContent";
1478
+ };
1479
+ };
1480
+ as: (value: {
1481
+ readonly [$$PropertyValue]: "alignSelf";
1482
+ }) => {
1483
+ alignSelf: {
1484
+ readonly [$$PropertyValue]: "alignSelf";
1485
+ };
1486
+ };
1487
+ fg: (value: {
1488
+ readonly [$$PropertyValue]: "flexGrow";
1489
+ }) => {
1490
+ flexGrow: {
1491
+ readonly [$$PropertyValue]: "flexGrow";
1492
+ };
1493
+ };
1494
+ fs: (value: {
1495
+ readonly [$$PropertyValue]: "fontSize";
1496
+ }) => {
1497
+ fontSize: {
1498
+ readonly [$$PropertyValue]: "fontSize";
1499
+ };
1500
+ };
1501
+ fb: (value: {
1502
+ readonly [$$PropertyValue]: "flexBasis";
1503
+ }) => {
1504
+ flexBasis: {
1505
+ readonly [$$PropertyValue]: "flexBasis";
1506
+ };
1507
+ };
1508
+ bc: (value: {
1509
+ readonly [$$PropertyValue]: "backgroundColor";
1510
+ }) => {
1511
+ backgroundColor: {
1512
+ readonly [$$PropertyValue]: "backgroundColor";
1513
+ };
1514
+ };
1515
+ bf: (value: {
1516
+ readonly [$$PropertyValue]: "backdropFilter";
1517
+ }) => {
1518
+ backdropFilter: {
1519
+ readonly [$$PropertyValue]: "backdropFilter";
1520
+ };
1521
+ };
1522
+ bg: (value: {
1523
+ readonly [$$PropertyValue]: "backgroundColor";
1524
+ }) => {
1525
+ background: {
1526
+ readonly [$$PropertyValue]: "backgroundColor";
1527
+ };
1528
+ };
1529
+ bgBlur: (value: {
1530
+ readonly [$$PropertyValue]: "backgroundColor";
1531
+ }) => {
1532
+ bf: string;
1533
+ bg: string;
1534
+ };
1535
+ bgColor: (value: {
1536
+ readonly [$$PropertyValue]: "backgroundColor";
1537
+ }) => {
1538
+ backgroundColor: {
1539
+ readonly [$$PropertyValue]: "backgroundColor";
1540
+ };
1541
+ };
1542
+ backgroundClip: (value: {
1543
+ readonly [$$PropertyValue]: "backgroundClip";
1544
+ }) => {
1545
+ WebkitBackgroundClip: {
1546
+ readonly [$$PropertyValue]: "backgroundClip";
1547
+ };
1548
+ backgroundClip: {
1549
+ readonly [$$PropertyValue]: "backgroundClip";
1550
+ };
1551
+ };
1552
+ bgClip: (value: {
1553
+ readonly [$$PropertyValue]: "backgroundClip";
1554
+ }) => {
1555
+ WebkitBackgroundClip: {
1556
+ readonly [$$PropertyValue]: "backgroundClip";
1557
+ };
1558
+ backgroundClip: {
1559
+ readonly [$$PropertyValue]: "backgroundClip";
1560
+ };
1561
+ };
1562
+ br: (value: {
1563
+ readonly [$$PropertyValue]: "borderRadius";
1564
+ }) => {
1565
+ borderRadius: {
1566
+ readonly [$$PropertyValue]: "borderRadius";
1567
+ };
1568
+ };
1569
+ bw: (value: {
1570
+ readonly [$$PropertyValue]: "borderWidth";
1571
+ }) => {
1572
+ borderWidth: {
1573
+ readonly [$$PropertyValue]: "borderWidth";
1574
+ };
1575
+ };
1576
+ btrr: (value: {
1577
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1578
+ }) => {
1579
+ borderTopRightRadius: {
1580
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1581
+ };
1582
+ };
1583
+ bbrr: (value: {
1584
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1585
+ }) => {
1586
+ borderBottomRightRadius: {
1587
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1588
+ };
1589
+ };
1590
+ bblr: (value: {
1591
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1592
+ }) => {
1593
+ borderBottomLeftRadius: {
1594
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1595
+ };
1596
+ };
1597
+ btlr: (value: {
1598
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1599
+ }) => {
1600
+ borderTopLeftRadius: {
1601
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1602
+ };
1603
+ };
1604
+ bs: (value: {
1605
+ readonly [$$PropertyValue]: "boxShadow";
1606
+ }) => {
1607
+ boxShadow: {
1608
+ readonly [$$PropertyValue]: "boxShadow";
1609
+ };
1610
+ };
1611
+ normalShadow: (value: {
1612
+ readonly [$$PropertyValue]: "backgroundColor";
1613
+ }) => {
1614
+ boxShadow: string;
1615
+ };
1616
+ normalShadowVar: (value: {
1617
+ readonly [$$PropertyValue]: "backgroundColor";
1618
+ }) => {
1619
+ boxShadow: string;
1620
+ };
1621
+ lh: (value: {
1622
+ readonly [$$PropertyValue]: "lineHeight";
1623
+ }) => {
1624
+ lineHeight: {
1625
+ readonly [$$PropertyValue]: "lineHeight";
1626
+ };
1627
+ };
1628
+ ov: (value: {
1629
+ readonly [$$PropertyValue]: "overflow";
1630
+ }) => {
1631
+ overflow: {
1632
+ readonly [$$PropertyValue]: "overflow";
1633
+ };
1634
+ };
1635
+ ox: (value: {
1636
+ readonly [$$PropertyValue]: "overflowX";
1637
+ }) => {
1638
+ overflowX: {
1639
+ readonly [$$PropertyValue]: "overflowX";
1640
+ };
1641
+ };
1642
+ oy: (value: {
1643
+ readonly [$$PropertyValue]: "overflowY";
1644
+ }) => {
1645
+ overflowY: {
1646
+ readonly [$$PropertyValue]: "overflowY";
1647
+ };
1648
+ };
1649
+ pe: (value: {
1650
+ readonly [$$PropertyValue]: "pointerEvents";
1651
+ }) => {
1652
+ pointerEvents: {
1653
+ readonly [$$PropertyValue]: "pointerEvents";
1654
+ };
1655
+ };
1656
+ events: (value: {
1657
+ readonly [$$PropertyValue]: "pointerEvents";
1658
+ }) => {
1659
+ pointerEvents: {
1660
+ readonly [$$PropertyValue]: "pointerEvents";
1661
+ };
1662
+ };
1663
+ us: (value: {
1664
+ readonly [$$PropertyValue]: "userSelect";
1665
+ }) => {
1666
+ WebkitUserSelect: {
1667
+ readonly [$$PropertyValue]: "userSelect";
1668
+ };
1669
+ userSelect: {
1670
+ readonly [$$PropertyValue]: "userSelect";
1671
+ };
1672
+ };
1673
+ userSelect: (value: {
1674
+ readonly [$$PropertyValue]: "userSelect";
1675
+ }) => {
1676
+ WebkitUserSelect: {
1677
+ readonly [$$PropertyValue]: "userSelect";
1678
+ };
1679
+ userSelect: {
1680
+ readonly [$$PropertyValue]: "userSelect";
1681
+ };
1682
+ };
1683
+ w: (value: {
1684
+ readonly [$$PropertyValue]: "width";
1685
+ }) => {
1686
+ width: {
1687
+ readonly [$$PropertyValue]: "width";
1688
+ };
1689
+ };
1690
+ h: (value: {
1691
+ readonly [$$PropertyValue]: "height";
1692
+ }) => {
1693
+ height: {
1694
+ readonly [$$PropertyValue]: "height";
1695
+ };
1696
+ };
1697
+ mw: (value: {
1698
+ readonly [$$PropertyValue]: "maxWidth";
1699
+ }) => {
1700
+ maxWidth: {
1701
+ readonly [$$PropertyValue]: "maxWidth";
1702
+ };
1703
+ };
1704
+ maxW: (value: {
1705
+ readonly [$$PropertyValue]: "maxWidth";
1706
+ }) => {
1707
+ maxWidth: {
1708
+ readonly [$$PropertyValue]: "maxWidth";
1709
+ };
1710
+ };
1711
+ mh: (value: {
1712
+ readonly [$$PropertyValue]: "maxHeight";
1713
+ }) => {
1714
+ maxHeight: {
1715
+ readonly [$$PropertyValue]: "maxHeight";
1716
+ };
1717
+ };
1718
+ maxH: (value: {
1719
+ readonly [$$PropertyValue]: "maxHeight";
1720
+ }) => {
1721
+ maxHeight: {
1722
+ readonly [$$PropertyValue]: "maxHeight";
1723
+ };
1724
+ };
1725
+ size: (value: {
1726
+ readonly [$$PropertyValue]: "width";
1727
+ }) => {
1728
+ width: {
1729
+ readonly [$$PropertyValue]: "width";
1730
+ };
1731
+ height: {
1732
+ readonly [$$PropertyValue]: "width";
1733
+ };
1734
+ };
1735
+ sizeMin: (value: {
1736
+ readonly [$$PropertyValue]: "width";
1737
+ }) => {
1738
+ minWidth: {
1739
+ readonly [$$PropertyValue]: "width";
1740
+ };
1741
+ minHeight: {
1742
+ readonly [$$PropertyValue]: "width";
1743
+ };
1744
+ width: {
1745
+ readonly [$$PropertyValue]: "width";
1746
+ };
1747
+ height: {
1748
+ readonly [$$PropertyValue]: "width";
1749
+ };
1750
+ };
1751
+ sizeMax: (value: {
1752
+ readonly [$$PropertyValue]: "width";
1753
+ }) => {
1754
+ maxWidth: {
1755
+ readonly [$$PropertyValue]: "width";
1756
+ };
1757
+ maxHeight: {
1758
+ readonly [$$PropertyValue]: "width";
1759
+ };
1760
+ };
1761
+ appearance: (value: {
1762
+ readonly [$$PropertyValue]: "appearance";
1763
+ }) => {
1764
+ WebkitAppearance: {
1765
+ readonly [$$PropertyValue]: "appearance";
1766
+ };
1767
+ appearance: {
1768
+ readonly [$$PropertyValue]: "appearance";
1769
+ };
1770
+ };
1771
+ scale: (value: {
1772
+ readonly [$$PropertyValue]: "scale";
1773
+ }) => {
1774
+ transform: string;
1775
+ };
1776
+ linearGradient: (value: {
1777
+ readonly [$$PropertyValue]: "backgroundImage";
1778
+ }) => {
1779
+ backgroundImage: string;
1780
+ };
1781
+ textGradient: (value: {
1782
+ readonly [$$PropertyValue]: "backgroundImage";
1783
+ }) => {
1784
+ backgroundImage: string;
1785
+ WebkitBackgroundClip: string;
1786
+ WebkitTextFillColor: string;
1787
+ };
1788
+ }>>;
1789
+ export declare const StyledSnippetCopyButtonIcon: import("@stitches/react/types/styled-component").StyledComponent<"svg", {}, {
1790
+ xs: string;
1791
+ sm: string;
1792
+ md: string;
1793
+ lg: string;
1794
+ xl: string;
1795
+ xsMax: string;
1796
+ smMax: string;
1797
+ mdMax: string;
1798
+ lgMax: string;
1799
+ xlMax: string;
1800
+ motion: string;
1801
+ safari: string;
1802
+ hover: string;
1803
+ dark: string;
1804
+ light: string;
1805
+ }, import("@stitches/react/types/css-util").CSS<{
1806
+ xs: string;
1807
+ sm: string;
1808
+ md: string;
1809
+ lg: string;
1810
+ xl: string;
1811
+ xsMax: string;
1812
+ smMax: string;
1813
+ mdMax: string;
1814
+ lgMax: string;
1815
+ xlMax: string;
1816
+ motion: string;
1817
+ safari: string;
1818
+ hover: string;
1819
+ dark: string;
1820
+ light: string;
1821
+ }, {
1822
+ shadows: {
1823
+ xs: string;
1824
+ sm: string;
1825
+ md: string;
1826
+ lg: string;
1827
+ xl: string;
1828
+ };
1829
+ colors: {
1830
+ accents1: string;
1831
+ accents2: string;
1832
+ accents3: string;
1833
+ accents4: string;
1834
+ accents5: string;
1835
+ accents6: string;
1836
+ accents7: string;
1837
+ accents8: string;
1838
+ accents9: string;
1839
+ text: string;
1840
+ background: string;
1841
+ foreground: string;
1842
+ codeLight: string;
1843
+ code: string;
1844
+ border: string;
1845
+ selection: string;
1846
+ white: string;
1847
+ black: string;
1848
+ blue100: string;
1849
+ blue200: string;
1850
+ blue300: string;
1851
+ blue400: string;
1852
+ blue500: string;
1853
+ blue600: string;
1854
+ blue700: string;
1855
+ blue800: string;
1856
+ blue900: string;
1857
+ purple100: string;
1858
+ purple200: string;
1859
+ purple300: string;
1860
+ purple400: string;
1861
+ purple500: string;
1862
+ purple600: string;
1863
+ purple700: string;
1864
+ purple800: string;
1865
+ purple900: string;
1866
+ green100: string;
1867
+ green200: string;
1868
+ green300: string;
1869
+ green400: string;
1870
+ green500: string;
1871
+ green600: string;
1872
+ green700: string;
1873
+ green800: string;
1874
+ green900: string;
1875
+ yellow100: string;
1876
+ yellow200: string;
1877
+ yellow300: string;
1878
+ yellow400: string;
1879
+ yellow500: string;
1880
+ yellow600: string;
1881
+ yellow700: string;
1882
+ yellow800: string;
1883
+ yellow900: string;
1884
+ red100: string;
1885
+ red200: string;
1886
+ red300: string;
1887
+ red400: string;
1888
+ red500: string;
1889
+ red600: string;
1890
+ red700: string;
1891
+ red800: string;
1892
+ red900: string;
1893
+ cyan100: string;
1894
+ cyan200: string;
1895
+ cyan300: string;
1896
+ cyan400: string;
1897
+ cyan500: string;
1898
+ cyan600: string;
1899
+ cyan700: string;
1900
+ cyan800: string;
1901
+ cyan900: string;
1902
+ pink100: string;
1903
+ pink200: string;
1904
+ pink300: string;
1905
+ pink400: string;
1906
+ pink500: string;
1907
+ pink600: string;
1908
+ pink700: string;
1909
+ pink800: string;
1910
+ pink900: string;
1911
+ gray100: string;
1912
+ gray200: string;
1913
+ gray300: string;
1914
+ gray400: string;
1915
+ gray500: string;
1916
+ gray600: string;
1917
+ gray700: string;
1918
+ gray800: string;
1919
+ gray900: string;
1920
+ primaryLight: string;
1921
+ primary: string;
1922
+ primaryDark: string;
1923
+ secondaryLight: string;
1924
+ secondary: string;
1925
+ secondaryDark: string;
1926
+ successLight: string;
1927
+ success: string;
1928
+ successDark: string;
1929
+ warningLight: string;
1930
+ warning: string;
1931
+ warningDark: string;
1932
+ errorLight: string;
1933
+ error: string;
1934
+ errorDark: string;
1935
+ gradient: string;
1936
+ link: string;
1937
+ };
1938
+ fonts: {
1939
+ sans: string;
1940
+ mono: string;
1941
+ };
1942
+ fontSizes: {
1943
+ tiny: string;
1944
+ xs: string;
1945
+ base: string;
1946
+ sm: string;
1947
+ md: string;
1948
+ lg: string;
1949
+ xl: string;
1950
+ };
1951
+ fontWeights: {
1952
+ hairline: number;
1953
+ thin: number;
1954
+ light: number;
1955
+ normal: number;
1956
+ medium: number;
1957
+ semibold: number;
1958
+ bold: number;
1959
+ extrabold: number;
1960
+ black: number;
1961
+ };
1962
+ lineHeights: {
1963
+ xs: number;
1964
+ sm: number;
1965
+ md: number;
1966
+ lg: number;
1967
+ xl: number;
1968
+ };
1969
+ letterSpacings: {
1970
+ tighter: string;
1971
+ tight: string;
1972
+ normal: string;
1973
+ wide: string;
1974
+ wider: string;
1975
+ widest: string;
1976
+ };
1977
+ space: {
1978
+ 0: string;
1979
+ xs: string;
1980
+ sm: string;
1981
+ md: string;
1982
+ lg: string;
1983
+ xl: string;
1984
+ px: string;
1985
+ 1: string;
1986
+ 2: string;
1987
+ 3: string;
1988
+ 4: string;
1989
+ 5: string;
1990
+ 6: string;
1991
+ 7: string;
1992
+ 8: string;
1993
+ 9: string;
1994
+ 10: string;
1995
+ 11: string;
1996
+ 12: string;
1997
+ 13: string;
1998
+ 14: string;
1999
+ 15: string;
2000
+ 16: string;
2001
+ 17: string;
2002
+ 18: string;
2003
+ 20: string;
2004
+ 24: string;
2005
+ 28: string;
2006
+ 32: string;
2007
+ 36: string;
2008
+ 40: string;
2009
+ 44: string;
2010
+ 48: string;
2011
+ 52: string;
2012
+ 56: string;
2013
+ 60: string;
2014
+ 64: string;
2015
+ 72: string;
2016
+ 80: string;
2017
+ 96: string;
2018
+ };
2019
+ radii: {
2020
+ xs: string;
2021
+ sm: string;
2022
+ md: string;
2023
+ base: string;
2024
+ lg: string;
2025
+ xl: string;
2026
+ squared: string;
2027
+ rounded: string;
2028
+ pill: string;
2029
+ };
2030
+ zIndices: {
2031
+ 1: string;
2032
+ 2: string;
2033
+ 3: string;
2034
+ 4: string;
2035
+ 5: string;
2036
+ 10: string;
2037
+ max: string;
2038
+ };
2039
+ borderWeights: {
2040
+ light: string;
2041
+ normal: string;
2042
+ bold: string;
2043
+ extrabold: string;
2044
+ black: string;
2045
+ };
2046
+ transitions: {
2047
+ default: string;
2048
+ };
2049
+ breakpoints: {
2050
+ xs: string;
2051
+ sm: string;
2052
+ md: string;
2053
+ lg: string;
2054
+ xl: string;
2055
+ };
2056
+ }, {
2057
+ width: string;
2058
+ height: string;
2059
+ minWidth: string;
2060
+ maxWidth: string;
2061
+ minHeight: string;
2062
+ maxHeight: string;
2063
+ flexBasis: string;
2064
+ gridTemplateColumns: string;
2065
+ gridTemplateRows: string;
2066
+ blockSize: string;
2067
+ minBlockSize: string;
2068
+ maxBlockSize: string;
2069
+ inlineSize: string;
2070
+ minInlineSize: string;
2071
+ maxInlineSize: string;
2072
+ borderWidth: string;
2073
+ gap: "space";
2074
+ gridGap: "space";
2075
+ columnGap: "space";
2076
+ gridColumnGap: "space";
2077
+ rowGap: "space";
2078
+ gridRowGap: "space";
2079
+ inset: "space";
2080
+ insetBlock: "space";
2081
+ insetBlockEnd: "space";
2082
+ insetBlockStart: "space";
2083
+ insetInline: "space";
2084
+ insetInlineEnd: "space";
2085
+ insetInlineStart: "space";
2086
+ margin: "space";
2087
+ marginTop: "space";
2088
+ marginRight: "space";
2089
+ marginBottom: "space";
2090
+ marginLeft: "space";
2091
+ marginBlock: "space";
2092
+ marginBlockEnd: "space";
2093
+ marginBlockStart: "space";
2094
+ marginInline: "space";
2095
+ marginInlineEnd: "space";
2096
+ marginInlineStart: "space";
2097
+ padding: "space";
2098
+ paddingTop: "space";
2099
+ paddingRight: "space";
2100
+ paddingBottom: "space";
2101
+ paddingLeft: "space";
2102
+ paddingBlock: "space";
2103
+ paddingBlockEnd: "space";
2104
+ paddingBlockStart: "space";
2105
+ paddingInline: "space";
2106
+ paddingInlineEnd: "space";
2107
+ paddingInlineStart: "space";
2108
+ scrollMargin: "space";
2109
+ scrollMarginTop: "space";
2110
+ scrollMarginRight: "space";
2111
+ scrollMarginBottom: "space";
2112
+ scrollMarginLeft: "space";
2113
+ scrollMarginBlock: "space";
2114
+ scrollMarginBlockEnd: "space";
2115
+ scrollMarginBlockStart: "space";
2116
+ scrollMarginInline: "space";
2117
+ scrollMarginInlineEnd: "space";
2118
+ scrollMarginInlineStart: "space";
2119
+ scrollPadding: "space";
2120
+ scrollPaddingTop: "space";
2121
+ scrollPaddingRight: "space";
2122
+ scrollPaddingBottom: "space";
2123
+ scrollPaddingLeft: "space";
2124
+ scrollPaddingBlock: "space";
2125
+ scrollPaddingBlockEnd: "space";
2126
+ scrollPaddingBlockStart: "space";
2127
+ scrollPaddingInline: "space";
2128
+ scrollPaddingInlineEnd: "space";
2129
+ scrollPaddingInlineStart: "space";
2130
+ top: "space";
2131
+ right: "space";
2132
+ bottom: "space";
2133
+ left: "space";
2134
+ fontSize: "fontSizes";
2135
+ background: "colors";
2136
+ backgroundColor: "colors";
2137
+ backgroundImage: "colors";
2138
+ borderImage: "colors";
2139
+ border: "colors";
2140
+ borderBlock: "colors";
2141
+ borderBlockEnd: "colors";
2142
+ borderBlockStart: "colors";
2143
+ borderBottom: "colors";
2144
+ borderBottomColor: "colors";
2145
+ borderColor: "colors";
2146
+ borderInline: "colors";
2147
+ borderInlineEnd: "colors";
2148
+ borderInlineStart: "colors";
2149
+ borderLeft: "colors";
2150
+ borderLeftColor: "colors";
2151
+ borderRight: "colors";
2152
+ borderRightColor: "colors";
2153
+ borderTop: "colors";
2154
+ borderTopColor: "colors";
2155
+ caretColor: "colors";
2156
+ color: "colors";
2157
+ columnRuleColor: "colors";
2158
+ outline: "colors";
2159
+ outlineColor: "colors";
2160
+ fill: "colors";
2161
+ stroke: "colors";
2162
+ textDecorationColor: "colors";
2163
+ fontFamily: "fonts";
2164
+ fontWeight: "fontWeights";
2165
+ lineHeight: "lineHeights";
2166
+ letterSpacing: "letterSpacings";
2167
+ borderTopWidth: "borderWidths";
2168
+ borderLeftWidth: "borderWidths";
2169
+ borderRightWidth: "borderWidths";
2170
+ borderBottomWidth: "borderWidths";
2171
+ borderStyle: "borderStyles";
2172
+ borderTopStyle: "borderStyles";
2173
+ borderLeftStyle: "borderStyles";
2174
+ borderRightStyle: "borderStyles";
2175
+ borderBottomStyle: "borderStyles";
2176
+ borderRadius: "radii";
2177
+ borderTopLeftRadius: "radii";
2178
+ borderTopRightRadius: "radii";
2179
+ borderBottomRightRadius: "radii";
2180
+ borderBottomLeftRadius: "radii";
2181
+ boxShadow: "shadows";
2182
+ textShadow: "shadows";
2183
+ transition: "transitions";
2184
+ zIndex: "zIndices";
2185
+ }, {
2186
+ p: (value: {
2187
+ readonly [$$PropertyValue]: "padding";
2188
+ }) => {
2189
+ padding: {
2190
+ readonly [$$PropertyValue]: "padding";
2191
+ };
2192
+ };
2193
+ pt: (value: {
2194
+ readonly [$$PropertyValue]: "paddingTop";
2195
+ }) => {
2196
+ paddingTop: {
2197
+ readonly [$$PropertyValue]: "paddingTop";
2198
+ };
2199
+ };
2200
+ pr: (value: {
2201
+ readonly [$$PropertyValue]: "paddingRight";
2202
+ }) => {
2203
+ paddingRight: {
2204
+ readonly [$$PropertyValue]: "paddingRight";
2205
+ };
2206
+ };
2207
+ pb: (value: {
2208
+ readonly [$$PropertyValue]: "paddingBottom";
2209
+ }) => {
2210
+ paddingBottom: {
2211
+ readonly [$$PropertyValue]: "paddingBottom";
2212
+ };
2213
+ };
2214
+ pl: (value: {
2215
+ readonly [$$PropertyValue]: "paddingLeft";
2216
+ }) => {
2217
+ paddingLeft: {
2218
+ readonly [$$PropertyValue]: "paddingLeft";
2219
+ };
2220
+ };
2221
+ px: (value: {
2222
+ readonly [$$PropertyValue]: "paddingLeft";
2223
+ }) => {
2224
+ paddingLeft: {
2225
+ readonly [$$PropertyValue]: "paddingLeft";
2226
+ };
2227
+ paddingRight: {
2228
+ readonly [$$PropertyValue]: "paddingLeft";
2229
+ };
2230
+ };
2231
+ py: (value: {
2232
+ readonly [$$PropertyValue]: "paddingTop";
2233
+ }) => {
2234
+ paddingTop: {
2235
+ readonly [$$PropertyValue]: "paddingTop";
2236
+ };
2237
+ paddingBottom: {
2238
+ readonly [$$PropertyValue]: "paddingTop";
2239
+ };
2240
+ };
2241
+ m: (value: {
2242
+ readonly [$$PropertyValue]: "margin";
2243
+ }) => {
2244
+ margin: {
2245
+ readonly [$$PropertyValue]: "margin";
2246
+ };
2247
+ };
2248
+ mt: (value: {
2249
+ readonly [$$PropertyValue]: "marginTop";
2250
+ }) => {
2251
+ marginTop: {
2252
+ readonly [$$PropertyValue]: "marginTop";
2253
+ };
2254
+ };
2255
+ mr: (value: {
2256
+ readonly [$$PropertyValue]: "marginRight";
2257
+ }) => {
2258
+ marginRight: {
2259
+ readonly [$$PropertyValue]: "marginRight";
2260
+ };
2261
+ };
2262
+ mb: (value: {
2263
+ readonly [$$PropertyValue]: "marginBottom";
2264
+ }) => {
2265
+ marginBottom: {
2266
+ readonly [$$PropertyValue]: "marginBottom";
2267
+ };
2268
+ };
2269
+ ml: (value: {
2270
+ readonly [$$PropertyValue]: "marginLeft";
2271
+ }) => {
2272
+ marginLeft: {
2273
+ readonly [$$PropertyValue]: "marginLeft";
2274
+ };
2275
+ };
2276
+ mx: (value: {
2277
+ readonly [$$PropertyValue]: "marginLeft";
2278
+ }) => {
2279
+ marginLeft: {
2280
+ readonly [$$PropertyValue]: "marginLeft";
2281
+ };
2282
+ marginRight: {
2283
+ readonly [$$PropertyValue]: "marginLeft";
2284
+ };
2285
+ };
2286
+ my: (value: {
2287
+ readonly [$$PropertyValue]: "marginTop";
2288
+ }) => {
2289
+ marginTop: {
2290
+ readonly [$$PropertyValue]: "marginTop";
2291
+ };
2292
+ marginBottom: {
2293
+ readonly [$$PropertyValue]: "marginTop";
2294
+ };
2295
+ };
2296
+ ta: (value: {
2297
+ readonly [$$PropertyValue]: "textAlign";
2298
+ }) => {
2299
+ textAlign: {
2300
+ readonly [$$PropertyValue]: "textAlign";
2301
+ };
2302
+ };
2303
+ tt: (value: {
2304
+ readonly [$$PropertyValue]: "textTransform";
2305
+ }) => {
2306
+ textTransform: {
2307
+ readonly [$$PropertyValue]: "textTransform";
2308
+ };
2309
+ };
2310
+ to: (value: {
2311
+ readonly [$$PropertyValue]: "textOverflow";
2312
+ }) => {
2313
+ textOverflow: {
2314
+ readonly [$$PropertyValue]: "textOverflow";
2315
+ };
2316
+ };
2317
+ d: (value: {
2318
+ readonly [$$PropertyValue]: "display";
2319
+ }) => {
2320
+ display: {
2321
+ readonly [$$PropertyValue]: "display";
2322
+ };
2323
+ };
2324
+ dflex: (value: {
2325
+ readonly [$$PropertyValue]: "alignItems";
2326
+ }) => {
2327
+ display: string;
2328
+ alignItems: {
2329
+ readonly [$$PropertyValue]: "alignItems";
2330
+ };
2331
+ justifyContent: {
2332
+ readonly [$$PropertyValue]: "alignItems";
2333
+ };
2334
+ };
2335
+ fd: (value: {
2336
+ readonly [$$PropertyValue]: "flexDirection";
2337
+ }) => {
2338
+ flexDirection: {
2339
+ readonly [$$PropertyValue]: "flexDirection";
2340
+ };
2341
+ };
2342
+ fw: (value: {
2343
+ readonly [$$PropertyValue]: "flexWrap";
2344
+ }) => {
2345
+ flexWrap: {
2346
+ readonly [$$PropertyValue]: "flexWrap";
2347
+ };
2348
+ };
2349
+ ai: (value: {
2350
+ readonly [$$PropertyValue]: "alignItems";
2351
+ }) => {
2352
+ alignItems: {
2353
+ readonly [$$PropertyValue]: "alignItems";
2354
+ };
2355
+ };
2356
+ ac: (value: {
2357
+ readonly [$$PropertyValue]: "alignContent";
2358
+ }) => {
2359
+ alignContent: {
2360
+ readonly [$$PropertyValue]: "alignContent";
2361
+ };
2362
+ };
2363
+ jc: (value: {
2364
+ readonly [$$PropertyValue]: "justifyContent";
2365
+ }) => {
2366
+ justifyContent: {
2367
+ readonly [$$PropertyValue]: "justifyContent";
2368
+ };
2369
+ };
2370
+ as: (value: {
2371
+ readonly [$$PropertyValue]: "alignSelf";
2372
+ }) => {
2373
+ alignSelf: {
2374
+ readonly [$$PropertyValue]: "alignSelf";
2375
+ };
2376
+ };
2377
+ fg: (value: {
2378
+ readonly [$$PropertyValue]: "flexGrow";
2379
+ }) => {
2380
+ flexGrow: {
2381
+ readonly [$$PropertyValue]: "flexGrow";
2382
+ };
2383
+ };
2384
+ fs: (value: {
2385
+ readonly [$$PropertyValue]: "fontSize";
2386
+ }) => {
2387
+ fontSize: {
2388
+ readonly [$$PropertyValue]: "fontSize";
2389
+ };
2390
+ };
2391
+ fb: (value: {
2392
+ readonly [$$PropertyValue]: "flexBasis";
2393
+ }) => {
2394
+ flexBasis: {
2395
+ readonly [$$PropertyValue]: "flexBasis";
2396
+ };
2397
+ };
2398
+ bc: (value: {
2399
+ readonly [$$PropertyValue]: "backgroundColor";
2400
+ }) => {
2401
+ backgroundColor: {
2402
+ readonly [$$PropertyValue]: "backgroundColor";
2403
+ };
2404
+ };
2405
+ bf: (value: {
2406
+ readonly [$$PropertyValue]: "backdropFilter";
2407
+ }) => {
2408
+ backdropFilter: {
2409
+ readonly [$$PropertyValue]: "backdropFilter";
2410
+ };
2411
+ };
2412
+ bg: (value: {
2413
+ readonly [$$PropertyValue]: "backgroundColor";
2414
+ }) => {
2415
+ background: {
2416
+ readonly [$$PropertyValue]: "backgroundColor";
2417
+ };
2418
+ };
2419
+ bgBlur: (value: {
2420
+ readonly [$$PropertyValue]: "backgroundColor";
2421
+ }) => {
2422
+ bf: string;
2423
+ bg: string;
2424
+ };
2425
+ bgColor: (value: {
2426
+ readonly [$$PropertyValue]: "backgroundColor";
2427
+ }) => {
2428
+ backgroundColor: {
2429
+ readonly [$$PropertyValue]: "backgroundColor";
2430
+ };
2431
+ };
2432
+ backgroundClip: (value: {
2433
+ readonly [$$PropertyValue]: "backgroundClip";
2434
+ }) => {
2435
+ WebkitBackgroundClip: {
2436
+ readonly [$$PropertyValue]: "backgroundClip";
2437
+ };
2438
+ backgroundClip: {
2439
+ readonly [$$PropertyValue]: "backgroundClip";
2440
+ };
2441
+ };
2442
+ bgClip: (value: {
2443
+ readonly [$$PropertyValue]: "backgroundClip";
2444
+ }) => {
2445
+ WebkitBackgroundClip: {
2446
+ readonly [$$PropertyValue]: "backgroundClip";
2447
+ };
2448
+ backgroundClip: {
2449
+ readonly [$$PropertyValue]: "backgroundClip";
2450
+ };
2451
+ };
2452
+ br: (value: {
2453
+ readonly [$$PropertyValue]: "borderRadius";
2454
+ }) => {
2455
+ borderRadius: {
2456
+ readonly [$$PropertyValue]: "borderRadius";
2457
+ };
2458
+ };
2459
+ bw: (value: {
2460
+ readonly [$$PropertyValue]: "borderWidth";
2461
+ }) => {
2462
+ borderWidth: {
2463
+ readonly [$$PropertyValue]: "borderWidth";
2464
+ };
2465
+ };
2466
+ btrr: (value: {
2467
+ readonly [$$PropertyValue]: "borderTopRightRadius";
2468
+ }) => {
2469
+ borderTopRightRadius: {
2470
+ readonly [$$PropertyValue]: "borderTopRightRadius";
2471
+ };
2472
+ };
2473
+ bbrr: (value: {
2474
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
2475
+ }) => {
2476
+ borderBottomRightRadius: {
2477
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
2478
+ };
2479
+ };
2480
+ bblr: (value: {
2481
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
2482
+ }) => {
2483
+ borderBottomLeftRadius: {
2484
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
2485
+ };
2486
+ };
2487
+ btlr: (value: {
2488
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
2489
+ }) => {
2490
+ borderTopLeftRadius: {
2491
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
2492
+ };
2493
+ };
2494
+ bs: (value: {
2495
+ readonly [$$PropertyValue]: "boxShadow";
2496
+ }) => {
2497
+ boxShadow: {
2498
+ readonly [$$PropertyValue]: "boxShadow";
2499
+ };
2500
+ };
2501
+ normalShadow: (value: {
2502
+ readonly [$$PropertyValue]: "backgroundColor";
2503
+ }) => {
2504
+ boxShadow: string;
2505
+ };
2506
+ normalShadowVar: (value: {
2507
+ readonly [$$PropertyValue]: "backgroundColor";
2508
+ }) => {
2509
+ boxShadow: string;
2510
+ };
2511
+ lh: (value: {
2512
+ readonly [$$PropertyValue]: "lineHeight";
2513
+ }) => {
2514
+ lineHeight: {
2515
+ readonly [$$PropertyValue]: "lineHeight";
2516
+ };
2517
+ };
2518
+ ov: (value: {
2519
+ readonly [$$PropertyValue]: "overflow";
2520
+ }) => {
2521
+ overflow: {
2522
+ readonly [$$PropertyValue]: "overflow";
2523
+ };
2524
+ };
2525
+ ox: (value: {
2526
+ readonly [$$PropertyValue]: "overflowX";
2527
+ }) => {
2528
+ overflowX: {
2529
+ readonly [$$PropertyValue]: "overflowX";
2530
+ };
2531
+ };
2532
+ oy: (value: {
2533
+ readonly [$$PropertyValue]: "overflowY";
2534
+ }) => {
2535
+ overflowY: {
2536
+ readonly [$$PropertyValue]: "overflowY";
2537
+ };
2538
+ };
2539
+ pe: (value: {
2540
+ readonly [$$PropertyValue]: "pointerEvents";
2541
+ }) => {
2542
+ pointerEvents: {
2543
+ readonly [$$PropertyValue]: "pointerEvents";
2544
+ };
2545
+ };
2546
+ events: (value: {
2547
+ readonly [$$PropertyValue]: "pointerEvents";
2548
+ }) => {
2549
+ pointerEvents: {
2550
+ readonly [$$PropertyValue]: "pointerEvents";
2551
+ };
2552
+ };
2553
+ us: (value: {
2554
+ readonly [$$PropertyValue]: "userSelect";
2555
+ }) => {
2556
+ WebkitUserSelect: {
2557
+ readonly [$$PropertyValue]: "userSelect";
2558
+ };
2559
+ userSelect: {
2560
+ readonly [$$PropertyValue]: "userSelect";
2561
+ };
2562
+ };
2563
+ userSelect: (value: {
2564
+ readonly [$$PropertyValue]: "userSelect";
2565
+ }) => {
2566
+ WebkitUserSelect: {
2567
+ readonly [$$PropertyValue]: "userSelect";
2568
+ };
2569
+ userSelect: {
2570
+ readonly [$$PropertyValue]: "userSelect";
2571
+ };
2572
+ };
2573
+ w: (value: {
2574
+ readonly [$$PropertyValue]: "width";
2575
+ }) => {
2576
+ width: {
2577
+ readonly [$$PropertyValue]: "width";
2578
+ };
2579
+ };
2580
+ h: (value: {
2581
+ readonly [$$PropertyValue]: "height";
2582
+ }) => {
2583
+ height: {
2584
+ readonly [$$PropertyValue]: "height";
2585
+ };
2586
+ };
2587
+ mw: (value: {
2588
+ readonly [$$PropertyValue]: "maxWidth";
2589
+ }) => {
2590
+ maxWidth: {
2591
+ readonly [$$PropertyValue]: "maxWidth";
2592
+ };
2593
+ };
2594
+ maxW: (value: {
2595
+ readonly [$$PropertyValue]: "maxWidth";
2596
+ }) => {
2597
+ maxWidth: {
2598
+ readonly [$$PropertyValue]: "maxWidth";
2599
+ };
2600
+ };
2601
+ mh: (value: {
2602
+ readonly [$$PropertyValue]: "maxHeight";
2603
+ }) => {
2604
+ maxHeight: {
2605
+ readonly [$$PropertyValue]: "maxHeight";
2606
+ };
2607
+ };
2608
+ maxH: (value: {
2609
+ readonly [$$PropertyValue]: "maxHeight";
2610
+ }) => {
2611
+ maxHeight: {
2612
+ readonly [$$PropertyValue]: "maxHeight";
2613
+ };
2614
+ };
2615
+ size: (value: {
2616
+ readonly [$$PropertyValue]: "width";
2617
+ }) => {
2618
+ width: {
2619
+ readonly [$$PropertyValue]: "width";
2620
+ };
2621
+ height: {
2622
+ readonly [$$PropertyValue]: "width";
2623
+ };
2624
+ };
2625
+ sizeMin: (value: {
2626
+ readonly [$$PropertyValue]: "width";
2627
+ }) => {
2628
+ minWidth: {
2629
+ readonly [$$PropertyValue]: "width";
2630
+ };
2631
+ minHeight: {
2632
+ readonly [$$PropertyValue]: "width";
2633
+ };
2634
+ width: {
2635
+ readonly [$$PropertyValue]: "width";
2636
+ };
2637
+ height: {
2638
+ readonly [$$PropertyValue]: "width";
2639
+ };
2640
+ };
2641
+ sizeMax: (value: {
2642
+ readonly [$$PropertyValue]: "width";
2643
+ }) => {
2644
+ maxWidth: {
2645
+ readonly [$$PropertyValue]: "width";
2646
+ };
2647
+ maxHeight: {
2648
+ readonly [$$PropertyValue]: "width";
2649
+ };
2650
+ };
2651
+ appearance: (value: {
2652
+ readonly [$$PropertyValue]: "appearance";
2653
+ }) => {
2654
+ WebkitAppearance: {
2655
+ readonly [$$PropertyValue]: "appearance";
2656
+ };
2657
+ appearance: {
2658
+ readonly [$$PropertyValue]: "appearance";
2659
+ };
2660
+ };
2661
+ scale: (value: {
2662
+ readonly [$$PropertyValue]: "scale";
2663
+ }) => {
2664
+ transform: string;
2665
+ };
2666
+ linearGradient: (value: {
2667
+ readonly [$$PropertyValue]: "backgroundImage";
2668
+ }) => {
2669
+ backgroundImage: string;
2670
+ };
2671
+ textGradient: (value: {
2672
+ readonly [$$PropertyValue]: "backgroundImage";
2673
+ }) => {
2674
+ backgroundImage: string;
2675
+ WebkitBackgroundClip: string;
2676
+ WebkitTextFillColor: string;
2677
+ };
2678
+ }>>;
2679
+ export declare const StyledSnippetCopyButton: import("@stitches/react/types/styled-component").StyledComponent<"button", {}, {
2680
+ xs: string;
2681
+ sm: string;
2682
+ md: string;
2683
+ lg: string;
2684
+ xl: string;
2685
+ xsMax: string;
2686
+ smMax: string;
2687
+ mdMax: string;
2688
+ lgMax: string;
2689
+ xlMax: string;
2690
+ motion: string;
2691
+ safari: string;
2692
+ hover: string;
2693
+ dark: string;
2694
+ light: string;
2695
+ }, import("@stitches/react/types/css-util").CSS<{
2696
+ xs: string;
2697
+ sm: string;
2698
+ md: string;
2699
+ lg: string;
2700
+ xl: string;
2701
+ xsMax: string;
2702
+ smMax: string;
2703
+ mdMax: string;
2704
+ lgMax: string;
2705
+ xlMax: string;
2706
+ motion: string;
2707
+ safari: string;
2708
+ hover: string;
2709
+ dark: string;
2710
+ light: string;
2711
+ }, {
2712
+ shadows: {
2713
+ xs: string;
2714
+ sm: string;
2715
+ md: string;
2716
+ lg: string;
2717
+ xl: string;
2718
+ };
2719
+ colors: {
2720
+ accents1: string;
2721
+ accents2: string;
2722
+ accents3: string;
2723
+ accents4: string;
2724
+ accents5: string;
2725
+ accents6: string;
2726
+ accents7: string;
2727
+ accents8: string;
2728
+ accents9: string;
2729
+ text: string;
2730
+ background: string;
2731
+ foreground: string;
2732
+ codeLight: string;
2733
+ code: string;
2734
+ border: string;
2735
+ selection: string;
2736
+ white: string;
2737
+ black: string;
2738
+ blue100: string;
2739
+ blue200: string;
2740
+ blue300: string;
2741
+ blue400: string;
2742
+ blue500: string;
2743
+ blue600: string;
2744
+ blue700: string;
2745
+ blue800: string;
2746
+ blue900: string;
2747
+ purple100: string;
2748
+ purple200: string;
2749
+ purple300: string;
2750
+ purple400: string;
2751
+ purple500: string;
2752
+ purple600: string;
2753
+ purple700: string;
2754
+ purple800: string;
2755
+ purple900: string;
2756
+ green100: string;
2757
+ green200: string;
2758
+ green300: string;
2759
+ green400: string;
2760
+ green500: string;
2761
+ green600: string;
2762
+ green700: string;
2763
+ green800: string;
2764
+ green900: string;
2765
+ yellow100: string;
2766
+ yellow200: string;
2767
+ yellow300: string;
2768
+ yellow400: string;
2769
+ yellow500: string;
2770
+ yellow600: string;
2771
+ yellow700: string;
2772
+ yellow800: string;
2773
+ yellow900: string;
2774
+ red100: string;
2775
+ red200: string;
2776
+ red300: string;
2777
+ red400: string;
2778
+ red500: string;
2779
+ red600: string;
2780
+ red700: string;
2781
+ red800: string;
2782
+ red900: string;
2783
+ cyan100: string;
2784
+ cyan200: string;
2785
+ cyan300: string;
2786
+ cyan400: string;
2787
+ cyan500: string;
2788
+ cyan600: string;
2789
+ cyan700: string;
2790
+ cyan800: string;
2791
+ cyan900: string;
2792
+ pink100: string;
2793
+ pink200: string;
2794
+ pink300: string;
2795
+ pink400: string;
2796
+ pink500: string;
2797
+ pink600: string;
2798
+ pink700: string;
2799
+ pink800: string;
2800
+ pink900: string;
2801
+ gray100: string;
2802
+ gray200: string;
2803
+ gray300: string;
2804
+ gray400: string;
2805
+ gray500: string;
2806
+ gray600: string;
2807
+ gray700: string;
2808
+ gray800: string;
2809
+ gray900: string;
2810
+ primaryLight: string;
2811
+ primary: string;
2812
+ primaryDark: string;
2813
+ secondaryLight: string;
2814
+ secondary: string;
2815
+ secondaryDark: string;
2816
+ successLight: string;
2817
+ success: string;
2818
+ successDark: string;
2819
+ warningLight: string;
2820
+ warning: string;
2821
+ warningDark: string;
2822
+ errorLight: string;
2823
+ error: string;
2824
+ errorDark: string;
2825
+ gradient: string;
2826
+ link: string;
2827
+ };
2828
+ fonts: {
2829
+ sans: string;
2830
+ mono: string;
2831
+ };
2832
+ fontSizes: {
2833
+ tiny: string;
2834
+ xs: string;
2835
+ base: string;
2836
+ sm: string;
2837
+ md: string;
2838
+ lg: string;
2839
+ xl: string;
2840
+ };
2841
+ fontWeights: {
2842
+ hairline: number;
2843
+ thin: number;
2844
+ light: number;
2845
+ normal: number;
2846
+ medium: number;
2847
+ semibold: number;
2848
+ bold: number;
2849
+ extrabold: number;
2850
+ black: number;
2851
+ };
2852
+ lineHeights: {
2853
+ xs: number;
2854
+ sm: number;
2855
+ md: number;
2856
+ lg: number;
2857
+ xl: number;
2858
+ };
2859
+ letterSpacings: {
2860
+ tighter: string;
2861
+ tight: string;
2862
+ normal: string;
2863
+ wide: string;
2864
+ wider: string;
2865
+ widest: string;
2866
+ };
2867
+ space: {
2868
+ 0: string;
2869
+ xs: string;
2870
+ sm: string;
2871
+ md: string;
2872
+ lg: string;
2873
+ xl: string;
2874
+ px: string;
2875
+ 1: string;
2876
+ 2: string;
2877
+ 3: string;
2878
+ 4: string;
2879
+ 5: string;
2880
+ 6: string;
2881
+ 7: string;
2882
+ 8: string;
2883
+ 9: string;
2884
+ 10: string;
2885
+ 11: string;
2886
+ 12: string;
2887
+ 13: string;
2888
+ 14: string;
2889
+ 15: string;
2890
+ 16: string;
2891
+ 17: string;
2892
+ 18: string;
2893
+ 20: string;
2894
+ 24: string;
2895
+ 28: string;
2896
+ 32: string;
2897
+ 36: string;
2898
+ 40: string;
2899
+ 44: string;
2900
+ 48: string;
2901
+ 52: string;
2902
+ 56: string;
2903
+ 60: string;
2904
+ 64: string;
2905
+ 72: string;
2906
+ 80: string;
2907
+ 96: string;
2908
+ };
2909
+ radii: {
2910
+ xs: string;
2911
+ sm: string;
2912
+ md: string;
2913
+ base: string;
2914
+ lg: string;
2915
+ xl: string;
2916
+ squared: string;
2917
+ rounded: string;
2918
+ pill: string;
2919
+ };
2920
+ zIndices: {
2921
+ 1: string;
2922
+ 2: string;
2923
+ 3: string;
2924
+ 4: string;
2925
+ 5: string;
2926
+ 10: string;
2927
+ max: string;
2928
+ };
2929
+ borderWeights: {
2930
+ light: string;
2931
+ normal: string;
2932
+ bold: string;
2933
+ extrabold: string;
2934
+ black: string;
2935
+ };
2936
+ transitions: {
2937
+ default: string;
2938
+ };
2939
+ breakpoints: {
2940
+ xs: string;
2941
+ sm: string;
2942
+ md: string;
2943
+ lg: string;
2944
+ xl: string;
2945
+ };
2946
+ }, {
2947
+ width: string;
2948
+ height: string;
2949
+ minWidth: string;
2950
+ maxWidth: string;
2951
+ minHeight: string;
2952
+ maxHeight: string;
2953
+ flexBasis: string;
2954
+ gridTemplateColumns: string;
2955
+ gridTemplateRows: string;
2956
+ blockSize: string;
2957
+ minBlockSize: string;
2958
+ maxBlockSize: string;
2959
+ inlineSize: string;
2960
+ minInlineSize: string;
2961
+ maxInlineSize: string;
2962
+ borderWidth: string;
2963
+ gap: "space";
2964
+ gridGap: "space";
2965
+ columnGap: "space";
2966
+ gridColumnGap: "space";
2967
+ rowGap: "space";
2968
+ gridRowGap: "space";
2969
+ inset: "space";
2970
+ insetBlock: "space";
2971
+ insetBlockEnd: "space";
2972
+ insetBlockStart: "space";
2973
+ insetInline: "space";
2974
+ insetInlineEnd: "space";
2975
+ insetInlineStart: "space";
2976
+ margin: "space";
2977
+ marginTop: "space";
2978
+ marginRight: "space";
2979
+ marginBottom: "space";
2980
+ marginLeft: "space";
2981
+ marginBlock: "space";
2982
+ marginBlockEnd: "space";
2983
+ marginBlockStart: "space";
2984
+ marginInline: "space";
2985
+ marginInlineEnd: "space";
2986
+ marginInlineStart: "space";
2987
+ padding: "space";
2988
+ paddingTop: "space";
2989
+ paddingRight: "space";
2990
+ paddingBottom: "space";
2991
+ paddingLeft: "space";
2992
+ paddingBlock: "space";
2993
+ paddingBlockEnd: "space";
2994
+ paddingBlockStart: "space";
2995
+ paddingInline: "space";
2996
+ paddingInlineEnd: "space";
2997
+ paddingInlineStart: "space";
2998
+ scrollMargin: "space";
2999
+ scrollMarginTop: "space";
3000
+ scrollMarginRight: "space";
3001
+ scrollMarginBottom: "space";
3002
+ scrollMarginLeft: "space";
3003
+ scrollMarginBlock: "space";
3004
+ scrollMarginBlockEnd: "space";
3005
+ scrollMarginBlockStart: "space";
3006
+ scrollMarginInline: "space";
3007
+ scrollMarginInlineEnd: "space";
3008
+ scrollMarginInlineStart: "space";
3009
+ scrollPadding: "space";
3010
+ scrollPaddingTop: "space";
3011
+ scrollPaddingRight: "space";
3012
+ scrollPaddingBottom: "space";
3013
+ scrollPaddingLeft: "space";
3014
+ scrollPaddingBlock: "space";
3015
+ scrollPaddingBlockEnd: "space";
3016
+ scrollPaddingBlockStart: "space";
3017
+ scrollPaddingInline: "space";
3018
+ scrollPaddingInlineEnd: "space";
3019
+ scrollPaddingInlineStart: "space";
3020
+ top: "space";
3021
+ right: "space";
3022
+ bottom: "space";
3023
+ left: "space";
3024
+ fontSize: "fontSizes";
3025
+ background: "colors";
3026
+ backgroundColor: "colors";
3027
+ backgroundImage: "colors";
3028
+ borderImage: "colors";
3029
+ border: "colors";
3030
+ borderBlock: "colors";
3031
+ borderBlockEnd: "colors";
3032
+ borderBlockStart: "colors";
3033
+ borderBottom: "colors";
3034
+ borderBottomColor: "colors";
3035
+ borderColor: "colors";
3036
+ borderInline: "colors";
3037
+ borderInlineEnd: "colors";
3038
+ borderInlineStart: "colors";
3039
+ borderLeft: "colors";
3040
+ borderLeftColor: "colors";
3041
+ borderRight: "colors";
3042
+ borderRightColor: "colors";
3043
+ borderTop: "colors";
3044
+ borderTopColor: "colors";
3045
+ caretColor: "colors";
3046
+ color: "colors";
3047
+ columnRuleColor: "colors";
3048
+ outline: "colors";
3049
+ outlineColor: "colors";
3050
+ fill: "colors";
3051
+ stroke: "colors";
3052
+ textDecorationColor: "colors";
3053
+ fontFamily: "fonts";
3054
+ fontWeight: "fontWeights";
3055
+ lineHeight: "lineHeights";
3056
+ letterSpacing: "letterSpacings";
3057
+ borderTopWidth: "borderWidths";
3058
+ borderLeftWidth: "borderWidths";
3059
+ borderRightWidth: "borderWidths";
3060
+ borderBottomWidth: "borderWidths";
3061
+ borderStyle: "borderStyles";
3062
+ borderTopStyle: "borderStyles";
3063
+ borderLeftStyle: "borderStyles";
3064
+ borderRightStyle: "borderStyles";
3065
+ borderBottomStyle: "borderStyles";
3066
+ borderRadius: "radii";
3067
+ borderTopLeftRadius: "radii";
3068
+ borderTopRightRadius: "radii";
3069
+ borderBottomRightRadius: "radii";
3070
+ borderBottomLeftRadius: "radii";
3071
+ boxShadow: "shadows";
3072
+ textShadow: "shadows";
3073
+ transition: "transitions";
3074
+ zIndex: "zIndices";
3075
+ }, {
3076
+ p: (value: {
3077
+ readonly [$$PropertyValue]: "padding";
3078
+ }) => {
3079
+ padding: {
3080
+ readonly [$$PropertyValue]: "padding";
3081
+ };
3082
+ };
3083
+ pt: (value: {
3084
+ readonly [$$PropertyValue]: "paddingTop";
3085
+ }) => {
3086
+ paddingTop: {
3087
+ readonly [$$PropertyValue]: "paddingTop";
3088
+ };
3089
+ };
3090
+ pr: (value: {
3091
+ readonly [$$PropertyValue]: "paddingRight";
3092
+ }) => {
3093
+ paddingRight: {
3094
+ readonly [$$PropertyValue]: "paddingRight";
3095
+ };
3096
+ };
3097
+ pb: (value: {
3098
+ readonly [$$PropertyValue]: "paddingBottom";
3099
+ }) => {
3100
+ paddingBottom: {
3101
+ readonly [$$PropertyValue]: "paddingBottom";
3102
+ };
3103
+ };
3104
+ pl: (value: {
3105
+ readonly [$$PropertyValue]: "paddingLeft";
3106
+ }) => {
3107
+ paddingLeft: {
3108
+ readonly [$$PropertyValue]: "paddingLeft";
3109
+ };
3110
+ };
3111
+ px: (value: {
3112
+ readonly [$$PropertyValue]: "paddingLeft";
3113
+ }) => {
3114
+ paddingLeft: {
3115
+ readonly [$$PropertyValue]: "paddingLeft";
3116
+ };
3117
+ paddingRight: {
3118
+ readonly [$$PropertyValue]: "paddingLeft";
3119
+ };
3120
+ };
3121
+ py: (value: {
3122
+ readonly [$$PropertyValue]: "paddingTop";
3123
+ }) => {
3124
+ paddingTop: {
3125
+ readonly [$$PropertyValue]: "paddingTop";
3126
+ };
3127
+ paddingBottom: {
3128
+ readonly [$$PropertyValue]: "paddingTop";
3129
+ };
3130
+ };
3131
+ m: (value: {
3132
+ readonly [$$PropertyValue]: "margin";
3133
+ }) => {
3134
+ margin: {
3135
+ readonly [$$PropertyValue]: "margin";
3136
+ };
3137
+ };
3138
+ mt: (value: {
3139
+ readonly [$$PropertyValue]: "marginTop";
3140
+ }) => {
3141
+ marginTop: {
3142
+ readonly [$$PropertyValue]: "marginTop";
3143
+ };
3144
+ };
3145
+ mr: (value: {
3146
+ readonly [$$PropertyValue]: "marginRight";
3147
+ }) => {
3148
+ marginRight: {
3149
+ readonly [$$PropertyValue]: "marginRight";
3150
+ };
3151
+ };
3152
+ mb: (value: {
3153
+ readonly [$$PropertyValue]: "marginBottom";
3154
+ }) => {
3155
+ marginBottom: {
3156
+ readonly [$$PropertyValue]: "marginBottom";
3157
+ };
3158
+ };
3159
+ ml: (value: {
3160
+ readonly [$$PropertyValue]: "marginLeft";
3161
+ }) => {
3162
+ marginLeft: {
3163
+ readonly [$$PropertyValue]: "marginLeft";
3164
+ };
3165
+ };
3166
+ mx: (value: {
3167
+ readonly [$$PropertyValue]: "marginLeft";
3168
+ }) => {
3169
+ marginLeft: {
3170
+ readonly [$$PropertyValue]: "marginLeft";
3171
+ };
3172
+ marginRight: {
3173
+ readonly [$$PropertyValue]: "marginLeft";
3174
+ };
3175
+ };
3176
+ my: (value: {
3177
+ readonly [$$PropertyValue]: "marginTop";
3178
+ }) => {
3179
+ marginTop: {
3180
+ readonly [$$PropertyValue]: "marginTop";
3181
+ };
3182
+ marginBottom: {
3183
+ readonly [$$PropertyValue]: "marginTop";
3184
+ };
3185
+ };
3186
+ ta: (value: {
3187
+ readonly [$$PropertyValue]: "textAlign";
3188
+ }) => {
3189
+ textAlign: {
3190
+ readonly [$$PropertyValue]: "textAlign";
3191
+ };
3192
+ };
3193
+ tt: (value: {
3194
+ readonly [$$PropertyValue]: "textTransform";
3195
+ }) => {
3196
+ textTransform: {
3197
+ readonly [$$PropertyValue]: "textTransform";
3198
+ };
3199
+ };
3200
+ to: (value: {
3201
+ readonly [$$PropertyValue]: "textOverflow";
3202
+ }) => {
3203
+ textOverflow: {
3204
+ readonly [$$PropertyValue]: "textOverflow";
3205
+ };
3206
+ };
3207
+ d: (value: {
3208
+ readonly [$$PropertyValue]: "display";
3209
+ }) => {
3210
+ display: {
3211
+ readonly [$$PropertyValue]: "display";
3212
+ };
3213
+ };
3214
+ dflex: (value: {
3215
+ readonly [$$PropertyValue]: "alignItems";
3216
+ }) => {
3217
+ display: string;
3218
+ alignItems: {
3219
+ readonly [$$PropertyValue]: "alignItems";
3220
+ };
3221
+ justifyContent: {
3222
+ readonly [$$PropertyValue]: "alignItems";
3223
+ };
3224
+ };
3225
+ fd: (value: {
3226
+ readonly [$$PropertyValue]: "flexDirection";
3227
+ }) => {
3228
+ flexDirection: {
3229
+ readonly [$$PropertyValue]: "flexDirection";
3230
+ };
3231
+ };
3232
+ fw: (value: {
3233
+ readonly [$$PropertyValue]: "flexWrap";
3234
+ }) => {
3235
+ flexWrap: {
3236
+ readonly [$$PropertyValue]: "flexWrap";
3237
+ };
3238
+ };
3239
+ ai: (value: {
3240
+ readonly [$$PropertyValue]: "alignItems";
3241
+ }) => {
3242
+ alignItems: {
3243
+ readonly [$$PropertyValue]: "alignItems";
3244
+ };
3245
+ };
3246
+ ac: (value: {
3247
+ readonly [$$PropertyValue]: "alignContent";
3248
+ }) => {
3249
+ alignContent: {
3250
+ readonly [$$PropertyValue]: "alignContent";
3251
+ };
3252
+ };
3253
+ jc: (value: {
3254
+ readonly [$$PropertyValue]: "justifyContent";
3255
+ }) => {
3256
+ justifyContent: {
3257
+ readonly [$$PropertyValue]: "justifyContent";
3258
+ };
3259
+ };
3260
+ as: (value: {
3261
+ readonly [$$PropertyValue]: "alignSelf";
3262
+ }) => {
3263
+ alignSelf: {
3264
+ readonly [$$PropertyValue]: "alignSelf";
3265
+ };
3266
+ };
3267
+ fg: (value: {
3268
+ readonly [$$PropertyValue]: "flexGrow";
3269
+ }) => {
3270
+ flexGrow: {
3271
+ readonly [$$PropertyValue]: "flexGrow";
3272
+ };
3273
+ };
3274
+ fs: (value: {
3275
+ readonly [$$PropertyValue]: "fontSize";
3276
+ }) => {
3277
+ fontSize: {
3278
+ readonly [$$PropertyValue]: "fontSize";
3279
+ };
3280
+ };
3281
+ fb: (value: {
3282
+ readonly [$$PropertyValue]: "flexBasis";
3283
+ }) => {
3284
+ flexBasis: {
3285
+ readonly [$$PropertyValue]: "flexBasis";
3286
+ };
3287
+ };
3288
+ bc: (value: {
3289
+ readonly [$$PropertyValue]: "backgroundColor";
3290
+ }) => {
3291
+ backgroundColor: {
3292
+ readonly [$$PropertyValue]: "backgroundColor";
3293
+ };
3294
+ };
3295
+ bf: (value: {
3296
+ readonly [$$PropertyValue]: "backdropFilter";
3297
+ }) => {
3298
+ backdropFilter: {
3299
+ readonly [$$PropertyValue]: "backdropFilter";
3300
+ };
3301
+ };
3302
+ bg: (value: {
3303
+ readonly [$$PropertyValue]: "backgroundColor";
3304
+ }) => {
3305
+ background: {
3306
+ readonly [$$PropertyValue]: "backgroundColor";
3307
+ };
3308
+ };
3309
+ bgBlur: (value: {
3310
+ readonly [$$PropertyValue]: "backgroundColor";
3311
+ }) => {
3312
+ bf: string;
3313
+ bg: string;
3314
+ };
3315
+ bgColor: (value: {
3316
+ readonly [$$PropertyValue]: "backgroundColor";
3317
+ }) => {
3318
+ backgroundColor: {
3319
+ readonly [$$PropertyValue]: "backgroundColor";
3320
+ };
3321
+ };
3322
+ backgroundClip: (value: {
3323
+ readonly [$$PropertyValue]: "backgroundClip";
3324
+ }) => {
3325
+ WebkitBackgroundClip: {
3326
+ readonly [$$PropertyValue]: "backgroundClip";
3327
+ };
3328
+ backgroundClip: {
3329
+ readonly [$$PropertyValue]: "backgroundClip";
3330
+ };
3331
+ };
3332
+ bgClip: (value: {
3333
+ readonly [$$PropertyValue]: "backgroundClip";
3334
+ }) => {
3335
+ WebkitBackgroundClip: {
3336
+ readonly [$$PropertyValue]: "backgroundClip";
3337
+ };
3338
+ backgroundClip: {
3339
+ readonly [$$PropertyValue]: "backgroundClip";
3340
+ };
3341
+ };
3342
+ br: (value: {
3343
+ readonly [$$PropertyValue]: "borderRadius";
3344
+ }) => {
3345
+ borderRadius: {
3346
+ readonly [$$PropertyValue]: "borderRadius";
3347
+ };
3348
+ };
3349
+ bw: (value: {
3350
+ readonly [$$PropertyValue]: "borderWidth";
3351
+ }) => {
3352
+ borderWidth: {
3353
+ readonly [$$PropertyValue]: "borderWidth";
3354
+ };
3355
+ };
3356
+ btrr: (value: {
3357
+ readonly [$$PropertyValue]: "borderTopRightRadius";
3358
+ }) => {
3359
+ borderTopRightRadius: {
3360
+ readonly [$$PropertyValue]: "borderTopRightRadius";
3361
+ };
3362
+ };
3363
+ bbrr: (value: {
3364
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
3365
+ }) => {
3366
+ borderBottomRightRadius: {
3367
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
3368
+ };
3369
+ };
3370
+ bblr: (value: {
3371
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
3372
+ }) => {
3373
+ borderBottomLeftRadius: {
3374
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
3375
+ };
3376
+ };
3377
+ btlr: (value: {
3378
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
3379
+ }) => {
3380
+ borderTopLeftRadius: {
3381
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
3382
+ };
3383
+ };
3384
+ bs: (value: {
3385
+ readonly [$$PropertyValue]: "boxShadow";
3386
+ }) => {
3387
+ boxShadow: {
3388
+ readonly [$$PropertyValue]: "boxShadow";
3389
+ };
3390
+ };
3391
+ normalShadow: (value: {
3392
+ readonly [$$PropertyValue]: "backgroundColor";
3393
+ }) => {
3394
+ boxShadow: string;
3395
+ };
3396
+ normalShadowVar: (value: {
3397
+ readonly [$$PropertyValue]: "backgroundColor";
3398
+ }) => {
3399
+ boxShadow: string;
3400
+ };
3401
+ lh: (value: {
3402
+ readonly [$$PropertyValue]: "lineHeight";
3403
+ }) => {
3404
+ lineHeight: {
3405
+ readonly [$$PropertyValue]: "lineHeight";
3406
+ };
3407
+ };
3408
+ ov: (value: {
3409
+ readonly [$$PropertyValue]: "overflow";
3410
+ }) => {
3411
+ overflow: {
3412
+ readonly [$$PropertyValue]: "overflow";
3413
+ };
3414
+ };
3415
+ ox: (value: {
3416
+ readonly [$$PropertyValue]: "overflowX";
3417
+ }) => {
3418
+ overflowX: {
3419
+ readonly [$$PropertyValue]: "overflowX";
3420
+ };
3421
+ };
3422
+ oy: (value: {
3423
+ readonly [$$PropertyValue]: "overflowY";
3424
+ }) => {
3425
+ overflowY: {
3426
+ readonly [$$PropertyValue]: "overflowY";
3427
+ };
3428
+ };
3429
+ pe: (value: {
3430
+ readonly [$$PropertyValue]: "pointerEvents";
3431
+ }) => {
3432
+ pointerEvents: {
3433
+ readonly [$$PropertyValue]: "pointerEvents";
3434
+ };
3435
+ };
3436
+ events: (value: {
3437
+ readonly [$$PropertyValue]: "pointerEvents";
3438
+ }) => {
3439
+ pointerEvents: {
3440
+ readonly [$$PropertyValue]: "pointerEvents";
3441
+ };
3442
+ };
3443
+ us: (value: {
3444
+ readonly [$$PropertyValue]: "userSelect";
3445
+ }) => {
3446
+ WebkitUserSelect: {
3447
+ readonly [$$PropertyValue]: "userSelect";
3448
+ };
3449
+ userSelect: {
3450
+ readonly [$$PropertyValue]: "userSelect";
3451
+ };
3452
+ };
3453
+ userSelect: (value: {
3454
+ readonly [$$PropertyValue]: "userSelect";
3455
+ }) => {
3456
+ WebkitUserSelect: {
3457
+ readonly [$$PropertyValue]: "userSelect";
3458
+ };
3459
+ userSelect: {
3460
+ readonly [$$PropertyValue]: "userSelect";
3461
+ };
3462
+ };
3463
+ w: (value: {
3464
+ readonly [$$PropertyValue]: "width";
3465
+ }) => {
3466
+ width: {
3467
+ readonly [$$PropertyValue]: "width";
3468
+ };
3469
+ };
3470
+ h: (value: {
3471
+ readonly [$$PropertyValue]: "height";
3472
+ }) => {
3473
+ height: {
3474
+ readonly [$$PropertyValue]: "height";
3475
+ };
3476
+ };
3477
+ mw: (value: {
3478
+ readonly [$$PropertyValue]: "maxWidth";
3479
+ }) => {
3480
+ maxWidth: {
3481
+ readonly [$$PropertyValue]: "maxWidth";
3482
+ };
3483
+ };
3484
+ maxW: (value: {
3485
+ readonly [$$PropertyValue]: "maxWidth";
3486
+ }) => {
3487
+ maxWidth: {
3488
+ readonly [$$PropertyValue]: "maxWidth";
3489
+ };
3490
+ };
3491
+ mh: (value: {
3492
+ readonly [$$PropertyValue]: "maxHeight";
3493
+ }) => {
3494
+ maxHeight: {
3495
+ readonly [$$PropertyValue]: "maxHeight";
3496
+ };
3497
+ };
3498
+ maxH: (value: {
3499
+ readonly [$$PropertyValue]: "maxHeight";
3500
+ }) => {
3501
+ maxHeight: {
3502
+ readonly [$$PropertyValue]: "maxHeight";
3503
+ };
3504
+ };
3505
+ size: (value: {
3506
+ readonly [$$PropertyValue]: "width";
3507
+ }) => {
3508
+ width: {
3509
+ readonly [$$PropertyValue]: "width";
3510
+ };
3511
+ height: {
3512
+ readonly [$$PropertyValue]: "width";
3513
+ };
3514
+ };
3515
+ sizeMin: (value: {
3516
+ readonly [$$PropertyValue]: "width";
3517
+ }) => {
3518
+ minWidth: {
3519
+ readonly [$$PropertyValue]: "width";
3520
+ };
3521
+ minHeight: {
3522
+ readonly [$$PropertyValue]: "width";
3523
+ };
3524
+ width: {
3525
+ readonly [$$PropertyValue]: "width";
3526
+ };
3527
+ height: {
3528
+ readonly [$$PropertyValue]: "width";
3529
+ };
3530
+ };
3531
+ sizeMax: (value: {
3532
+ readonly [$$PropertyValue]: "width";
3533
+ }) => {
3534
+ maxWidth: {
3535
+ readonly [$$PropertyValue]: "width";
3536
+ };
3537
+ maxHeight: {
3538
+ readonly [$$PropertyValue]: "width";
3539
+ };
3540
+ };
3541
+ appearance: (value: {
3542
+ readonly [$$PropertyValue]: "appearance";
3543
+ }) => {
3544
+ WebkitAppearance: {
3545
+ readonly [$$PropertyValue]: "appearance";
3546
+ };
3547
+ appearance: {
3548
+ readonly [$$PropertyValue]: "appearance";
3549
+ };
3550
+ };
3551
+ scale: (value: {
3552
+ readonly [$$PropertyValue]: "scale";
3553
+ }) => {
3554
+ transform: string;
3555
+ };
3556
+ linearGradient: (value: {
3557
+ readonly [$$PropertyValue]: "backgroundImage";
3558
+ }) => {
3559
+ backgroundImage: string;
3560
+ };
3561
+ textGradient: (value: {
3562
+ readonly [$$PropertyValue]: "backgroundImage";
3563
+ }) => {
3564
+ backgroundImage: string;
3565
+ WebkitBackgroundClip: string;
3566
+ WebkitTextFillColor: string;
3567
+ };
3568
+ }>>;
3569
+ export declare type SnippetVariantsProps = VariantProps<typeof StyledSnippet>;
3570
+ export declare type SnippetPreVariantsProps = VariantProps<typeof StyledSnippetPre>;