yuyeon 0.1.0-rc.19 → 0.1.0-rc.20

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 (374) hide show
  1. package/dist/yuyeon.js +3507 -3246
  2. package/dist/yuyeon.umd.cjs +11 -11
  3. package/lib/components/card/YCard.mjs +16 -9
  4. package/lib/components/card/YCard.mjs.map +1 -1
  5. package/lib/components/hover/YHover.mjs +11 -4
  6. package/lib/components/hover/YHover.mjs.map +1 -1
  7. package/lib/components/hover/index.mjs +2 -0
  8. package/lib/components/hover/index.mjs.map +1 -0
  9. package/lib/components/index.mjs +1 -0
  10. package/lib/components/index.mjs.map +1 -1
  11. package/lib/components/layer/YLayer.mjs +17 -5
  12. package/lib/components/layer/YLayer.mjs.map +1 -1
  13. package/lib/components/layer/base.mjs +1 -1
  14. package/lib/components/layer/base.mjs.map +1 -1
  15. package/lib/components/layer/scroll-strategies.mjs +1 -1
  16. package/lib/components/layer/scroll-strategies.mjs.map +1 -1
  17. package/lib/components/menu/YMenu.mjs +2 -1
  18. package/lib/components/menu/YMenu.mjs.map +1 -1
  19. package/lib/composables/coordinate/levitation.mjs.map +1 -1
  20. package/lib/composables/index.mjs +1 -0
  21. package/lib/composables/index.mjs.map +1 -1
  22. package/lib/composables/theme/index.mjs +6 -3
  23. package/lib/composables/theme/index.mjs.map +1 -1
  24. package/package.json +1 -1
  25. package/types/abstract/items.d.ts +5 -4
  26. package/types/components/alert/YAlert.d.ts +3 -2
  27. package/types/components/app/YApp.d.ts +3 -2
  28. package/types/components/badge/YBadge.d.ts +9 -8
  29. package/types/components/button/YButton.d.ts +27 -29
  30. package/types/components/card/YCard.d.ts +6 -3
  31. package/types/components/card/YCardBody.d.ts +1 -1
  32. package/types/components/card/YCardFooter.d.ts +1 -1
  33. package/types/components/card/YCardHeader.d.ts +1 -1
  34. package/types/components/checkbox/YCheckbox.d.ts +4 -3
  35. package/types/components/checkbox/YInputCheckbox.d.ts +7 -6
  36. package/types/components/checkbox/index.d.ts +1 -1
  37. package/types/components/chip/YChip.d.ts +3 -2
  38. package/types/components/date-picker/YDateCalendar.d.ts +16 -15
  39. package/types/components/date-picker/YDatePicker.d.ts +41 -40
  40. package/types/components/date-picker/YDatePickerControl.d.ts +29 -28
  41. package/types/components/date-picker/YMonthPicker.d.ts +6 -5
  42. package/types/components/date-picker/YYearPicker.d.ts +3 -2
  43. package/types/components/dialog/YDialog.d.ts +414 -333
  44. package/types/components/divider/YDivider.d.ts +4 -3
  45. package/types/components/dropdown/YDropdown.d.ts +268 -220
  46. package/types/components/field-input/YFieldInput.d.ts +27 -26
  47. package/types/components/form/YForm.d.ts +9 -8
  48. package/{dist → types}/components/hover/YHover.d.ts +6 -2
  49. package/types/components/hover/index.d.ts +1 -0
  50. package/types/components/icon/YIcon.d.ts +5 -4
  51. package/types/components/icons/YIconCheckbox.d.ts +5 -4
  52. package/types/components/icons/YIconClear.d.ts +1 -1
  53. package/types/components/icons/YIconDropdown.d.ts +1 -1
  54. package/types/components/icons/YIconExpand.d.ts +1 -1
  55. package/types/components/icons/YIconPageControl.d.ts +6 -5
  56. package/types/components/icons/YIconSort.d.ts +5 -4
  57. package/types/components/icons/index.d.ts +26 -26
  58. package/types/components/index.d.ts +2 -0
  59. package/types/components/input/YInput.d.ts +21 -20
  60. package/types/components/layer/YLayer.d.ts +148 -100
  61. package/types/components/layer/active-stack.d.ts +3 -2
  62. package/types/components/layer/base.d.ts +8 -7
  63. package/{dist → types}/components/layer/scroll-strategies.d.ts +1 -1
  64. package/types/components/list/YList.d.ts +8 -7
  65. package/types/components/list/YListItem.d.ts +19 -13
  66. package/types/components/loading/YSpinnerRing.d.ts +2 -1
  67. package/types/components/menu/YMenu.d.ts +161 -120
  68. package/types/components/pagination/YPagination.d.ts +20 -19
  69. package/types/components/panel/YDividePanel.d.ts +4 -3
  70. package/types/components/plate/YPlate.d.ts +3 -2
  71. package/types/components/progress-bar/YProgressBar.d.ts +5 -4
  72. package/types/components/select/YSelect.d.ts +1232 -923
  73. package/types/components/snackbar/YSnackbar.d.ts +12 -11
  74. package/types/components/switch/YSwitch.d.ts +4 -3
  75. package/types/components/tab/YTab.d.ts +30 -29
  76. package/types/components/tab/YTabs.d.ts +12 -11
  77. package/types/components/tab/index.d.ts +1 -1
  78. package/types/components/tab/shared.d.ts +1 -0
  79. package/types/components/table/YDataTable.d.ts +63 -62
  80. package/types/components/table/YDataTableBody.d.ts +10 -9
  81. package/types/components/table/YDataTableCell.d.ts +6 -5
  82. package/types/components/table/YDataTableControl.d.ts +5 -4
  83. package/types/components/table/YDataTableHead.d.ts +10 -10
  84. package/types/components/table/YDataTableLayer.d.ts +4 -3
  85. package/types/components/table/YDataTableRow.d.ts +3 -2
  86. package/types/components/table/YDataTableServer.d.ts +63 -62
  87. package/types/components/table/YTable.d.ts +7 -6
  88. package/types/components/table/composibles/header.d.ts +10 -9
  89. package/types/components/table/composibles/items.d.ts +5 -4
  90. package/types/components/table/composibles/options.d.ts +2 -1
  91. package/types/components/table/composibles/pagination.d.ts +6 -5
  92. package/types/components/table/composibles/selection.d.ts +6 -5
  93. package/types/components/table/composibles/sorting.d.ts +4 -3
  94. package/types/components/table/types/header.d.ts +2 -1
  95. package/types/components/table/types/index.d.ts +5 -4
  96. package/types/components/table/types/item.d.ts +1 -0
  97. package/types/components/table/types/row.d.ts +1 -0
  98. package/types/components/text-ellipsis/YTextEllipsis.d.ts +3 -2
  99. package/types/components/text-highlighter/YTextHighlighter.d.ts +3 -2
  100. package/types/components/textarea/YTextarea.d.ts +39 -39
  101. package/types/components/toggle-button/YToggleButton.d.ts +1 -0
  102. package/types/components/tooltip/YTooltip.d.ts +201 -140
  103. package/types/components/transitions/expand-transition.d.ts +4 -3
  104. package/types/components/transitions/index.d.ts +10 -10
  105. package/types/components/tree-view/YTreeView.d.ts +20 -13
  106. package/types/components/tree-view/YTreeViewNode.d.ts +42 -20
  107. package/types/components/tree-view/types.d.ts +2 -1
  108. package/types/components/tree-view/util.d.ts +1 -0
  109. package/types/composables/choice-link.d.ts +2 -1
  110. package/types/composables/choice.d.ts +3 -2
  111. package/types/composables/communication.d.ts +2 -1
  112. package/types/composables/component.d.ts +1 -0
  113. package/types/composables/coordinate/arrangement.d.ts +2 -1
  114. package/types/composables/coordinate/index.d.ts +19 -18
  115. package/types/composables/coordinate/levitation.d.ts +2 -1
  116. package/types/composables/coordinate/types.d.ts +2 -1
  117. package/types/composables/coordinate/utils/point.d.ts +1 -0
  118. package/types/composables/date/factory.d.ts +1 -0
  119. package/types/composables/date/index.d.ts +1 -0
  120. package/types/composables/date/setting.d.ts +2 -1
  121. package/types/composables/date/types.d.ts +2 -1
  122. package/types/composables/dimension.d.ts +4 -3
  123. package/types/composables/focus.d.ts +4 -3
  124. package/types/composables/form.d.ts +7 -6
  125. package/types/composables/i18n/index.d.ts +1 -0
  126. package/types/composables/i18n/locale.d.ts +2 -1
  127. package/types/composables/i18n/rtl.d.ts +2 -1
  128. package/types/composables/icon.d.ts +9 -10
  129. package/types/composables/index.d.ts +1 -0
  130. package/types/composables/layer-group.d.ts +3 -2
  131. package/types/composables/list-items.d.ts +36 -35
  132. package/types/composables/progress.d.ts +1 -1
  133. package/types/composables/ref.d.ts +2 -1
  134. package/types/composables/resize-observer.d.ts +2 -2
  135. package/types/composables/scope.d.ts +2 -1
  136. package/types/composables/theme/factory.d.ts +1 -0
  137. package/types/composables/theme/index.d.ts +5 -4
  138. package/types/composables/theme/setting.d.ts +1 -0
  139. package/types/composables/timing.d.ts +2 -1
  140. package/types/composables/transition.d.ts +2 -1
  141. package/types/composables/validation.d.ts +19 -18
  142. package/types/composables/vue-router.d.ts +3 -3
  143. package/types/directives/complement-click/index.d.ts +1 -0
  144. package/types/directives/plate-wave/index.d.ts +2 -1
  145. package/types/directives/theme-class.d.ts +1 -0
  146. package/types/globals.d.ts +1 -1
  147. package/types/i18n/built-in.d.ts +2 -1
  148. package/types/i18n/types.d.ts +2 -1
  149. package/types/index.d.ts +2 -1
  150. package/types/mixins/di.d.ts +1 -1
  151. package/types/mixins/rebind-attrs.d.ts +2 -2
  152. package/types/shims.d.ts +4 -45
  153. package/types/types/index.d.ts +2 -1
  154. package/types/util/anchor.d.ts +1 -1
  155. package/types/util/color/conversion.d.ts +1 -0
  156. package/types/util/color/hct/cam16.d.ts +2 -17
  157. package/types/util/color/hct/hct.d.ts +2 -17
  158. package/types/util/color/index.d.ts +1 -1
  159. package/types/util/date/adapters/yuyeon-date-adapter.d.ts +1 -0
  160. package/types/util/date/built-in.d.ts +2 -1
  161. package/types/util/date/index.d.ts +1 -1
  162. package/types/util/reactivity.d.ts +3 -2
  163. package/types/util/vue-component.d.ts +4 -3
  164. package/dist/abstract/items.d.ts +0 -49
  165. package/dist/components/alert/YAlert.d.ts +0 -24
  166. package/dist/components/alert/index.d.ts +0 -1
  167. package/dist/components/app/YApp.d.ts +0 -8
  168. package/dist/components/app/index.d.ts +0 -1
  169. package/dist/components/badge/YBadge.d.ts +0 -142
  170. package/dist/components/badge/index.d.ts +0 -1
  171. package/dist/components/button/YButton.d.ts +0 -248
  172. package/dist/components/button/index.d.ts +0 -1
  173. package/dist/components/card/YCard.d.ts +0 -12
  174. package/dist/components/card/YCardBody.d.ts +0 -2
  175. package/dist/components/card/YCardFooter.d.ts +0 -2
  176. package/dist/components/card/YCardHeader.d.ts +0 -2
  177. package/dist/components/card/index.d.ts +0 -4
  178. package/dist/components/checkbox/YCheckbox.d.ts +0 -48
  179. package/dist/components/checkbox/YInputCheckbox.d.ts +0 -55
  180. package/dist/components/checkbox/index.d.ts +0 -3
  181. package/dist/components/chip/YChip.d.ts +0 -36
  182. package/dist/components/chip/index.d.ts +0 -1
  183. package/dist/components/date-picker/YDateCalendar.d.ts +0 -143
  184. package/dist/components/date-picker/YDatePicker.d.ts +0 -123
  185. package/dist/components/date-picker/YDatePickerControl.d.ts +0 -129
  186. package/dist/components/date-picker/YMonthPicker.d.ts +0 -29
  187. package/dist/components/date-picker/YYearPicker.d.ts +0 -44
  188. package/dist/components/date-picker/index.d.ts +0 -3
  189. package/dist/components/dialog/YDialog.d.ts +0 -2346
  190. package/dist/components/dialog/index.d.ts +0 -1
  191. package/dist/components/divider/YDivider.d.ts +0 -16
  192. package/dist/components/divider/index.d.ts +0 -1
  193. package/dist/components/dropdown/YDropdown.d.ts +0 -651
  194. package/dist/components/dropdown/index.d.ts +0 -1
  195. package/dist/components/field-input/YFieldInput.d.ts +0 -416
  196. package/dist/components/field-input/index.d.ts +0 -1
  197. package/dist/components/form/YForm.d.ts +0 -42
  198. package/dist/components/form/index.d.ts +0 -1
  199. package/dist/components/icon/YIcon.d.ts +0 -82
  200. package/dist/components/icon/index.d.ts +0 -1
  201. package/dist/components/icons/YIconCheckbox.d.ts +0 -14
  202. package/dist/components/icons/YIconClear.d.ts +0 -1
  203. package/dist/components/icons/YIconDropdown.d.ts +0 -1
  204. package/dist/components/icons/YIconExpand.d.ts +0 -1
  205. package/dist/components/icons/YIconPageControl.d.ts +0 -21
  206. package/dist/components/icons/YIconSort.d.ts +0 -19
  207. package/dist/components/icons/index.d.ts +0 -89
  208. package/dist/components/index.d.ts +0 -34
  209. package/dist/components/input/YInput.d.ts +0 -336
  210. package/dist/components/input/index.d.ts +0 -1
  211. package/dist/components/layer/YLayer.d.ts +0 -2089
  212. package/dist/components/layer/active-delay.d.ts +0 -4
  213. package/dist/components/layer/active-stack.d.ts +0 -16
  214. package/dist/components/layer/base.d.ts +0 -22
  215. package/dist/components/layer/index.d.ts +0 -1
  216. package/dist/components/list/YList.d.ts +0 -24
  217. package/dist/components/list/YListItem.d.ts +0 -60
  218. package/dist/components/list/index.d.ts +0 -2
  219. package/dist/components/loading/YSpinnerRing.d.ts +0 -3
  220. package/dist/components/loading/index.d.ts +0 -1
  221. package/dist/components/menu/YMenu.d.ts +0 -2176
  222. package/dist/components/menu/index.d.ts +0 -1
  223. package/dist/components/pagination/YPagination.d.ts +0 -177
  224. package/dist/components/pagination/index.d.ts +0 -1
  225. package/dist/components/panel/YDividePanel.d.ts +0 -5
  226. package/dist/components/panel/index.d.ts +0 -1
  227. package/dist/components/plate/YPlate.d.ts +0 -11
  228. package/dist/components/plate/index.d.ts +0 -1
  229. package/dist/components/progress-bar/YProgressBar.d.ts +0 -78
  230. package/dist/components/progress-bar/index.d.ts +0 -1
  231. package/dist/components/select/YSelect.d.ts +0 -7244
  232. package/dist/components/select/index.d.ts +0 -1
  233. package/dist/components/snackbar/YSnackbar.d.ts +0 -90
  234. package/dist/components/snackbar/index.d.ts +0 -1
  235. package/dist/components/switch/YSwitch.d.ts +0 -108
  236. package/dist/components/switch/index.d.ts +0 -1
  237. package/dist/components/tab/YTab.d.ts +0 -284
  238. package/dist/components/tab/YTabs.d.ts +0 -131
  239. package/dist/components/tab/index.d.ts +0 -3
  240. package/dist/components/tab/shared.d.ts +0 -4
  241. package/dist/components/tab/types.d.ts +0 -5
  242. package/dist/components/table/YDataTable.d.ts +0 -453
  243. package/dist/components/table/YDataTableBody.d.ts +0 -110
  244. package/dist/components/table/YDataTableCell.d.ts +0 -57
  245. package/dist/components/table/YDataTableControl.d.ts +0 -71
  246. package/dist/components/table/YDataTableHead.d.ts +0 -72
  247. package/dist/components/table/YDataTableLayer.d.ts +0 -12
  248. package/dist/components/table/YDataTableRow.d.ts +0 -49
  249. package/dist/components/table/YDataTableServer.d.ts +0 -490
  250. package/dist/components/table/YTable.d.ts +0 -84
  251. package/dist/components/table/composibles/header.d.ts +0 -69
  252. package/dist/components/table/composibles/items.d.ts +0 -55
  253. package/dist/components/table/composibles/options.d.ts +0 -11
  254. package/dist/components/table/composibles/pagination.d.ts +0 -81
  255. package/dist/components/table/composibles/selection.d.ts +0 -82
  256. package/dist/components/table/composibles/sorting.d.ts +0 -44
  257. package/dist/components/table/index.d.ts +0 -3
  258. package/dist/components/table/types/common.d.ts +0 -2
  259. package/dist/components/table/types/header.d.ts +0 -23
  260. package/dist/components/table/types/index.d.ts +0 -57
  261. package/dist/components/table/types/item.d.ts +0 -21
  262. package/dist/components/table/types/row.d.ts +0 -4
  263. package/dist/components/text-ellipsis/YTextEllipsis.d.ts +0 -15
  264. package/dist/components/text-ellipsis/index.d.ts +0 -1
  265. package/dist/components/text-highlighter/YTextHighlighter.d.ts +0 -41
  266. package/dist/components/textarea/YTextarea.d.ts +0 -589
  267. package/dist/components/textarea/index.d.ts +0 -1
  268. package/dist/components/toggle-button/YToggleButton.d.ts +0 -4
  269. package/dist/components/toggle-button/index.d.ts +0 -1
  270. package/dist/components/tooltip/YTooltip.d.ts +0 -3875
  271. package/dist/components/tooltip/index.d.ts +0 -1
  272. package/dist/components/transitions/expand-transition.d.ts +0 -17
  273. package/dist/components/transitions/index.d.ts +0 -32
  274. package/dist/components/tree-view/YTreeView.d.ts +0 -160
  275. package/dist/components/tree-view/YTreeViewNode.d.ts +0 -223
  276. package/dist/components/tree-view/index.d.ts +0 -2
  277. package/dist/components/tree-view/types.d.ts +0 -15
  278. package/dist/components/tree-view/util.d.ts +0 -6
  279. package/dist/composables/choice-link.d.ts +0 -3
  280. package/dist/composables/choice.d.ts +0 -113
  281. package/dist/composables/communication.d.ts +0 -8
  282. package/dist/composables/component.d.ts +0 -3
  283. package/dist/composables/coordinate/arrangement.d.ts +0 -7
  284. package/dist/composables/coordinate/index.d.ts +0 -1672
  285. package/dist/composables/coordinate/levitation.d.ts +0 -7
  286. package/dist/composables/coordinate/types.d.ts +0 -7
  287. package/dist/composables/coordinate/utils/point.d.ts +0 -22
  288. package/dist/composables/date/factory.d.ts +0 -3
  289. package/dist/composables/date/index.d.ts +0 -12
  290. package/dist/composables/date/setting.d.ts +0 -5
  291. package/dist/composables/date/types.d.ts +0 -13
  292. package/dist/composables/dimension.d.ts +0 -54
  293. package/dist/composables/focus.d.ts +0 -30
  294. package/dist/composables/form.d.ts +0 -127
  295. package/dist/composables/i18n/index.d.ts +0 -9
  296. package/dist/composables/i18n/locale.d.ts +0 -3
  297. package/dist/composables/i18n/rtl.d.ts +0 -21
  298. package/dist/composables/i18n/share.d.ts +0 -1
  299. package/dist/composables/icon.d.ts +0 -95
  300. package/dist/composables/index.d.ts +0 -9
  301. package/dist/composables/layer-group.d.ts +0 -8
  302. package/dist/composables/list-items.d.ts +0 -111
  303. package/dist/composables/progress.d.ts +0 -3
  304. package/dist/composables/ref.d.ts +0 -6
  305. package/dist/composables/resize-observer.d.ts +0 -14
  306. package/dist/composables/scope.d.ts +0 -3
  307. package/dist/composables/theme/factory.d.ts +0 -4
  308. package/dist/composables/theme/helper.d.ts +0 -3
  309. package/dist/composables/theme/index.d.ts +0 -56
  310. package/dist/composables/theme/setting.d.ts +0 -10
  311. package/dist/composables/theme/types.d.ts +0 -28
  312. package/dist/composables/timing.d.ts +0 -20
  313. package/dist/composables/transition.d.ts +0 -22
  314. package/dist/composables/validation.d.ts +0 -82
  315. package/dist/composables/vue-router.d.ts +0 -43
  316. package/dist/directives/complement-click/index.d.ts +0 -26
  317. package/dist/directives/plate-wave/index.d.ts +0 -14
  318. package/dist/directives/theme-class.d.ts +0 -4
  319. package/dist/etc/index.d.ts +0 -1
  320. package/dist/globals.d.ts +0 -20
  321. package/dist/i18n/built-in.d.ts +0 -3
  322. package/dist/i18n/config.d.ts +0 -81
  323. package/dist/i18n/types.d.ts +0 -20
  324. package/dist/index.d.ts +0 -13
  325. package/dist/locales/en.d.ts +0 -6
  326. package/dist/mixins/di.d.ts +0 -2
  327. package/dist/mixins/rebind-attrs.d.ts +0 -5
  328. package/dist/shims.d.ts +0 -52
  329. package/dist/types/index.d.ts +0 -7
  330. package/dist/util/anchor.d.ts +0 -23
  331. package/dist/util/array.d.ts +0 -2
  332. package/dist/util/collection.d.ts +0 -1
  333. package/dist/util/color/apca.d.ts +0 -29
  334. package/dist/util/color/const.d.ts +0 -5
  335. package/dist/util/color/conversion.d.ts +0 -131
  336. package/dist/util/color/hct/cam16.d.ts +0 -116
  337. package/dist/util/color/hct/hct.d.ts +0 -71
  338. package/dist/util/color/index.d.ts +0 -4
  339. package/dist/util/color/types.d.ts +0 -14
  340. package/dist/util/color/utils/math-utils.d.ts +0 -82
  341. package/dist/util/common.d.ts +0 -13
  342. package/dist/util/date/adapters/yuyeon-date-adapter.d.ts +0 -43
  343. package/dist/util/date/built-in.d.ts +0 -41
  344. package/dist/util/date/index.d.ts +0 -3
  345. package/dist/util/date/types.d.ts +0 -167
  346. package/dist/util/debounce.d.ts +0 -11
  347. package/dist/util/dom.d.ts +0 -3
  348. package/dist/util/frame-scheduler.d.ts +0 -7
  349. package/dist/util/index.d.ts +0 -16
  350. package/dist/util/reactivity.d.ts +0 -7
  351. package/dist/util/rect.d.ts +0 -36
  352. package/dist/util/scroll.d.ts +0 -3
  353. package/dist/util/string.d.ts +0 -4
  354. package/dist/util/ui.d.ts +0 -4
  355. package/dist/util/validation.d.ts +0 -3
  356. package/dist/util/vue-component.d.ts +0 -39
  357. /package/{dist → types}/components/bench/YBench.d.ts +0 -0
  358. /package/{dist → types}/components/bench/index.d.ts +0 -0
  359. /package/{dist → types}/components/default-provider/YDefaultProvider.d.ts +0 -0
  360. /package/{dist → types}/components/default-provider/index.d.ts +0 -0
  361. /package/{dist → types}/components/ip-field/YIpv4Field.d.ts +0 -0
  362. /package/{dist → types}/components/ip-field/index.d.ts +0 -0
  363. /package/{dist → types}/components/layer/content.d.ts +0 -0
  364. /package/{dist → types}/components/navigation/YNavigation.d.ts +0 -0
  365. /package/{dist → types}/components/navigation/index.d.ts +0 -0
  366. /package/{dist → types}/components/text-highlighter/index.d.ts +0 -0
  367. /package/{dist → types}/composables/layout.d.ts +0 -0
  368. /package/{dist → types}/locales/index.d.ts +0 -0
  369. /package/{dist → types}/locales/ko.d.ts +0 -0
  370. /package/{dist → types}/util/color/contrast/contrast.d.ts +0 -0
  371. /package/{dist → types}/util/color/hct/hct-solver.d.ts +0 -0
  372. /package/{dist → types}/util/color/hct/viewing-conditions.d.ts +0 -0
  373. /package/{dist → types}/util/color/palettes/core-palette.d.ts +0 -0
  374. /package/{dist → types}/util/color/palettes/tonal-palette.d.ts +0 -0
