@johly/bits-ui 2.18.1

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 (1064) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +59 -0
  3. package/dist/app.d.ts +19 -0
  4. package/dist/bits/accordion/accordion.svelte.d.ts +161 -0
  5. package/dist/bits/accordion/accordion.svelte.js +285 -0
  6. package/dist/bits/accordion/components/accordion-content.svelte +41 -0
  7. package/dist/bits/accordion/components/accordion-content.svelte.d.ts +4 -0
  8. package/dist/bits/accordion/components/accordion-header.svelte +36 -0
  9. package/dist/bits/accordion/components/accordion-header.svelte.d.ts +4 -0
  10. package/dist/bits/accordion/components/accordion-item.svelte +39 -0
  11. package/dist/bits/accordion/components/accordion-item.svelte.d.ts +4 -0
  12. package/dist/bits/accordion/components/accordion-trigger.svelte +38 -0
  13. package/dist/bits/accordion/components/accordion-trigger.svelte.d.ts +4 -0
  14. package/dist/bits/accordion/components/accordion.svelte +69 -0
  15. package/dist/bits/accordion/components/accordion.svelte.d.ts +4 -0
  16. package/dist/bits/accordion/exports.d.ts +6 -0
  17. package/dist/bits/accordion/exports.js +5 -0
  18. package/dist/bits/accordion/index.d.ts +1 -0
  19. package/dist/bits/accordion/index.js +1 -0
  20. package/dist/bits/accordion/types.d.ts +121 -0
  21. package/dist/bits/accordion/types.js +1 -0
  22. package/dist/bits/alert-dialog/components/alert-dialog-action.svelte +34 -0
  23. package/dist/bits/alert-dialog/components/alert-dialog-action.svelte.d.ts +3 -0
  24. package/dist/bits/alert-dialog/components/alert-dialog-cancel.svelte +36 -0
  25. package/dist/bits/alert-dialog/components/alert-dialog-cancel.svelte.d.ts +3 -0
  26. package/dist/bits/alert-dialog/components/alert-dialog-content.svelte +103 -0
  27. package/dist/bits/alert-dialog/components/alert-dialog-content.svelte.d.ts +3 -0
  28. package/dist/bits/alert-dialog/components/alert-dialog.svelte +27 -0
  29. package/dist/bits/alert-dialog/components/alert-dialog.svelte.d.ts +3 -0
  30. package/dist/bits/alert-dialog/exports.d.ts +10 -0
  31. package/dist/bits/alert-dialog/exports.js +9 -0
  32. package/dist/bits/alert-dialog/index.d.ts +1 -0
  33. package/dist/bits/alert-dialog/index.js +1 -0
  34. package/dist/bits/alert-dialog/types.d.ts +4 -0
  35. package/dist/bits/alert-dialog/types.js +1 -0
  36. package/dist/bits/aspect-ratio/aspect-ratio.svelte.d.ts +23 -0
  37. package/dist/bits/aspect-ratio/aspect-ratio.svelte.js +29 -0
  38. package/dist/bits/aspect-ratio/components/aspect-ratio.svelte +38 -0
  39. package/dist/bits/aspect-ratio/components/aspect-ratio.svelte.d.ts +4 -0
  40. package/dist/bits/aspect-ratio/exports.d.ts +2 -0
  41. package/dist/bits/aspect-ratio/exports.js +1 -0
  42. package/dist/bits/aspect-ratio/index.d.ts +1 -0
  43. package/dist/bits/aspect-ratio/index.js +1 -0
  44. package/dist/bits/aspect-ratio/types.d.ts +11 -0
  45. package/dist/bits/aspect-ratio/types.js +1 -0
  46. package/dist/bits/avatar/avatar.svelte.d.ts +65 -0
  47. package/dist/bits/avatar/avatar.svelte.js +105 -0
  48. package/dist/bits/avatar/components/avatar-fallback.svelte +34 -0
  49. package/dist/bits/avatar/components/avatar-fallback.svelte.d.ts +4 -0
  50. package/dist/bits/avatar/components/avatar-image.svelte +37 -0
  51. package/dist/bits/avatar/components/avatar-image.svelte.d.ts +4 -0
  52. package/dist/bits/avatar/components/avatar.svelte +47 -0
  53. package/dist/bits/avatar/components/avatar.svelte.d.ts +4 -0
  54. package/dist/bits/avatar/exports.d.ts +4 -0
  55. package/dist/bits/avatar/exports.js +3 -0
  56. package/dist/bits/avatar/index.d.ts +1 -0
  57. package/dist/bits/avatar/index.js +1 -0
  58. package/dist/bits/avatar/types.d.ts +32 -0
  59. package/dist/bits/avatar/types.js +1 -0
  60. package/dist/bits/button/components/button.svelte +27 -0
  61. package/dist/bits/button/components/button.svelte.d.ts +4 -0
  62. package/dist/bits/button/exports.d.ts +2 -0
  63. package/dist/bits/button/exports.js +1 -0
  64. package/dist/bits/button/index.d.ts +1 -0
  65. package/dist/bits/button/index.js +1 -0
  66. package/dist/bits/button/types.d.ts +18 -0
  67. package/dist/bits/button/types.js +1 -0
  68. package/dist/bits/calendar/calendar.svelte.d.ts +416 -0
  69. package/dist/bits/calendar/calendar.svelte.js +870 -0
  70. package/dist/bits/calendar/components/calendar-cell.svelte +41 -0
  71. package/dist/bits/calendar/components/calendar-cell.svelte.d.ts +4 -0
  72. package/dist/bits/calendar/components/calendar-day.svelte +41 -0
  73. package/dist/bits/calendar/components/calendar-day.svelte.d.ts +4 -0
  74. package/dist/bits/calendar/components/calendar-grid-body.svelte +34 -0
  75. package/dist/bits/calendar/components/calendar-grid-body.svelte.d.ts +4 -0
  76. package/dist/bits/calendar/components/calendar-grid-head.svelte +34 -0
  77. package/dist/bits/calendar/components/calendar-grid-head.svelte.d.ts +4 -0
  78. package/dist/bits/calendar/components/calendar-grid-row.svelte +34 -0
  79. package/dist/bits/calendar/components/calendar-grid-row.svelte.d.ts +4 -0
  80. package/dist/bits/calendar/components/calendar-grid.svelte +34 -0
  81. package/dist/bits/calendar/components/calendar-grid.svelte.d.ts +4 -0
  82. package/dist/bits/calendar/components/calendar-head-cell.svelte +34 -0
  83. package/dist/bits/calendar/components/calendar-head-cell.svelte.d.ts +4 -0
  84. package/dist/bits/calendar/components/calendar-header.svelte +34 -0
  85. package/dist/bits/calendar/components/calendar-header.svelte.d.ts +4 -0
  86. package/dist/bits/calendar/components/calendar-heading.svelte +38 -0
  87. package/dist/bits/calendar/components/calendar-heading.svelte.d.ts +4 -0
  88. package/dist/bits/calendar/components/calendar-month-select.svelte +54 -0
  89. package/dist/bits/calendar/components/calendar-month-select.svelte.d.ts +4 -0
  90. package/dist/bits/calendar/components/calendar-next-button.svelte +36 -0
  91. package/dist/bits/calendar/components/calendar-next-button.svelte.d.ts +4 -0
  92. package/dist/bits/calendar/components/calendar-prev-button.svelte +36 -0
  93. package/dist/bits/calendar/components/calendar-prev-button.svelte.d.ts +4 -0
  94. package/dist/bits/calendar/components/calendar-year-select.svelte +51 -0
  95. package/dist/bits/calendar/components/calendar-year-select.svelte.d.ts +4 -0
  96. package/dist/bits/calendar/components/calendar.svelte +133 -0
  97. package/dist/bits/calendar/components/calendar.svelte.d.ts +4 -0
  98. package/dist/bits/calendar/exports.d.ts +15 -0
  99. package/dist/bits/calendar/exports.js +14 -0
  100. package/dist/bits/calendar/index.d.ts +1 -0
  101. package/dist/bits/calendar/index.js +1 -0
  102. package/dist/bits/calendar/types.d.ts +330 -0
  103. package/dist/bits/calendar/types.js +1 -0
  104. package/dist/bits/checkbox/checkbox.svelte.d.ts +106 -0
  105. package/dist/bits/checkbox/checkbox.svelte.js +224 -0
  106. package/dist/bits/checkbox/components/checkbox-group-label.svelte +34 -0
  107. package/dist/bits/checkbox/components/checkbox-group-label.svelte.d.ts +4 -0
  108. package/dist/bits/checkbox/components/checkbox-group.svelte +55 -0
  109. package/dist/bits/checkbox/components/checkbox-group.svelte.d.ts +4 -0
  110. package/dist/bits/checkbox/components/checkbox-input.svelte +10 -0
  111. package/dist/bits/checkbox/components/checkbox-input.svelte.d.ts +18 -0
  112. package/dist/bits/checkbox/components/checkbox.svelte +97 -0
  113. package/dist/bits/checkbox/components/checkbox.svelte.d.ts +4 -0
  114. package/dist/bits/checkbox/exports.d.ts +4 -0
  115. package/dist/bits/checkbox/exports.js +3 -0
  116. package/dist/bits/checkbox/index.d.ts +1 -0
  117. package/dist/bits/checkbox/index.js +1 -0
  118. package/dist/bits/checkbox/types.d.ts +115 -0
  119. package/dist/bits/checkbox/types.js +1 -0
  120. package/dist/bits/collapsible/collapsible.svelte.d.ts +81 -0
  121. package/dist/bits/collapsible/collapsible.svelte.js +197 -0
  122. package/dist/bits/collapsible/components/collapsible-content.svelte +41 -0
  123. package/dist/bits/collapsible/components/collapsible-content.svelte.d.ts +4 -0
  124. package/dist/bits/collapsible/components/collapsible-trigger.svelte +36 -0
  125. package/dist/bits/collapsible/components/collapsible-trigger.svelte.d.ts +4 -0
  126. package/dist/bits/collapsible/components/collapsible.svelte +48 -0
  127. package/dist/bits/collapsible/components/collapsible.svelte.d.ts +4 -0
  128. package/dist/bits/collapsible/exports.d.ts +4 -0
  129. package/dist/bits/collapsible/exports.js +3 -0
  130. package/dist/bits/collapsible/index.d.ts +1 -0
  131. package/dist/bits/collapsible/index.js +1 -0
  132. package/dist/bits/collapsible/types.d.ts +48 -0
  133. package/dist/bits/collapsible/types.js +1 -0
  134. package/dist/bits/combobox/components/combobox-input.svelte +41 -0
  135. package/dist/bits/combobox/components/combobox-input.svelte.d.ts +4 -0
  136. package/dist/bits/combobox/components/combobox-trigger.svelte +33 -0
  137. package/dist/bits/combobox/components/combobox-trigger.svelte.d.ts +4 -0
  138. package/dist/bits/combobox/components/combobox.svelte +86 -0
  139. package/dist/bits/combobox/components/combobox.svelte.d.ts +3 -0
  140. package/dist/bits/combobox/exports.d.ts +15 -0
  141. package/dist/bits/combobox/exports.js +14 -0
  142. package/dist/bits/combobox/index.d.ts +1 -0
  143. package/dist/bits/combobox/index.js +1 -0
  144. package/dist/bits/combobox/types.d.ts +34 -0
  145. package/dist/bits/combobox/types.js +1 -0
  146. package/dist/bits/command/command.svelte.d.ts +360 -0
  147. package/dist/bits/command/command.svelte.js +1325 -0
  148. package/dist/bits/command/components/_command-label.svelte +31 -0
  149. package/dist/bits/command/components/_command-label.svelte.d.ts +5 -0
  150. package/dist/bits/command/components/command-empty.svelte +38 -0
  151. package/dist/bits/command/components/command-empty.svelte.d.ts +4 -0
  152. package/dist/bits/command/components/command-group-heading.svelte +34 -0
  153. package/dist/bits/command/components/command-group-heading.svelte.d.ts +4 -0
  154. package/dist/bits/command/components/command-group-items.svelte +36 -0
  155. package/dist/bits/command/components/command-group-items.svelte.d.ts +4 -0
  156. package/dist/bits/command/components/command-group.svelte +38 -0
  157. package/dist/bits/command/components/command-group.svelte.d.ts +4 -0
  158. package/dist/bits/command/components/command-input.svelte +40 -0
  159. package/dist/bits/command/components/command-input.svelte.d.ts +4 -0
  160. package/dist/bits/command/components/command-item.svelte +51 -0
  161. package/dist/bits/command/components/command-item.svelte.d.ts +4 -0
  162. package/dist/bits/command/components/command-link-item.svelte +51 -0
  163. package/dist/bits/command/components/command-link-item.svelte.d.ts +4 -0
  164. package/dist/bits/command/components/command-list.svelte +38 -0
  165. package/dist/bits/command/components/command-list.svelte.d.ts +4 -0
  166. package/dist/bits/command/components/command-loading.svelte +36 -0
  167. package/dist/bits/command/components/command-loading.svelte.d.ts +4 -0
  168. package/dist/bits/command/components/command-separator.svelte +38 -0
  169. package/dist/bits/command/components/command-separator.svelte.d.ts +4 -0
  170. package/dist/bits/command/components/command-viewport.svelte +34 -0
  171. package/dist/bits/command/components/command-viewport.svelte.d.ts +4 -0
  172. package/dist/bits/command/components/command.svelte +137 -0
  173. package/dist/bits/command/components/command.svelte.d.ts +59 -0
  174. package/dist/bits/command/compute-command-score.d.ts +26 -0
  175. package/dist/bits/command/compute-command-score.js +160 -0
  176. package/dist/bits/command/exports.d.ts +13 -0
  177. package/dist/bits/command/exports.js +12 -0
  178. package/dist/bits/command/index.d.ts +2 -0
  179. package/dist/bits/command/index.js +2 -0
  180. package/dist/bits/command/types.d.ts +164 -0
  181. package/dist/bits/command/types.js +1 -0
  182. package/dist/bits/command/utils.d.ts +3 -0
  183. package/dist/bits/command/utils.js +26 -0
  184. package/dist/bits/context-menu/components/context-menu-content-static.svelte +135 -0
  185. package/dist/bits/context-menu/components/context-menu-content-static.svelte.d.ts +4 -0
  186. package/dist/bits/context-menu/components/context-menu-content.svelte +138 -0
  187. package/dist/bits/context-menu/components/context-menu-content.svelte.d.ts +3 -0
  188. package/dist/bits/context-menu/components/context-menu-trigger.svelte +47 -0
  189. package/dist/bits/context-menu/components/context-menu-trigger.svelte.d.ts +4 -0
  190. package/dist/bits/context-menu/components/context-menu.svelte +42 -0
  191. package/dist/bits/context-menu/components/context-menu.svelte.d.ts +3 -0
  192. package/dist/bits/context-menu/exports.d.ts +19 -0
  193. package/dist/bits/context-menu/exports.js +18 -0
  194. package/dist/bits/context-menu/index.d.ts +1 -0
  195. package/dist/bits/context-menu/index.js +1 -0
  196. package/dist/bits/context-menu/types.d.ts +15 -0
  197. package/dist/bits/context-menu/types.js +1 -0
  198. package/dist/bits/date-field/components/date-field-hidden-input.svelte +10 -0
  199. package/dist/bits/date-field/components/date-field-hidden-input.svelte.d.ts +18 -0
  200. package/dist/bits/date-field/components/date-field-input.svelte +39 -0
  201. package/dist/bits/date-field/components/date-field-input.svelte.d.ts +4 -0
  202. package/dist/bits/date-field/components/date-field-label.svelte +34 -0
  203. package/dist/bits/date-field/components/date-field-label.svelte.d.ts +4 -0
  204. package/dist/bits/date-field/components/date-field-segment.svelte +37 -0
  205. package/dist/bits/date-field/components/date-field-segment.svelte.d.ts +4 -0
  206. package/dist/bits/date-field/components/date-field.svelte +99 -0
  207. package/dist/bits/date-field/components/date-field.svelte.d.ts +3 -0
  208. package/dist/bits/date-field/date-field.svelte.d.ts +465 -0
  209. package/dist/bits/date-field/date-field.svelte.js +1278 -0
  210. package/dist/bits/date-field/exports.d.ts +5 -0
  211. package/dist/bits/date-field/exports.js +4 -0
  212. package/dist/bits/date-field/index.d.ts +1 -0
  213. package/dist/bits/date-field/index.js +1 -0
  214. package/dist/bits/date-field/types.d.ts +141 -0
  215. package/dist/bits/date-field/types.js +1 -0
  216. package/dist/bits/date-picker/components/date-picker-calendar.svelte +61 -0
  217. package/dist/bits/date-picker/components/date-picker-calendar.svelte.d.ts +4 -0
  218. package/dist/bits/date-picker/components/date-picker-content-static.svelte +18 -0
  219. package/dist/bits/date-picker/components/date-picker-content-static.svelte.d.ts +4 -0
  220. package/dist/bits/date-picker/components/date-picker-content.svelte +14 -0
  221. package/dist/bits/date-picker/components/date-picker-content.svelte.d.ts +4 -0
  222. package/dist/bits/date-picker/components/date-picker-trigger.svelte +27 -0
  223. package/dist/bits/date-picker/components/date-picker-trigger.svelte.d.ts +4 -0
  224. package/dist/bits/date-picker/components/date-picker.svelte +162 -0
  225. package/dist/bits/date-picker/components/date-picker.svelte.d.ts +3 -0
  226. package/dist/bits/date-picker/date-picker.svelte.d.ts +44 -0
  227. package/dist/bits/date-picker/date-picker.svelte.js +12 -0
  228. package/dist/bits/date-picker/exports.d.ts +25 -0
  229. package/dist/bits/date-picker/exports.js +24 -0
  230. package/dist/bits/date-picker/index.d.ts +1 -0
  231. package/dist/bits/date-picker/index.js +1 -0
  232. package/dist/bits/date-picker/types.d.ts +253 -0
  233. package/dist/bits/date-picker/types.js +1 -0
  234. package/dist/bits/date-range-field/components/date-range-field-input.svelte +43 -0
  235. package/dist/bits/date-range-field/components/date-range-field-input.svelte.d.ts +4 -0
  236. package/dist/bits/date-range-field/components/date-range-field-label.svelte +34 -0
  237. package/dist/bits/date-range-field/components/date-range-field-label.svelte.d.ts +4 -0
  238. package/dist/bits/date-range-field/components/date-range-field.svelte +145 -0
  239. package/dist/bits/date-range-field/components/date-range-field.svelte.d.ts +4 -0
  240. package/dist/bits/date-range-field/date-range-field.svelte.d.ts +91 -0
  241. package/dist/bits/date-range-field/date-range-field.svelte.js +202 -0
  242. package/dist/bits/date-range-field/exports.d.ts +5 -0
  243. package/dist/bits/date-range-field/exports.js +4 -0
  244. package/dist/bits/date-range-field/index.d.ts +1 -0
  245. package/dist/bits/date-range-field/index.js +1 -0
  246. package/dist/bits/date-range-field/types.d.ts +154 -0
  247. package/dist/bits/date-range-field/types.js +1 -0
  248. package/dist/bits/date-range-picker/components/date-range-picker-calendar.svelte +63 -0
  249. package/dist/bits/date-range-picker/components/date-range-picker-calendar.svelte.d.ts +4 -0
  250. package/dist/bits/date-range-picker/components/date-range-picker-trigger.svelte +27 -0
  251. package/dist/bits/date-range-picker/components/date-range-picker-trigger.svelte.d.ts +4 -0
  252. package/dist/bits/date-range-picker/components/date-range-picker.svelte +224 -0
  253. package/dist/bits/date-range-picker/components/date-range-picker.svelte.d.ts +4 -0
  254. package/dist/bits/date-range-picker/date-range-picker.svelte.d.ts +48 -0
  255. package/dist/bits/date-range-picker/date-range-picker.svelte.js +12 -0
  256. package/dist/bits/date-range-picker/exports.d.ts +23 -0
  257. package/dist/bits/date-range-picker/exports.js +22 -0
  258. package/dist/bits/date-range-picker/index.d.ts +1 -0
  259. package/dist/bits/date-range-picker/index.js +1 -0
  260. package/dist/bits/date-range-picker/types.d.ts +278 -0
  261. package/dist/bits/date-range-picker/types.js +1 -0
  262. package/dist/bits/dialog/components/dialog-close.svelte +37 -0
  263. package/dist/bits/dialog/components/dialog-close.svelte.d.ts +3 -0
  264. package/dist/bits/dialog/components/dialog-content.svelte +95 -0
  265. package/dist/bits/dialog/components/dialog-content.svelte.d.ts +4 -0
  266. package/dist/bits/dialog/components/dialog-description.svelte +34 -0
  267. package/dist/bits/dialog/components/dialog-description.svelte.d.ts +4 -0
  268. package/dist/bits/dialog/components/dialog-overlay.svelte +37 -0
  269. package/dist/bits/dialog/components/dialog-overlay.svelte.d.ts +4 -0
  270. package/dist/bits/dialog/components/dialog-title.svelte +36 -0
  271. package/dist/bits/dialog/components/dialog-title.svelte.d.ts +4 -0
  272. package/dist/bits/dialog/components/dialog-trigger.svelte +36 -0
  273. package/dist/bits/dialog/components/dialog-trigger.svelte.d.ts +4 -0
  274. package/dist/bits/dialog/components/dialog.svelte +27 -0
  275. package/dist/bits/dialog/components/dialog.svelte.d.ts +3 -0
  276. package/dist/bits/dialog/dialog.svelte.d.ts +208 -0
  277. package/dist/bits/dialog/dialog.svelte.js +361 -0
  278. package/dist/bits/dialog/exports.d.ts +9 -0
  279. package/dist/bits/dialog/exports.js +8 -0
  280. package/dist/bits/dialog/index.d.ts +1 -0
  281. package/dist/bits/dialog/index.js +1 -0
  282. package/dist/bits/dialog/types.d.ts +49 -0
  283. package/dist/bits/dialog/types.js +1 -0
  284. package/dist/bits/dropdown-menu/components/dropdown-menu-content-static.svelte +113 -0
  285. package/dist/bits/dropdown-menu/components/dropdown-menu-content-static.svelte.d.ts +4 -0
  286. package/dist/bits/dropdown-menu/components/dropdown-menu-content.svelte +122 -0
  287. package/dist/bits/dropdown-menu/components/dropdown-menu-content.svelte.d.ts +4 -0
  288. package/dist/bits/dropdown-menu/exports.d.ts +21 -0
  289. package/dist/bits/dropdown-menu/exports.js +19 -0
  290. package/dist/bits/dropdown-menu/index.d.ts +1 -0
  291. package/dist/bits/dropdown-menu/index.js +1 -0
  292. package/dist/bits/dropdown-menu/types.d.ts +2 -0
  293. package/dist/bits/dropdown-menu/types.js +1 -0
  294. package/dist/bits/filter/array.d.ts +13 -0
  295. package/dist/bits/filter/array.js +233 -0
  296. package/dist/bits/filter/columns.d.ts +37 -0
  297. package/dist/bits/filter/columns.js +329 -0
  298. package/dist/bits/filter/components/filter-actions.svelte +43 -0
  299. package/dist/bits/filter/components/filter-actions.svelte.d.ts +18 -0
  300. package/dist/bits/filter/components/filter-date-editor.svelte +382 -0
  301. package/dist/bits/filter/components/filter-date-editor.svelte.d.ts +23 -0
  302. package/dist/bits/filter/components/filter-icon.svelte +49 -0
  303. package/dist/bits/filter/components/filter-icon.svelte.d.ts +11 -0
  304. package/dist/bits/filter/components/filter-item.svelte +59 -0
  305. package/dist/bits/filter/components/filter-item.svelte.d.ts +4 -0
  306. package/dist/bits/filter/components/filter-label-with-breadcrumbs.svelte +16 -0
  307. package/dist/bits/filter/components/filter-label-with-breadcrumbs.svelte.d.ts +7 -0
  308. package/dist/bits/filter/components/filter-list-mobile-container.svelte +24 -0
  309. package/dist/bits/filter/components/filter-list-mobile-container.svelte.d.ts +4 -0
  310. package/dist/bits/filter/components/filter-list.svelte +27 -0
  311. package/dist/bits/filter/components/filter-list.svelte.d.ts +4 -0
  312. package/dist/bits/filter/components/filter-menu-node.svelte +276 -0
  313. package/dist/bits/filter/components/filter-menu-node.svelte.d.ts +26 -0
  314. package/dist/bits/filter/components/filter-menu.svelte +87 -0
  315. package/dist/bits/filter/components/filter-menu.svelte.d.ts +18 -0
  316. package/dist/bits/filter/components/filter-number-editor.svelte +45 -0
  317. package/dist/bits/filter/components/filter-number-editor.svelte.d.ts +22 -0
  318. package/dist/bits/filter/components/filter-operator.svelte +107 -0
  319. package/dist/bits/filter/components/filter-operator.svelte.d.ts +18 -0
  320. package/dist/bits/filter/components/filter-option-editor.svelte +85 -0
  321. package/dist/bits/filter/components/filter-option-editor.svelte.d.ts +26 -0
  322. package/dist/bits/filter/components/filter-provider.svelte +41 -0
  323. package/dist/bits/filter/components/filter-provider.svelte.d.ts +4 -0
  324. package/dist/bits/filter/components/filter-remove.svelte +52 -0
  325. package/dist/bits/filter/components/filter-remove.svelte.d.ts +4 -0
  326. package/dist/bits/filter/components/filter-root.svelte +22 -0
  327. package/dist/bits/filter/components/filter-root.svelte.d.ts +4 -0
  328. package/dist/bits/filter/components/filter-subject.svelte +51 -0
  329. package/dist/bits/filter/components/filter-subject.svelte.d.ts +4 -0
  330. package/dist/bits/filter/components/filter-text-editor.svelte +38 -0
  331. package/dist/bits/filter/components/filter-text-editor.svelte.d.ts +21 -0
  332. package/dist/bits/filter/components/filter-trigger.svelte +41 -0
  333. package/dist/bits/filter/components/filter-trigger.svelte.d.ts +4 -0
  334. package/dist/bits/filter/components/filter-value-display.svelte +119 -0
  335. package/dist/bits/filter/components/filter-value-display.svelte.d.ts +23 -0
  336. package/dist/bits/filter/components/filter-value.svelte +146 -0
  337. package/dist/bits/filter/components/filter-value.svelte.d.ts +18 -0
  338. package/dist/bits/filter/exports.d.ts +25 -0
  339. package/dist/bits/filter/exports.js +23 -0
  340. package/dist/bits/filter/filter-fns.d.ts +21 -0
  341. package/dist/bits/filter/filter-fns.js +279 -0
  342. package/dist/bits/filter/filter.svelte.d.ts +14 -0
  343. package/dist/bits/filter/filter.svelte.js +206 -0
  344. package/dist/bits/filter/helpers.d.ts +16 -0
  345. package/dist/bits/filter/helpers.js +132 -0
  346. package/dist/bits/filter/i18n.d.ts +2 -0
  347. package/dist/bits/filter/i18n.js +110 -0
  348. package/dist/bits/filter/index.d.ts +11 -0
  349. package/dist/bits/filter/index.js +10 -0
  350. package/dist/bits/filter/memo.d.ts +12 -0
  351. package/dist/bits/filter/memo.js +23 -0
  352. package/dist/bits/filter/menu-nodes.d.ts +73 -0
  353. package/dist/bits/filter/menu-nodes.js +265 -0
  354. package/dist/bits/filter/operations.d.ts +2 -0
  355. package/dist/bits/filter/operations.js +106 -0
  356. package/dist/bits/filter/operators.d.ts +358 -0
  357. package/dist/bits/filter/operators.js +356 -0
  358. package/dist/bits/filter/order-fns.d.ts +14 -0
  359. package/dist/bits/filter/order-fns.js +42 -0
  360. package/dist/bits/filter/type-guards.d.ts +21 -0
  361. package/dist/bits/filter/type-guards.js +60 -0
  362. package/dist/bits/filter/types.d.ts +367 -0
  363. package/dist/bits/filter/types.js +1 -0
  364. package/dist/bits/filter/units.d.ts +4 -0
  365. package/dist/bits/filter/units.js +102 -0
  366. package/dist/bits/index.d.ts +45 -0
  367. package/dist/bits/index.js +45 -0
  368. package/dist/bits/label/components/label.svelte +34 -0
  369. package/dist/bits/label/components/label.svelte.d.ts +4 -0
  370. package/dist/bits/label/exports.d.ts +2 -0
  371. package/dist/bits/label/exports.js +1 -0
  372. package/dist/bits/label/index.d.ts +1 -0
  373. package/dist/bits/label/index.js +1 -0
  374. package/dist/bits/label/label.svelte.d.ts +15 -0
  375. package/dist/bits/label/label.svelte.js +28 -0
  376. package/dist/bits/label/types.d.ts +4 -0
  377. package/dist/bits/label/types.js +1 -0
  378. package/dist/bits/link-preview/components/link-preview-content-static.svelte +98 -0
  379. package/dist/bits/link-preview/components/link-preview-content-static.svelte.d.ts +4 -0
  380. package/dist/bits/link-preview/components/link-preview-content.svelte +120 -0
  381. package/dist/bits/link-preview/components/link-preview-content.svelte.d.ts +4 -0
  382. package/dist/bits/link-preview/components/link-preview-trigger.svelte +37 -0
  383. package/dist/bits/link-preview/components/link-preview-trigger.svelte.d.ts +4 -0
  384. package/dist/bits/link-preview/components/link-preview.svelte +35 -0
  385. package/dist/bits/link-preview/components/link-preview.svelte.d.ts +3 -0
  386. package/dist/bits/link-preview/exports.d.ts +7 -0
  387. package/dist/bits/link-preview/exports.js +6 -0
  388. package/dist/bits/link-preview/index.d.ts +1 -0
  389. package/dist/bits/link-preview/index.js +1 -0
  390. package/dist/bits/link-preview/link-preview.svelte.d.ts +96 -0
  391. package/dist/bits/link-preview/link-preview.svelte.js +241 -0
  392. package/dist/bits/link-preview/types.d.ts +74 -0
  393. package/dist/bits/link-preview/types.js +1 -0
  394. package/dist/bits/menu/components/menu-arrow.svelte +14 -0
  395. package/dist/bits/menu/components/menu-arrow.svelte.d.ts +3 -0
  396. package/dist/bits/menu/components/menu-checkbox-group.svelte +45 -0
  397. package/dist/bits/menu/components/menu-checkbox-group.svelte.d.ts +4 -0
  398. package/dist/bits/menu/components/menu-checkbox-item.svelte +98 -0
  399. package/dist/bits/menu/components/menu-checkbox-item.svelte.d.ts +4 -0
  400. package/dist/bits/menu/components/menu-content-static.svelte +116 -0
  401. package/dist/bits/menu/components/menu-content-static.svelte.d.ts +4 -0
  402. package/dist/bits/menu/components/menu-content.svelte +123 -0
  403. package/dist/bits/menu/components/menu-content.svelte.d.ts +4 -0
  404. package/dist/bits/menu/components/menu-group-heading.svelte +33 -0
  405. package/dist/bits/menu/components/menu-group-heading.svelte.d.ts +4 -0
  406. package/dist/bits/menu/components/menu-group.svelte +33 -0
  407. package/dist/bits/menu/components/menu-group.svelte.d.ts +4 -0
  408. package/dist/bits/menu/components/menu-item.svelte +41 -0
  409. package/dist/bits/menu/components/menu-item.svelte.d.ts +4 -0
  410. package/dist/bits/menu/components/menu-radio-group.svelte +44 -0
  411. package/dist/bits/menu/components/menu-radio-group.svelte.d.ts +4 -0
  412. package/dist/bits/menu/components/menu-radio-item.svelte +49 -0
  413. package/dist/bits/menu/components/menu-radio-item.svelte.d.ts +4 -0
  414. package/dist/bits/menu/components/menu-separator.svelte +34 -0
  415. package/dist/bits/menu/components/menu-separator.svelte.d.ts +4 -0
  416. package/dist/bits/menu/components/menu-sub-content-static.svelte +185 -0
  417. package/dist/bits/menu/components/menu-sub-content-static.svelte.d.ts +4 -0
  418. package/dist/bits/menu/components/menu-sub-content.svelte +302 -0
  419. package/dist/bits/menu/components/menu-sub-content.svelte.d.ts +4 -0
  420. package/dist/bits/menu/components/menu-sub-trigger.svelte +44 -0
  421. package/dist/bits/menu/components/menu-sub-trigger.svelte.d.ts +4 -0
  422. package/dist/bits/menu/components/menu-sub.svelte +29 -0
  423. package/dist/bits/menu/components/menu-sub.svelte.d.ts +3 -0
  424. package/dist/bits/menu/components/menu-trigger.svelte +40 -0
  425. package/dist/bits/menu/components/menu-trigger.svelte.d.ts +4 -0
  426. package/dist/bits/menu/components/menu.svelte +48 -0
  427. package/dist/bits/menu/components/menu.svelte.d.ts +8 -0
  428. package/dist/bits/menu/exports.d.ts +19 -0
  429. package/dist/bits/menu/exports.js +18 -0
  430. package/dist/bits/menu/menu.svelte.d.ts +481 -0
  431. package/dist/bits/menu/menu.svelte.js +1720 -0
  432. package/dist/bits/menu/types.d.ts +215 -0
  433. package/dist/bits/menu/types.js +1 -0
  434. package/dist/bits/menu/utils.d.ts +11 -0
  435. package/dist/bits/menu/utils.js +22 -0
  436. package/dist/bits/menu-data/components/data-empty.svelte +25 -0
  437. package/dist/bits/menu-data/components/data-empty.svelte.d.ts +4 -0
  438. package/dist/bits/menu-data/components/data-input.svelte +139 -0
  439. package/dist/bits/menu-data/components/data-input.svelte.d.ts +4 -0
  440. package/dist/bits/menu-data/components/data-list.svelte +184 -0
  441. package/dist/bits/menu-data/components/data-list.svelte.d.ts +18 -0
  442. package/dist/bits/menu-data/components/data-surface.svelte +68 -0
  443. package/dist/bits/menu-data/components/data-surface.svelte.d.ts +18 -0
  444. package/dist/bits/menu-data/exports.d.ts +5 -0
  445. package/dist/bits/menu-data/exports.js +4 -0
  446. package/dist/bits/menu-data/menu-data.svelte.d.ts +62 -0
  447. package/dist/bits/menu-data/menu-data.svelte.js +378 -0
  448. package/dist/bits/menu-data/types.d.ts +176 -0
  449. package/dist/bits/menu-data/types.js +12 -0
  450. package/dist/bits/menu-data/utils.d.ts +61 -0
  451. package/dist/bits/menu-data/utils.js +456 -0
  452. package/dist/bits/menubar/components/menubar-content-static.svelte +38 -0
  453. package/dist/bits/menubar/components/menubar-content-static.svelte.d.ts +4 -0
  454. package/dist/bits/menubar/components/menubar-content.svelte +38 -0
  455. package/dist/bits/menubar/components/menubar-content.svelte.d.ts +4 -0
  456. package/dist/bits/menubar/components/menubar-menu.svelte +29 -0
  457. package/dist/bits/menubar/components/menubar-menu.svelte.d.ts +3 -0
  458. package/dist/bits/menubar/components/menubar-trigger.svelte +49 -0
  459. package/dist/bits/menubar/components/menubar-trigger.svelte.d.ts +4 -0
  460. package/dist/bits/menubar/components/menubar.svelte +48 -0
  461. package/dist/bits/menubar/components/menubar.svelte.d.ts +4 -0
  462. package/dist/bits/menubar/exports.d.ts +21 -0
  463. package/dist/bits/menubar/exports.js +19 -0
  464. package/dist/bits/menubar/index.d.ts +1 -0
  465. package/dist/bits/menubar/index.js +1 -0
  466. package/dist/bits/menubar/menubar.svelte.d.ts +140 -0
  467. package/dist/bits/menubar/menubar.svelte.js +317 -0
  468. package/dist/bits/menubar/types.d.ts +49 -0
  469. package/dist/bits/menubar/types.js +1 -0
  470. package/dist/bits/meter/components/meter.svelte +40 -0
  471. package/dist/bits/meter/components/meter.svelte.d.ts +4 -0
  472. package/dist/bits/meter/exports.d.ts +2 -0
  473. package/dist/bits/meter/exports.js +1 -0
  474. package/dist/bits/meter/index.d.ts +1 -0
  475. package/dist/bits/meter/index.js +1 -0
  476. package/dist/bits/meter/meter.svelte.d.ts +25 -0
  477. package/dist/bits/meter/meter.svelte.js +29 -0
  478. package/dist/bits/meter/types.d.ts +23 -0
  479. package/dist/bits/meter/types.js +1 -0
  480. package/dist/bits/navigation-menu/components/navigation-menu-content-impl.svelte +94 -0
  481. package/dist/bits/navigation-menu/components/navigation-menu-content-impl.svelte.d.ts +13 -0
  482. package/dist/bits/navigation-menu/components/navigation-menu-content.svelte +51 -0
  483. package/dist/bits/navigation-menu/components/navigation-menu-content.svelte.d.ts +4 -0
  484. package/dist/bits/navigation-menu/components/navigation-menu-indicator-impl.svelte +34 -0
  485. package/dist/bits/navigation-menu/components/navigation-menu-indicator-impl.svelte.d.ts +4 -0
  486. package/dist/bits/navigation-menu/components/navigation-menu-indicator.svelte +40 -0
  487. package/dist/bits/navigation-menu/components/navigation-menu-indicator.svelte.d.ts +4 -0
  488. package/dist/bits/navigation-menu/components/navigation-menu-item.svelte +39 -0
  489. package/dist/bits/navigation-menu/components/navigation-menu-item.svelte.d.ts +4 -0
  490. package/dist/bits/navigation-menu/components/navigation-menu-link.svelte +40 -0
  491. package/dist/bits/navigation-menu/components/navigation-menu-link.svelte.d.ts +4 -0
  492. package/dist/bits/navigation-menu/components/navigation-menu-list.svelte +40 -0
  493. package/dist/bits/navigation-menu/components/navigation-menu-list.svelte.d.ts +4 -0
  494. package/dist/bits/navigation-menu/components/navigation-menu-sub.svelte +46 -0
  495. package/dist/bits/navigation-menu/components/navigation-menu-sub.svelte.d.ts +4 -0
  496. package/dist/bits/navigation-menu/components/navigation-menu-trigger.svelte +47 -0
  497. package/dist/bits/navigation-menu/components/navigation-menu-trigger.svelte.d.ts +4 -0
  498. package/dist/bits/navigation-menu/components/navigation-menu-viewport.svelte +44 -0
  499. package/dist/bits/navigation-menu/components/navigation-menu-viewport.svelte.d.ts +4 -0
  500. package/dist/bits/navigation-menu/components/navigation-menu.svelte +52 -0
  501. package/dist/bits/navigation-menu/components/navigation-menu.svelte.d.ts +4 -0
  502. package/dist/bits/navigation-menu/exports.d.ts +10 -0
  503. package/dist/bits/navigation-menu/exports.js +9 -0
  504. package/dist/bits/navigation-menu/index.d.ts +1 -0
  505. package/dist/bits/navigation-menu/index.js +1 -0
  506. package/dist/bits/navigation-menu/navigation-menu.svelte.d.ts +364 -0
  507. package/dist/bits/navigation-menu/navigation-menu.svelte.js +888 -0
  508. package/dist/bits/navigation-menu/types.d.ts +156 -0
  509. package/dist/bits/navigation-menu/types.js +1 -0
  510. package/dist/bits/pagination/components/pagination-next-button.svelte +38 -0
  511. package/dist/bits/pagination/components/pagination-next-button.svelte.d.ts +4 -0
  512. package/dist/bits/pagination/components/pagination-page.svelte +43 -0
  513. package/dist/bits/pagination/components/pagination-page.svelte.d.ts +4 -0
  514. package/dist/bits/pagination/components/pagination-prev-button.svelte +38 -0
  515. package/dist/bits/pagination/components/pagination-prev-button.svelte.d.ts +4 -0
  516. package/dist/bits/pagination/components/pagination.svelte +54 -0
  517. package/dist/bits/pagination/components/pagination.svelte.d.ts +4 -0
  518. package/dist/bits/pagination/exports.d.ts +5 -0
  519. package/dist/bits/pagination/exports.js +4 -0
  520. package/dist/bits/pagination/index.d.ts +1 -0
  521. package/dist/bits/pagination/index.js +1 -0
  522. package/dist/bits/pagination/pagination.svelte.d.ts +90 -0
  523. package/dist/bits/pagination/pagination.svelte.js +264 -0
  524. package/dist/bits/pagination/types.d.ts +76 -0
  525. package/dist/bits/pagination/types.js +1 -0
  526. package/dist/bits/pin-input/components/pin-input-cell.svelte +36 -0
  527. package/dist/bits/pin-input/components/pin-input-cell.svelte.d.ts +4 -0
  528. package/dist/bits/pin-input/components/pin-input.svelte +71 -0
  529. package/dist/bits/pin-input/components/pin-input.svelte.d.ts +4 -0
  530. package/dist/bits/pin-input/exports.d.ts +3 -0
  531. package/dist/bits/pin-input/exports.js +2 -0
  532. package/dist/bits/pin-input/index.d.ts +1 -0
  533. package/dist/bits/pin-input/index.js +1 -0
  534. package/dist/bits/pin-input/pin-input.svelte.d.ts +122 -0
  535. package/dist/bits/pin-input/pin-input.svelte.js +431 -0
  536. package/dist/bits/pin-input/types.d.ts +88 -0
  537. package/dist/bits/pin-input/types.js +1 -0
  538. package/dist/bits/pin-input/usePasswordManager.svelte.d.ts +15 -0
  539. package/dist/bits/pin-input/usePasswordManager.svelte.js +90 -0
  540. package/dist/bits/popover/components/popover-arrow.svelte +8 -0
  541. package/dist/bits/popover/components/popover-arrow.svelte.d.ts +3 -0
  542. package/dist/bits/popover/components/popover-close.svelte +33 -0
  543. package/dist/bits/popover/components/popover-close.svelte.d.ts +4 -0
  544. package/dist/bits/popover/components/popover-content-static.svelte +104 -0
  545. package/dist/bits/popover/components/popover-content-static.svelte.d.ts +4 -0
  546. package/dist/bits/popover/components/popover-content.svelte +121 -0
  547. package/dist/bits/popover/components/popover-content.svelte.d.ts +4 -0
  548. package/dist/bits/popover/components/popover-overlay.svelte +37 -0
  549. package/dist/bits/popover/components/popover-overlay.svelte.d.ts +4 -0
  550. package/dist/bits/popover/components/popover-trigger.svelte +46 -0
  551. package/dist/bits/popover/components/popover-trigger.svelte.d.ts +4 -0
  552. package/dist/bits/popover/components/popover.svelte +29 -0
  553. package/dist/bits/popover/components/popover.svelte.d.ts +3 -0
  554. package/dist/bits/popover/exports.d.ts +9 -0
  555. package/dist/bits/popover/exports.js +8 -0
  556. package/dist/bits/popover/index.d.ts +1 -0
  557. package/dist/bits/popover/index.js +1 -0
  558. package/dist/bits/popover/popover.svelte.d.ts +148 -0
  559. package/dist/bits/popover/popover.svelte.js +404 -0
  560. package/dist/bits/popover/types.d.ts +57 -0
  561. package/dist/bits/popover/types.js +1 -0
  562. package/dist/bits/progress/components/progress.svelte +40 -0
  563. package/dist/bits/progress/components/progress.svelte.d.ts +4 -0
  564. package/dist/bits/progress/exports.d.ts +2 -0
  565. package/dist/bits/progress/exports.js +1 -0
  566. package/dist/bits/progress/index.d.ts +1 -0
  567. package/dist/bits/progress/index.js +1 -0
  568. package/dist/bits/progress/progress.svelte.d.ts +27 -0
  569. package/dist/bits/progress/progress.svelte.js +36 -0
  570. package/dist/bits/progress/types.d.ts +24 -0
  571. package/dist/bits/progress/types.js +1 -0
  572. package/dist/bits/radio-group/components/radio-group-input.svelte +10 -0
  573. package/dist/bits/radio-group/components/radio-group-input.svelte.d.ts +18 -0
  574. package/dist/bits/radio-group/components/radio-group-item.svelte +38 -0
  575. package/dist/bits/radio-group/components/radio-group-item.svelte.d.ts +4 -0
  576. package/dist/bits/radio-group/components/radio-group.svelte +60 -0
  577. package/dist/bits/radio-group/components/radio-group.svelte.d.ts +4 -0
  578. package/dist/bits/radio-group/exports.d.ts +3 -0
  579. package/dist/bits/radio-group/exports.js +2 -0
  580. package/dist/bits/radio-group/index.d.ts +1 -0
  581. package/dist/bits/radio-group/index.js +1 -0
  582. package/dist/bits/radio-group/radio-group.svelte.d.ts +86 -0
  583. package/dist/bits/radio-group/radio-group.svelte.js +147 -0
  584. package/dist/bits/radio-group/types.d.ts +73 -0
  585. package/dist/bits/radio-group/types.js +1 -0
  586. package/dist/bits/range-calendar/components/range-calendar-cell.svelte +38 -0
  587. package/dist/bits/range-calendar/components/range-calendar-cell.svelte.d.ts +4 -0
  588. package/dist/bits/range-calendar/components/range-calendar-day.svelte +38 -0
  589. package/dist/bits/range-calendar/components/range-calendar-day.svelte.d.ts +4 -0
  590. package/dist/bits/range-calendar/components/range-calendar.svelte +153 -0
  591. package/dist/bits/range-calendar/components/range-calendar.svelte.d.ts +4 -0
  592. package/dist/bits/range-calendar/exports.d.ts +15 -0
  593. package/dist/bits/range-calendar/exports.js +14 -0
  594. package/dist/bits/range-calendar/index.d.ts +1 -0
  595. package/dist/bits/range-calendar/index.js +1 -0
  596. package/dist/bits/range-calendar/range-calendar.svelte.d.ts +248 -0
  597. package/dist/bits/range-calendar/range-calendar.svelte.js +688 -0
  598. package/dist/bits/range-calendar/types.d.ts +212 -0
  599. package/dist/bits/range-calendar/types.js +1 -0
  600. package/dist/bits/rating-group/components/rating-group-input.svelte +10 -0
  601. package/dist/bits/rating-group/components/rating-group-input.svelte.d.ts +18 -0
  602. package/dist/bits/rating-group/components/rating-group-item.svelte +38 -0
  603. package/dist/bits/rating-group/components/rating-group-item.svelte.d.ts +4 -0
  604. package/dist/bits/rating-group/components/rating-group.svelte +80 -0
  605. package/dist/bits/rating-group/components/rating-group.svelte.d.ts +4 -0
  606. package/dist/bits/rating-group/exports.d.ts +3 -0
  607. package/dist/bits/rating-group/exports.js +2 -0
  608. package/dist/bits/rating-group/index.d.ts +1 -0
  609. package/dist/bits/rating-group/index.js +1 -0
  610. package/dist/bits/rating-group/rating-group.svelte.d.ts +115 -0
  611. package/dist/bits/rating-group/rating-group.svelte.js +320 -0
  612. package/dist/bits/rating-group/types.d.ts +111 -0
  613. package/dist/bits/rating-group/types.js +1 -0
  614. package/dist/bits/scroll-area/components/scroll-area-corner-impl.svelte +33 -0
  615. package/dist/bits/scroll-area/components/scroll-area-corner-impl.svelte.d.ts +7 -0
  616. package/dist/bits/scroll-area/components/scroll-area-corner.svelte +27 -0
  617. package/dist/bits/scroll-area/components/scroll-area-corner.svelte.d.ts +4 -0
  618. package/dist/bits/scroll-area/components/scroll-area-scrollbar-auto.svelte +21 -0
  619. package/dist/bits/scroll-area/components/scroll-area-scrollbar-auto.svelte.d.ts +4 -0
  620. package/dist/bits/scroll-area/components/scroll-area-scrollbar-hover.svelte +30 -0
  621. package/dist/bits/scroll-area/components/scroll-area-scrollbar-hover.svelte.d.ts +4 -0
  622. package/dist/bits/scroll-area/components/scroll-area-scrollbar-scroll.svelte +23 -0
  623. package/dist/bits/scroll-area/components/scroll-area-scrollbar-scroll.svelte.d.ts +4 -0
  624. package/dist/bits/scroll-area/components/scroll-area-scrollbar-shared.svelte +19 -0
  625. package/dist/bits/scroll-area/components/scroll-area-scrollbar-shared.svelte.d.ts +4 -0
  626. package/dist/bits/scroll-area/components/scroll-area-scrollbar-visible.svelte +16 -0
  627. package/dist/bits/scroll-area/components/scroll-area-scrollbar-visible.svelte.d.ts +4 -0
  628. package/dist/bits/scroll-area/components/scroll-area-scrollbar-x.svelte +19 -0
  629. package/dist/bits/scroll-area/components/scroll-area-scrollbar-x.svelte.d.ts +4 -0
  630. package/dist/bits/scroll-area/components/scroll-area-scrollbar-y.svelte +20 -0
  631. package/dist/bits/scroll-area/components/scroll-area-scrollbar-y.svelte.d.ts +4 -0
  632. package/dist/bits/scroll-area/components/scroll-area-scrollbar.svelte +40 -0
  633. package/dist/bits/scroll-area/components/scroll-area-scrollbar.svelte.d.ts +4 -0
  634. package/dist/bits/scroll-area/components/scroll-area-thumb-impl.svelte +45 -0
  635. package/dist/bits/scroll-area/components/scroll-area-thumb-impl.svelte.d.ts +8 -0
  636. package/dist/bits/scroll-area/components/scroll-area-thumb.svelte +24 -0
  637. package/dist/bits/scroll-area/components/scroll-area-thumb.svelte.d.ts +4 -0
  638. package/dist/bits/scroll-area/components/scroll-area-viewport.svelte +53 -0
  639. package/dist/bits/scroll-area/components/scroll-area-viewport.svelte.d.ts +4 -0
  640. package/dist/bits/scroll-area/components/scroll-area.svelte +40 -0
  641. package/dist/bits/scroll-area/components/scroll-area.svelte.d.ts +4 -0
  642. package/dist/bits/scroll-area/exports.d.ts +6 -0
  643. package/dist/bits/scroll-area/exports.js +5 -0
  644. package/dist/bits/scroll-area/index.d.ts +1 -0
  645. package/dist/bits/scroll-area/index.js +1 -0
  646. package/dist/bits/scroll-area/scroll-area.svelte.d.ts +340 -0
  647. package/dist/bits/scroll-area/scroll-area.svelte.js +797 -0
  648. package/dist/bits/scroll-area/types.d.ts +47 -0
  649. package/dist/bits/scroll-area/types.js +1 -0
  650. package/dist/bits/select/components/select-content-static.svelte +84 -0
  651. package/dist/bits/select/components/select-content-static.svelte.d.ts +4 -0
  652. package/dist/bits/select/components/select-content.svelte +89 -0
  653. package/dist/bits/select/components/select-content.svelte.d.ts +4 -0
  654. package/dist/bits/select/components/select-group-heading.svelte +33 -0
  655. package/dist/bits/select/components/select-group-heading.svelte.d.ts +4 -0
  656. package/dist/bits/select/components/select-group.svelte +34 -0
  657. package/dist/bits/select/components/select-group.svelte.d.ts +4 -0
  658. package/dist/bits/select/components/select-hidden-input.svelte +19 -0
  659. package/dist/bits/select/components/select-hidden-input.svelte.d.ts +7 -0
  660. package/dist/bits/select/components/select-item.svelte +48 -0
  661. package/dist/bits/select/components/select-item.svelte.d.ts +4 -0
  662. package/dist/bits/select/components/select-scroll-down-button.svelte +40 -0
  663. package/dist/bits/select/components/select-scroll-down-button.svelte.d.ts +4 -0
  664. package/dist/bits/select/components/select-scroll-up-button.svelte +40 -0
  665. package/dist/bits/select/components/select-scroll-up-button.svelte.d.ts +4 -0
  666. package/dist/bits/select/components/select-trigger.svelte +38 -0
  667. package/dist/bits/select/components/select-trigger.svelte.d.ts +4 -0
  668. package/dist/bits/select/components/select-value.svelte +48 -0
  669. package/dist/bits/select/components/select-value.svelte.d.ts +4 -0
  670. package/dist/bits/select/components/select-viewport.svelte +56 -0
  671. package/dist/bits/select/components/select-viewport.svelte.d.ts +4 -0
  672. package/dist/bits/select/components/select.svelte +92 -0
  673. package/dist/bits/select/components/select.svelte.d.ts +3 -0
  674. package/dist/bits/select/exports.d.ts +13 -0
  675. package/dist/bits/select/exports.js +12 -0
  676. package/dist/bits/select/index.d.ts +1 -0
  677. package/dist/bits/select/index.js +1 -0
  678. package/dist/bits/select/select.svelte.d.ts +456 -0
  679. package/dist/bits/select/select.svelte.js +1298 -0
  680. package/dist/bits/select/types.d.ts +222 -0
  681. package/dist/bits/select/types.js +1 -0
  682. package/dist/bits/separator/components/separator.svelte +38 -0
  683. package/dist/bits/separator/components/separator.svelte.d.ts +4 -0
  684. package/dist/bits/separator/exports.d.ts +2 -0
  685. package/dist/bits/separator/exports.js +1 -0
  686. package/dist/bits/separator/index.d.ts +1 -0
  687. package/dist/bits/separator/index.js +1 -0
  688. package/dist/bits/separator/separator.svelte.d.ts +22 -0
  689. package/dist/bits/separator/separator.svelte.js +26 -0
  690. package/dist/bits/separator/types.d.ts +18 -0
  691. package/dist/bits/separator/types.js +1 -0
  692. package/dist/bits/slider/components/slider-range.svelte +33 -0
  693. package/dist/bits/slider/components/slider-range.svelte.d.ts +4 -0
  694. package/dist/bits/slider/components/slider-thumb-label.svelte +50 -0
  695. package/dist/bits/slider/components/slider-thumb-label.svelte.d.ts +4 -0
  696. package/dist/bits/slider/components/slider-thumb.svelte +43 -0
  697. package/dist/bits/slider/components/slider-thumb.svelte.d.ts +4 -0
  698. package/dist/bits/slider/components/slider-tick-label.svelte +50 -0
  699. package/dist/bits/slider/components/slider-tick-label.svelte.d.ts +4 -0
  700. package/dist/bits/slider/components/slider-tick.svelte +34 -0
  701. package/dist/bits/slider/components/slider-tick.svelte.d.ts +4 -0
  702. package/dist/bits/slider/components/slider.svelte +99 -0
  703. package/dist/bits/slider/components/slider.svelte.d.ts +4 -0
  704. package/dist/bits/slider/exports.d.ts +7 -0
  705. package/dist/bits/slider/exports.js +6 -0
  706. package/dist/bits/slider/helpers.d.ts +18 -0
  707. package/dist/bits/slider/helpers.js +219 -0
  708. package/dist/bits/slider/index.d.ts +1 -0
  709. package/dist/bits/slider/index.js +1 -0
  710. package/dist/bits/slider/slider.svelte.d.ts +1970 -0
  711. package/dist/bits/slider/slider.svelte.js +817 -0
  712. package/dist/bits/slider/types.d.ts +233 -0
  713. package/dist/bits/slider/types.js +1 -0
  714. package/dist/bits/switch/components/switch-input.svelte +10 -0
  715. package/dist/bits/switch/components/switch-input.svelte.d.ts +18 -0
  716. package/dist/bits/switch/components/switch-thumb.svelte +34 -0
  717. package/dist/bits/switch/components/switch-thumb.svelte.d.ts +4 -0
  718. package/dist/bits/switch/components/switch.svelte +56 -0
  719. package/dist/bits/switch/components/switch.svelte.d.ts +4 -0
  720. package/dist/bits/switch/exports.d.ts +3 -0
  721. package/dist/bits/switch/exports.js +2 -0
  722. package/dist/bits/switch/index.d.ts +1 -0
  723. package/dist/bits/switch/index.js +1 -0
  724. package/dist/bits/switch/switch.svelte.d.ts +73 -0
  725. package/dist/bits/switch/switch.svelte.js +97 -0
  726. package/dist/bits/switch/types.d.ts +47 -0
  727. package/dist/bits/switch/types.js +1 -0
  728. package/dist/bits/tabs/components/tabs-content.svelte +36 -0
  729. package/dist/bits/tabs/components/tabs-content.svelte.d.ts +4 -0
  730. package/dist/bits/tabs/components/tabs-list.svelte +34 -0
  731. package/dist/bits/tabs/components/tabs-list.svelte.d.ts +4 -0
  732. package/dist/bits/tabs/components/tabs-trigger.svelte +39 -0
  733. package/dist/bits/tabs/components/tabs-trigger.svelte.d.ts +4 -0
  734. package/dist/bits/tabs/components/tabs.svelte +52 -0
  735. package/dist/bits/tabs/components/tabs.svelte.d.ts +4 -0
  736. package/dist/bits/tabs/exports.d.ts +5 -0
  737. package/dist/bits/tabs/exports.js +4 -0
  738. package/dist/bits/tabs/index.d.ts +1 -0
  739. package/dist/bits/tabs/index.js +1 -0
  740. package/dist/bits/tabs/tabs.svelte.d.ts +103 -0
  741. package/dist/bits/tabs/tabs.svelte.js +190 -0
  742. package/dist/bits/tabs/types.d.ts +64 -0
  743. package/dist/bits/tabs/types.js +1 -0
  744. package/dist/bits/time-field/components/time-field-hidden-input.svelte +10 -0
  745. package/dist/bits/time-field/components/time-field-hidden-input.svelte.d.ts +18 -0
  746. package/dist/bits/time-field/components/time-field-input.svelte +39 -0
  747. package/dist/bits/time-field/components/time-field-input.svelte.d.ts +4 -0
  748. package/dist/bits/time-field/components/time-field-label.svelte +34 -0
  749. package/dist/bits/time-field/components/time-field-label.svelte.d.ts +4 -0
  750. package/dist/bits/time-field/components/time-field-segment.svelte +37 -0
  751. package/dist/bits/time-field/components/time-field-segment.svelte.d.ts +4 -0
  752. package/dist/bits/time-field/components/time-field.svelte +95 -0
  753. package/dist/bits/time-field/components/time-field.svelte.d.ts +20 -0
  754. package/dist/bits/time-field/exports.d.ts +5 -0
  755. package/dist/bits/time-field/exports.js +4 -0
  756. package/dist/bits/time-field/index.d.ts +1 -0
  757. package/dist/bits/time-field/index.js +1 -0
  758. package/dist/bits/time-field/time-field.svelte.d.ts +431 -0
  759. package/dist/bits/time-field/time-field.svelte.js +1027 -0
  760. package/dist/bits/time-field/types.d.ts +137 -0
  761. package/dist/bits/time-field/types.js +1 -0
  762. package/dist/bits/time-range-field/components/time-range-field-input.svelte +43 -0
  763. package/dist/bits/time-range-field/components/time-range-field-input.svelte.d.ts +4 -0
  764. package/dist/bits/time-range-field/components/time-range-field-label.svelte +34 -0
  765. package/dist/bits/time-range-field/components/time-range-field-label.svelte.d.ts +4 -0
  766. package/dist/bits/time-range-field/components/time-range-field.svelte +145 -0
  767. package/dist/bits/time-range-field/components/time-range-field.svelte.d.ts +20 -0
  768. package/dist/bits/time-range-field/exports.d.ts +5 -0
  769. package/dist/bits/time-range-field/exports.js +4 -0
  770. package/dist/bits/time-range-field/index.d.ts +1 -0
  771. package/dist/bits/time-range-field/index.js +1 -0
  772. package/dist/bits/time-range-field/time-range-field.svelte.d.ts +96 -0
  773. package/dist/bits/time-range-field/time-range-field.svelte.js +220 -0
  774. package/dist/bits/time-range-field/types.d.ts +150 -0
  775. package/dist/bits/time-range-field/types.js +1 -0
  776. package/dist/bits/toggle/components/toggle.svelte +47 -0
  777. package/dist/bits/toggle/components/toggle.svelte.d.ts +4 -0
  778. package/dist/bits/toggle/exports.d.ts +2 -0
  779. package/dist/bits/toggle/exports.js +1 -0
  780. package/dist/bits/toggle/index.d.ts +1 -0
  781. package/dist/bits/toggle/index.js +1 -0
  782. package/dist/bits/toggle/toggle.svelte.d.ts +29 -0
  783. package/dist/bits/toggle/toggle.svelte.js +39 -0
  784. package/dist/bits/toggle/types.d.ts +24 -0
  785. package/dist/bits/toggle/types.js +1 -0
  786. package/dist/bits/toggle-group/components/toggle-group-item.svelte +39 -0
  787. package/dist/bits/toggle-group/components/toggle-group-item.svelte.d.ts +4 -0
  788. package/dist/bits/toggle-group/components/toggle-group.svelte +72 -0
  789. package/dist/bits/toggle-group/components/toggle-group.svelte.d.ts +4 -0
  790. package/dist/bits/toggle-group/exports.d.ts +3 -0
  791. package/dist/bits/toggle-group/exports.js +2 -0
  792. package/dist/bits/toggle-group/index.d.ts +1 -0
  793. package/dist/bits/toggle-group/index.js +1 -0
  794. package/dist/bits/toggle-group/toggle-group.svelte.d.ts +95 -0
  795. package/dist/bits/toggle-group/toggle-group.svelte.js +161 -0
  796. package/dist/bits/toggle-group/types.d.ts +61 -0
  797. package/dist/bits/toggle-group/types.js +1 -0
  798. package/dist/bits/toolbar/components/toolbar-button.svelte +37 -0
  799. package/dist/bits/toolbar/components/toolbar-button.svelte.d.ts +4 -0
  800. package/dist/bits/toolbar/components/toolbar-group-item.svelte +39 -0
  801. package/dist/bits/toolbar/components/toolbar-group-item.svelte.d.ts +3 -0
  802. package/dist/bits/toolbar/components/toolbar-group.svelte +66 -0
  803. package/dist/bits/toolbar/components/toolbar-group.svelte.d.ts +4 -0
  804. package/dist/bits/toolbar/components/toolbar-link.svelte +35 -0
  805. package/dist/bits/toolbar/components/toolbar-link.svelte.d.ts +4 -0
  806. package/dist/bits/toolbar/components/toolbar.svelte +38 -0
  807. package/dist/bits/toolbar/components/toolbar.svelte.d.ts +4 -0
  808. package/dist/bits/toolbar/exports.d.ts +6 -0
  809. package/dist/bits/toolbar/exports.js +5 -0
  810. package/dist/bits/toolbar/index.d.ts +1 -0
  811. package/dist/bits/toolbar/index.js +1 -0
  812. package/dist/bits/toolbar/toolbar.svelte.d.ts +146 -0
  813. package/dist/bits/toolbar/toolbar.svelte.js +264 -0
  814. package/dist/bits/toolbar/types.d.ts +34 -0
  815. package/dist/bits/toolbar/types.js +1 -0
  816. package/dist/bits/tooltip/components/tooltip-arrow.svelte +8 -0
  817. package/dist/bits/tooltip/components/tooltip-arrow.svelte.d.ts +3 -0
  818. package/dist/bits/tooltip/components/tooltip-content-static.svelte +98 -0
  819. package/dist/bits/tooltip/components/tooltip-content-static.svelte.d.ts +4 -0
  820. package/dist/bits/tooltip/components/tooltip-content.svelte +135 -0
  821. package/dist/bits/tooltip/components/tooltip-content.svelte.d.ts +4 -0
  822. package/dist/bits/tooltip/components/tooltip-provider.svelte +26 -0
  823. package/dist/bits/tooltip/components/tooltip-provider.svelte.d.ts +3 -0
  824. package/dist/bits/tooltip/components/tooltip-trigger.svelte +47 -0
  825. package/dist/bits/tooltip/components/tooltip-trigger.svelte.d.ts +18 -0
  826. package/dist/bits/tooltip/components/tooltip.svelte +56 -0
  827. package/dist/bits/tooltip/components/tooltip.svelte.d.ts +18 -0
  828. package/dist/bits/tooltip/exports.d.ts +10 -0
  829. package/dist/bits/tooltip/exports.js +8 -0
  830. package/dist/bits/tooltip/index.d.ts +1 -0
  831. package/dist/bits/tooltip/index.js +1 -0
  832. package/dist/bits/tooltip/tooltip.svelte.d.ts +172 -0
  833. package/dist/bits/tooltip/tooltip.svelte.js +681 -0
  834. package/dist/bits/tooltip/types.d.ts +153 -0
  835. package/dist/bits/tooltip/types.js +1 -0
  836. package/dist/bits/tooltip/utils.d.ts +1 -0
  837. package/dist/bits/tooltip/utils.js +1 -0
  838. package/dist/bits/utilities/arrow/arrow.svelte +30 -0
  839. package/dist/bits/utilities/arrow/arrow.svelte.d.ts +4 -0
  840. package/dist/bits/utilities/arrow/index.d.ts +2 -0
  841. package/dist/bits/utilities/arrow/index.js +1 -0
  842. package/dist/bits/utilities/arrow/types.d.ts +17 -0
  843. package/dist/bits/utilities/arrow/types.js +1 -0
  844. package/dist/bits/utilities/config/bits-config.d.ts +44 -0
  845. package/dist/bits/utilities/config/bits-config.js +92 -0
  846. package/dist/bits/utilities/config/components/bits-config.svelte +14 -0
  847. package/dist/bits/utilities/config/components/bits-config.svelte.d.ts +4 -0
  848. package/dist/bits/utilities/config/exports.d.ts +2 -0
  849. package/dist/bits/utilities/config/exports.js +2 -0
  850. package/dist/bits/utilities/config/index.d.ts +1 -0
  851. package/dist/bits/utilities/config/index.js +1 -0
  852. package/dist/bits/utilities/config/prop-resolvers.d.ts +13 -0
  853. package/dist/bits/utilities/config/prop-resolvers.js +37 -0
  854. package/dist/bits/utilities/config/types.d.ts +13 -0
  855. package/dist/bits/utilities/config/types.js +1 -0
  856. package/dist/bits/utilities/dismissible-layer/dismissible-layer.svelte +29 -0
  857. package/dist/bits/utilities/dismissible-layer/dismissible-layer.svelte.d.ts +4 -0
  858. package/dist/bits/utilities/dismissible-layer/index.d.ts +2 -0
  859. package/dist/bits/utilities/dismissible-layer/index.js +1 -0
  860. package/dist/bits/utilities/dismissible-layer/types.d.ts +49 -0
  861. package/dist/bits/utilities/dismissible-layer/types.js +1 -0
  862. package/dist/bits/utilities/dismissible-layer/use-dismissable-layer.svelte.d.ts +20 -0
  863. package/dist/bits/utilities/dismissible-layer/use-dismissable-layer.svelte.js +249 -0
  864. package/dist/bits/utilities/escape-layer/escape-layer.svelte +23 -0
  865. package/dist/bits/utilities/escape-layer/escape-layer.svelte.d.ts +4 -0
  866. package/dist/bits/utilities/escape-layer/index.d.ts +2 -0
  867. package/dist/bits/utilities/escape-layer/index.js +1 -0
  868. package/dist/bits/utilities/escape-layer/types.d.ts +29 -0
  869. package/dist/bits/utilities/escape-layer/types.js +1 -0
  870. package/dist/bits/utilities/escape-layer/use-escape-layer.svelte.d.ts +13 -0
  871. package/dist/bits/utilities/escape-layer/use-escape-layer.svelte.js +55 -0
  872. package/dist/bits/utilities/floating-layer/components/floating-layer-anchor.svelte +19 -0
  873. package/dist/bits/utilities/floating-layer/components/floating-layer-anchor.svelte.d.ts +4 -0
  874. package/dist/bits/utilities/floating-layer/components/floating-layer-arrow.svelte +20 -0
  875. package/dist/bits/utilities/floating-layer/components/floating-layer-arrow.svelte.d.ts +4 -0
  876. package/dist/bits/utilities/floating-layer/components/floating-layer-content-static.svelte +19 -0
  877. package/dist/bits/utilities/floating-layer/components/floating-layer-content-static.svelte.d.ts +13 -0
  878. package/dist/bits/utilities/floating-layer/components/floating-layer-content.svelte +65 -0
  879. package/dist/bits/utilities/floating-layer/components/floating-layer-content.svelte.d.ts +4 -0
  880. package/dist/bits/utilities/floating-layer/components/floating-layer.svelte +10 -0
  881. package/dist/bits/utilities/floating-layer/components/floating-layer.svelte.d.ts +8 -0
  882. package/dist/bits/utilities/floating-layer/components/index.d.ts +6 -0
  883. package/dist/bits/utilities/floating-layer/components/index.js +5 -0
  884. package/dist/bits/utilities/floating-layer/index.d.ts +1 -0
  885. package/dist/bits/utilities/floating-layer/index.js +1 -0
  886. package/dist/bits/utilities/floating-layer/types.d.ts +134 -0
  887. package/dist/bits/utilities/floating-layer/types.js +1 -0
  888. package/dist/bits/utilities/floating-layer/use-floating-layer.svelte.d.ts +962 -0
  889. package/dist/bits/utilities/floating-layer/use-floating-layer.svelte.js +317 -0
  890. package/dist/bits/utilities/focus-scope/focus-scope-manager.d.ts +15 -0
  891. package/dist/bits/utilities/focus-scope/focus-scope-manager.js +55 -0
  892. package/dist/bits/utilities/focus-scope/focus-scope.svelte +27 -0
  893. package/dist/bits/utilities/focus-scope/focus-scope.svelte.d.ts +5 -0
  894. package/dist/bits/utilities/focus-scope/focus-scope.svelte.js +212 -0
  895. package/dist/bits/utilities/focus-scope/index.d.ts +2 -0
  896. package/dist/bits/utilities/focus-scope/index.js +1 -0
  897. package/dist/bits/utilities/focus-scope/types.d.ts +39 -0
  898. package/dist/bits/utilities/focus-scope/types.js +1 -0
  899. package/dist/bits/utilities/hidden-input.svelte +25 -0
  900. package/dist/bits/utilities/hidden-input.svelte.d.ts +4 -0
  901. package/dist/bits/utilities/index.d.ts +1 -0
  902. package/dist/bits/utilities/index.js +1 -0
  903. package/dist/bits/utilities/is-using-keyboard/is-using-keyboard.svelte.d.ts +13 -0
  904. package/dist/bits/utilities/is-using-keyboard/is-using-keyboard.svelte.js +51 -0
  905. package/dist/bits/utilities/mounted.svelte +18 -0
  906. package/dist/bits/utilities/mounted.svelte.d.ts +7 -0
  907. package/dist/bits/utilities/popper-layer/index.d.ts +2 -0
  908. package/dist/bits/utilities/popper-layer/index.js +1 -0
  909. package/dist/bits/utilities/popper-layer/popper-content.svelte +18 -0
  910. package/dist/bits/utilities/popper-layer/popper-content.svelte.d.ts +7 -0
  911. package/dist/bits/utilities/popper-layer/popper-layer-force-mount.svelte +85 -0
  912. package/dist/bits/utilities/popper-layer/popper-layer-force-mount.svelte.d.ts +7 -0
  913. package/dist/bits/utilities/popper-layer/popper-layer-inner.svelte +139 -0
  914. package/dist/bits/utilities/popper-layer/popper-layer-inner.svelte.d.ts +8 -0
  915. package/dist/bits/utilities/popper-layer/popper-layer.svelte +88 -0
  916. package/dist/bits/utilities/popper-layer/popper-layer.svelte.d.ts +4 -0
  917. package/dist/bits/utilities/popper-layer/types.d.ts +43 -0
  918. package/dist/bits/utilities/popper-layer/types.js +1 -0
  919. package/dist/bits/utilities/portal/index.d.ts +2 -0
  920. package/dist/bits/utilities/portal/index.js +1 -0
  921. package/dist/bits/utilities/portal/portal-consumer.svelte +9 -0
  922. package/dist/bits/utilities/portal/portal-consumer.svelte.d.ts +7 -0
  923. package/dist/bits/utilities/portal/portal.svelte +70 -0
  924. package/dist/bits/utilities/portal/portal.svelte.d.ts +4 -0
  925. package/dist/bits/utilities/portal/types.d.ts +20 -0
  926. package/dist/bits/utilities/portal/types.js +1 -0
  927. package/dist/bits/utilities/presence-layer/index.d.ts +2 -0
  928. package/dist/bits/utilities/presence-layer/index.js +1 -0
  929. package/dist/bits/utilities/presence-layer/presence-layer.svelte +19 -0
  930. package/dist/bits/utilities/presence-layer/presence-layer.svelte.d.ts +4 -0
  931. package/dist/bits/utilities/presence-layer/presence.svelte.d.ts +15 -0
  932. package/dist/bits/utilities/presence-layer/presence.svelte.js +61 -0
  933. package/dist/bits/utilities/presence-layer/types.d.ts +22 -0
  934. package/dist/bits/utilities/presence-layer/types.js +1 -0
  935. package/dist/bits/utilities/scroll-lock/index.d.ts +18 -0
  936. package/dist/bits/utilities/scroll-lock/index.js +1 -0
  937. package/dist/bits/utilities/scroll-lock/scroll-lock.svelte +10 -0
  938. package/dist/bits/utilities/scroll-lock/scroll-lock.svelte.d.ts +4 -0
  939. package/dist/bits/utilities/text-selection-layer/index.d.ts +2 -0
  940. package/dist/bits/utilities/text-selection-layer/index.js +1 -0
  941. package/dist/bits/utilities/text-selection-layer/text-selection-layer.svelte +26 -0
  942. package/dist/bits/utilities/text-selection-layer/text-selection-layer.svelte.d.ts +4 -0
  943. package/dist/bits/utilities/text-selection-layer/types.d.ts +33 -0
  944. package/dist/bits/utilities/text-selection-layer/types.js +1 -0
  945. package/dist/bits/utilities/text-selection-layer/use-text-selection-layer.svelte.d.ts +14 -0
  946. package/dist/bits/utilities/text-selection-layer/use-text-selection-layer.svelte.js +94 -0
  947. package/dist/bits/utilities/visually-hidden/index.d.ts +2 -0
  948. package/dist/bits/utilities/visually-hidden/index.js +1 -0
  949. package/dist/bits/utilities/visually-hidden/types.d.ts +3 -0
  950. package/dist/bits/utilities/visually-hidden/types.js +1 -0
  951. package/dist/bits/utilities/visually-hidden/visually-hidden.svelte +31 -0
  952. package/dist/bits/utilities/visually-hidden/visually-hidden.svelte.d.ts +4 -0
  953. package/dist/index.d.ts +4 -0
  954. package/dist/index.js +3 -0
  955. package/dist/internal/animations-complete.d.ts +12 -0
  956. package/dist/internal/animations-complete.js +102 -0
  957. package/dist/internal/arrays.d.ts +95 -0
  958. package/dist/internal/arrays.js +234 -0
  959. package/dist/internal/attrs.d.ts +33 -0
  960. package/dist/internal/attrs.js +58 -0
  961. package/dist/internal/body-scroll-lock.svelte.d.ts +10 -0
  962. package/dist/internal/body-scroll-lock.svelte.js +196 -0
  963. package/dist/internal/box-auto-reset.svelte.d.ts +14 -0
  964. package/dist/internal/box-auto-reset.svelte.js +36 -0
  965. package/dist/internal/clamp.d.ts +4 -0
  966. package/dist/internal/clamp.js +6 -0
  967. package/dist/internal/create-id.d.ts +8 -0
  968. package/dist/internal/create-id.js +5 -0
  969. package/dist/internal/css-escape.d.ts +7 -0
  970. package/dist/internal/css-escape.js +59 -0
  971. package/dist/internal/data-typeahead.svelte.d.ts +15 -0
  972. package/dist/internal/data-typeahead.svelte.js +33 -0
  973. package/dist/internal/date-time/announcer.d.ts +7 -0
  974. package/dist/internal/date-time/announcer.js +82 -0
  975. package/dist/internal/date-time/calendar-helpers.svelte.d.ts +208 -0
  976. package/dist/internal/date-time/calendar-helpers.svelte.js +567 -0
  977. package/dist/internal/date-time/field/helpers.d.ts +86 -0
  978. package/dist/internal/date-time/field/helpers.js +387 -0
  979. package/dist/internal/date-time/field/parts.d.ts +8 -0
  980. package/dist/internal/date-time/field/parts.js +17 -0
  981. package/dist/internal/date-time/field/segments.d.ts +60 -0
  982. package/dist/internal/date-time/field/segments.js +193 -0
  983. package/dist/internal/date-time/field/time-helpers.d.ts +83 -0
  984. package/dist/internal/date-time/field/time-helpers.js +301 -0
  985. package/dist/internal/date-time/field/types.d.ts +25 -0
  986. package/dist/internal/date-time/field/types.js +1 -0
  987. package/dist/internal/date-time/formatter.d.ts +41 -0
  988. package/dist/internal/date-time/formatter.js +166 -0
  989. package/dist/internal/date-time/placeholders.d.ts +8 -0
  990. package/dist/internal/date-time/placeholders.js +129 -0
  991. package/dist/internal/date-time/utils.d.ts +76 -0
  992. package/dist/internal/date-time/utils.js +232 -0
  993. package/dist/internal/debounce.d.ts +4 -0
  994. package/dist/internal/debounce.js +19 -0
  995. package/dist/internal/dom-typeahead.svelte.d.ts +14 -0
  996. package/dist/internal/dom-typeahead.svelte.js +44 -0
  997. package/dist/internal/dom.d.ts +7 -0
  998. package/dist/internal/dom.js +20 -0
  999. package/dist/internal/elements.d.ts +2 -0
  1000. package/dist/internal/elements.js +6 -0
  1001. package/dist/internal/events.d.ts +15 -0
  1002. package/dist/internal/events.js +32 -0
  1003. package/dist/internal/floating-svelte/floating-utils.svelte.d.ts +7 -0
  1004. package/dist/internal/floating-svelte/floating-utils.svelte.js +24 -0
  1005. package/dist/internal/floating-svelte/types.d.ts +97 -0
  1006. package/dist/internal/floating-svelte/types.js +1 -0
  1007. package/dist/internal/floating-svelte/use-floating.svelte.d.ts +2 -0
  1008. package/dist/internal/floating-svelte/use-floating.svelte.js +192 -0
  1009. package/dist/internal/focus.d.ts +46 -0
  1010. package/dist/internal/focus.js +113 -0
  1011. package/dist/internal/get-directional-keys.d.ts +21 -0
  1012. package/dist/internal/get-directional-keys.js +37 -0
  1013. package/dist/internal/grace-area.svelte.d.ts +14 -0
  1014. package/dist/internal/grace-area.svelte.js +208 -0
  1015. package/dist/internal/is.d.ts +25 -0
  1016. package/dist/internal/is.js +62 -0
  1017. package/dist/internal/kbd-constants.d.ts +42 -0
  1018. package/dist/internal/kbd-constants.js +42 -0
  1019. package/dist/internal/kbd.d.ts +1 -0
  1020. package/dist/internal/kbd.js +1 -0
  1021. package/dist/internal/locale.d.ts +6 -0
  1022. package/dist/internal/locale.js +9 -0
  1023. package/dist/internal/math.d.ts +1 -0
  1024. package/dist/internal/math.js +15 -0
  1025. package/dist/internal/noop.d.ts +4 -0
  1026. package/dist/internal/noop.js +4 -0
  1027. package/dist/internal/presence-manager.svelte.d.ts +17 -0
  1028. package/dist/internal/presence-manager.svelte.js +75 -0
  1029. package/dist/internal/roving-focus-group.d.ts +44 -0
  1030. package/dist/internal/roving-focus-group.js +97 -0
  1031. package/dist/internal/safe-polygon.svelte.d.ts +19 -0
  1032. package/dist/internal/safe-polygon.svelte.js +315 -0
  1033. package/dist/internal/shared-state.svelte.d.ts +6 -0
  1034. package/dist/internal/shared-state.svelte.js +31 -0
  1035. package/dist/internal/should-enable-focus-trap.d.ts +4 -0
  1036. package/dist/internal/should-enable-focus-trap.js +5 -0
  1037. package/dist/internal/state-machine.d.ts +16 -0
  1038. package/dist/internal/state-machine.js +18 -0
  1039. package/dist/internal/svelte-resize-observer.svelte.d.ts +6 -0
  1040. package/dist/internal/svelte-resize-observer.svelte.js +25 -0
  1041. package/dist/internal/tabbable.d.ts +7 -0
  1042. package/dist/internal/tabbable.js +51 -0
  1043. package/dist/internal/timeout-fn.d.ts +7 -0
  1044. package/dist/internal/timeout-fn.js +29 -0
  1045. package/dist/internal/types.d.ts +94 -0
  1046. package/dist/internal/types.js +1 -0
  1047. package/dist/internal/use-arrow-navigation.d.ts +62 -0
  1048. package/dist/internal/use-arrow-navigation.js +76 -0
  1049. package/dist/internal/use-id.d.ts +4 -0
  1050. package/dist/internal/use-id.js +8 -0
  1051. package/dist/internal/warn.d.ts +1 -0
  1052. package/dist/internal/warn.js +15 -0
  1053. package/dist/shared/attributes.d.ts +40 -0
  1054. package/dist/shared/attributes.js +1 -0
  1055. package/dist/shared/css.d.ts +9 -0
  1056. package/dist/shared/date/types.d.ts +100 -0
  1057. package/dist/shared/date/types.js +1 -0
  1058. package/dist/shared/index.d.ts +38 -0
  1059. package/dist/shared/index.js +5 -0
  1060. package/dist/shared/types.d.ts +13 -0
  1061. package/dist/shared/types.js +1 -0
  1062. package/dist/types.d.ts +45 -0
  1063. package/dist/types.js +1 -0
  1064. package/package.json +68 -0
