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