@@ -1,2176 +0,0 @@
1
- import { PropType, SlotsType } from 'vue';
2
-
3
- export declare const YMenuPropOptions: {
4
- preventCloseBubble: PropType<boolean>;
5
- minWidth: PropType<string | number>;
6
- width: PropType<string | number>;
7
- maxWidth: PropType<string | number>;
8
- minHeight: PropType<string | number>;
9
- height: PropType<string | number>;
10
- maxHeight: PropType<string | number>;
11
- coordinateStrategy: Omit<{
12
- type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
13
- default: string;
14
- }, "default" | "type"> & {
15
- type: PropType<string | import('../../composables/coordinate').CoordinateStrategyFn>;
16
- default: string | import('../../composables/coordinate').CoordinateStrategyFn;
17
- };
18
- position: {
19
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
20
- default: string;
21
- };
22
- align: {
23
- type: PropType<"top" | "bottom" | "start" | "end" | "center">;
24
- default: string;
25
- };
26
- origin: {
27
- type: StringConstructor;
28
- default: string;
29
- };
30
- offset: {
31
- type: PropType<string | number | number[]>;
32
- };
33
- viewportMargin: {
34
- type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
35
- default: number;
36
- };
37
- closeClickContent: {
38
- type: PropType<boolean>;
39
- };
40
- base: PropType<import('../layer/base').BaseType>;
41
- transition: {
42
- type: PropType<string | (import('vue').TransitionProps & {
43
- is?: import('vue').Component | undefined;
44
- })>;
45
- default: string;
46
- };
47
- theme: PropType<string>;
48
- modelValue: {
49
- type: PropType<boolean>;
50
- };
51
- scrim: {
52
- type: PropType<boolean>;
53
- };
54
- scrimOpacity: {
55
- type: PropType<number>;
56
- };
57
- eager: {
58
- type: PropType<boolean>;
59
- };
60
- classes: {
61
- type: PropType<string | Record<string, any> | string[]>;
62
- };
63
- contentClasses: {
64
- type: PropType<string | Record<string, any> | string[]>;
65
- };
66
- closeClickScrim: {
67
- type: PropType<boolean>;
68
- };
69
- contentStyles: {
70
- type: PropType<import('vue').CSSProperties>;
71
- default: () => void;
72
- };
73
- disabled: {
74
- type: PropType<boolean>;
75
- default: boolean;
76
- };
77
- openOnHover: {
78
- type: PropType<boolean>;
79
- default: boolean;
80
- };
81
- openDelay: {
82
- type: PropType<number>;
83
- default: number;
84
- };
85
- closeDelay: {
86
- type: PropType<number>;
87
- default: number;
88
- };
89
- zIndex: {
90
- type: PropType<string | number>;
91
- default: number;
92
- };
93
- menuClasses: {
94
- type: PropType<string | Record<string, any> | string[]>;
95
- };
96
- openOnClickBase: {
97
- type: PropType<boolean>;
98
- default: boolean;
99
- };
100
- closeCondition: {
101
- type: (BooleanConstructor | FunctionConstructor)[];
102
- default: undefined;
103
- };
104
- preventClip: {
105
- type: PropType<boolean>;
106
- default: boolean;
107
- };
108
- };
109
- /**
110
- * # Component
111
- */
112
- export declare const YMenu: import('vue').DefineComponent<{
113
- transition: {
114
- default: string;
115
- type: PropType<string | (import('vue').TransitionProps & {
116
- is?: import('vue').Component | undefined;
117
- })>;
118
- };
119
- preventCloseBubble: PropType<boolean>;
120
- minWidth: PropType<string | number>;
121
- width: PropType<string | number>;
122
- maxWidth: PropType<string | number>;
123
- minHeight: PropType<string | number>;
124
- height: PropType<string | number>;
125
- maxHeight: PropType<string | number>;
126
- coordinateStrategy: Omit<{
127
- type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
128
- default: string;
129
- }, "default" | "type"> & {
130
- type: PropType<string | import('../../composables/coordinate').CoordinateStrategyFn>;
131
- default: string | import('../../composables/coordinate').CoordinateStrategyFn;
132
- };
133
- position: {
134
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
135
- default: string;
136
- };
137
- align: {
138
- type: PropType<"top" | "bottom" | "start" | "end" | "center">;
139
- default: string;
140
- };
141
- origin: {
142
- type: StringConstructor;
143
- default: string;
144
- };
145
- offset: {
146
- type: PropType<string | number | number[]>;
147
- };
148
- viewportMargin: {
149
- type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
150
- default: number;
151
- };
152
- closeClickContent: {
153
- type: PropType<boolean>;
154
- };
155
- base: PropType<import('../layer/base').BaseType>;
156
- theme: PropType<string>;
157
- modelValue: {
158
- type: PropType<boolean>;
159
- };
160
- scrim: {
161
- type: PropType<boolean>;
162
- };
163
- scrimOpacity: {
164
- type: PropType<number>;
165
- };
166
- eager: {
167
- type: PropType<boolean>;
168
- };
169
- classes: {
170
- type: PropType<string | Record<string, any> | string[]>;
171
- };
172
- contentClasses: {
173
- type: PropType<string | Record<string, any> | string[]>;
174
- };
175
- closeClickScrim: {
176
- type: PropType<boolean>;
177
- };
178
- contentStyles: {
179
- type: PropType<import('vue').CSSProperties>;
180
- default: () => void;
181
- };
182
- disabled: {
183
- type: PropType<boolean>;
184
- default: boolean;
185
- };
186
- openOnHover: {
187
- type: PropType<boolean>;
188
- default: boolean;
189
- };
190
- openDelay: {
191
- type: PropType<number>;
192
- default: number;
193
- };
194
- closeDelay: {
195
- type: PropType<number>;
196
- default: number;
197
- };
198
- zIndex: {
199
- type: PropType<string | number>;
200
- default: number;
201
- };
202
- menuClasses: {
203
- type: PropType<string | Record<string, any> | string[]>;
204
- };
205
- openOnClickBase: {
206
- type: PropType<boolean>;
207
- default: boolean;
208
- };
209
- closeCondition: {
210
- type: (BooleanConstructor | FunctionConstructor)[];
211
- default: undefined;
212
- };
213
- preventClip: {
214
- type: PropType<boolean>;
215
- default: boolean;
216
- };
217
- }, {
218
- layer$: import('vue').Ref<import('vue').DefineComponent<{
219
- minWidth: PropType<string | number>;
220
- width: PropType<string | number>;
221
- maxWidth: PropType<string | number>;
222
- minHeight: PropType<string | number>;
223
- height: PropType<string | number>;
224
- maxHeight: PropType<string | number>;
225
- coordinateStrategy: {
226
- type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
227
- default: string;
228
- };
229
- position: {
230
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
231
- default: string;
232
- };
233
- align: {
234
- type: PropType<"top" | "bottom" | "start" | "end" | "center">;
235
- default: string;
236
- };
237
- origin: {
238
- type: StringConstructor;
239
- default: string;
240
- };
241
- offset: {
242
- type: PropType<string | number | number[]>;
243
- };
244
- viewportMargin: {
245
- type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
246
- default: number;
247
- };
248
- closeClickContent: {
249
- type: PropType<boolean>;
250
- };
251
- base: PropType<import('../layer/base').BaseType>;
252
- transition: {
253
- type: PropType<string | (import('vue').TransitionProps & {
254
- is?: import('vue').Component | undefined;
255
- })>;
256
- default: string;
257
- };
258
- theme: PropType<string>;
259
- modelValue: {
260
- type: PropType<boolean>;
261
- };
262
- scrim: {
263
- type: PropType<boolean>;
264
- };
265
- scrimOpacity: {
266
- type: PropType<number>;
267
- };
268
- eager: {
269
- type: PropType<boolean>;
270
- };
271
- classes: {
272
- type: PropType<string | Record<string, any> | string[]>;
273
- };
274
- contentClasses: {
275
- type: PropType<string | Record<string, any> | string[]>;
276
- };
277
- closeClickScrim: {
278
- type: PropType<boolean>;
279
- };
280
- contentStyles: {
281
- type: PropType<import('vue').CSSProperties>;
282
- default: () => void;
283
- };
284
- disabled: {
285
- type: PropType<boolean>;
286
- default: boolean;
287
- };
288
- openOnHover: {
289
- type: PropType<boolean>;
290
- default: boolean;
291
- };
292
- openDelay: {
293
- type: PropType<number>;
294
- default: number;
295
- };
296
- closeDelay: {
297
- type: PropType<number>;
298
- default: number;
299
- };
300
- zIndex: {
301
- type: PropType<string | number>;
302
- default: number;
303
- };
304
- modal: PropType<boolean>;
305
- }, {
306
- complementClickOption: {
307
- handler: (mouseEvent: MouseEvent) => void;
308
- determine?: ((event: Event) => boolean) | undefined;
309
- include?: (() => (HTMLElement | undefined)[]) | undefined;
310
- };
311
- layerGroup: import('vue').ComputedRef<HTMLElement>;
312
- active: import('vue').WritableComputedRef<boolean>;
313
- finish: import('vue').ShallowRef<boolean>;
314
- rendered: import('vue').ComputedRef<boolean>;
315
- lazyValue: import('vue').ComputedRef<any>;
316
- onAfterUpdate: () => void;
317
- scrim$: import('vue').Ref<HTMLElement | undefined>;
318
- content$: import('vue').Ref<HTMLElement | undefined>;
319
- base$: import('vue').Ref<any>;
320
- baseEl: import('vue').Ref<HTMLElement | undefined>;
321
- baseFromSlotEl: import('vue').ComputedRef<any>;
322
- polyTransitionBindProps: import('vue').ComputedRef<{
323
- is: any;
324
- transitionProps: any;
325
- }>;
326
- coordinateStyles: import('vue').Ref<{
327
- [x: `--${string}`]: string | number | undefined;
328
- accentColor?: import("csstype").Property.AccentColor | undefined;
329
- alignContent?: import("csstype").Property.AlignContent | undefined;
330
- alignItems?: import("csstype").Property.AlignItems | undefined;
331
- alignSelf?: import("csstype").Property.AlignSelf | undefined;
332
- alignTracks?: import("csstype").Property.AlignTracks | undefined;
333
- animationComposition?: import("csstype").Property.AnimationComposition | undefined;
334
- animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
335
- animationDirection?: import("csstype").Property.AnimationDirection | undefined;
336
- animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
337
- animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
338
- animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
339
- animationName?: import("csstype").Property.AnimationName | undefined;
340
- animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
341
- animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
342
- animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
343
- animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
344
- animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
345
- appearance?: import("csstype").Property.Appearance | undefined;
346
- aspectRatio?: import("csstype").Property.AspectRatio | undefined;
347
- backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
348
- backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
349
- backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
350
- backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
351
- backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
352
- backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
353
- backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
354
- backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
355
- backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
356
- backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
357
- backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
358
- backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
359
- blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
360
- blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
361
- borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
362
- borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
363
- borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
364
- borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
365
- borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
366
- borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
367
- borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
368
- borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
369
- borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
370
- borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
371
- borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
372
- borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
373
- borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
374
- borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
375
- borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
376
- borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
377
- borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
378
- borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
379
- borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
380
- borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
381
- borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
382
- borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
383
- borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
384
- borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
385
- borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
386
- borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
387
- borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
388
- borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
389
- borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
390
- borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
391
- borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
392
- borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
393
- borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
394
- borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
395
- borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
396
- borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
397
- borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
398
- borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
399
- borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
400
- borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
401
- borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
402
- borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
403
- borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
404
- borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
405
- borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
406
- bottom?: import("csstype").Property.Bottom<string | number> | undefined;
407
- boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
408
- boxShadow?: import("csstype").Property.BoxShadow | undefined;
409
- boxSizing?: import("csstype").Property.BoxSizing | undefined;
410
- breakAfter?: import("csstype").Property.BreakAfter | undefined;
411
- breakBefore?: import("csstype").Property.BreakBefore | undefined;
412
- breakInside?: import("csstype").Property.BreakInside | undefined;
413
- captionSide?: import("csstype").Property.CaptionSide | undefined;
414
- caretColor?: import("csstype").Property.CaretColor | undefined;
415
- caretShape?: import("csstype").Property.CaretShape | undefined;
416
- clear?: import("csstype").Property.Clear | undefined;
417
- clipPath?: import("csstype").Property.ClipPath | undefined;
418
- color?: import("csstype").Property.Color | undefined;
419
- colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
420
- colorScheme?: import("csstype").Property.ColorScheme | undefined;
421
- columnCount?: import("csstype").Property.ColumnCount | undefined;
422
- columnFill?: import("csstype").Property.ColumnFill | undefined;
423
- columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
424
- columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
425
- columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
426
- columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
427
- columnSpan?: import("csstype").Property.ColumnSpan | undefined;
428
- columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
429
- contain?: import("csstype").Property.Contain | undefined;
430
- containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
431
- containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
432
- containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
433
- containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
434
- containerName?: import("csstype").Property.ContainerName | undefined;
435
- containerType?: import("csstype").Property.ContainerType | undefined;
436
- content?: import("csstype").Property.Content | undefined;
437
- contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
438
- counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
439
- counterReset?: import("csstype").Property.CounterReset | undefined;
440
- counterSet?: import("csstype").Property.CounterSet | undefined;
441
- cursor?: import("csstype").Property.Cursor | undefined;
442
- direction?: import("csstype").Property.Direction | undefined;
443
- display?: import("csstype").Property.Display | undefined;
444
- emptyCells?: import("csstype").Property.EmptyCells | undefined;
445
- filter?: import("csstype").Property.Filter | undefined;
446
- flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
447
- flexDirection?: import("csstype").Property.FlexDirection | undefined;
448
- flexGrow?: import("csstype").Property.FlexGrow | undefined;
449
- flexShrink?: import("csstype").Property.FlexShrink | undefined;
450
- flexWrap?: import("csstype").Property.FlexWrap | undefined;
451
- float?: import("csstype").Property.Float | undefined;
452
- fontFamily?: import("csstype").Property.FontFamily | undefined;
453
- fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
454
- fontKerning?: import("csstype").Property.FontKerning | undefined;
455
- fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
456
- fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
457
- fontPalette?: import("csstype").Property.FontPalette | undefined;
458
- fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
459
- fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
460
- fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
461
- fontStretch?: import("csstype").Property.FontStretch | undefined;
462
- fontStyle?: import("csstype").Property.FontStyle | undefined;
463
- fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
464
- fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
465
- fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
466
- fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
467
- fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
468
- fontVariant?: import("csstype").Property.FontVariant | undefined;
469
- fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
470
- fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
471
- fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
472
- fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
473
- fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
474
- fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
475
- fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
476
- fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
477
- fontWeight?: import("csstype").Property.FontWeight | undefined;
478
- forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
479
- gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
480
- gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
481
- gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
482
- gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
483
- gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
484
- gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
485
- gridRowStart?: import("csstype").Property.GridRowStart | undefined;
486
- gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
487
- gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
488
- gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
489
- hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
490
- height?: import("csstype").Property.Height<string | number> | undefined;
491
- hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
492
- hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
493
- hyphens?: import("csstype").Property.Hyphens | undefined;
494
- imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
495
- imageRendering?: import("csstype").Property.ImageRendering | undefined;
496
- imageResolution?: import("csstype").Property.ImageResolution | undefined;
497
- initialLetter?: import("csstype").Property.InitialLetter | undefined;
498
- inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
499
- inputSecurity?: import("csstype").Property.InputSecurity | undefined;
500
- insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
501
- insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
502
- insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
503
- insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
504
- isolation?: import("csstype").Property.Isolation | undefined;
505
- justifyContent?: import("csstype").Property.JustifyContent | undefined;
506
- justifyItems?: import("csstype").Property.JustifyItems | undefined;
507
- justifySelf?: import("csstype").Property.JustifySelf | undefined;
508
- justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
509
- left?: import("csstype").Property.Left<string | number> | undefined;
510
- letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
511
- lineBreak?: import("csstype").Property.LineBreak | undefined;
512
- lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
513
- lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
514
- listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
515
- listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
516
- listStyleType?: import("csstype").Property.ListStyleType | undefined;
517
- marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
518
- marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
519
- marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
520
- marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
521
- marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
522
- marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
523
- marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
524
- marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
525
- marginTrim?: import("csstype").Property.MarginTrim | undefined;
526
- maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
527
- maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
528
- maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
529
- maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
530
- maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
531
- maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
532
- maskClip?: import("csstype").Property.MaskClip | undefined;
533
- maskComposite?: import("csstype").Property.MaskComposite | undefined;
534
- maskImage?: import("csstype").Property.MaskImage | undefined;
535
- maskMode?: import("csstype").Property.MaskMode | undefined;
536
- maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
537
- maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
538
- maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
539
- maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
540
- maskType?: import("csstype").Property.MaskType | undefined;
541
- masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
542
- mathDepth?: import("csstype").Property.MathDepth | undefined;
543
- mathShift?: import("csstype").Property.MathShift | undefined;
544
- mathStyle?: import("csstype").Property.MathStyle | undefined;
545
- maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
546
- maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
547
- maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
548
- maxLines?: import("csstype").Property.MaxLines | undefined;
549
- maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
550
- minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
551
- minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
552
- minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
553
- minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
554
- mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
555
- motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
556
- motionPath?: import("csstype").Property.OffsetPath | undefined;
557
- motionRotation?: import("csstype").Property.OffsetRotate | undefined;
558
- objectFit?: import("csstype").Property.ObjectFit | undefined;
559
- objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
560
- offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
561
- offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
562
- offsetPath?: import("csstype").Property.OffsetPath | undefined;
563
- offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
564
- offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
565
- offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
566
- opacity?: import("csstype").Property.Opacity | undefined;
567
- order?: import("csstype").Property.Order | undefined;
568
- orphans?: import("csstype").Property.Orphans | undefined;
569
- outlineColor?: import("csstype").Property.OutlineColor | undefined;
570
- outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
571
- outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
572
- outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
573
- overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
574
- overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
575
- overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
576
- overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
577
- overflowInline?: import("csstype").Property.OverflowInline | undefined;
578
- overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
579
- overflowX?: import("csstype").Property.OverflowX | undefined;
580
- overflowY?: import("csstype").Property.OverflowY | undefined;
581
- overlay?: import("csstype").Property.Overlay | undefined;
582
- overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
583
- overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
584
- overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
585
- overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
586
- paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
587
- paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
588
- paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
589
- paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
590
- paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
591
- paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
592
- paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
593
- paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
594
- page?: import("csstype").Property.Page | undefined;
595
- pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
596
- pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
597
- pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
598
- paintOrder?: import("csstype").Property.PaintOrder | undefined;
599
- perspective?: import("csstype").Property.Perspective<string | number> | undefined;
600
- perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
601
- pointerEvents?: import("csstype").Property.PointerEvents | undefined;
602
- position?: import("csstype").Property.Position | undefined;
603
- printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
604
- quotes?: import("csstype").Property.Quotes | undefined;
605
- resize?: import("csstype").Property.Resize | undefined;
606
- right?: import("csstype").Property.Right<string | number> | undefined;
607
- rotate?: import("csstype").Property.Rotate | undefined;
608
- rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
609
- rubyAlign?: import("csstype").Property.RubyAlign | undefined;
610
- rubyMerge?: import("csstype").Property.RubyMerge | undefined;
611
- rubyPosition?: import("csstype").Property.RubyPosition | undefined;
612
- scale?: import("csstype").Property.Scale | undefined;
613
- scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
614
- scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
615
- scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
616
- scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
617
- scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
618
- scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
619
- scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
620
- scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
621
- scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
622
- scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
623
- scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
624
- scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
625
- scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
626
- scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
627
- scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
628
- scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
629
- scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
630
- scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
631
- scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
632
- scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
633
- scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
634
- scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
635
- scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
636
- scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
637
- scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
638
- scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
639
- scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
640
- scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
641
- scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
642
- shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
643
- shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
644
- shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
645
- tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
646
- tableLayout?: import("csstype").Property.TableLayout | undefined;
647
- textAlign?: import("csstype").Property.TextAlign | undefined;
648
- textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
649
- textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
650
- textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
651
- textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
652
- textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
653
- textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
654
- textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
655
- textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
656
- textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
657
- textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
658
- textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
659
- textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
660
- textJustify?: import("csstype").Property.TextJustify | undefined;
661
- textOrientation?: import("csstype").Property.TextOrientation | undefined;
662
- textOverflow?: import("csstype").Property.TextOverflow | undefined;
663
- textRendering?: import("csstype").Property.TextRendering | undefined;
664
- textShadow?: import("csstype").Property.TextShadow | undefined;
665
- textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
666
- textTransform?: import("csstype").Property.TextTransform | undefined;
667
- textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
668
- textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
669
- textWrap?: import("csstype").Property.TextWrap | undefined;
670
- timelineScope?: import("csstype").Property.TimelineScope | undefined;
671
- top?: import("csstype").Property.Top<string | number> | undefined;
672
- touchAction?: import("csstype").Property.TouchAction | undefined;
673
- transform?: import("csstype").Property.Transform | undefined;
674
- transformBox?: import("csstype").Property.TransformBox | undefined;
675
- transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
676
- transformStyle?: import("csstype").Property.TransformStyle | undefined;
677
- transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
678
- transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
679
- transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
680
- transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
681
- transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
682
- translate?: import("csstype").Property.Translate<string | number> | undefined;
683
- unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
684
- userSelect?: import("csstype").Property.UserSelect | undefined;
685
- verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
686
- viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
687
- viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
688
- viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
689
- viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
690
- visibility?: import("csstype").Property.Visibility | undefined;
691
- whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
692
- whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
693
- whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
694
- widows?: import("csstype").Property.Widows | undefined;
695
- width?: import("csstype").Property.Width<string | number> | undefined;
696
- willChange?: import("csstype").Property.WillChange | undefined;
697
- wordBreak?: import("csstype").Property.WordBreak | undefined;
698
- wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
699
- wordWrap?: import("csstype").Property.WordWrap | undefined;
700
- writingMode?: import("csstype").Property.WritingMode | undefined;
701
- zIndex?: import("csstype").Property.ZIndex | undefined;
702
- zoom?: import("csstype").Property.Zoom | undefined;
703
- all?: import('csstype').Globals | undefined;
704
- animation?: import("csstype").Property.Animation<string & {}> | undefined;
705
- animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
706
- background?: import("csstype").Property.Background<string | number> | undefined;
707
- backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
708
- border?: import("csstype").Property.Border<string | number> | undefined;
709
- borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
710
- borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
711
- borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
712
- borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
713
- borderColor?: import("csstype").Property.BorderColor | undefined;
714
- borderImage?: import("csstype").Property.BorderImage | undefined;
715
- borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
716
- borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
717
- borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
718
- borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
719
- borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
720
- borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
721
- borderStyle?: import("csstype").Property.BorderStyle | undefined;
722
- borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
723
- borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
724
- caret?: import("csstype").Property.Caret | undefined;
725
- columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
726
- columns?: import("csstype").Property.Columns<string | number> | undefined;
727
- containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
728
- container?: import("csstype").Property.Container | undefined;
729
- flex?: import("csstype").Property.Flex<string | number> | undefined;
730
- flexFlow?: import("csstype").Property.FlexFlow | undefined;
731
- font?: import("csstype").Property.Font | undefined;
732
- gap?: import("csstype").Property.Gap<string | number> | undefined;
733
- grid?: import("csstype").Property.Grid | undefined;
734
- gridArea?: import("csstype").Property.GridArea | undefined;
735
- gridColumn?: import("csstype").Property.GridColumn | undefined;
736
- gridRow?: import("csstype").Property.GridRow | undefined;
737
- gridTemplate?: import("csstype").Property.GridTemplate | undefined;
738
- inset?: import("csstype").Property.Inset<string | number> | undefined;
739
- insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
740
- insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
741
- lineClamp?: import("csstype").Property.LineClamp | undefined;
742
- listStyle?: import("csstype").Property.ListStyle | undefined;
743
- margin?: import("csstype").Property.Margin<string | number> | undefined;
744
- marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
745
- marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
746
- mask?: import("csstype").Property.Mask<string | number> | undefined;
747
- maskBorder?: import("csstype").Property.MaskBorder | undefined;
748
- motion?: import("csstype").Property.Offset<string | number> | undefined;
749
- offset?: import("csstype").Property.Offset<string | number> | undefined;
750
- outline?: import("csstype").Property.Outline<string | number> | undefined;
751
- overflow?: import("csstype").Property.Overflow | undefined;
752
- overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
753
- padding?: import("csstype").Property.Padding<string | number> | undefined;
754
- paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
755
- paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
756
- placeContent?: import("csstype").Property.PlaceContent | undefined;
757
- placeItems?: import("csstype").Property.PlaceItems | undefined;
758
- placeSelf?: import("csstype").Property.PlaceSelf | undefined;
759
- scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
760
- scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
761
- scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
762
- scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
763
- scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
764
- scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
765
- scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
766
- scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
767
- textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
768
- textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
769
- transition?: import("csstype").Property.Transition<string & {}> | undefined;
770
- viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
771
- MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
772
- MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
773
- MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
774
- MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
775
- MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
776
- MozAnimationName?: import("csstype").Property.AnimationName | undefined;
777
- MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
778
- MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
779
- MozAppearance?: import("csstype").Property.MozAppearance | undefined;
780
- MozBinding?: import("csstype").Property.MozBinding | undefined;
781
- MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
782
- MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
783
- MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
784
- MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
785
- MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
786
- MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
787
- MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
788
- MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
789
- MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
790
- MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
791
- MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
792
- MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
793
- MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
794
- MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
795
- MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
796
- MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
797
- MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
798
- MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
799
- MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
800
- MozHyphens?: import("csstype").Property.Hyphens | undefined;
801
- MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
802
- MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
803
- MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
804
- MozOrient?: import("csstype").Property.MozOrient | undefined;
805
- MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
806
- MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
807
- MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
808
- MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
809
- MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
810
- MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
811
- MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
812
- MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
813
- MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
814
- MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
815
- MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
816
- MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
817
- MozUserModify?: import("csstype").Property.MozUserModify | undefined;
818
- MozUserSelect?: import("csstype").Property.UserSelect | undefined;
819
- MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
820
- MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
821
- msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
822
- msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
823
- msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
824
- msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
825
- msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
826
- msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
827
- msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
828
- msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
829
- msFilter?: import("csstype").Property.MsFilter | undefined;
830
- msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
831
- msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
832
- msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
833
- msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
834
- msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
835
- msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
836
- msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
837
- msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
838
- msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
839
- msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
840
- msHyphens?: import("csstype").Property.Hyphens | undefined;
841
- msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
842
- msLineBreak?: import("csstype").Property.LineBreak | undefined;
843
- msOrder?: import("csstype").Property.Order | undefined;
844
- msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
845
- msOverflowX?: import("csstype").Property.OverflowX | undefined;
846
- msOverflowY?: import("csstype").Property.OverflowY | undefined;
847
- msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
848
- msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
849
- msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
850
- msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
851
- msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
852
- msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
853
- msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
854
- msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
855
- msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
856
- msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
857
- msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
858
- msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
859
- msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
860
- msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
861
- msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
862
- msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
863
- msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
864
- msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
865
- msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
866
- msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
867
- msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
868
- msTouchAction?: import("csstype").Property.TouchAction | undefined;
869
- msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
870
- msTransform?: import("csstype").Property.Transform | undefined;
871
- msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
872
- msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
873
- msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
874
- msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
875
- msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
876
- msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
877
- msWordBreak?: import("csstype").Property.WordBreak | undefined;
878
- msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
879
- msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
880
- msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
881
- msWritingMode?: import("csstype").Property.WritingMode | undefined;
882
- WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
883
- WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
884
- WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
885
- WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
886
- WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
887
- WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
888
- WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
889
- WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
890
- WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
891
- WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
892
- WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
893
- WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
894
- WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
895
- WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
896
- WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
897
- WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
898
- WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
899
- WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
900
- WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
901
- WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
902
- WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
903
- WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
904
- WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
905
- WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
906
- WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
907
- WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
908
- WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
909
- WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
910
- WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
911
- WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
912
- WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
913
- WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
914
- WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
915
- WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
916
- WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
917
- WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
918
- WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
919
- WebkitFilter?: import("csstype").Property.Filter | undefined;
920
- WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
921
- WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
922
- WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
923
- WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
924
- WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
925
- WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
926
- WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
927
- WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
928
- WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
929
- WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
930
- WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
931
- WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
932
- WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
933
- WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
934
- WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
935
- WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
936
- WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
937
- WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
938
- WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
939
- WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
940
- WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
941
- WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
942
- WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
943
- WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
944
- WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
945
- WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
946
- WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
947
- WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
948
- WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
949
- WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
950
- WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
951
- WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
952
- WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
953
- WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
954
- WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
955
- WebkitOrder?: import("csstype").Property.Order | undefined;
956
- WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
957
- WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
958
- WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
959
- WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
960
- WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
961
- WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
962
- WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
963
- WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
964
- WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
965
- WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
966
- WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
967
- WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
968
- WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
969
- WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
970
- WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
971
- WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
972
- WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
973
- WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
974
- WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
975
- WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
976
- WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
977
- WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
978
- WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
979
- WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
980
- WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
981
- WebkitTransform?: import("csstype").Property.Transform | undefined;
982
- WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
983
- WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
984
- WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
985
- WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
986
- WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
987
- WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
988
- WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
989
- WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
990
- WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
991
- MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
992
- MozBorderImage?: import("csstype").Property.BorderImage | undefined;
993
- MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
994
- MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
995
- MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
996
- msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
997
- msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
998
- msFlex?: import("csstype").Property.Flex<string | number> | undefined;
999
- msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
1000
- msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
1001
- msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
1002
- msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1003
- WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1004
- WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
1005
- WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
1006
- WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1007
- WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
1008
- WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
1009
- WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
1010
- WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
1011
- WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
1012
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
1013
- WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
1014
- WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
1015
- WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1016
- azimuth?: import("csstype").Property.Azimuth | undefined;
1017
- boxAlign?: import("csstype").Property.BoxAlign | undefined;
1018
- boxDirection?: import("csstype").Property.BoxDirection | undefined;
1019
- boxFlex?: import("csstype").Property.BoxFlex | undefined;
1020
- boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1021
- boxLines?: import("csstype").Property.BoxLines | undefined;
1022
- boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1023
- boxOrient?: import("csstype").Property.BoxOrient | undefined;
1024
- boxPack?: import("csstype").Property.BoxPack | undefined;
1025
- clip?: import("csstype").Property.Clip | undefined;
1026
- gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
1027
- gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
1028
- gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
1029
- imeMode?: import("csstype").Property.ImeMode | undefined;
1030
- offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
1031
- offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1032
- offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1033
- offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
1034
- offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1035
- offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1036
- scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
1037
- scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
1038
- scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
1039
- scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
1040
- scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
1041
- scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
1042
- KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1043
- KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1044
- KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1045
- KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1046
- KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
1047
- KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1048
- KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1049
- KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
1050
- KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
1051
- KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
1052
- KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
1053
- MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
1054
- MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
1055
- MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
1056
- MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
1057
- MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1058
- MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
1059
- MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1060
- MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1061
- MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1062
- MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1063
- MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1064
- MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1065
- MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1066
- MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1067
- MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1068
- MozBoxPack?: import("csstype").Property.BoxPack | undefined;
1069
- MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
1070
- MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
1071
- MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1072
- MozOpacity?: import("csstype").Property.Opacity | undefined;
1073
- MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
1074
- MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
1075
- MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
1076
- MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1077
- MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
1078
- MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1079
- MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
1080
- MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
1081
- MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
1082
- MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
1083
- MozTransform?: import("csstype").Property.Transform | undefined;
1084
- MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1085
- MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
1086
- MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1087
- MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1088
- MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1089
- MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1090
- MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1091
- MozUserInput?: import("csstype").Property.MozUserInput | undefined;
1092
- msImeMode?: import("csstype").Property.ImeMode | undefined;
1093
- OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
1094
- OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1095
- OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
1096
- OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1097
- OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
1098
- OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
1099
- OAnimationName?: import("csstype").Property.AnimationName | undefined;
1100
- OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
1101
- OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
1102
- OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1103
- OBorderImage?: import("csstype").Property.BorderImage | undefined;
1104
- OObjectFit?: import("csstype").Property.ObjectFit | undefined;
1105
- OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1106
- OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
1107
- OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
1108
- OTransform?: import("csstype").Property.Transform | undefined;
1109
- OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1110
- OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
1111
- OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1112
- OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1113
- OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
1114
- OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
1115
- WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
1116
- WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
1117
- WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
1118
- WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
1119
- WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
1120
- WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
1121
- WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
1122
- WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
1123
- alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
1124
- baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
1125
- clipRule?: import("csstype").Property.ClipRule | undefined;
1126
- colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
1127
- colorRendering?: import("csstype").Property.ColorRendering | undefined;
1128
- dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
1129
- fill?: import("csstype").Property.Fill | undefined;
1130
- fillOpacity?: import("csstype").Property.FillOpacity | undefined;
1131
- fillRule?: import("csstype").Property.FillRule | undefined;
1132
- floodColor?: import("csstype").Property.FloodColor | undefined;
1133
- floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
1134
- glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
1135
- lightingColor?: import("csstype").Property.LightingColor | undefined;
1136
- marker?: import("csstype").Property.Marker | undefined;
1137
- markerEnd?: import("csstype").Property.MarkerEnd | undefined;
1138
- markerMid?: import("csstype").Property.MarkerMid | undefined;
1139
- markerStart?: import("csstype").Property.MarkerStart | undefined;
1140
- shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
1141
- stopColor?: import("csstype").Property.StopColor | undefined;
1142
- stopOpacity?: import("csstype").Property.StopOpacity | undefined;
1143
- stroke?: import("csstype").Property.Stroke | undefined;
1144
- strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
1145
- strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
1146
- strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
1147
- strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
1148
- strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
1149
- strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
1150
- strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
1151
- textAnchor?: import("csstype").Property.TextAnchor | undefined;
1152
- vectorEffect?: import("csstype").Property.VectorEffect | undefined;
1153
- "accent-color"?: import("csstype").Property.AccentColor | undefined;
1154
- "align-content"?: import("csstype").Property.AlignContent | undefined;
1155
- "align-items"?: import("csstype").Property.AlignItems | undefined;
1156
- "align-self"?: import("csstype").Property.AlignSelf | undefined;
1157
- "align-tracks"?: import("csstype").Property.AlignTracks | undefined;
1158
- "animation-composition"?: import("csstype").Property.AnimationComposition | undefined;
1159
- "animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1160
- "animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
1161
- "animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1162
- "animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
1163
- "animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
1164
- "animation-name"?: import("csstype").Property.AnimationName | undefined;
1165
- "animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
1166
- "animation-range-end"?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
1167
- "animation-range-start"?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
1168
- "animation-timeline"?: import("csstype").Property.AnimationTimeline | undefined;
1169
- "animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
1170
- "aspect-ratio"?: import("csstype").Property.AspectRatio | undefined;
1171
- "backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
1172
- "backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
1173
- "background-attachment"?: import("csstype").Property.BackgroundAttachment | undefined;
1174
- "background-blend-mode"?: import("csstype").Property.BackgroundBlendMode | undefined;
1175
- "background-clip"?: import("csstype").Property.BackgroundClip | undefined;
1176
- "background-color"?: import("csstype").Property.BackgroundColor | undefined;
1177
- "background-image"?: import("csstype").Property.BackgroundImage | undefined;
1178
- "background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
1179
- "background-position-x"?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
1180
- "background-position-y"?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
1181
- "background-repeat"?: import("csstype").Property.BackgroundRepeat | undefined;
1182
- "background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1183
- "block-overflow"?: import("csstype").Property.BlockOverflow | undefined;
1184
- "block-size"?: import("csstype").Property.BlockSize<string | number> | undefined;
1185
- "border-block-color"?: import("csstype").Property.BorderBlockColor | undefined;
1186
- "border-block-end-color"?: import("csstype").Property.BorderBlockEndColor | undefined;
1187
- "border-block-end-style"?: import("csstype").Property.BorderBlockEndStyle | undefined;
1188
- "border-block-end-width"?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
1189
- "border-block-start-color"?: import("csstype").Property.BorderBlockStartColor | undefined;
1190
- "border-block-start-style"?: import("csstype").Property.BorderBlockStartStyle | undefined;
1191
- "border-block-start-width"?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
1192
- "border-block-style"?: import("csstype").Property.BorderBlockStyle | undefined;
1193
- "border-block-width"?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
1194
- "border-bottom-color"?: import("csstype").Property.BorderBottomColor | undefined;
1195
- "border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1196
- "border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1197
- "border-bottom-style"?: import("csstype").Property.BorderBottomStyle | undefined;
1198
- "border-bottom-width"?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
1199
- "border-collapse"?: import("csstype").Property.BorderCollapse | undefined;
1200
- "border-end-end-radius"?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
1201
- "border-end-start-radius"?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
1202
- "border-image-outset"?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
1203
- "border-image-repeat"?: import("csstype").Property.BorderImageRepeat | undefined;
1204
- "border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
1205
- "border-image-source"?: import("csstype").Property.BorderImageSource | undefined;
1206
- "border-image-width"?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
1207
- "border-inline-color"?: import("csstype").Property.BorderInlineColor | undefined;
1208
- "border-inline-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
1209
- "border-inline-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
1210
- "border-inline-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1211
- "border-inline-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
1212
- "border-inline-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
1213
- "border-inline-start-width"?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
1214
- "border-inline-style"?: import("csstype").Property.BorderInlineStyle | undefined;
1215
- "border-inline-width"?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
1216
- "border-left-color"?: import("csstype").Property.BorderLeftColor | undefined;
1217
- "border-left-style"?: import("csstype").Property.BorderLeftStyle | undefined;
1218
- "border-left-width"?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
1219
- "border-right-color"?: import("csstype").Property.BorderRightColor | undefined;
1220
- "border-right-style"?: import("csstype").Property.BorderRightStyle | undefined;
1221
- "border-right-width"?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
1222
- "border-spacing"?: import("csstype").Property.BorderSpacing<string | number> | undefined;
1223
- "border-start-end-radius"?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
1224
- "border-start-start-radius"?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
1225
- "border-top-color"?: import("csstype").Property.BorderTopColor | undefined;
1226
- "border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1227
- "border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1228
- "border-top-style"?: import("csstype").Property.BorderTopStyle | undefined;
1229
- "border-top-width"?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
1230
- "box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
1231
- "box-shadow"?: import("csstype").Property.BoxShadow | undefined;
1232
- "box-sizing"?: import("csstype").Property.BoxSizing | undefined;
1233
- "break-after"?: import("csstype").Property.BreakAfter | undefined;
1234
- "break-before"?: import("csstype").Property.BreakBefore | undefined;
1235
- "break-inside"?: import("csstype").Property.BreakInside | undefined;
1236
- "caption-side"?: import("csstype").Property.CaptionSide | undefined;
1237
- "caret-color"?: import("csstype").Property.CaretColor | undefined;
1238
- "caret-shape"?: import("csstype").Property.CaretShape | undefined;
1239
- "clip-path"?: import("csstype").Property.ClipPath | undefined;
1240
- "color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
1241
- "color-scheme"?: import("csstype").Property.ColorScheme | undefined;
1242
- "column-count"?: import("csstype").Property.ColumnCount | undefined;
1243
- "column-fill"?: import("csstype").Property.ColumnFill | undefined;
1244
- "column-gap"?: import("csstype").Property.ColumnGap<string | number> | undefined;
1245
- "column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
1246
- "column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
1247
- "column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1248
- "column-span"?: import("csstype").Property.ColumnSpan | undefined;
1249
- "column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1250
- "contain-intrinsic-block-size"?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
1251
- "contain-intrinsic-height"?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
1252
- "contain-intrinsic-inline-size"?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
1253
- "contain-intrinsic-width"?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
1254
- "container-name"?: import("csstype").Property.ContainerName | undefined;
1255
- "container-type"?: import("csstype").Property.ContainerType | undefined;
1256
- "content-visibility"?: import("csstype").Property.ContentVisibility | undefined;
1257
- "counter-increment"?: import("csstype").Property.CounterIncrement | undefined;
1258
- "counter-reset"?: import("csstype").Property.CounterReset | undefined;
1259
- "counter-set"?: import("csstype").Property.CounterSet | undefined;
1260
- "empty-cells"?: import("csstype").Property.EmptyCells | undefined;
1261
- "flex-basis"?: import("csstype").Property.FlexBasis<string | number> | undefined;
1262
- "flex-direction"?: import("csstype").Property.FlexDirection | undefined;
1263
- "flex-grow"?: import("csstype").Property.FlexGrow | undefined;
1264
- "flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
1265
- "flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
1266
- "font-family"?: import("csstype").Property.FontFamily | undefined;
1267
- "font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
1268
- "font-kerning"?: import("csstype").Property.FontKerning | undefined;
1269
- "font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
1270
- "font-optical-sizing"?: import("csstype").Property.FontOpticalSizing | undefined;
1271
- "font-palette"?: import("csstype").Property.FontPalette | undefined;
1272
- "font-size"?: import("csstype").Property.FontSize<string | number> | undefined;
1273
- "font-size-adjust"?: import("csstype").Property.FontSizeAdjust | undefined;
1274
- "font-smooth"?: import("csstype").Property.FontSmooth<string | number> | undefined;
1275
- "font-stretch"?: import("csstype").Property.FontStretch | undefined;
1276
- "font-style"?: import("csstype").Property.FontStyle | undefined;
1277
- "font-synthesis"?: import("csstype").Property.FontSynthesis | undefined;
1278
- "font-synthesis-position"?: import("csstype").Property.FontSynthesisPosition | undefined;
1279
- "font-synthesis-small-caps"?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
1280
- "font-synthesis-style"?: import("csstype").Property.FontSynthesisStyle | undefined;
1281
- "font-synthesis-weight"?: import("csstype").Property.FontSynthesisWeight | undefined;
1282
- "font-variant"?: import("csstype").Property.FontVariant | undefined;
1283
- "font-variant-alternates"?: import("csstype").Property.FontVariantAlternates | undefined;
1284
- "font-variant-caps"?: import("csstype").Property.FontVariantCaps | undefined;
1285
- "font-variant-east-asian"?: import("csstype").Property.FontVariantEastAsian | undefined;
1286
- "font-variant-emoji"?: import("csstype").Property.FontVariantEmoji | undefined;
1287
- "font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
1288
- "font-variant-numeric"?: import("csstype").Property.FontVariantNumeric | undefined;
1289
- "font-variant-position"?: import("csstype").Property.FontVariantPosition | undefined;
1290
- "font-variation-settings"?: import("csstype").Property.FontVariationSettings | undefined;
1291
- "font-weight"?: import("csstype").Property.FontWeight | undefined;
1292
- "forced-color-adjust"?: import("csstype").Property.ForcedColorAdjust | undefined;
1293
- "grid-auto-columns"?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
1294
- "grid-auto-flow"?: import("csstype").Property.GridAutoFlow | undefined;
1295
- "grid-auto-rows"?: import("csstype").Property.GridAutoRows<string | number> | undefined;
1296
- "grid-column-end"?: import("csstype").Property.GridColumnEnd | undefined;
1297
- "grid-column-start"?: import("csstype").Property.GridColumnStart | undefined;
1298
- "grid-row-end"?: import("csstype").Property.GridRowEnd | undefined;
1299
- "grid-row-start"?: import("csstype").Property.GridRowStart | undefined;
1300
- "grid-template-areas"?: import("csstype").Property.GridTemplateAreas | undefined;
1301
- "grid-template-columns"?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
1302
- "grid-template-rows"?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
1303
- "hanging-punctuation"?: import("csstype").Property.HangingPunctuation | undefined;
1304
- "hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
1305
- "hyphenate-limit-chars"?: import("csstype").Property.HyphenateLimitChars | undefined;
1306
- "image-orientation"?: import("csstype").Property.ImageOrientation | undefined;
1307
- "image-rendering"?: import("csstype").Property.ImageRendering | undefined;
1308
- "image-resolution"?: import("csstype").Property.ImageResolution | undefined;
1309
- "initial-letter"?: import("csstype").Property.InitialLetter | undefined;
1310
- "inline-size"?: import("csstype").Property.InlineSize<string | number> | undefined;
1311
- "input-security"?: import("csstype").Property.InputSecurity | undefined;
1312
- "inset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1313
- "inset-block-start"?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1314
- "inset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1315
- "inset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1316
- "justify-content"?: import("csstype").Property.JustifyContent | undefined;
1317
- "justify-items"?: import("csstype").Property.JustifyItems | undefined;
1318
- "justify-self"?: import("csstype").Property.JustifySelf | undefined;
1319
- "justify-tracks"?: import("csstype").Property.JustifyTracks | undefined;
1320
- "letter-spacing"?: import("csstype").Property.LetterSpacing<string | number> | undefined;
1321
- "line-break"?: import("csstype").Property.LineBreak | undefined;
1322
- "line-height"?: import("csstype").Property.LineHeight<string | number> | undefined;
1323
- "line-height-step"?: import("csstype").Property.LineHeightStep<string | number> | undefined;
1324
- "list-style-image"?: import("csstype").Property.ListStyleImage | undefined;
1325
- "list-style-position"?: import("csstype").Property.ListStylePosition | undefined;
1326
- "list-style-type"?: import("csstype").Property.ListStyleType | undefined;
1327
- "margin-block-end"?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
1328
- "margin-block-start"?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
1329
- "margin-bottom"?: import("csstype").Property.MarginBottom<string | number> | undefined;
1330
- "margin-inline-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1331
- "margin-inline-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1332
- "margin-left"?: import("csstype").Property.MarginLeft<string | number> | undefined;
1333
- "margin-right"?: import("csstype").Property.MarginRight<string | number> | undefined;
1334
- "margin-top"?: import("csstype").Property.MarginTop<string | number> | undefined;
1335
- "margin-trim"?: import("csstype").Property.MarginTrim | undefined;
1336
- "mask-border-mode"?: import("csstype").Property.MaskBorderMode | undefined;
1337
- "mask-border-outset"?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1338
- "mask-border-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
1339
- "mask-border-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
1340
- "mask-border-source"?: import("csstype").Property.MaskBorderSource | undefined;
1341
- "mask-border-width"?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1342
- "mask-clip"?: import("csstype").Property.MaskClip | undefined;
1343
- "mask-composite"?: import("csstype").Property.MaskComposite | undefined;
1344
- "mask-image"?: import("csstype").Property.MaskImage | undefined;
1345
- "mask-mode"?: import("csstype").Property.MaskMode | undefined;
1346
- "mask-origin"?: import("csstype").Property.MaskOrigin | undefined;
1347
- "mask-position"?: import("csstype").Property.MaskPosition<string | number> | undefined;
1348
- "mask-repeat"?: import("csstype").Property.MaskRepeat | undefined;
1349
- "mask-size"?: import("csstype").Property.MaskSize<string | number> | undefined;
1350
- "mask-type"?: import("csstype").Property.MaskType | undefined;
1351
- "masonry-auto-flow"?: import("csstype").Property.MasonryAutoFlow | undefined;
1352
- "math-depth"?: import("csstype").Property.MathDepth | undefined;
1353
- "math-shift"?: import("csstype").Property.MathShift | undefined;
1354
- "math-style"?: import("csstype").Property.MathStyle | undefined;
1355
- "max-block-size"?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
1356
- "max-height"?: import("csstype").Property.MaxHeight<string | number> | undefined;
1357
- "max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1358
- "max-lines"?: import("csstype").Property.MaxLines | undefined;
1359
- "max-width"?: import("csstype").Property.MaxWidth<string | number> | undefined;
1360
- "min-block-size"?: import("csstype").Property.MinBlockSize<string | number> | undefined;
1361
- "min-height"?: import("csstype").Property.MinHeight<string | number> | undefined;
1362
- "min-inline-size"?: import("csstype").Property.MinInlineSize<string | number> | undefined;
1363
- "min-width"?: import("csstype").Property.MinWidth<string | number> | undefined;
1364
- "mix-blend-mode"?: import("csstype").Property.MixBlendMode | undefined;
1365
- "motion-distance"?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1366
- "motion-path"?: import("csstype").Property.OffsetPath | undefined;
1367
- "motion-rotation"?: import("csstype").Property.OffsetRotate | undefined;
1368
- "object-fit"?: import("csstype").Property.ObjectFit | undefined;
1369
- "object-position"?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1370
- "offset-anchor"?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
1371
- "offset-distance"?: import("csstype").Property.OffsetDistance<string | number> | undefined;
1372
- "offset-path"?: import("csstype").Property.OffsetPath | undefined;
1373
- "offset-position"?: import("csstype").Property.OffsetPosition<string | number> | undefined;
1374
- "offset-rotate"?: import("csstype").Property.OffsetRotate | undefined;
1375
- "offset-rotation"?: import("csstype").Property.OffsetRotate | undefined;
1376
- "outline-color"?: import("csstype").Property.OutlineColor | undefined;
1377
- "outline-offset"?: import("csstype").Property.OutlineOffset<string | number> | undefined;
1378
- "outline-style"?: import("csstype").Property.OutlineStyle | undefined;
1379
- "outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1380
- "overflow-anchor"?: import("csstype").Property.OverflowAnchor | undefined;
1381
- "overflow-block"?: import("csstype").Property.OverflowBlock | undefined;
1382
- "overflow-clip-box"?: import("csstype").Property.OverflowClipBox | undefined;
1383
- "overflow-clip-margin"?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
1384
- "overflow-inline"?: import("csstype").Property.OverflowInline | undefined;
1385
- "overflow-wrap"?: import("csstype").Property.OverflowWrap | undefined;
1386
- "overflow-x"?: import("csstype").Property.OverflowX | undefined;
1387
- "overflow-y"?: import("csstype").Property.OverflowY | undefined;
1388
- "overscroll-behavior-block"?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
1389
- "overscroll-behavior-inline"?: import("csstype").Property.OverscrollBehaviorInline | undefined;
1390
- "overscroll-behavior-x"?: import("csstype").Property.OverscrollBehaviorX | undefined;
1391
- "overscroll-behavior-y"?: import("csstype").Property.OverscrollBehaviorY | undefined;
1392
- "padding-block-end"?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
1393
- "padding-block-start"?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
1394
- "padding-bottom"?: import("csstype").Property.PaddingBottom<string | number> | undefined;
1395
- "padding-inline-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1396
- "padding-inline-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1397
- "padding-left"?: import("csstype").Property.PaddingLeft<string | number> | undefined;
1398
- "padding-right"?: import("csstype").Property.PaddingRight<string | number> | undefined;
1399
- "padding-top"?: import("csstype").Property.PaddingTop<string | number> | undefined;
1400
- "page-break-after"?: import("csstype").Property.PageBreakAfter | undefined;
1401
- "page-break-before"?: import("csstype").Property.PageBreakBefore | undefined;
1402
- "page-break-inside"?: import("csstype").Property.PageBreakInside | undefined;
1403
- "paint-order"?: import("csstype").Property.PaintOrder | undefined;
1404
- "perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1405
- "pointer-events"?: import("csstype").Property.PointerEvents | undefined;
1406
- "print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
1407
- "row-gap"?: import("csstype").Property.RowGap<string | number> | undefined;
1408
- "ruby-align"?: import("csstype").Property.RubyAlign | undefined;
1409
- "ruby-merge"?: import("csstype").Property.RubyMerge | undefined;
1410
- "ruby-position"?: import("csstype").Property.RubyPosition | undefined;
1411
- "scroll-behavior"?: import("csstype").Property.ScrollBehavior | undefined;
1412
- "scroll-margin-block-end"?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
1413
- "scroll-margin-block-start"?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
1414
- "scroll-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1415
- "scroll-margin-inline-end"?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
1416
- "scroll-margin-inline-start"?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
1417
- "scroll-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1418
- "scroll-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1419
- "scroll-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1420
- "scroll-padding-block-end"?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
1421
- "scroll-padding-block-start"?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
1422
- "scroll-padding-bottom"?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
1423
- "scroll-padding-inline-end"?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
1424
- "scroll-padding-inline-start"?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
1425
- "scroll-padding-left"?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
1426
- "scroll-padding-right"?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
1427
- "scroll-padding-top"?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
1428
- "scroll-snap-align"?: import("csstype").Property.ScrollSnapAlign | undefined;
1429
- "scroll-snap-margin-bottom"?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
1430
- "scroll-snap-margin-left"?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
1431
- "scroll-snap-margin-right"?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
1432
- "scroll-snap-margin-top"?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
1433
- "scroll-snap-stop"?: import("csstype").Property.ScrollSnapStop | undefined;
1434
- "scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
1435
- "scroll-timeline-axis"?: import("csstype").Property.ScrollTimelineAxis | undefined;
1436
- "scroll-timeline-name"?: import("csstype").Property.ScrollTimelineName | undefined;
1437
- "scrollbar-color"?: import("csstype").Property.ScrollbarColor | undefined;
1438
- "scrollbar-gutter"?: import("csstype").Property.ScrollbarGutter | undefined;
1439
- "scrollbar-width"?: import("csstype").Property.ScrollbarWidth | undefined;
1440
- "shape-image-threshold"?: import("csstype").Property.ShapeImageThreshold | undefined;
1441
- "shape-margin"?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1442
- "shape-outside"?: import("csstype").Property.ShapeOutside | undefined;
1443
- "tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
1444
- "table-layout"?: import("csstype").Property.TableLayout | undefined;
1445
- "text-align"?: import("csstype").Property.TextAlign | undefined;
1446
- "text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
1447
- "text-combine-upright"?: import("csstype").Property.TextCombineUpright | undefined;
1448
- "text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
1449
- "text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
1450
- "text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
1451
- "text-decoration-skip-ink"?: import("csstype").Property.TextDecorationSkipInk | undefined;
1452
- "text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
1453
- "text-decoration-thickness"?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
1454
- "text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
1455
- "text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
1456
- "text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
1457
- "text-indent"?: import("csstype").Property.TextIndent<string | number> | undefined;
1458
- "text-justify"?: import("csstype").Property.TextJustify | undefined;
1459
- "text-orientation"?: import("csstype").Property.TextOrientation | undefined;
1460
- "text-overflow"?: import("csstype").Property.TextOverflow | undefined;
1461
- "text-rendering"?: import("csstype").Property.TextRendering | undefined;
1462
- "text-shadow"?: import("csstype").Property.TextShadow | undefined;
1463
- "text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
1464
- "text-transform"?: import("csstype").Property.TextTransform | undefined;
1465
- "text-underline-offset"?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
1466
- "text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
1467
- "text-wrap"?: import("csstype").Property.TextWrap | undefined;
1468
- "timeline-scope"?: import("csstype").Property.TimelineScope | undefined;
1469
- "touch-action"?: import("csstype").Property.TouchAction | undefined;
1470
- "transform-box"?: import("csstype").Property.TransformBox | undefined;
1471
- "transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1472
- "transform-style"?: import("csstype").Property.TransformStyle | undefined;
1473
- "transition-behavior"?: import("csstype").Property.TransitionBehavior | undefined;
1474
- "transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1475
- "transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1476
- "transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1477
- "transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1478
- "unicode-bidi"?: import("csstype").Property.UnicodeBidi | undefined;
1479
- "user-select"?: import("csstype").Property.UserSelect | undefined;
1480
- "vertical-align"?: import("csstype").Property.VerticalAlign<string | number> | undefined;
1481
- "view-timeline-axis"?: import("csstype").Property.ViewTimelineAxis | undefined;
1482
- "view-timeline-inset"?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
1483
- "view-timeline-name"?: import("csstype").Property.ViewTimelineName | undefined;
1484
- "view-transition-name"?: import("csstype").Property.ViewTransitionName | undefined;
1485
- "white-space"?: import("csstype").Property.WhiteSpace | undefined;
1486
- "white-space-collapse"?: import("csstype").Property.WhiteSpaceCollapse | undefined;
1487
- "white-space-trim"?: import("csstype").Property.WhiteSpaceTrim | undefined;
1488
- "will-change"?: import("csstype").Property.WillChange | undefined;
1489
- "word-break"?: import("csstype").Property.WordBreak | undefined;
1490
- "word-spacing"?: import("csstype").Property.WordSpacing<string | number> | undefined;
1491
- "word-wrap"?: import("csstype").Property.WordWrap | undefined;
1492
- "writing-mode"?: import("csstype").Property.WritingMode | undefined;
1493
- "z-index"?: import("csstype").Property.ZIndex | undefined;
1494
- "animation-range"?: import("csstype").Property.AnimationRange<string | number> | undefined;
1495
- "background-position"?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
1496
- "border-block"?: import("csstype").Property.BorderBlock<string | number> | undefined;
1497
- "border-block-end"?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
1498
- "border-block-start"?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
1499
- "border-bottom"?: import("csstype").Property.BorderBottom<string | number> | undefined;
1500
- "border-color"?: import("csstype").Property.BorderColor | undefined;
1501
- "border-image"?: import("csstype").Property.BorderImage | undefined;
1502
- "border-inline"?: import("csstype").Property.BorderInline<string | number> | undefined;
1503
- "border-inline-end"?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
1504
- "border-inline-start"?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
1505
- "border-left"?: import("csstype").Property.BorderLeft<string | number> | undefined;
1506
- "border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
1507
- "border-right"?: import("csstype").Property.BorderRight<string | number> | undefined;
1508
- "border-style"?: import("csstype").Property.BorderStyle | undefined;
1509
- "border-top"?: import("csstype").Property.BorderTop<string | number> | undefined;
1510
- "border-width"?: import("csstype").Property.BorderWidth<string | number> | undefined;
1511
- "column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
1512
- "contain-intrinsic-size"?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
1513
- "flex-flow"?: import("csstype").Property.FlexFlow | undefined;
1514
- "grid-area"?: import("csstype").Property.GridArea | undefined;
1515
- "grid-column"?: import("csstype").Property.GridColumn | undefined;
1516
- "grid-row"?: import("csstype").Property.GridRow | undefined;
1517
- "grid-template"?: import("csstype").Property.GridTemplate | undefined;
1518
- "inset-block"?: import("csstype").Property.InsetBlock<string | number> | undefined;
1519
- "inset-inline"?: import("csstype").Property.InsetInline<string | number> | undefined;
1520
- "line-clamp"?: import("csstype").Property.LineClamp | undefined;
1521
- "list-style"?: import("csstype").Property.ListStyle | undefined;
1522
- "margin-block"?: import("csstype").Property.MarginBlock<string | number> | undefined;
1523
- "margin-inline"?: import("csstype").Property.MarginInline<string | number> | undefined;
1524
- "mask-border"?: import("csstype").Property.MaskBorder | undefined;
1525
- "overscroll-behavior"?: import("csstype").Property.OverscrollBehavior | undefined;
1526
- "padding-block"?: import("csstype").Property.PaddingBlock<string | number> | undefined;
1527
- "padding-inline"?: import("csstype").Property.PaddingInline<string | number> | undefined;
1528
- "place-content"?: import("csstype").Property.PlaceContent | undefined;
1529
- "place-items"?: import("csstype").Property.PlaceItems | undefined;
1530
- "place-self"?: import("csstype").Property.PlaceSelf | undefined;
1531
- "scroll-margin"?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1532
- "scroll-margin-block"?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
1533
- "scroll-margin-inline"?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
1534
- "scroll-padding"?: import("csstype").Property.ScrollPadding<string | number> | undefined;
1535
- "scroll-padding-block"?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
1536
- "scroll-padding-inline"?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
1537
- "scroll-snap-margin"?: import("csstype").Property.ScrollMargin<string | number> | undefined;
1538
- "scroll-timeline"?: import("csstype").Property.ScrollTimeline | undefined;
1539
- "text-decoration"?: import("csstype").Property.TextDecoration<string | number> | undefined;
1540
- "text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
1541
- "view-timeline"?: import("csstype").Property.ViewTimeline | undefined;
1542
- "-moz-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1543
- "-moz-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
1544
- "-moz-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1545
- "-moz-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
1546
- "-moz-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
1547
- "-moz-animation-name"?: import("csstype").Property.AnimationName | undefined;
1548
- "-moz-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
1549
- "-moz-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
1550
- "-moz-appearance"?: import("csstype").Property.MozAppearance | undefined;
1551
- "-moz-binding"?: import("csstype").Property.MozBinding | undefined;
1552
- "-moz-border-bottom-colors"?: import("csstype").Property.MozBorderBottomColors | undefined;
1553
- "-moz-border-end-color"?: import("csstype").Property.BorderInlineEndColor | undefined;
1554
- "-moz-border-end-style"?: import("csstype").Property.BorderInlineEndStyle | undefined;
1555
- "-moz-border-end-width"?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
1556
- "-moz-border-left-colors"?: import("csstype").Property.MozBorderLeftColors | undefined;
1557
- "-moz-border-right-colors"?: import("csstype").Property.MozBorderRightColors | undefined;
1558
- "-moz-border-start-color"?: import("csstype").Property.BorderInlineStartColor | undefined;
1559
- "-moz-border-start-style"?: import("csstype").Property.BorderInlineStartStyle | undefined;
1560
- "-moz-border-top-colors"?: import("csstype").Property.MozBorderTopColors | undefined;
1561
- "-moz-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
1562
- "-moz-column-count"?: import("csstype").Property.ColumnCount | undefined;
1563
- "-moz-column-fill"?: import("csstype").Property.ColumnFill | undefined;
1564
- "-moz-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
1565
- "-moz-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
1566
- "-moz-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1567
- "-moz-column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1568
- "-moz-context-properties"?: import("csstype").Property.MozContextProperties | undefined;
1569
- "-moz-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
1570
- "-moz-font-language-override"?: import("csstype").Property.FontLanguageOverride | undefined;
1571
- "-moz-hyphens"?: import("csstype").Property.Hyphens | undefined;
1572
- "-moz-image-region"?: import("csstype").Property.MozImageRegion | undefined;
1573
- "-moz-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1574
- "-moz-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1575
- "-moz-orient"?: import("csstype").Property.MozOrient | undefined;
1576
- "-moz-osx-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
1577
- "-moz-outline-radius-bottomleft"?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
1578
- "-moz-outline-radius-bottomright"?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
1579
- "-moz-outline-radius-topleft"?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
1580
- "-moz-outline-radius-topright"?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
1581
- "-moz-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1582
- "-moz-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1583
- "-moz-stack-sizing"?: import("csstype").Property.MozStackSizing | undefined;
1584
- "-moz-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
1585
- "-moz-text-blink"?: import("csstype").Property.MozTextBlink | undefined;
1586
- "-moz-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
1587
- "-moz-user-focus"?: import("csstype").Property.MozUserFocus | undefined;
1588
- "-moz-user-modify"?: import("csstype").Property.MozUserModify | undefined;
1589
- "-moz-user-select"?: import("csstype").Property.UserSelect | undefined;
1590
- "-moz-window-dragging"?: import("csstype").Property.MozWindowDragging | undefined;
1591
- "-moz-window-shadow"?: import("csstype").Property.MozWindowShadow | undefined;
1592
- "-ms-accelerator"?: import("csstype").Property.MsAccelerator | undefined;
1593
- "-ms-block-progression"?: import("csstype").Property.MsBlockProgression | undefined;
1594
- "-ms-content-zoom-chaining"?: import("csstype").Property.MsContentZoomChaining | undefined;
1595
- "-ms-content-zoom-limit-max"?: import("csstype").Property.MsContentZoomLimitMax | undefined;
1596
- "-ms-content-zoom-limit-min"?: import("csstype").Property.MsContentZoomLimitMin | undefined;
1597
- "-ms-content-zoom-snap-points"?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
1598
- "-ms-content-zoom-snap-type"?: import("csstype").Property.MsContentZoomSnapType | undefined;
1599
- "-ms-content-zooming"?: import("csstype").Property.MsContentZooming | undefined;
1600
- "-ms-filter"?: import("csstype").Property.MsFilter | undefined;
1601
- "-ms-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
1602
- "-ms-flex-positive"?: import("csstype").Property.FlexGrow | undefined;
1603
- "-ms-flow-from"?: import("csstype").Property.MsFlowFrom | undefined;
1604
- "-ms-flow-into"?: import("csstype").Property.MsFlowInto | undefined;
1605
- "-ms-grid-columns"?: import("csstype").Property.MsGridColumns<string | number> | undefined;
1606
- "-ms-grid-rows"?: import("csstype").Property.MsGridRows<string | number> | undefined;
1607
- "-ms-high-contrast-adjust"?: import("csstype").Property.MsHighContrastAdjust | undefined;
1608
- "-ms-hyphenate-limit-chars"?: import("csstype").Property.MsHyphenateLimitChars | undefined;
1609
- "-ms-hyphenate-limit-lines"?: import("csstype").Property.MsHyphenateLimitLines | undefined;
1610
- "-ms-hyphenate-limit-zone"?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
1611
- "-ms-hyphens"?: import("csstype").Property.Hyphens | undefined;
1612
- "-ms-ime-align"?: import("csstype").Property.MsImeAlign | undefined;
1613
- "-ms-line-break"?: import("csstype").Property.LineBreak | undefined;
1614
- "-ms-order"?: import("csstype").Property.Order | undefined;
1615
- "-ms-overflow-style"?: import("csstype").Property.MsOverflowStyle | undefined;
1616
- "-ms-overflow-x"?: import("csstype").Property.OverflowX | undefined;
1617
- "-ms-overflow-y"?: import("csstype").Property.OverflowY | undefined;
1618
- "-ms-scroll-chaining"?: import("csstype").Property.MsScrollChaining | undefined;
1619
- "-ms-scroll-limit-x-max"?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
1620
- "-ms-scroll-limit-x-min"?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
1621
- "-ms-scroll-limit-y-max"?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
1622
- "-ms-scroll-limit-y-min"?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
1623
- "-ms-scroll-rails"?: import("csstype").Property.MsScrollRails | undefined;
1624
- "-ms-scroll-snap-points-x"?: import("csstype").Property.MsScrollSnapPointsX | undefined;
1625
- "-ms-scroll-snap-points-y"?: import("csstype").Property.MsScrollSnapPointsY | undefined;
1626
- "-ms-scroll-snap-type"?: import("csstype").Property.MsScrollSnapType | undefined;
1627
- "-ms-scroll-translation"?: import("csstype").Property.MsScrollTranslation | undefined;
1628
- "-ms-scrollbar-3dlight-color"?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
1629
- "-ms-scrollbar-arrow-color"?: import("csstype").Property.MsScrollbarArrowColor | undefined;
1630
- "-ms-scrollbar-base-color"?: import("csstype").Property.MsScrollbarBaseColor | undefined;
1631
- "-ms-scrollbar-darkshadow-color"?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
1632
- "-ms-scrollbar-face-color"?: import("csstype").Property.MsScrollbarFaceColor | undefined;
1633
- "-ms-scrollbar-highlight-color"?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
1634
- "-ms-scrollbar-shadow-color"?: import("csstype").Property.MsScrollbarShadowColor | undefined;
1635
- "-ms-scrollbar-track-color"?: import("csstype").Property.MsScrollbarTrackColor | undefined;
1636
- "-ms-text-autospace"?: import("csstype").Property.MsTextAutospace | undefined;
1637
- "-ms-text-combine-horizontal"?: import("csstype").Property.TextCombineUpright | undefined;
1638
- "-ms-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
1639
- "-ms-touch-action"?: import("csstype").Property.TouchAction | undefined;
1640
- "-ms-touch-select"?: import("csstype").Property.MsTouchSelect | undefined;
1641
- "-ms-transform"?: import("csstype").Property.Transform | undefined;
1642
- "-ms-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1643
- "-ms-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1644
- "-ms-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1645
- "-ms-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1646
- "-ms-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1647
- "-ms-user-select"?: import("csstype").Property.MsUserSelect | undefined;
1648
- "-ms-word-break"?: import("csstype").Property.WordBreak | undefined;
1649
- "-ms-wrap-flow"?: import("csstype").Property.MsWrapFlow | undefined;
1650
- "-ms-wrap-margin"?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
1651
- "-ms-wrap-through"?: import("csstype").Property.MsWrapThrough | undefined;
1652
- "-ms-writing-mode"?: import("csstype").Property.WritingMode | undefined;
1653
- "-webkit-align-content"?: import("csstype").Property.AlignContent | undefined;
1654
- "-webkit-align-items"?: import("csstype").Property.AlignItems | undefined;
1655
- "-webkit-align-self"?: import("csstype").Property.AlignSelf | undefined;
1656
- "-webkit-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1657
- "-webkit-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
1658
- "-webkit-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1659
- "-webkit-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
1660
- "-webkit-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
1661
- "-webkit-animation-name"?: import("csstype").Property.AnimationName | undefined;
1662
- "-webkit-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
1663
- "-webkit-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
1664
- "-webkit-appearance"?: import("csstype").Property.WebkitAppearance | undefined;
1665
- "-webkit-backdrop-filter"?: import("csstype").Property.BackdropFilter | undefined;
1666
- "-webkit-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
1667
- "-webkit-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
1668
- "-webkit-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
1669
- "-webkit-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1670
- "-webkit-border-before-color"?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
1671
- "-webkit-border-before-style"?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
1672
- "-webkit-border-before-width"?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
1673
- "-webkit-border-bottom-left-radius"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1674
- "-webkit-border-bottom-right-radius"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1675
- "-webkit-border-image-slice"?: import("csstype").Property.BorderImageSlice | undefined;
1676
- "-webkit-border-top-left-radius"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1677
- "-webkit-border-top-right-radius"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1678
- "-webkit-box-decoration-break"?: import("csstype").Property.BoxDecorationBreak | undefined;
1679
- "-webkit-box-reflect"?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
1680
- "-webkit-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
1681
- "-webkit-box-sizing"?: import("csstype").Property.BoxSizing | undefined;
1682
- "-webkit-clip-path"?: import("csstype").Property.ClipPath | undefined;
1683
- "-webkit-column-count"?: import("csstype").Property.ColumnCount | undefined;
1684
- "-webkit-column-fill"?: import("csstype").Property.ColumnFill | undefined;
1685
- "-webkit-column-rule-color"?: import("csstype").Property.ColumnRuleColor | undefined;
1686
- "-webkit-column-rule-style"?: import("csstype").Property.ColumnRuleStyle | undefined;
1687
- "-webkit-column-rule-width"?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
1688
- "-webkit-column-span"?: import("csstype").Property.ColumnSpan | undefined;
1689
- "-webkit-column-width"?: import("csstype").Property.ColumnWidth<string | number> | undefined;
1690
- "-webkit-filter"?: import("csstype").Property.Filter | undefined;
1691
- "-webkit-flex-basis"?: import("csstype").Property.FlexBasis<string | number> | undefined;
1692
- "-webkit-flex-direction"?: import("csstype").Property.FlexDirection | undefined;
1693
- "-webkit-flex-grow"?: import("csstype").Property.FlexGrow | undefined;
1694
- "-webkit-flex-shrink"?: import("csstype").Property.FlexShrink | undefined;
1695
- "-webkit-flex-wrap"?: import("csstype").Property.FlexWrap | undefined;
1696
- "-webkit-font-feature-settings"?: import("csstype").Property.FontFeatureSettings | undefined;
1697
- "-webkit-font-kerning"?: import("csstype").Property.FontKerning | undefined;
1698
- "-webkit-font-smoothing"?: import("csstype").Property.FontSmooth<string | number> | undefined;
1699
- "-webkit-font-variant-ligatures"?: import("csstype").Property.FontVariantLigatures | undefined;
1700
- "-webkit-hyphenate-character"?: import("csstype").Property.HyphenateCharacter | undefined;
1701
- "-webkit-hyphens"?: import("csstype").Property.Hyphens | undefined;
1702
- "-webkit-initial-letter"?: import("csstype").Property.InitialLetter | undefined;
1703
- "-webkit-justify-content"?: import("csstype").Property.JustifyContent | undefined;
1704
- "-webkit-line-break"?: import("csstype").Property.LineBreak | undefined;
1705
- "-webkit-line-clamp"?: import("csstype").Property.WebkitLineClamp | undefined;
1706
- "-webkit-margin-end"?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
1707
- "-webkit-margin-start"?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
1708
- "-webkit-mask-attachment"?: import("csstype").Property.WebkitMaskAttachment | undefined;
1709
- "-webkit-mask-box-image-outset"?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
1710
- "-webkit-mask-box-image-repeat"?: import("csstype").Property.MaskBorderRepeat | undefined;
1711
- "-webkit-mask-box-image-slice"?: import("csstype").Property.MaskBorderSlice | undefined;
1712
- "-webkit-mask-box-image-source"?: import("csstype").Property.MaskBorderSource | undefined;
1713
- "-webkit-mask-box-image-width"?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
1714
- "-webkit-mask-clip"?: import("csstype").Property.WebkitMaskClip | undefined;
1715
- "-webkit-mask-composite"?: import("csstype").Property.WebkitMaskComposite | undefined;
1716
- "-webkit-mask-image"?: import("csstype").Property.WebkitMaskImage | undefined;
1717
- "-webkit-mask-origin"?: import("csstype").Property.WebkitMaskOrigin | undefined;
1718
- "-webkit-mask-position"?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
1719
- "-webkit-mask-position-x"?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
1720
- "-webkit-mask-position-y"?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
1721
- "-webkit-mask-repeat"?: import("csstype").Property.WebkitMaskRepeat | undefined;
1722
- "-webkit-mask-repeat-x"?: import("csstype").Property.WebkitMaskRepeatX | undefined;
1723
- "-webkit-mask-repeat-y"?: import("csstype").Property.WebkitMaskRepeatY | undefined;
1724
- "-webkit-mask-size"?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
1725
- "-webkit-max-inline-size"?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
1726
- "-webkit-order"?: import("csstype").Property.Order | undefined;
1727
- "-webkit-overflow-scrolling"?: import("csstype").Property.WebkitOverflowScrolling | undefined;
1728
- "-webkit-padding-end"?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
1729
- "-webkit-padding-start"?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
1730
- "-webkit-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
1731
- "-webkit-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1732
- "-webkit-print-color-adjust"?: import("csstype").Property.PrintColorAdjust | undefined;
1733
- "-webkit-ruby-position"?: import("csstype").Property.RubyPosition | undefined;
1734
- "-webkit-scroll-snap-type"?: import("csstype").Property.ScrollSnapType | undefined;
1735
- "-webkit-shape-margin"?: import("csstype").Property.ShapeMargin<string | number> | undefined;
1736
- "-webkit-tap-highlight-color"?: import("csstype").Property.WebkitTapHighlightColor | undefined;
1737
- "-webkit-text-combine"?: import("csstype").Property.TextCombineUpright | undefined;
1738
- "-webkit-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
1739
- "-webkit-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
1740
- "-webkit-text-decoration-skip"?: import("csstype").Property.TextDecorationSkip | undefined;
1741
- "-webkit-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
1742
- "-webkit-text-emphasis-color"?: import("csstype").Property.TextEmphasisColor | undefined;
1743
- "-webkit-text-emphasis-position"?: import("csstype").Property.TextEmphasisPosition | undefined;
1744
- "-webkit-text-emphasis-style"?: import("csstype").Property.TextEmphasisStyle | undefined;
1745
- "-webkit-text-fill-color"?: import("csstype").Property.WebkitTextFillColor | undefined;
1746
- "-webkit-text-orientation"?: import("csstype").Property.TextOrientation | undefined;
1747
- "-webkit-text-size-adjust"?: import("csstype").Property.TextSizeAdjust | undefined;
1748
- "-webkit-text-stroke-color"?: import("csstype").Property.WebkitTextStrokeColor | undefined;
1749
- "-webkit-text-stroke-width"?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
1750
- "-webkit-text-underline-position"?: import("csstype").Property.TextUnderlinePosition | undefined;
1751
- "-webkit-touch-callout"?: import("csstype").Property.WebkitTouchCallout | undefined;
1752
- "-webkit-transform"?: import("csstype").Property.Transform | undefined;
1753
- "-webkit-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1754
- "-webkit-transform-style"?: import("csstype").Property.TransformStyle | undefined;
1755
- "-webkit-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1756
- "-webkit-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1757
- "-webkit-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1758
- "-webkit-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1759
- "-webkit-user-modify"?: import("csstype").Property.WebkitUserModify | undefined;
1760
- "-webkit-user-select"?: import("csstype").Property.UserSelect | undefined;
1761
- "-webkit-writing-mode"?: import("csstype").Property.WritingMode | undefined;
1762
- "-moz-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
1763
- "-moz-border-image"?: import("csstype").Property.BorderImage | undefined;
1764
- "-moz-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
1765
- "-moz-columns"?: import("csstype").Property.Columns<string | number> | undefined;
1766
- "-moz-outline-radius"?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
1767
- "-ms-content-zoom-limit"?: import("csstype").Property.MsContentZoomLimit | undefined;
1768
- "-ms-content-zoom-snap"?: import("csstype").Property.MsContentZoomSnap | undefined;
1769
- "-ms-flex"?: import("csstype").Property.Flex<string | number> | undefined;
1770
- "-ms-scroll-limit"?: import("csstype").Property.MsScrollLimit | undefined;
1771
- "-ms-scroll-snap-x"?: import("csstype").Property.MsScrollSnapX | undefined;
1772
- "-ms-scroll-snap-y"?: import("csstype").Property.MsScrollSnapY | undefined;
1773
- "-ms-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
1774
- "-webkit-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
1775
- "-webkit-border-before"?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
1776
- "-webkit-border-image"?: import("csstype").Property.BorderImage | undefined;
1777
- "-webkit-border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
1778
- "-webkit-column-rule"?: import("csstype").Property.ColumnRule<string | number> | undefined;
1779
- "-webkit-columns"?: import("csstype").Property.Columns<string | number> | undefined;
1780
- "-webkit-flex"?: import("csstype").Property.Flex<string | number> | undefined;
1781
- "-webkit-flex-flow"?: import("csstype").Property.FlexFlow | undefined;
1782
- "-webkit-mask"?: import("csstype").Property.WebkitMask<string | number> | undefined;
1783
- "-webkit-mask-box-image"?: import("csstype").Property.MaskBorder | undefined;
1784
- "-webkit-text-emphasis"?: import("csstype").Property.TextEmphasis | undefined;
1785
- "-webkit-text-stroke"?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
1786
- "-webkit-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
1787
- "box-align"?: import("csstype").Property.BoxAlign | undefined;
1788
- "box-direction"?: import("csstype").Property.BoxDirection | undefined;
1789
- "box-flex"?: import("csstype").Property.BoxFlex | undefined;
1790
- "box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
1791
- "box-lines"?: import("csstype").Property.BoxLines | undefined;
1792
- "box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
1793
- "box-orient"?: import("csstype").Property.BoxOrient | undefined;
1794
- "box-pack"?: import("csstype").Property.BoxPack | undefined;
1795
- "grid-column-gap"?: import("csstype").Property.GridColumnGap<string | number> | undefined;
1796
- "grid-gap"?: import("csstype").Property.GridGap<string | number> | undefined;
1797
- "grid-row-gap"?: import("csstype").Property.GridRowGap<string | number> | undefined;
1798
- "ime-mode"?: import("csstype").Property.ImeMode | undefined;
1799
- "offset-block"?: import("csstype").Property.InsetBlock<string | number> | undefined;
1800
- "offset-block-end"?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
1801
- "offset-block-start"?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
1802
- "offset-inline"?: import("csstype").Property.InsetInline<string | number> | undefined;
1803
- "offset-inline-end"?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
1804
- "offset-inline-start"?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
1805
- "scroll-snap-coordinate"?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
1806
- "scroll-snap-destination"?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
1807
- "scroll-snap-points-x"?: import("csstype").Property.ScrollSnapPointsX | undefined;
1808
- "scroll-snap-points-y"?: import("csstype").Property.ScrollSnapPointsY | undefined;
1809
- "scroll-snap-type-x"?: import("csstype").Property.ScrollSnapTypeX | undefined;
1810
- "scroll-snap-type-y"?: import("csstype").Property.ScrollSnapTypeY | undefined;
1811
- "-khtml-box-align"?: import("csstype").Property.BoxAlign | undefined;
1812
- "-khtml-box-direction"?: import("csstype").Property.BoxDirection | undefined;
1813
- "-khtml-box-flex"?: import("csstype").Property.BoxFlex | undefined;
1814
- "-khtml-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
1815
- "-khtml-box-lines"?: import("csstype").Property.BoxLines | undefined;
1816
- "-khtml-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
1817
- "-khtml-box-orient"?: import("csstype").Property.BoxOrient | undefined;
1818
- "-khtml-box-pack"?: import("csstype").Property.BoxPack | undefined;
1819
- "-khtml-line-break"?: import("csstype").Property.LineBreak | undefined;
1820
- "-khtml-opacity"?: import("csstype").Property.Opacity | undefined;
1821
- "-khtml-user-select"?: import("csstype").Property.UserSelect | undefined;
1822
- "-moz-backface-visibility"?: import("csstype").Property.BackfaceVisibility | undefined;
1823
- "-moz-background-clip"?: import("csstype").Property.BackgroundClip | undefined;
1824
- "-moz-background-inline-policy"?: import("csstype").Property.BoxDecorationBreak | undefined;
1825
- "-moz-background-origin"?: import("csstype").Property.BackgroundOrigin | undefined;
1826
- "-moz-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1827
- "-moz-border-radius"?: import("csstype").Property.BorderRadius<string | number> | undefined;
1828
- "-moz-border-radius-bottomleft"?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
1829
- "-moz-border-radius-bottomright"?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
1830
- "-moz-border-radius-topleft"?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
1831
- "-moz-border-radius-topright"?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
1832
- "-moz-box-align"?: import("csstype").Property.BoxAlign | undefined;
1833
- "-moz-box-direction"?: import("csstype").Property.BoxDirection | undefined;
1834
- "-moz-box-flex"?: import("csstype").Property.BoxFlex | undefined;
1835
- "-moz-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
1836
- "-moz-box-orient"?: import("csstype").Property.BoxOrient | undefined;
1837
- "-moz-box-pack"?: import("csstype").Property.BoxPack | undefined;
1838
- "-moz-box-shadow"?: import("csstype").Property.BoxShadow | undefined;
1839
- "-moz-float-edge"?: import("csstype").Property.MozFloatEdge | undefined;
1840
- "-moz-force-broken-image-icon"?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
1841
- "-moz-opacity"?: import("csstype").Property.Opacity | undefined;
1842
- "-moz-outline"?: import("csstype").Property.Outline<string | number> | undefined;
1843
- "-moz-outline-color"?: import("csstype").Property.OutlineColor | undefined;
1844
- "-moz-outline-style"?: import("csstype").Property.OutlineStyle | undefined;
1845
- "-moz-outline-width"?: import("csstype").Property.OutlineWidth<string | number> | undefined;
1846
- "-moz-perspective"?: import("csstype").Property.Perspective<string | number> | undefined;
1847
- "-moz-perspective-origin"?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
1848
- "-moz-text-align-last"?: import("csstype").Property.TextAlignLast | undefined;
1849
- "-moz-text-decoration-color"?: import("csstype").Property.TextDecorationColor | undefined;
1850
- "-moz-text-decoration-line"?: import("csstype").Property.TextDecorationLine | undefined;
1851
- "-moz-text-decoration-style"?: import("csstype").Property.TextDecorationStyle | undefined;
1852
- "-moz-transform"?: import("csstype").Property.Transform | undefined;
1853
- "-moz-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1854
- "-moz-transform-style"?: import("csstype").Property.TransformStyle | undefined;
1855
- "-moz-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
1856
- "-moz-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1857
- "-moz-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1858
- "-moz-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1859
- "-moz-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1860
- "-moz-user-input"?: import("csstype").Property.MozUserInput | undefined;
1861
- "-ms-ime-mode"?: import("csstype").Property.ImeMode | undefined;
1862
- "-o-animation"?: import("csstype").Property.Animation<string & {}> | undefined;
1863
- "-o-animation-delay"?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
1864
- "-o-animation-direction"?: import("csstype").Property.AnimationDirection | undefined;
1865
- "-o-animation-duration"?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
1866
- "-o-animation-fill-mode"?: import("csstype").Property.AnimationFillMode | undefined;
1867
- "-o-animation-iteration-count"?: import("csstype").Property.AnimationIterationCount | undefined;
1868
- "-o-animation-name"?: import("csstype").Property.AnimationName | undefined;
1869
- "-o-animation-play-state"?: import("csstype").Property.AnimationPlayState | undefined;
1870
- "-o-animation-timing-function"?: import("csstype").Property.AnimationTimingFunction | undefined;
1871
- "-o-background-size"?: import("csstype").Property.BackgroundSize<string | number> | undefined;
1872
- "-o-border-image"?: import("csstype").Property.BorderImage | undefined;
1873
- "-o-object-fit"?: import("csstype").Property.ObjectFit | undefined;
1874
- "-o-object-position"?: import("csstype").Property.ObjectPosition<string | number> | undefined;
1875
- "-o-tab-size"?: import("csstype").Property.TabSize<string | number> | undefined;
1876
- "-o-text-overflow"?: import("csstype").Property.TextOverflow | undefined;
1877
- "-o-transform"?: import("csstype").Property.Transform | undefined;
1878
- "-o-transform-origin"?: import("csstype").Property.TransformOrigin<string | number> | undefined;
1879
- "-o-transition"?: import("csstype").Property.Transition<string & {}> | undefined;
1880
- "-o-transition-delay"?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
1881
- "-o-transition-duration"?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
1882
- "-o-transition-property"?: import("csstype").Property.TransitionProperty | undefined;
1883
- "-o-transition-timing-function"?: import("csstype").Property.TransitionTimingFunction | undefined;
1884
- "-webkit-box-align"?: import("csstype").Property.BoxAlign | undefined;
1885
- "-webkit-box-direction"?: import("csstype").Property.BoxDirection | undefined;
1886
- "-webkit-box-flex"?: import("csstype").Property.BoxFlex | undefined;
1887
- "-webkit-box-flex-group"?: import("csstype").Property.BoxFlexGroup | undefined;
1888
- "-webkit-box-lines"?: import("csstype").Property.BoxLines | undefined;
1889
- "-webkit-box-ordinal-group"?: import("csstype").Property.BoxOrdinalGroup | undefined;
1890
- "-webkit-box-orient"?: import("csstype").Property.BoxOrient | undefined;
1891
- "-webkit-box-pack"?: import("csstype").Property.BoxPack | undefined;
1892
- "alignment-baseline"?: import("csstype").Property.AlignmentBaseline | undefined;
1893
- "baseline-shift"?: import("csstype").Property.BaselineShift<string | number> | undefined;
1894
- "clip-rule"?: import("csstype").Property.ClipRule | undefined;
1895
- "color-interpolation"?: import("csstype").Property.ColorInterpolation | undefined;
1896
- "color-rendering"?: import("csstype").Property.ColorRendering | undefined;
1897
- "dominant-baseline"?: import("csstype").Property.DominantBaseline | undefined;
1898
- "fill-opacity"?: import("csstype").Property.FillOpacity | undefined;
1899
- "fill-rule"?: import("csstype").Property.FillRule | undefined;
1900
- "flood-color"?: import("csstype").Property.FloodColor | undefined;
1901
- "flood-opacity"?: import("csstype").Property.FloodOpacity | undefined;
1902
- "glyph-orientation-vertical"?: import("csstype").Property.GlyphOrientationVertical | undefined;
1903
- "lighting-color"?: import("csstype").Property.LightingColor | undefined;
1904
- "marker-end"?: import("csstype").Property.MarkerEnd | undefined;
1905
- "marker-mid"?: import("csstype").Property.MarkerMid | undefined;
1906
- "marker-start"?: import("csstype").Property.MarkerStart | undefined;
1907
- "shape-rendering"?: import("csstype").Property.ShapeRendering | undefined;
1908
- "stop-color"?: import("csstype").Property.StopColor | undefined;
1909
- "stop-opacity"?: import("csstype").Property.StopOpacity | undefined;
1910
- "stroke-dasharray"?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
1911
- "stroke-dashoffset"?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
1912
- "stroke-linecap"?: import("csstype").Property.StrokeLinecap | undefined;
1913
- "stroke-linejoin"?: import("csstype").Property.StrokeLinejoin | undefined;
1914
- "stroke-miterlimit"?: import("csstype").Property.StrokeMiterlimit | undefined;
1915
- "stroke-opacity"?: import("csstype").Property.StrokeOpacity | undefined;
1916
- "stroke-width"?: import("csstype").Property.StrokeWidth<string | number> | undefined;
1917
- "text-anchor"?: import("csstype").Property.TextAnchor | undefined;
1918
- "vector-effect"?: import("csstype").Property.VectorEffect | undefined;
1919
- }>;
1920
- layerGroupState: WeakMap<HTMLElement, Set<any>>;
1921
- getActiveLayers: () => import('vue').ComponentInternalInstance[];
1922
- }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
1923
- 'update:modelValue': (value: boolean) => true;
1924
- 'click:complement': (mouseEvent: MouseEvent) => true;
1925
- afterLeave: () => true;
1926
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1927
- minWidth: PropType<string | number>;
1928
- width: PropType<string | number>;
1929
- maxWidth: PropType<string | number>;
1930
- minHeight: PropType<string | number>;
1931
- height: PropType<string | number>;
1932
- maxHeight: PropType<string | number>;
1933
- coordinateStrategy: {
1934
- type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
1935
- default: string;
1936
- };
1937
- position: {
1938
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
1939
- default: string;
1940
- };
1941
- align: {
1942
- type: PropType<"top" | "bottom" | "start" | "end" | "center">;
1943
- default: string;
1944
- };
1945
- origin: {
1946
- type: StringConstructor;
1947
- default: string;
1948
- };
1949
- offset: {
1950
- type: PropType<string | number | number[]>;
1951
- };
1952
- viewportMargin: {
1953
- type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
1954
- default: number;
1955
- };
1956
- closeClickContent: {
1957
- type: PropType<boolean>;
1958
- };
1959
- base: PropType<import('../layer/base').BaseType>;
1960
- transition: {
1961
- type: PropType<string | (import('vue').TransitionProps & {
1962
- is?: import('vue').Component | undefined;
1963
- })>;
1964
- default: string;
1965
- };
1966
- theme: PropType<string>;
1967
- modelValue: {
1968
- type: PropType<boolean>;
1969
- };
1970
- scrim: {
1971
- type: PropType<boolean>;
1972
- };
1973
- scrimOpacity: {
1974
- type: PropType<number>;
1975
- };
1976
- eager: {
1977
- type: PropType<boolean>;
1978
- };
1979
- classes: {
1980
- type: PropType<string | Record<string, any> | string[]>;
1981
- };
1982
- contentClasses: {
1983
- type: PropType<string | Record<string, any> | string[]>;
1984
- };
1985
- closeClickScrim: {
1986
- type: PropType<boolean>;
1987
- };
1988
- contentStyles: {
1989
- type: PropType<import('vue').CSSProperties>;
1990
- default: () => void;
1991
- };
1992
- disabled: {
1993
- type: PropType<boolean>;
1994
- default: boolean;
1995
- };
1996
- openOnHover: {
1997
- type: PropType<boolean>;
1998
- default: boolean;
1999
- };
2000
- openDelay: {
2001
- type: PropType<number>;
2002
- default: number;
2003
- };
2004
- closeDelay: {
2005
- type: PropType<number>;
2006
- default: number;
2007
- };
2008
- zIndex: {
2009
- type: PropType<string | number>;
2010
- default: number;
2011
- };
2012
- modal: PropType<boolean>;
2013
- }>> & {
2014
- "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2015
- onAfterLeave?: (() => any) | undefined;
2016
- "onClick:complement"?: ((mouseEvent: MouseEvent) => any) | undefined;
2017
- }, {
2018
- disabled: boolean;
2019
- align: "top" | "bottom" | "start" | "end" | "center";
2020
- closeDelay: number;
2021
- openDelay: number;
2022
- transition: string | (import('vue').TransitionProps & {
2023
- is?: import('vue').Component | undefined;
2024
- });
2025
- coordinateStrategy: "levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn;
2026
- position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
2027
- origin: string;
2028
- viewportMargin: string | number | unknown[];
2029
- zIndex: string | number;
2030
- contentStyles: import('vue').CSSProperties;
2031
- openOnHover: boolean;
2032
- }, SlotsType<{
2033
- base: any;
2034
- default: any;
2035
- }>> | undefined>;
2036
- baseEl: import('vue').ComputedRef<any>;
2037
- classes: import('vue').ComputedRef<{
2038
- 'y-menu': boolean;
2039
- }>;
2040
- children: import('vue').ShallowRef<any[]>;
2041
- parent: import('../layer/active-stack').ActiveStackProvide | null;
2042
- active: import('vue').Ref<any> & {
2043
- readonly rxValue: any;
2044
- };
2045
- hovered: import('vue').ComputedRef<boolean>;
2046
- }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:modelValue" | "afterLeave")[], "update:modelValue" | "afterLeave", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2047
- transition: {
2048
- default: string;
2049
- type: PropType<string | (import('vue').TransitionProps & {
2050
- is?: import('vue').Component | undefined;
2051
- })>;
2052
- };
2053
- preventCloseBubble: PropType<boolean>;
2054
- minWidth: PropType<string | number>;
2055
- width: PropType<string | number>;
2056
- maxWidth: PropType<string | number>;
2057
- minHeight: PropType<string | number>;
2058
- height: PropType<string | number>;
2059
- maxHeight: PropType<string | number>;
2060
- coordinateStrategy: Omit<{
2061
- type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
2062
- default: string;
2063
- }, "default" | "type"> & {
2064
- type: PropType<string | import('../../composables/coordinate').CoordinateStrategyFn>;
2065
- default: string | import('../../composables/coordinate').CoordinateStrategyFn;
2066
- };
2067
- position: {
2068
- type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
2069
- default: string;
2070
- };
2071
- align: {
2072
- type: PropType<"top" | "bottom" | "start" | "end" | "center">;
2073
- default: string;
2074
- };
2075
- origin: {
2076
- type: StringConstructor;
2077
- default: string;
2078
- };
2079
- offset: {
2080
- type: PropType<string | number | number[]>;
2081
- };
2082
- viewportMargin: {
2083
- type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
2084
- default: number;
2085
- };
2086
- closeClickContent: {
2087
- type: PropType<boolean>;
2088
- };
2089
- base: PropType<import('../layer/base').BaseType>;
2090
- theme: PropType<string>;
2091
- modelValue: {
2092
- type: PropType<boolean>;
2093
- };
2094
- scrim: {
2095
- type: PropType<boolean>;
2096
- };
2097
- scrimOpacity: {
2098
- type: PropType<number>;
2099
- };
2100
- eager: {
2101
- type: PropType<boolean>;
2102
- };
2103
- classes: {
2104
- type: PropType<string | Record<string, any> | string[]>;
2105
- };
2106
- contentClasses: {
2107
- type: PropType<string | Record<string, any> | string[]>;
2108
- };
2109
- closeClickScrim: {
2110
- type: PropType<boolean>;
2111
- };
2112
- contentStyles: {
2113
- type: PropType<import('vue').CSSProperties>;
2114
- default: () => void;
2115
- };
2116
- disabled: {
2117
- type: PropType<boolean>;
2118
- default: boolean;
2119
- };
2120
- openOnHover: {
2121
- type: PropType<boolean>;
2122
- default: boolean;
2123
- };
2124
- openDelay: {
2125
- type: PropType<number>;
2126
- default: number;
2127
- };
2128
- closeDelay: {
2129
- type: PropType<number>;
2130
- default: number;
2131
- };
2132
- zIndex: {
2133
- type: PropType<string | number>;
2134
- default: number;
2135
- };
2136
- menuClasses: {
2137
- type: PropType<string | Record<string, any> | string[]>;
2138
- };
2139
- openOnClickBase: {
2140
- type: PropType<boolean>;
2141
- default: boolean;
2142
- };
2143
- closeCondition: {
2144
- type: (BooleanConstructor | FunctionConstructor)[];
2145
- default: undefined;
2146
- };
2147
- preventClip: {
2148
- type: PropType<boolean>;
2149
- default: boolean;
2150
- };
2151
- }>> & {
2152
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2153
- onAfterLeave?: ((...args: any[]) => any) | undefined;
2154
- }, {
2155
- disabled: boolean;
2156
- align: "top" | "bottom" | "start" | "end" | "center";
2157
- closeDelay: number;
2158
- openDelay: number;
2159
- transition: string | (import('vue').TransitionProps & {
2160
- is?: import('vue').Component | undefined;
2161
- });
2162
- coordinateStrategy: string | import('../../composables/coordinate').CoordinateStrategyFn;
2163
- position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
2164
- origin: string;
2165
- viewportMargin: string | number | unknown[];
2166
- zIndex: string | number;
2167
- contentStyles: import('vue').CSSProperties;
2168
- openOnHover: boolean;
2169
- preventClip: boolean;
2170
- openOnClickBase: boolean;
2171
- closeCondition: boolean | Function;
2172
- }, SlotsType<{
2173
- default: any;
2174
- base: any;
2175
- }>>;
2176
- export type YMenu = InstanceType<typeof YMenu>;