@@ -0,0 +1,1970 @@
1
+ import { type Box, type ReadableBox, DOMContext, type ReadableBoxedValues, type WritableBoxedValues } from "svelte-toolbelt";
2
+ import { Context } from "runed";
3
+ import type { BitsKeyboardEvent, OnChangeFn, RefAttachment, WithRefOpts } from "../../internal/types.js";
4
+ import type { Direction, Orientation, SliderThumbPositioning } from "../../shared/index.js";
5
+ import type { SliderLabelPosition } from "./types.js";
6
+ declare const sliderAttrs: import("../../internal/attrs.js").CreateBitsAttrsReturn<readonly ["root", "thumb", "range", "tick", "tick-label", "thumb-label"]>;
7
+ export declare const SliderRootContext: Context<SliderRoot>;
8
+ interface SliderBaseRootStateOpts extends WithRefOpts, ReadableBoxedValues<{
9
+ disabled: boolean;
10
+ orientation: Orientation;
11
+ min: number;
12
+ max: number;
13
+ step: number | number[];
14
+ dir: Direction;
15
+ autoSort: boolean;
16
+ thumbPositioning: SliderThumbPositioning;
17
+ trackPadding?: number;
18
+ }> {
19
+ }
20
+ declare abstract class SliderBaseRootState {
21
+ #private;
22
+ readonly opts: SliderBaseRootStateOpts;
23
+ readonly attachment: RefAttachment;
24
+ isActive: boolean;
25
+ readonly direction: "rl" | "lr" | "tb" | "bt";
26
+ readonly normalizedSteps: number[];
27
+ domContext: DOMContext;
28
+ constructor(opts: SliderBaseRootStateOpts);
29
+ isThumbActive(_index: number): boolean;
30
+ getAllThumbs: () => HTMLElement[];
31
+ getThumbScale: () => [number, number];
32
+ getPositionFromValue: (thumbValue: number) => number;
33
+ readonly props: {
34
+ readonly id: string;
35
+ readonly "data-orientation": Orientation;
36
+ readonly "data-disabled": "" | undefined;
37
+ readonly style: {
38
+ readonly touchAction: "pan-x" | "pan-y" | undefined;
39
+ };
40
+ };
41
+ }
42
+ interface SliderSingleRootStateOpts extends SliderBaseRootStateOpts, ReadableBoxedValues<{
43
+ onValueCommit: OnChangeFn<number>;
44
+ }>, WritableBoxedValues<{
45
+ value: number;
46
+ }> {
47
+ }
48
+ declare class SliderSingleRootState extends SliderBaseRootState {
49
+ readonly opts: SliderSingleRootStateOpts;
50
+ isMulti: false;
51
+ constructor(opts: SliderSingleRootStateOpts);
52
+ isTickValueSelected: (tickValue: number) => boolean;
53
+ applyPosition({ clientXY, start, end }: {
54
+ clientXY: number;
55
+ start: number;
56
+ end: number;
57
+ }): void;
58
+ updateValue: (newValue: number) => void;
59
+ handlePointerMove: (e: PointerEvent) => void;
60
+ handlePointerDown: (e: PointerEvent) => void;
61
+ handlePointerUp: () => void;
62
+ readonly thumbsPropsArr: {
63
+ readonly [sliderAttrs.thumb]: "";
64
+ readonly role: "slider";
65
+ readonly "aria-valuemin": number;
66
+ readonly "aria-valuemax": number;
67
+ readonly "aria-valuenow": number;
68
+ readonly "aria-disabled": "true" | "false";
69
+ readonly "aria-orientation": Orientation;
70
+ readonly "data-value": number;
71
+ readonly "data-orientation": Orientation;
72
+ readonly style: import("../../shared/index.js").StyleProperties;
73
+ }[];
74
+ readonly thumbsRenderArr: number[];
75
+ readonly ticksPropsArr: {
76
+ readonly [sliderAttrs.tick]: "";
77
+ readonly "data-disabled": "" | undefined;
78
+ readonly "data-orientation": Orientation;
79
+ readonly "data-bounded": "" | undefined;
80
+ readonly "data-value": number;
81
+ readonly "data-selected": "" | undefined;
82
+ readonly style: import("../../shared/index.js").StyleProperties;
83
+ }[];
84
+ readonly ticksRenderArr: number[];
85
+ readonly tickItemsArr: {
86
+ value: number;
87
+ index: number;
88
+ }[];
89
+ readonly thumbItemsArr: {
90
+ value: number;
91
+ index: number;
92
+ }[];
93
+ readonly snippetProps: {
94
+ readonly ticks: number[];
95
+ readonly thumbs: number[];
96
+ readonly tickItems: {
97
+ value: number;
98
+ index: number;
99
+ }[];
100
+ readonly thumbItems: {
101
+ value: number;
102
+ index: number;
103
+ }[];
104
+ };
105
+ }
106
+ interface SliderMultiRootStateOpts extends SliderBaseRootStateOpts, ReadableBoxedValues<{
107
+ onValueCommit: OnChangeFn<number[]>;
108
+ }>, WritableBoxedValues<{
109
+ value: number[];
110
+ }> {
111
+ }
112
+ declare class SliderMultiRootState extends SliderBaseRootState {
113
+ #private;
114
+ readonly opts: SliderMultiRootStateOpts;
115
+ isMulti: true;
116
+ activeThumb: {
117
+ node: HTMLElement;
118
+ idx: number;
119
+ } | null;
120
+ currentThumbIdx: number;
121
+ constructor(opts: SliderMultiRootStateOpts);
122
+ isTickValueSelected: (tickValue: number) => boolean;
123
+ isThumbActive(index: number): boolean;
124
+ applyPosition({ clientXY, activeThumbIdx, start, end, }: {
125
+ clientXY: number;
126
+ activeThumbIdx: number;
127
+ start: number;
128
+ end: number;
129
+ }): void;
130
+ handlePointerMove: (e: PointerEvent) => void;
131
+ handlePointerDown: (e: PointerEvent) => void;
132
+ handlePointerUp: () => void;
133
+ getAllThumbs: () => HTMLElement[];
134
+ updateValue: (thumbValue: number, idx: number) => void;
135
+ readonly thumbsPropsArr: {
136
+ readonly [sliderAttrs.thumb]: "";
137
+ readonly role: "slider";
138
+ readonly "aria-valuemin": number;
139
+ readonly "aria-valuemax": number;
140
+ readonly "aria-valuenow": number | undefined;
141
+ readonly "aria-disabled": "true" | "false";
142
+ readonly "aria-orientation": Orientation;
143
+ readonly "data-value": number | undefined;
144
+ readonly "data-orientation": Orientation;
145
+ readonly style: import("../../shared/index.js").StyleProperties;
146
+ }[];
147
+ readonly thumbsRenderArr: number[];
148
+ readonly ticksPropsArr: {
149
+ readonly [sliderAttrs.tick]: "";
150
+ readonly "data-disabled": "" | undefined;
151
+ readonly "data-orientation": Orientation;
152
+ readonly "data-bounded": "" | undefined;
153
+ readonly "data-value": number;
154
+ readonly style: import("../../shared/index.js").StyleProperties;
155
+ }[];
156
+ readonly ticksRenderArr: number[];
157
+ readonly tickItemsArr: {
158
+ value: number;
159
+ index: number;
160
+ }[];
161
+ readonly thumbItemsArr: {
162
+ value: number;
163
+ index: number;
164
+ }[];
165
+ readonly snippetProps: {
166
+ readonly ticks: number[];
167
+ readonly thumbs: number[];
168
+ readonly tickItems: {
169
+ value: number;
170
+ index: number;
171
+ }[];
172
+ readonly thumbItems: {
173
+ value: number;
174
+ index: number;
175
+ }[];
176
+ };
177
+ }
178
+ type SliderRoot = SliderSingleRootState | SliderMultiRootState;
179
+ interface SliderRootStateOpts extends Omit<SliderBaseRootStateOpts, "type"> {
180
+ type: "single" | "multiple";
181
+ value: Box<number> | Box<number[]>;
182
+ onValueCommit: ReadableBox<OnChangeFn<number>> | ReadableBox<OnChangeFn<number[]>>;
183
+ }
184
+ export declare class SliderRootState {
185
+ static create(opts: SliderRootStateOpts): SliderRoot;
186
+ }
187
+ interface SliderRangeStateOpts extends WithRefOpts {
188
+ }
189
+ export declare class SliderRangeState {
190
+ static create(opts: SliderRangeStateOpts): SliderRangeState;
191
+ readonly opts: SliderRangeStateOpts;
192
+ readonly root: SliderRoot;
193
+ readonly attachment: RefAttachment;
194
+ constructor(opts: SliderRangeStateOpts, root: SliderRoot);
195
+ readonly rangeStyles: {
196
+ accentColor?: import("csstype").Property.AccentColor | undefined;
197
+ alignContent?: import("csstype").Property.AlignContent | undefined;
198
+ alignItems?: import("csstype").Property.AlignItems | undefined;
199
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
200
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
201
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
202
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
203
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
204
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
205
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
206
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
207
+ animationName?: import("csstype").Property.AnimationName | undefined;
208
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
209
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<0 | (string & {})> | undefined;
210
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<0 | (string & {})> | undefined;
211
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
212
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
213
+ appearance?: import("csstype").Property.Appearance | undefined;
214
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
215
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
216
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
217
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
218
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
219
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
220
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
221
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
222
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
223
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<0 | (string & {})> | undefined;
224
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<0 | (string & {})> | undefined;
225
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
226
+ backgroundSize?: import("csstype").Property.BackgroundSize<0 | (string & {})> | undefined;
227
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
228
+ blockSize?: import("csstype").Property.BlockSize<0 | (string & {})> | undefined;
229
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
230
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
231
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
232
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<0 | (string & {})> | undefined;
233
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
234
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
235
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<0 | (string & {})> | undefined;
236
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
237
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<0 | (string & {})> | undefined;
238
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
239
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<0 | (string & {})> | undefined;
240
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<0 | (string & {})> | undefined;
241
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
242
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<0 | (string & {})> | undefined;
243
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
244
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<0 | (string & {})> | undefined;
245
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<0 | (string & {})> | undefined;
246
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<0 | (string & {})> | undefined;
247
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
248
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
249
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
250
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<0 | (string & {})> | undefined;
251
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
252
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
253
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
254
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<0 | (string & {})> | undefined;
255
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
256
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
257
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<0 | (string & {})> | undefined;
258
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
259
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<0 | (string & {})> | undefined;
260
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
261
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
262
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<0 | (string & {})> | undefined;
263
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
264
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
265
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<0 | (string & {})> | undefined;
266
+ borderSpacing?: import("csstype").Property.BorderSpacing<0 | (string & {})> | undefined;
267
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<0 | (string & {})> | undefined;
268
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<0 | (string & {})> | undefined;
269
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
270
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<0 | (string & {})> | undefined;
271
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<0 | (string & {})> | undefined;
272
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
273
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<0 | (string & {})> | undefined;
274
+ bottom?: import("csstype").Property.Bottom<0 | (string & {})> | undefined;
275
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
276
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
277
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
278
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
279
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
280
+ breakInside?: import("csstype").Property.BreakInside | undefined;
281
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
282
+ caretColor?: import("csstype").Property.CaretColor | undefined;
283
+ caretShape?: import("csstype").Property.CaretShape | undefined;
284
+ clear?: import("csstype").Property.Clear | undefined;
285
+ clipPath?: import("csstype").Property.ClipPath | undefined;
286
+ color?: import("csstype").Property.Color | undefined;
287
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
288
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
289
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
290
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
291
+ columnGap?: import("csstype").Property.ColumnGap<0 | (string & {})> | undefined;
292
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
293
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
294
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<0 | (string & {})> | undefined;
295
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
296
+ columnWidth?: import("csstype").Property.ColumnWidth<0 | (string & {})> | undefined;
297
+ contain?: import("csstype").Property.Contain | undefined;
298
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<0 | (string & {})> | undefined;
299
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<0 | (string & {})> | undefined;
300
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<0 | (string & {})> | undefined;
301
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<0 | (string & {})> | undefined;
302
+ containerName?: import("csstype").Property.ContainerName | undefined;
303
+ containerType?: import("csstype").Property.ContainerType | undefined;
304
+ content?: import("csstype").Property.Content | undefined;
305
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
306
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
307
+ counterReset?: import("csstype").Property.CounterReset | undefined;
308
+ counterSet?: import("csstype").Property.CounterSet | undefined;
309
+ cursor?: import("csstype").Property.Cursor | undefined;
310
+ direction?: import("csstype").Property.Direction | undefined;
311
+ display?: import("csstype").Property.Display | undefined;
312
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
313
+ filter?: import("csstype").Property.Filter | undefined;
314
+ flexBasis?: import("csstype").Property.FlexBasis<0 | (string & {})> | undefined;
315
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
316
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
317
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
318
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
319
+ float?: import("csstype").Property.Float | undefined;
320
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
321
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
322
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
323
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
324
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
325
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
326
+ fontSize?: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
327
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
328
+ fontSmooth?: import("csstype").Property.FontSmooth<0 | (string & {})> | undefined;
329
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
330
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
331
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
332
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
333
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
334
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
335
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
336
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
337
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
338
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
339
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
340
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
341
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
342
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
343
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
344
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
345
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
346
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
347
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<0 | (string & {})> | undefined;
348
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
349
+ gridAutoRows?: import("csstype").Property.GridAutoRows<0 | (string & {})> | undefined;
350
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
351
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
352
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
353
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
354
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
355
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<0 | (string & {})> | undefined;
356
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<0 | (string & {})> | undefined;
357
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
358
+ height?: import("csstype").Property.Height<0 | (string & {})> | undefined;
359
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
360
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
361
+ hyphens?: import("csstype").Property.Hyphens | undefined;
362
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
363
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
364
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
365
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
366
+ inlineSize?: import("csstype").Property.InlineSize<0 | (string & {})> | undefined;
367
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
368
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<0 | (string & {})> | undefined;
369
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<0 | (string & {})> | undefined;
370
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<0 | (string & {})> | undefined;
371
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<0 | (string & {})> | undefined;
372
+ isolation?: import("csstype").Property.Isolation | undefined;
373
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
374
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
375
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
376
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
377
+ left?: import("csstype").Property.Left<0 | (string & {})> | undefined;
378
+ letterSpacing?: import("csstype").Property.LetterSpacing<0 | (string & {})> | undefined;
379
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
380
+ lineHeight?: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
381
+ lineHeightStep?: import("csstype").Property.LineHeightStep<0 | (string & {})> | undefined;
382
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
383
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
384
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
385
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<0 | (string & {})> | undefined;
386
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<0 | (string & {})> | undefined;
387
+ marginBottom?: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
388
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<0 | (string & {})> | undefined;
389
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<0 | (string & {})> | undefined;
390
+ marginLeft?: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
391
+ marginRight?: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
392
+ marginTop?: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
393
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
394
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
395
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<0 | (string & {})> | undefined;
396
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
397
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
398
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
399
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<0 | (string & {})> | undefined;
400
+ maskClip?: import("csstype").Property.MaskClip | undefined;
401
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
402
+ maskImage?: import("csstype").Property.MaskImage | undefined;
403
+ maskMode?: import("csstype").Property.MaskMode | undefined;
404
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
405
+ maskPosition?: import("csstype").Property.MaskPosition<0 | (string & {})> | undefined;
406
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
407
+ maskSize?: import("csstype").Property.MaskSize<0 | (string & {})> | undefined;
408
+ maskType?: import("csstype").Property.MaskType | undefined;
409
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
410
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
411
+ mathShift?: import("csstype").Property.MathShift | undefined;
412
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
413
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<0 | (string & {})> | undefined;
414
+ maxHeight?: import("csstype").Property.MaxHeight<0 | (string & {})> | undefined;
415
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<0 | (string & {})> | undefined;
416
+ maxLines?: import("csstype").Property.MaxLines | undefined;
417
+ maxWidth?: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
418
+ minBlockSize?: import("csstype").Property.MinBlockSize<0 | (string & {})> | undefined;
419
+ minHeight?: import("csstype").Property.MinHeight<0 | (string & {})> | undefined;
420
+ minInlineSize?: import("csstype").Property.MinInlineSize<0 | (string & {})> | undefined;
421
+ minWidth?: import("csstype").Property.MinWidth<0 | (string & {})> | undefined;
422
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
423
+ motionDistance?: import("csstype").Property.OffsetDistance<0 | (string & {})> | undefined;
424
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
425
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
426
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
427
+ objectPosition?: import("csstype").Property.ObjectPosition<0 | (string & {})> | undefined;
428
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<0 | (string & {})> | undefined;
429
+ offsetDistance?: import("csstype").Property.OffsetDistance<0 | (string & {})> | undefined;
430
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
431
+ offsetPosition?: import("csstype").Property.OffsetPosition<0 | (string & {})> | undefined;
432
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
433
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
434
+ opacity?: import("csstype").Property.Opacity | undefined;
435
+ order?: import("csstype").Property.Order | undefined;
436
+ orphans?: import("csstype").Property.Orphans | undefined;
437
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
438
+ outlineOffset?: import("csstype").Property.OutlineOffset<0 | (string & {})> | undefined;
439
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
440
+ outlineWidth?: import("csstype").Property.OutlineWidth<0 | (string & {})> | undefined;
441
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
442
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
443
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
444
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<0 | (string & {})> | undefined;
445
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
446
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
447
+ overflowX?: import("csstype").Property.OverflowX | undefined;
448
+ overflowY?: import("csstype").Property.OverflowY | undefined;
449
+ overlay?: import("csstype").Property.Overlay | undefined;
450
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
451
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
452
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
453
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
454
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<0 | (string & {})> | undefined;
455
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<0 | (string & {})> | undefined;
456
+ paddingBottom?: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
457
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<0 | (string & {})> | undefined;
458
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<0 | (string & {})> | undefined;
459
+ paddingLeft?: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
460
+ paddingRight?: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
461
+ paddingTop?: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
462
+ page?: import("csstype").Property.Page | undefined;
463
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
464
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
465
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
466
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
467
+ perspective?: import("csstype").Property.Perspective<0 | (string & {})> | undefined;
468
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<0 | (string & {})> | undefined;
469
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
470
+ position: string;
471
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
472
+ quotes?: import("csstype").Property.Quotes | undefined;
473
+ resize?: import("csstype").Property.Resize | undefined;
474
+ right?: import("csstype").Property.Right<0 | (string & {})> | undefined;
475
+ rotate?: import("csstype").Property.Rotate | undefined;
476
+ rowGap?: import("csstype").Property.RowGap<0 | (string & {})> | undefined;
477
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
478
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
479
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
480
+ scale?: import("csstype").Property.Scale | undefined;
481
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
482
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<0 | (string & {})> | undefined;
483
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<0 | (string & {})> | undefined;
484
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<0 | (string & {})> | undefined;
485
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<0 | (string & {})> | undefined;
486
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<0 | (string & {})> | undefined;
487
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<0 | (string & {})> | undefined;
488
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<0 | (string & {})> | undefined;
489
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<0 | (string & {})> | undefined;
490
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<0 | (string & {})> | undefined;
491
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<0 | (string & {})> | undefined;
492
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<0 | (string & {})> | undefined;
493
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<0 | (string & {})> | undefined;
494
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<0 | (string & {})> | undefined;
495
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<0 | (string & {})> | undefined;
496
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<0 | (string & {})> | undefined;
497
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<0 | (string & {})> | undefined;
498
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
499
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<0 | (string & {})> | undefined;
500
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<0 | (string & {})> | undefined;
501
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<0 | (string & {})> | undefined;
502
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<0 | (string & {})> | undefined;
503
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
504
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
505
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
506
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
507
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
508
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
509
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
510
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
511
+ shapeMargin?: import("csstype").Property.ShapeMargin<0 | (string & {})> | undefined;
512
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
513
+ tabSize?: import("csstype").Property.TabSize<0 | (string & {})> | undefined;
514
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
515
+ textAlign?: import("csstype").Property.TextAlign | undefined;
516
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
517
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
518
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
519
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
520
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
521
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
522
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
523
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<0 | (string & {})> | undefined;
524
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
525
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
526
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
527
+ textIndent?: import("csstype").Property.TextIndent<0 | (string & {})> | undefined;
528
+ textJustify?: import("csstype").Property.TextJustify | undefined;
529
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
530
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
531
+ textRendering?: import("csstype").Property.TextRendering | undefined;
532
+ textShadow?: import("csstype").Property.TextShadow | undefined;
533
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
534
+ textTransform?: import("csstype").Property.TextTransform | undefined;
535
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<0 | (string & {})> | undefined;
536
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
537
+ textWrap?: import("csstype").Property.TextWrap | undefined;
538
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
539
+ top?: import("csstype").Property.Top<0 | (string & {})> | undefined;
540
+ touchAction?: import("csstype").Property.TouchAction | undefined;
541
+ transform?: import("csstype").Property.Transform | undefined;
542
+ transformBox?: import("csstype").Property.TransformBox | undefined;
543
+ transformOrigin?: import("csstype").Property.TransformOrigin<0 | (string & {})> | undefined;
544
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
545
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
546
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
547
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
548
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
549
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
550
+ translate?: import("csstype").Property.Translate<0 | (string & {})> | undefined;
551
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
552
+ userSelect?: import("csstype").Property.UserSelect | undefined;
553
+ verticalAlign?: import("csstype").Property.VerticalAlign<0 | (string & {})> | undefined;
554
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
555
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<0 | (string & {})> | undefined;
556
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
557
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
558
+ visibility?: import("csstype").Property.Visibility | undefined;
559
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
560
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
561
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
562
+ widows?: import("csstype").Property.Widows | undefined;
563
+ width?: import("csstype").Property.Width<0 | (string & {})> | undefined;
564
+ willChange?: import("csstype").Property.WillChange | undefined;
565
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
566
+ wordSpacing?: import("csstype").Property.WordSpacing<0 | (string & {})> | undefined;
567
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
568
+ writingMode?: import("csstype").Property.WritingMode | undefined;
569
+ zIndex?: import("csstype").Property.ZIndex | undefined;
570
+ zoom?: import("csstype").Property.Zoom | undefined;
571
+ all?: import("csstype").Property.All | undefined;
572
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
573
+ animationRange?: import("csstype").Property.AnimationRange<0 | (string & {})> | undefined;
574
+ background?: import("csstype").Property.Background<0 | (string & {})> | undefined;
575
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<0 | (string & {})> | undefined;
576
+ border?: import("csstype").Property.Border<0 | (string & {})> | undefined;
577
+ borderBlock?: import("csstype").Property.BorderBlock<0 | (string & {})> | undefined;
578
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<0 | (string & {})> | undefined;
579
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<0 | (string & {})> | undefined;
580
+ borderBottom?: import("csstype").Property.BorderBottom<0 | (string & {})> | undefined;
581
+ borderColor?: import("csstype").Property.BorderColor | undefined;
582
+ borderImage?: import("csstype").Property.BorderImage | undefined;
583
+ borderInline?: import("csstype").Property.BorderInline<0 | (string & {})> | undefined;
584
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<0 | (string & {})> | undefined;
585
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<0 | (string & {})> | undefined;
586
+ borderLeft?: import("csstype").Property.BorderLeft<0 | (string & {})> | undefined;
587
+ borderRadius?: import("csstype").Property.BorderRadius<0 | (string & {})> | undefined;
588
+ borderRight?: import("csstype").Property.BorderRight<0 | (string & {})> | undefined;
589
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
590
+ borderTop?: import("csstype").Property.BorderTop<0 | (string & {})> | undefined;
591
+ borderWidth?: import("csstype").Property.BorderWidth<0 | (string & {})> | undefined;
592
+ caret?: import("csstype").Property.Caret | undefined;
593
+ columnRule?: import("csstype").Property.ColumnRule<0 | (string & {})> | undefined;
594
+ columns?: import("csstype").Property.Columns<0 | (string & {})> | undefined;
595
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<0 | (string & {})> | undefined;
596
+ container?: import("csstype").Property.Container | undefined;
597
+ flex?: import("csstype").Property.Flex<0 | (string & {})> | undefined;
598
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
599
+ font?: import("csstype").Property.Font | undefined;
600
+ gap?: import("csstype").Property.Gap<0 | (string & {})> | undefined;
601
+ grid?: import("csstype").Property.Grid | undefined;
602
+ gridArea?: import("csstype").Property.GridArea | undefined;
603
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
604
+ gridRow?: import("csstype").Property.GridRow | undefined;
605
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
606
+ inset?: import("csstype").Property.Inset<0 | (string & {})> | undefined;
607
+ insetBlock?: import("csstype").Property.InsetBlock<0 | (string & {})> | undefined;
608
+ insetInline?: import("csstype").Property.InsetInline<0 | (string & {})> | undefined;
609
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
610
+ listStyle?: import("csstype").Property.ListStyle | undefined;
611
+ margin?: import("csstype").Property.Margin<0 | (string & {})> | undefined;
612
+ marginBlock?: import("csstype").Property.MarginBlock<0 | (string & {})> | undefined;
613
+ marginInline?: import("csstype").Property.MarginInline<0 | (string & {})> | undefined;
614
+ mask?: import("csstype").Property.Mask<0 | (string & {})> | undefined;
615
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
616
+ motion?: import("csstype").Property.Offset<0 | (string & {})> | undefined;
617
+ offset?: import("csstype").Property.Offset<0 | (string & {})> | undefined;
618
+ outline?: import("csstype").Property.Outline<0 | (string & {})> | undefined;
619
+ overflow?: import("csstype").Property.Overflow | undefined;
620
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
621
+ padding?: import("csstype").Property.Padding<0 | (string & {})> | undefined;
622
+ paddingBlock?: import("csstype").Property.PaddingBlock<0 | (string & {})> | undefined;
623
+ paddingInline?: import("csstype").Property.PaddingInline<0 | (string & {})> | undefined;
624
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
625
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
626
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
627
+ scrollMargin?: import("csstype").Property.ScrollMargin<0 | (string & {})> | undefined;
628
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<0 | (string & {})> | undefined;
629
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<0 | (string & {})> | undefined;
630
+ scrollPadding?: import("csstype").Property.ScrollPadding<0 | (string & {})> | undefined;
631
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<0 | (string & {})> | undefined;
632
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<0 | (string & {})> | undefined;
633
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<0 | (string & {})> | undefined;
634
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
635
+ textDecoration?: import("csstype").Property.TextDecoration<0 | (string & {})> | undefined;
636
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
637
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
638
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
639
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
640
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
641
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
642
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
643
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
644
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
645
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
646
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
647
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
648
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
649
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
650
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
651
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
652
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<0 | (string & {})> | undefined;
653
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
654
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
655
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
656
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
657
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
658
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
659
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
660
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
661
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
662
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
663
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<0 | (string & {})> | undefined;
664
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<0 | (string & {})> | undefined;
665
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
666
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
667
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
668
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
669
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
670
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<0 | (string & {})> | undefined;
671
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<0 | (string & {})> | undefined;
672
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
673
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<0 | (string & {})> | undefined;
674
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<0 | (string & {})> | undefined;
675
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<0 | (string & {})> | undefined;
676
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<0 | (string & {})> | undefined;
677
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<0 | (string & {})> | undefined;
678
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<0 | (string & {})> | undefined;
679
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<0 | (string & {})> | undefined;
680
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
681
+ MozTabSize?: import("csstype").Property.TabSize<0 | (string & {})> | undefined;
682
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
683
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
684
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
685
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
686
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
687
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
688
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
689
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
690
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
691
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
692
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
693
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
694
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
695
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
696
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
697
+ msFilter?: import("csstype").Property.MsFilter | undefined;
698
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
699
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
700
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
701
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
702
+ msGridColumns?: import("csstype").Property.MsGridColumns<0 | (string & {})> | undefined;
703
+ msGridRows?: import("csstype").Property.MsGridRows<0 | (string & {})> | undefined;
704
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
705
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
706
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
707
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<0 | (string & {})> | undefined;
708
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
709
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
710
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
711
+ msOrder?: import("csstype").Property.Order | undefined;
712
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
713
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
714
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
715
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
716
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<0 | (string & {})> | undefined;
717
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<0 | (string & {})> | undefined;
718
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<0 | (string & {})> | undefined;
719
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<0 | (string & {})> | undefined;
720
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
721
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
722
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
723
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
724
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
725
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
726
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
727
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
728
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
729
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
730
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
731
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
732
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
733
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
734
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
735
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
736
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
737
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
738
+ msTransform?: import("csstype").Property.Transform | undefined;
739
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<0 | (string & {})> | undefined;
740
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
741
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
742
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
743
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
744
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
745
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
746
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
747
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<0 | (string & {})> | undefined;
748
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
749
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
750
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
751
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
752
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
753
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
754
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
755
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
756
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
757
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
758
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
759
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
760
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
761
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
762
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
763
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
764
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
765
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
766
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<0 | (string & {})> | undefined;
767
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
768
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
769
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<0 | (string & {})> | undefined;
770
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<0 | (string & {})> | undefined;
771
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<0 | (string & {})> | undefined;
772
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
773
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<0 | (string & {})> | undefined;
774
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<0 | (string & {})> | undefined;
775
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
776
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<0 | (string & {})> | undefined;
777
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
778
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
779
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
780
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
781
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
782
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
783
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
784
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<0 | (string & {})> | undefined;
785
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
786
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<0 | (string & {})> | undefined;
787
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
788
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<0 | (string & {})> | undefined;
789
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
790
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
791
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
792
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
793
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
794
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
795
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<0 | (string & {})> | undefined;
796
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
797
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
798
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
799
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
800
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
801
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
802
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
803
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<0 | (string & {})> | undefined;
804
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<0 | (string & {})> | undefined;
805
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
806
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<0 | (string & {})> | undefined;
807
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
808
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
809
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
810
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<0 | (string & {})> | undefined;
811
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
812
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
813
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
814
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
815
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<0 | (string & {})> | undefined;
816
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<0 | (string & {})> | undefined;
817
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<0 | (string & {})> | undefined;
818
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
819
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
820
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
821
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<0 | (string & {})> | undefined;
822
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<0 | (string & {})> | undefined;
823
+ WebkitOrder?: import("csstype").Property.Order | undefined;
824
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
825
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<0 | (string & {})> | undefined;
826
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<0 | (string & {})> | undefined;
827
+ WebkitPerspective?: import("csstype").Property.Perspective<0 | (string & {})> | undefined;
828
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<0 | (string & {})> | undefined;
829
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
830
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
831
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
832
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<0 | (string & {})> | undefined;
833
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
834
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
835
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
836
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
837
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
838
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
839
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
840
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
841
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
842
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
843
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
844
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
845
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
846
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<0 | (string & {})> | undefined;
847
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
848
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
849
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
850
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<0 | (string & {})> | undefined;
851
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
852
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
853
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
854
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
855
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
856
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
857
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
858
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
859
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
860
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
861
+ MozColumnRule?: import("csstype").Property.ColumnRule<0 | (string & {})> | undefined;
862
+ MozColumns?: import("csstype").Property.Columns<0 | (string & {})> | undefined;
863
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<0 | (string & {})> | undefined;
864
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
865
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
866
+ msFlex?: import("csstype").Property.Flex<0 | (string & {})> | undefined;
867
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
868
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
869
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
870
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
871
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
872
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<0 | (string & {})> | undefined;
873
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
874
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<0 | (string & {})> | undefined;
875
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<0 | (string & {})> | undefined;
876
+ WebkitColumns?: import("csstype").Property.Columns<0 | (string & {})> | undefined;
877
+ WebkitFlex?: import("csstype").Property.Flex<0 | (string & {})> | undefined;
878
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
879
+ WebkitMask?: import("csstype").Property.WebkitMask<0 | (string & {})> | undefined;
880
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
881
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
882
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<0 | (string & {})> | undefined;
883
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
884
+ azimuth?: import("csstype").Property.Azimuth | undefined;
885
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
886
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
887
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
888
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
889
+ boxLines?: import("csstype").Property.BoxLines | undefined;
890
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
891
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
892
+ boxPack?: import("csstype").Property.BoxPack | undefined;
893
+ clip?: import("csstype").Property.Clip | undefined;
894
+ gridColumnGap?: import("csstype").Property.GridColumnGap<0 | (string & {})> | undefined;
895
+ gridGap?: import("csstype").Property.GridGap<0 | (string & {})> | undefined;
896
+ gridRowGap?: import("csstype").Property.GridRowGap<0 | (string & {})> | undefined;
897
+ imeMode?: import("csstype").Property.ImeMode | undefined;
898
+ offsetBlock?: import("csstype").Property.InsetBlock<0 | (string & {})> | undefined;
899
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<0 | (string & {})> | undefined;
900
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<0 | (string & {})> | undefined;
901
+ offsetInline?: import("csstype").Property.InsetInline<0 | (string & {})> | undefined;
902
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<0 | (string & {})> | undefined;
903
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<0 | (string & {})> | undefined;
904
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<0 | (string & {})> | undefined;
905
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<0 | (string & {})> | undefined;
906
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
907
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
908
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
909
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
910
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
911
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
912
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
913
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
914
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
915
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
916
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
917
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
918
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
919
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
920
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
921
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
922
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
923
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
924
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
925
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<0 | (string & {})> | undefined;
926
+ MozBorderRadius?: import("csstype").Property.BorderRadius<0 | (string & {})> | undefined;
927
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<0 | (string & {})> | undefined;
928
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<0 | (string & {})> | undefined;
929
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<0 | (string & {})> | undefined;
930
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<0 | (string & {})> | undefined;
931
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
932
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
933
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
934
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
935
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
936
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
937
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
938
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
939
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
940
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
941
+ MozOutline?: import("csstype").Property.Outline<0 | (string & {})> | undefined;
942
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
943
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
944
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<0 | (string & {})> | undefined;
945
+ MozPerspective?: import("csstype").Property.Perspective<0 | (string & {})> | undefined;
946
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<0 | (string & {})> | undefined;
947
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
948
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
949
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
950
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
951
+ MozTransform?: import("csstype").Property.Transform | undefined;
952
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<0 | (string & {})> | undefined;
953
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
954
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
955
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
956
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
957
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
958
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
959
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
960
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
961
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
962
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
963
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
964
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
965
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
966
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
967
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
968
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
969
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
970
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<0 | (string & {})> | undefined;
971
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
972
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
973
+ OObjectPosition?: import("csstype").Property.ObjectPosition<0 | (string & {})> | undefined;
974
+ OTabSize?: import("csstype").Property.TabSize<0 | (string & {})> | undefined;
975
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
976
+ OTransform?: import("csstype").Property.Transform | undefined;
977
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<0 | (string & {})> | undefined;
978
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
979
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
980
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
981
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
982
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
983
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
984
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
985
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
986
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
987
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
988
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
989
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
990
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
991
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
992
+ baselineShift?: import("csstype").Property.BaselineShift<0 | (string & {})> | undefined;
993
+ clipRule?: import("csstype").Property.ClipRule | undefined;
994
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
995
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
996
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
997
+ fill?: import("csstype").Property.Fill | undefined;
998
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
999
+ fillRule?: import("csstype").Property.FillRule | undefined;
1000
+ floodColor?: import("csstype").Property.FloodColor | undefined;
1001
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
1002
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
1003
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
1004
+ marker?: import("csstype").Property.Marker | undefined;
1005
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
1006
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
1007
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
1008
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
1009
+ stopColor?: import("csstype").Property.StopColor | undefined;
1010
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
1011
+ stroke?: import("csstype").Property.Stroke | undefined;
1012
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<0 | (string & {})> | undefined;
1013
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<0 | (string & {})> | undefined;
1014
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
1015
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
1016
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
1017
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
1018
+ strokeWidth?: import("csstype").Property.StrokeWidth<0 | (string & {})> | undefined;
1019
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
1020
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
1021
+ };
1022
+ readonly props: {
1023
+ readonly id: string;
1024
+ readonly "data-orientation": Orientation;
1025
+ readonly "data-disabled": "" | undefined;
1026
+ readonly style: {
1027
+ accentColor?: import("csstype").Property.AccentColor | undefined;
1028
+ alignContent?: import("csstype").Property.AlignContent | undefined;
1029
+ alignItems?: import("csstype").Property.AlignItems | undefined;
1030
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
1031
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
1032
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
1033
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1034
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
1035
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1036
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1037
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1038
+ animationName?: import("csstype").Property.AnimationName | undefined;
1039
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1040
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<0 | (string & {})> | undefined;
1041
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<0 | (string & {})> | undefined;
1042
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
1043
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1044
+ appearance?: import("csstype").Property.Appearance | undefined;
1045
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
1046
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1047
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1048
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
1049
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
1050
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1051
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
1052
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
1053
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1054
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<0 | (string & {})> | undefined;
1055
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<0 | (string & {})> | undefined;
1056
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
1057
+ backgroundSize?: import("csstype").Property.BackgroundSize<0 | (string & {})> | undefined;
1058
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
1059
+ blockSize?: import("csstype").Property.BlockSize<0 | (string & {})> | undefined;
1060
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
1061
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
1062
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
1063
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<0 | (string & {})> | undefined;
1064
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
1065
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
1066
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<0 | (string & {})> | undefined;
1067
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
1068
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<0 | (string & {})> | undefined;
1069
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
1070
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<0 | (string & {})> | undefined;
1071
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<0 | (string & {})> | undefined;
1072
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
1073
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<0 | (string & {})> | undefined;
1074
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
1075
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<0 | (string & {})> | undefined;
1076
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<0 | (string & {})> | undefined;
1077
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<0 | (string & {})> | undefined;
1078
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
1079
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1080
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
1081
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<0 | (string & {})> | undefined;
1082
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
1083
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1084
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1085
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<0 | (string & {})> | undefined;
1086
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1087
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1088
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<0 | (string & {})> | undefined;
1089
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
1090
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<0 | (string & {})> | undefined;
1091
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
1092
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
1093
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<0 | (string & {})> | undefined;
1094
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
1095
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
1096
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<0 | (string & {})> | undefined;
1097
+ borderSpacing?: import("csstype").Property.BorderSpacing<0 | (string & {})> | undefined;
1098
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<0 | (string & {})> | undefined;
1099
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<0 | (string & {})> | undefined;
1100
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
1101
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<0 | (string & {})> | undefined;
1102
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<0 | (string & {})> | undefined;
1103
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
1104
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<0 | (string & {})> | undefined;
1105
+ bottom?: import("csstype").Property.Bottom<0 | (string & {})> | undefined;
1106
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1107
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
1108
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
1109
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
1110
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
1111
+ breakInside?: import("csstype").Property.BreakInside | undefined;
1112
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
1113
+ caretColor?: import("csstype").Property.CaretColor | undefined;
1114
+ caretShape?: import("csstype").Property.CaretShape | undefined;
1115
+ clear?: import("csstype").Property.Clear | undefined;
1116
+ clipPath?: import("csstype").Property.ClipPath | undefined;
1117
+ color?: import("csstype").Property.Color | undefined;
1118
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1119
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
1120
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
1121
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
1122
+ columnGap?: import("csstype").Property.ColumnGap<0 | (string & {})> | undefined;
1123
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1124
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1125
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<0 | (string & {})> | undefined;
1126
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
1127
+ columnWidth?: import("csstype").Property.ColumnWidth<0 | (string & {})> | undefined;
1128
+ contain?: import("csstype").Property.Contain | undefined;
1129
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<0 | (string & {})> | undefined;
1130
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<0 | (string & {})> | undefined;
1131
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<0 | (string & {})> | undefined;
1132
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<0 | (string & {})> | undefined;
1133
+ containerName?: import("csstype").Property.ContainerName | undefined;
1134
+ containerType?: import("csstype").Property.ContainerType | undefined;
1135
+ content?: import("csstype").Property.Content | undefined;
1136
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
1137
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
1138
+ counterReset?: import("csstype").Property.CounterReset | undefined;
1139
+ counterSet?: import("csstype").Property.CounterSet | undefined;
1140
+ cursor?: import("csstype").Property.Cursor | undefined;
1141
+ direction?: import("csstype").Property.Direction | undefined;
1142
+ display?: import("csstype").Property.Display | undefined;
1143
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
1144
+ filter?: import("csstype").Property.Filter | undefined;
1145
+ flexBasis?: import("csstype").Property.FlexBasis<0 | (string & {})> | undefined;
1146
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
1147
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
1148
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
1149
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
1150
+ float?: import("csstype").Property.Float | undefined;
1151
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
1152
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1153
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
1154
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1155
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
1156
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
1157
+ fontSize?: import("csstype").Property.FontSize<0 | (string & {})> | undefined;
1158
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
1159
+ fontSmooth?: import("csstype").Property.FontSmooth<0 | (string & {})> | undefined;
1160
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
1161
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
1162
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
1163
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
1164
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
1165
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
1166
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
1167
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
1168
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
1169
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
1170
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
1171
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
1172
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1173
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
1174
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
1175
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
1176
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
1177
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
1178
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<0 | (string & {})> | undefined;
1179
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
1180
+ gridAutoRows?: import("csstype").Property.GridAutoRows<0 | (string & {})> | undefined;
1181
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
1182
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
1183
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
1184
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
1185
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
1186
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<0 | (string & {})> | undefined;
1187
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<0 | (string & {})> | undefined;
1188
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
1189
+ height?: import("csstype").Property.Height<0 | (string & {})> | undefined;
1190
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1191
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
1192
+ hyphens?: import("csstype").Property.Hyphens | undefined;
1193
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
1194
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
1195
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
1196
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
1197
+ inlineSize?: import("csstype").Property.InlineSize<0 | (string & {})> | undefined;
1198
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
1199
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<0 | (string & {})> | undefined;
1200
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<0 | (string & {})> | undefined;
1201
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<0 | (string & {})> | undefined;
1202
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<0 | (string & {})> | undefined;
1203
+ isolation?: import("csstype").Property.Isolation | undefined;
1204
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
1205
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
1206
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
1207
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
1208
+ left?: import("csstype").Property.Left<0 | (string & {})> | undefined;
1209
+ letterSpacing?: import("csstype").Property.LetterSpacing<0 | (string & {})> | undefined;
1210
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
1211
+ lineHeight?: import("csstype").Property.LineHeight<0 | (string & {})> | undefined;
1212
+ lineHeightStep?: import("csstype").Property.LineHeightStep<0 | (string & {})> | undefined;
1213
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
1214
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
1215
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
1216
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<0 | (string & {})> | undefined;
1217
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<0 | (string & {})> | undefined;
1218
+ marginBottom?: import("csstype").Property.MarginBottom<0 | (string & {})> | undefined;
1219
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<0 | (string & {})> | undefined;
1220
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<0 | (string & {})> | undefined;
1221
+ marginLeft?: import("csstype").Property.MarginLeft<0 | (string & {})> | undefined;
1222
+ marginRight?: import("csstype").Property.MarginRight<0 | (string & {})> | undefined;
1223
+ marginTop?: import("csstype").Property.MarginTop<0 | (string & {})> | undefined;
1224
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
1225
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
1226
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<0 | (string & {})> | undefined;
1227
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1228
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1229
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
1230
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<0 | (string & {})> | undefined;
1231
+ maskClip?: import("csstype").Property.MaskClip | undefined;
1232
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
1233
+ maskImage?: import("csstype").Property.MaskImage | undefined;
1234
+ maskMode?: import("csstype").Property.MaskMode | undefined;
1235
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
1236
+ maskPosition?: import("csstype").Property.MaskPosition<0 | (string & {})> | undefined;
1237
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
1238
+ maskSize?: import("csstype").Property.MaskSize<0 | (string & {})> | undefined;
1239
+ maskType?: import("csstype").Property.MaskType | undefined;
1240
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
1241
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
1242
+ mathShift?: import("csstype").Property.MathShift | undefined;
1243
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
1244
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<0 | (string & {})> | undefined;
1245
+ maxHeight?: import("csstype").Property.MaxHeight<0 | (string & {})> | undefined;
1246
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<0 | (string & {})> | undefined;
1247
+ maxLines?: import("csstype").Property.MaxLines | undefined;
1248
+ maxWidth?: import("csstype").Property.MaxWidth<0 | (string & {})> | undefined;
1249
+ minBlockSize?: import("csstype").Property.MinBlockSize<0 | (string & {})> | undefined;
1250
+ minHeight?: import("csstype").Property.MinHeight<0 | (string & {})> | undefined;
1251
+ minInlineSize?: import("csstype").Property.MinInlineSize<0 | (string & {})> | undefined;
1252
+ minWidth?: import("csstype").Property.MinWidth<0 | (string & {})> | undefined;
1253
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
1254
+ motionDistance?: import("csstype").Property.OffsetDistance<0 | (string & {})> | undefined;
1255
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
1256
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
1257
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
1258
+ objectPosition?: import("csstype").Property.ObjectPosition<0 | (string & {})> | undefined;
1259
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<0 | (string & {})> | undefined;
1260
+ offsetDistance?: import("csstype").Property.OffsetDistance<0 | (string & {})> | undefined;
1261
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
1262
+ offsetPosition?: import("csstype").Property.OffsetPosition<0 | (string & {})> | undefined;
1263
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
1264
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
1265
+ opacity?: import("csstype").Property.Opacity | undefined;
1266
+ order?: import("csstype").Property.Order | undefined;
1267
+ orphans?: import("csstype").Property.Orphans | undefined;
1268
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
1269
+ outlineOffset?: import("csstype").Property.OutlineOffset<0 | (string & {})> | undefined;
1270
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1271
+ outlineWidth?: import("csstype").Property.OutlineWidth<0 | (string & {})> | undefined;
1272
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
1273
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
1274
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
1275
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<0 | (string & {})> | undefined;
1276
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
1277
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
1278
+ overflowX?: import("csstype").Property.OverflowX | undefined;
1279
+ overflowY?: import("csstype").Property.OverflowY | undefined;
1280
+ overlay?: import("csstype").Property.Overlay | undefined;
1281
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1282
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1283
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
1284
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
1285
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<0 | (string & {})> | undefined;
1286
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<0 | (string & {})> | undefined;
1287
+ paddingBottom?: import("csstype").Property.PaddingBottom<0 | (string & {})> | undefined;
1288
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<0 | (string & {})> | undefined;
1289
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<0 | (string & {})> | undefined;
1290
+ paddingLeft?: import("csstype").Property.PaddingLeft<0 | (string & {})> | undefined;
1291
+ paddingRight?: import("csstype").Property.PaddingRight<0 | (string & {})> | undefined;
1292
+ paddingTop?: import("csstype").Property.PaddingTop<0 | (string & {})> | undefined;
1293
+ page?: import("csstype").Property.Page | undefined;
1294
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
1295
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
1296
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
1297
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
1298
+ perspective?: import("csstype").Property.Perspective<0 | (string & {})> | undefined;
1299
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<0 | (string & {})> | undefined;
1300
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
1301
+ position: string;
1302
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1303
+ quotes?: import("csstype").Property.Quotes | undefined;
1304
+ resize?: import("csstype").Property.Resize | undefined;
1305
+ right?: import("csstype").Property.Right<0 | (string & {})> | undefined;
1306
+ rotate?: import("csstype").Property.Rotate | undefined;
1307
+ rowGap?: import("csstype").Property.RowGap<0 | (string & {})> | undefined;
1308
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
1309
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
1310
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
1311
+ scale?: import("csstype").Property.Scale | undefined;
1312
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
1313
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<0 | (string & {})> | undefined;
1314
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<0 | (string & {})> | undefined;
1315
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<0 | (string & {})> | undefined;
1316
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<0 | (string & {})> | undefined;
1317
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<0 | (string & {})> | undefined;
1318
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<0 | (string & {})> | undefined;
1319
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<0 | (string & {})> | undefined;
1320
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<0 | (string & {})> | undefined;
1321
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<0 | (string & {})> | undefined;
1322
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<0 | (string & {})> | undefined;
1323
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<0 | (string & {})> | undefined;
1324
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<0 | (string & {})> | undefined;
1325
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<0 | (string & {})> | undefined;
1326
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<0 | (string & {})> | undefined;
1327
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<0 | (string & {})> | undefined;
1328
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<0 | (string & {})> | undefined;
1329
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
1330
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<0 | (string & {})> | undefined;
1331
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<0 | (string & {})> | undefined;
1332
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<0 | (string & {})> | undefined;
1333
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<0 | (string & {})> | undefined;
1334
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
1335
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1336
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
1337
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
1338
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
1339
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
1340
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
1341
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
1342
+ shapeMargin?: import("csstype").Property.ShapeMargin<0 | (string & {})> | undefined;
1343
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
1344
+ tabSize?: import("csstype").Property.TabSize<0 | (string & {})> | undefined;
1345
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
1346
+ textAlign?: import("csstype").Property.TextAlign | undefined;
1347
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1348
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
1349
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1350
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1351
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1352
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
1353
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1354
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<0 | (string & {})> | undefined;
1355
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1356
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1357
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1358
+ textIndent?: import("csstype").Property.TextIndent<0 | (string & {})> | undefined;
1359
+ textJustify?: import("csstype").Property.TextJustify | undefined;
1360
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
1361
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
1362
+ textRendering?: import("csstype").Property.TextRendering | undefined;
1363
+ textShadow?: import("csstype").Property.TextShadow | undefined;
1364
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1365
+ textTransform?: import("csstype").Property.TextTransform | undefined;
1366
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<0 | (string & {})> | undefined;
1367
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1368
+ textWrap?: import("csstype").Property.TextWrap | undefined;
1369
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
1370
+ top?: import("csstype").Property.Top<0 | (string & {})> | undefined;
1371
+ touchAction?: import("csstype").Property.TouchAction | undefined;
1372
+ transform?: import("csstype").Property.Transform | undefined;
1373
+ transformBox?: import("csstype").Property.TransformBox | undefined;
1374
+ transformOrigin?: import("csstype").Property.TransformOrigin<0 | (string & {})> | undefined;
1375
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
1376
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
1377
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1378
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1379
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1380
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1381
+ translate?: import("csstype").Property.Translate<0 | (string & {})> | undefined;
1382
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
1383
+ userSelect?: import("csstype").Property.UserSelect | undefined;
1384
+ verticalAlign?: import("csstype").Property.VerticalAlign<0 | (string & {})> | undefined;
1385
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
1386
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<0 | (string & {})> | undefined;
1387
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
1388
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
1389
+ visibility?: import("csstype").Property.Visibility | undefined;
1390
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
1391
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
1392
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
1393
+ widows?: import("csstype").Property.Widows | undefined;
1394
+ width?: import("csstype").Property.Width<0 | (string & {})> | undefined;
1395
+ willChange?: import("csstype").Property.WillChange | undefined;
1396
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
1397
+ wordSpacing?: import("csstype").Property.WordSpacing<0 | (string & {})> | undefined;
1398
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
1399
+ writingMode?: import("csstype").Property.WritingMode | undefined;
1400
+ zIndex?: import("csstype").Property.ZIndex | undefined;
1401
+ zoom?: import("csstype").Property.Zoom | undefined;
1402
+ all?: import("csstype").Property.All | undefined;
1403
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
1404
+ animationRange?: import("csstype").Property.AnimationRange<0 | (string & {})> | undefined;
1405
+ background?: import("csstype").Property.Background<0 | (string & {})> | undefined;
1406
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<0 | (string & {})> | undefined;
1407
+ border?: import("csstype").Property.Border<0 | (string & {})> | undefined;
1408
+ borderBlock?: import("csstype").Property.BorderBlock<0 | (string & {})> | undefined;
1409
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<0 | (string & {})> | undefined;
1410
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<0 | (string & {})> | undefined;
1411
+ borderBottom?: import("csstype").Property.BorderBottom<0 | (string & {})> | undefined;
1412
+ borderColor?: import("csstype").Property.BorderColor | undefined;
1413
+ borderImage?: import("csstype").Property.BorderImage | undefined;
1414
+ borderInline?: import("csstype").Property.BorderInline<0 | (string & {})> | undefined;
1415
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<0 | (string & {})> | undefined;
1416
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<0 | (string & {})> | undefined;
1417
+ borderLeft?: import("csstype").Property.BorderLeft<0 | (string & {})> | undefined;
1418
+ borderRadius?: import("csstype").Property.BorderRadius<0 | (string & {})> | undefined;
1419
+ borderRight?: import("csstype").Property.BorderRight<0 | (string & {})> | undefined;
1420
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
1421
+ borderTop?: import("csstype").Property.BorderTop<0 | (string & {})> | undefined;
1422
+ borderWidth?: import("csstype").Property.BorderWidth<0 | (string & {})> | undefined;
1423
+ caret?: import("csstype").Property.Caret | undefined;
1424
+ columnRule?: import("csstype").Property.ColumnRule<0 | (string & {})> | undefined;
1425
+ columns?: import("csstype").Property.Columns<0 | (string & {})> | undefined;
1426
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<0 | (string & {})> | undefined;
1427
+ container?: import("csstype").Property.Container | undefined;
1428
+ flex?: import("csstype").Property.Flex<0 | (string & {})> | undefined;
1429
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
1430
+ font?: import("csstype").Property.Font | undefined;
1431
+ gap?: import("csstype").Property.Gap<0 | (string & {})> | undefined;
1432
+ grid?: import("csstype").Property.Grid | undefined;
1433
+ gridArea?: import("csstype").Property.GridArea | undefined;
1434
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
1435
+ gridRow?: import("csstype").Property.GridRow | undefined;
1436
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
1437
+ inset?: import("csstype").Property.Inset<0 | (string & {})> | undefined;
1438
+ insetBlock?: import("csstype").Property.InsetBlock<0 | (string & {})> | undefined;
1439
+ insetInline?: import("csstype").Property.InsetInline<0 | (string & {})> | undefined;
1440
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
1441
+ listStyle?: import("csstype").Property.ListStyle | undefined;
1442
+ margin?: import("csstype").Property.Margin<0 | (string & {})> | undefined;
1443
+ marginBlock?: import("csstype").Property.MarginBlock<0 | (string & {})> | undefined;
1444
+ marginInline?: import("csstype").Property.MarginInline<0 | (string & {})> | undefined;
1445
+ mask?: import("csstype").Property.Mask<0 | (string & {})> | undefined;
1446
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
1447
+ motion?: import("csstype").Property.Offset<0 | (string & {})> | undefined;
1448
+ offset?: import("csstype").Property.Offset<0 | (string & {})> | undefined;
1449
+ outline?: import("csstype").Property.Outline<0 | (string & {})> | undefined;
1450
+ overflow?: import("csstype").Property.Overflow | undefined;
1451
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
1452
+ padding?: import("csstype").Property.Padding<0 | (string & {})> | undefined;
1453
+ paddingBlock?: import("csstype").Property.PaddingBlock<0 | (string & {})> | undefined;
1454
+ paddingInline?: import("csstype").Property.PaddingInline<0 | (string & {})> | undefined;
1455
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
1456
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
1457
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
1458
+ scrollMargin?: import("csstype").Property.ScrollMargin<0 | (string & {})> | undefined;
1459
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<0 | (string & {})> | undefined;
1460
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<0 | (string & {})> | undefined;
1461
+ scrollPadding?: import("csstype").Property.ScrollPadding<0 | (string & {})> | undefined;
1462
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<0 | (string & {})> | undefined;
1463
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<0 | (string & {})> | undefined;
1464
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<0 | (string & {})> | undefined;
1465
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
1466
+ textDecoration?: import("csstype").Property.TextDecoration<0 | (string & {})> | undefined;
1467
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1468
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
1469
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
1470
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1471
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1472
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1473
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1474
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1475
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
1476
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1477
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1478
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
1479
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
1480
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
1481
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
1482
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
1483
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<0 | (string & {})> | undefined;
1484
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
1485
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
1486
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
1487
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
1488
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
1489
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1490
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
1491
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
1492
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1493
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1494
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<0 | (string & {})> | undefined;
1495
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<0 | (string & {})> | undefined;
1496
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
1497
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1498
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
1499
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
1500
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
1501
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<0 | (string & {})> | undefined;
1502
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<0 | (string & {})> | undefined;
1503
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
1504
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<0 | (string & {})> | undefined;
1505
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<0 | (string & {})> | undefined;
1506
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<0 | (string & {})> | undefined;
1507
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<0 | (string & {})> | undefined;
1508
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<0 | (string & {})> | undefined;
1509
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<0 | (string & {})> | undefined;
1510
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<0 | (string & {})> | undefined;
1511
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
1512
+ MozTabSize?: import("csstype").Property.TabSize<0 | (string & {})> | undefined;
1513
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
1514
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1515
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
1516
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
1517
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
1518
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
1519
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
1520
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
1521
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
1522
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
1523
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
1524
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
1525
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
1526
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
1527
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
1528
+ msFilter?: import("csstype").Property.MsFilter | undefined;
1529
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1530
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
1531
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
1532
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
1533
+ msGridColumns?: import("csstype").Property.MsGridColumns<0 | (string & {})> | undefined;
1534
+ msGridRows?: import("csstype").Property.MsGridRows<0 | (string & {})> | undefined;
1535
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
1536
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
1537
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
1538
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<0 | (string & {})> | undefined;
1539
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
1540
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
1541
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
1542
+ msOrder?: import("csstype").Property.Order | undefined;
1543
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
1544
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
1545
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
1546
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
1547
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<0 | (string & {})> | undefined;
1548
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<0 | (string & {})> | undefined;
1549
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<0 | (string & {})> | undefined;
1550
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<0 | (string & {})> | undefined;
1551
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
1552
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
1553
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
1554
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
1555
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
1556
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
1557
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
1558
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
1559
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
1560
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
1561
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
1562
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
1563
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
1564
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
1565
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
1566
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1567
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
1568
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
1569
+ msTransform?: import("csstype").Property.Transform | undefined;
1570
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<0 | (string & {})> | undefined;
1571
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1572
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1573
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1574
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1575
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
1576
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
1577
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
1578
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<0 | (string & {})> | undefined;
1579
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
1580
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
1581
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
1582
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
1583
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
1584
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1585
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1586
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1587
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1588
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1589
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
1590
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1591
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1592
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
1593
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
1594
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1595
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1596
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1597
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<0 | (string & {})> | undefined;
1598
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
1599
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
1600
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<0 | (string & {})> | undefined;
1601
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<0 | (string & {})> | undefined;
1602
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<0 | (string & {})> | undefined;
1603
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
1604
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<0 | (string & {})> | undefined;
1605
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<0 | (string & {})> | undefined;
1606
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
1607
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<0 | (string & {})> | undefined;
1608
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1609
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
1610
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
1611
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
1612
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
1613
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
1614
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
1615
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<0 | (string & {})> | undefined;
1616
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
1617
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<0 | (string & {})> | undefined;
1618
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
1619
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<0 | (string & {})> | undefined;
1620
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
1621
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
1622
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
1623
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
1624
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
1625
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
1626
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<0 | (string & {})> | undefined;
1627
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
1628
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
1629
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
1630
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
1631
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
1632
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
1633
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
1634
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<0 | (string & {})> | undefined;
1635
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<0 | (string & {})> | undefined;
1636
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
1637
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<0 | (string & {})> | undefined;
1638
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
1639
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
1640
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
1641
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<0 | (string & {})> | undefined;
1642
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
1643
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
1644
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
1645
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
1646
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<0 | (string & {})> | undefined;
1647
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<0 | (string & {})> | undefined;
1648
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<0 | (string & {})> | undefined;
1649
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
1650
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
1651
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
1652
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<0 | (string & {})> | undefined;
1653
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<0 | (string & {})> | undefined;
1654
+ WebkitOrder?: import("csstype").Property.Order | undefined;
1655
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
1656
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<0 | (string & {})> | undefined;
1657
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<0 | (string & {})> | undefined;
1658
+ WebkitPerspective?: import("csstype").Property.Perspective<0 | (string & {})> | undefined;
1659
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<0 | (string & {})> | undefined;
1660
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
1661
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
1662
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
1663
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<0 | (string & {})> | undefined;
1664
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
1665
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
1666
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1667
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1668
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
1669
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1670
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
1671
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
1672
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
1673
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
1674
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
1675
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
1676
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
1677
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<0 | (string & {})> | undefined;
1678
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
1679
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
1680
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
1681
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<0 | (string & {})> | undefined;
1682
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1683
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1684
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1685
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1686
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1687
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
1688
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
1689
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
1690
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1691
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
1692
+ MozColumnRule?: import("csstype").Property.ColumnRule<0 | (string & {})> | undefined;
1693
+ MozColumns?: import("csstype").Property.Columns<0 | (string & {})> | undefined;
1694
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<0 | (string & {})> | undefined;
1695
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
1696
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
1697
+ msFlex?: import("csstype").Property.Flex<0 | (string & {})> | undefined;
1698
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
1699
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
1700
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
1701
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1702
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1703
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<0 | (string & {})> | undefined;
1704
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
1705
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<0 | (string & {})> | undefined;
1706
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<0 | (string & {})> | undefined;
1707
+ WebkitColumns?: import("csstype").Property.Columns<0 | (string & {})> | undefined;
1708
+ WebkitFlex?: import("csstype").Property.Flex<0 | (string & {})> | undefined;
1709
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
1710
+ WebkitMask?: import("csstype").Property.WebkitMask<0 | (string & {})> | undefined;
1711
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
1712
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1713
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<0 | (string & {})> | undefined;
1714
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1715
+ azimuth?: import("csstype").Property.Azimuth | undefined;
1716
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
1717
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
1718
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
1719
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1720
+ boxLines?: import("csstype").Property.BoxLines | undefined;
1721
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1722
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
1723
+ boxPack?: import("csstype").Property.BoxPack | undefined;
1724
+ clip?: import("csstype").Property.Clip | undefined;
1725
+ gridColumnGap?: import("csstype").Property.GridColumnGap<0 | (string & {})> | undefined;
1726
+ gridGap?: import("csstype").Property.GridGap<0 | (string & {})> | undefined;
1727
+ gridRowGap?: import("csstype").Property.GridRowGap<0 | (string & {})> | undefined;
1728
+ imeMode?: import("csstype").Property.ImeMode | undefined;
1729
+ offsetBlock?: import("csstype").Property.InsetBlock<0 | (string & {})> | undefined;
1730
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<0 | (string & {})> | undefined;
1731
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<0 | (string & {})> | undefined;
1732
+ offsetInline?: import("csstype").Property.InsetInline<0 | (string & {})> | undefined;
1733
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<0 | (string & {})> | undefined;
1734
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<0 | (string & {})> | undefined;
1735
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<0 | (string & {})> | undefined;
1736
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<0 | (string & {})> | undefined;
1737
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1738
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1739
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
1740
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
1741
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1742
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1743
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1744
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1745
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
1746
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1747
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1748
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
1749
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
1750
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
1751
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
1752
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1753
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1754
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
1755
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1756
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<0 | (string & {})> | undefined;
1757
+ MozBorderRadius?: import("csstype").Property.BorderRadius<0 | (string & {})> | undefined;
1758
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<0 | (string & {})> | undefined;
1759
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<0 | (string & {})> | undefined;
1760
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<0 | (string & {})> | undefined;
1761
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<0 | (string & {})> | undefined;
1762
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1763
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1764
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1765
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1766
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1767
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
1768
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1769
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
1770
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1771
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
1772
+ MozOutline?: import("csstype").Property.Outline<0 | (string & {})> | undefined;
1773
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
1774
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1775
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<0 | (string & {})> | undefined;
1776
+ MozPerspective?: import("csstype").Property.Perspective<0 | (string & {})> | undefined;
1777
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<0 | (string & {})> | undefined;
1778
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1779
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1780
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1781
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1782
+ MozTransform?: import("csstype").Property.Transform | undefined;
1783
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<0 | (string & {})> | undefined;
1784
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1785
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1786
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1787
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1788
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1789
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1790
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
1791
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
1792
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1793
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1794
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1795
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1796
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1797
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1798
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
1799
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1800
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1801
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<0 | (string & {})> | undefined;
1802
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
1803
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
1804
+ OObjectPosition?: import("csstype").Property.ObjectPosition<0 | (string & {})> | undefined;
1805
+ OTabSize?: import("csstype").Property.TabSize<0 | (string & {})> | undefined;
1806
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1807
+ OTransform?: import("csstype").Property.Transform | undefined;
1808
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<0 | (string & {})> | undefined;
1809
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1810
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1811
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1812
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1813
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1814
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1815
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1816
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1817
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1818
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
1819
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1820
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1821
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
1822
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
1823
+ baselineShift?: import("csstype").Property.BaselineShift<0 | (string & {})> | undefined;
1824
+ clipRule?: import("csstype").Property.ClipRule | undefined;
1825
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
1826
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
1827
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
1828
+ fill?: import("csstype").Property.Fill | undefined;
1829
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
1830
+ fillRule?: import("csstype").Property.FillRule | undefined;
1831
+ floodColor?: import("csstype").Property.FloodColor | undefined;
1832
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
1833
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
1834
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
1835
+ marker?: import("csstype").Property.Marker | undefined;
1836
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
1837
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
1838
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
1839
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
1840
+ stopColor?: import("csstype").Property.StopColor | undefined;
1841
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
1842
+ stroke?: import("csstype").Property.Stroke | undefined;
1843
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<0 | (string & {})> | undefined;
1844
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<0 | (string & {})> | undefined;
1845
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
1846
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
1847
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
1848
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
1849
+ strokeWidth?: import("csstype").Property.StrokeWidth<0 | (string & {})> | undefined;
1850
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
1851
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
1852
+ };
1853
+ };
1854
+ }
1855
+ interface SliderThumbStateOpts extends WithRefOpts, ReadableBoxedValues<{
1856
+ index: number;
1857
+ disabled: boolean;
1858
+ }> {
1859
+ }
1860
+ export declare class SliderThumbState {
1861
+ #private;
1862
+ static create(opts: SliderThumbStateOpts): SliderThumbState;
1863
+ readonly opts: SliderThumbStateOpts;
1864
+ readonly root: SliderRoot;
1865
+ readonly attachment: RefAttachment;
1866
+ constructor(opts: SliderThumbStateOpts, root: SliderRoot);
1867
+ onkeydown(e: BitsKeyboardEvent): void;
1868
+ readonly props: {
1869
+ readonly id: string;
1870
+ readonly onkeydown: (e: BitsKeyboardEvent) => void;
1871
+ readonly "data-active": "" | undefined;
1872
+ readonly "data-disabled": "" | undefined;
1873
+ readonly tabindex: 0 | -1;
1874
+ readonly role: "slider";
1875
+ readonly "aria-valuemin": number;
1876
+ readonly "aria-valuemax": number;
1877
+ readonly "aria-valuenow": number;
1878
+ readonly "aria-disabled": "true" | "false";
1879
+ readonly "aria-orientation": Orientation;
1880
+ readonly "data-value": number;
1881
+ readonly "data-orientation": Orientation;
1882
+ readonly style: import("../../shared/index.js").StyleProperties;
1883
+ } | {
1884
+ readonly id: string;
1885
+ readonly onkeydown: (e: BitsKeyboardEvent) => void;
1886
+ readonly "data-active": "" | undefined;
1887
+ readonly "data-disabled": "" | undefined;
1888
+ readonly tabindex: 0 | -1;
1889
+ readonly role: "slider";
1890
+ readonly "aria-valuemin": number;
1891
+ readonly "aria-valuemax": number;
1892
+ readonly "aria-valuenow": number | undefined;
1893
+ readonly "aria-disabled": "true" | "false";
1894
+ readonly "aria-orientation": Orientation;
1895
+ readonly "data-value": number | undefined;
1896
+ readonly "data-orientation": Orientation;
1897
+ readonly style: import("../../shared/index.js").StyleProperties;
1898
+ };
1899
+ }
1900
+ interface SliderTickStateOpts extends WithRefOpts, ReadableBoxedValues<{
1901
+ index: number;
1902
+ }> {
1903
+ }
1904
+ export declare class SliderTickState {
1905
+ static create(opts: SliderTickStateOpts): SliderTickState;
1906
+ readonly opts: SliderTickStateOpts;
1907
+ readonly root: SliderRoot;
1908
+ readonly attachment: RefAttachment;
1909
+ constructor(opts: SliderTickStateOpts, root: SliderRoot);
1910
+ readonly props: {
1911
+ readonly id: string;
1912
+ readonly "data-disabled": "" | undefined;
1913
+ readonly "data-orientation": Orientation;
1914
+ readonly "data-bounded": "" | undefined;
1915
+ readonly "data-value": number;
1916
+ readonly "data-selected": "" | undefined;
1917
+ readonly style: import("../../shared/index.js").StyleProperties;
1918
+ } | {
1919
+ readonly id: string;
1920
+ readonly "data-disabled": "" | undefined;
1921
+ readonly "data-orientation": Orientation;
1922
+ readonly "data-bounded": "" | undefined;
1923
+ readonly "data-value": number;
1924
+ readonly style: import("../../shared/index.js").StyleProperties;
1925
+ };
1926
+ }
1927
+ interface SliderTickLabelStateOpts extends WithRefOpts, ReadableBoxedValues<{
1928
+ index: number;
1929
+ position?: SliderLabelPosition;
1930
+ }> {
1931
+ }
1932
+ export declare class SliderTickLabelState {
1933
+ static create(opts: SliderTickLabelStateOpts): SliderTickLabelState;
1934
+ readonly opts: SliderTickLabelStateOpts;
1935
+ readonly root: SliderRoot;
1936
+ readonly attachment: RefAttachment;
1937
+ constructor(opts: SliderTickLabelStateOpts, root: SliderRoot);
1938
+ readonly props: {
1939
+ readonly id: string;
1940
+ readonly "data-orientation": Orientation;
1941
+ readonly "data-disabled": "" | undefined;
1942
+ readonly "data-bounded": "" | undefined;
1943
+ readonly "data-value": number;
1944
+ readonly "data-selected": "" | undefined;
1945
+ readonly "data-position": SliderLabelPosition;
1946
+ readonly style: import("../../shared/index.js").StyleProperties;
1947
+ };
1948
+ }
1949
+ interface SliderThumbLabelStateOpts extends WithRefOpts, ReadableBoxedValues<{
1950
+ index: number;
1951
+ position?: SliderLabelPosition;
1952
+ }> {
1953
+ }
1954
+ export declare class SliderThumbLabelState {
1955
+ static create(opts: SliderThumbLabelStateOpts): SliderThumbLabelState;
1956
+ readonly opts: SliderThumbLabelStateOpts;
1957
+ readonly root: SliderRoot;
1958
+ readonly attachment: RefAttachment;
1959
+ constructor(opts: SliderThumbLabelStateOpts, root: SliderRoot);
1960
+ readonly props: {
1961
+ readonly id: string;
1962
+ readonly "data-orientation": Orientation;
1963
+ readonly "data-disabled": "" | undefined;
1964
+ readonly "data-value": number;
1965
+ readonly "data-active": "" | undefined;
1966
+ readonly "data-position": SliderLabelPosition;
1967
+ readonly style: import("../../shared/index.js").StyleProperties;
1968
+ };
1969
+ }
1970
+ export {};