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

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