@dt-frames/ui 2.0.24 → 3.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (350) hide show
  1. package/README.md +9 -9
  2. package/es/assets/icons/ui-blank.svg +1 -0
  3. package/es/assets/icons/ui-docx.svg +1 -0
  4. package/es/assets/icons/ui-exl.svg +1 -0
  5. package/es/assets/icons/ui-forder-open.svg +1 -0
  6. package/es/assets/icons/ui-forder.svg +1 -0
  7. package/es/assets/icons/ui-jpg.svg +1 -0
  8. package/es/assets/icons/ui-pdf.svg +1 -0
  9. package/es/assets/icons/ui-ppt.svg +1 -0
  10. package/es/assets/icons/ui-rar.svg +1 -0
  11. package/es/assets/icons/ui-table-empty.svg +1 -0
  12. package/es/assets/icons/ui-txt.svg +1 -0
  13. package/es/assets/index.e67ea2f5.css +1 -0
  14. package/es/assets/locales/en.d.ts +1 -0
  15. package/es/assets/locales/en.ts +1 -0
  16. package/es/assets/locales/zh.d.ts +1 -0
  17. package/es/assets/locales/zh.ts +1 -0
  18. package/es/assets/test.ts +1 -0
  19. package/es/components/container/index.d.ts +2 -93
  20. package/es/components/container/index.js +92 -15
  21. package/es/components/container/src/components/bar.d.ts +2 -2
  22. package/es/components/container/{index.less → src/index.scss} +9 -16
  23. package/es/components/container/src/utils/scroll.d.ts +1 -1
  24. package/es/components/curd/index.d.ts +3 -1
  25. package/es/components/curd/index.js +66 -141
  26. package/es/components/curd/src/components/props.d.ts +53 -0
  27. package/es/components/curd/src/components/types/curd.type.d.ts +13 -0
  28. package/es/components/curd/src/hooks/useCurd.d.ts +3 -110
  29. package/es/components/curd/src/props.d.ts +109 -159
  30. package/es/components/curd/src/types/curd.type.d.ts +54 -8
  31. package/es/components/drawer/index.d.ts +3 -7881
  32. package/es/components/drawer/index.js +209 -307
  33. package/es/components/drawer/src/components/DrawerFooter.d.ts +19 -21
  34. package/es/components/drawer/src/hooks/useDrawer.d.ts +2 -2
  35. package/es/components/drawer/src/index.d.ts +11 -7876
  36. package/es/components/drawer/src/index.scss +24 -0
  37. package/es/components/drawer/src/props.d.ts +2 -64
  38. package/es/components/drawer/src/{types/index.type.d.ts → type/drawer.type.d.ts} +26 -14
  39. package/es/components/form/index.d.ts +5 -5
  40. package/es/components/form/index.js +640 -636
  41. package/es/components/form/src/components/DynanicInput.d.ts +2 -0
  42. package/es/components/form/src/components/FormButtons.d.ts +13 -3086
  43. package/es/components/form/src/components/FormInputUseDialog.d.ts +2 -0
  44. package/es/components/form/src/components/FormItem.d.ts +53 -156
  45. package/es/components/form/src/components/RadioButton.d.ts +26 -0
  46. package/es/components/form/src/components/componentMap.d.ts +2 -2
  47. package/es/components/form/src/components/index.d.ts +2 -4
  48. package/es/components/form/src/hooks/useForm.d.ts +3 -3
  49. package/es/components/form/src/hooks/useFormActions.d.ts +38 -5
  50. package/es/components/form/src/hooks/useFormEvent.d.ts +9 -7
  51. package/es/components/form/src/hooks/useFormValue.d.ts +2 -2
  52. package/es/components/form/src/hooks/useFormValues.d.ts +8 -6
  53. package/es/components/form/src/hooks/useLabelWidth.d.ts +1 -1
  54. package/es/components/form/src/index.d.ts +358 -0
  55. package/es/components/form/src/index.scss +162 -0
  56. package/es/components/form/src/props.d.ts +45 -7
  57. package/es/components/form/src/types/actions.type.d.ts +1 -1
  58. package/es/components/form/src/types/form.type.d.ts +59 -26
  59. package/es/components/form/src/types/items.type.d.ts +33 -33
  60. package/es/components/form/src/{hooks → utils}/helper.d.ts +7 -0
  61. package/es/components/icons/index.d.ts +2 -497
  62. package/es/components/icons/index.js +42 -1911
  63. package/es/components/icons/src/{svg-icon.d.ts → SvgIcon.d.ts} +7 -14
  64. package/es/components/icons/src/index.scss +3 -0
  65. package/es/components/iframe/index.js +40 -29
  66. package/es/components/iframe/src/index.d.ts +16 -11
  67. package/es/components/iframe/src/index.scss +20 -0
  68. package/es/components/modal/index.d.ts +3 -2
  69. package/es/components/modal/index.js +188 -198
  70. package/es/components/modal/src/components/CloseIcon.d.ts +4 -20
  71. package/es/components/modal/src/components/Modal.d.ts +201 -108
  72. package/es/components/modal/src/components/ModalFooter.d.ts +12 -20
  73. package/es/components/modal/src/hooks/useDrag.d.ts +2 -3
  74. package/es/components/modal/src/hooks/useFullScreen.d.ts +1 -1
  75. package/es/components/modal/src/hooks/useModal.d.ts +3 -3
  76. package/es/components/modal/src/index.d.ts +32 -359
  77. package/es/components/modal/{index.less → src/index.scss} +104 -82
  78. package/es/components/modal/src/props.d.ts +10 -17
  79. package/es/components/modal/src/types/{modal.type.d.ts → index.type.d.ts} +7 -6
  80. package/es/components/source/index.d.ts +1 -1
  81. package/es/components/source/index.js +142 -113
  82. package/es/components/source/{hooks → src/hooks}/useDownload.d.ts +1 -1
  83. package/es/components/source/{hooks → src/hooks}/useSource.d.ts +24 -20
  84. package/es/components/source/{types → src/types}/source.type.d.ts +12 -13
  85. package/es/components/table/index.d.ts +7 -2
  86. package/es/components/table/index.js +197 -286
  87. package/es/components/table/src/components/TableAction.d.ts +16 -24
  88. package/es/components/table/src/components/TableHeader.d.ts +35 -0
  89. package/es/components/table/src/components/TableRender.d.ts +10 -14
  90. package/es/components/table/src/components/editTable/CellComponent.d.ts +4 -4
  91. package/es/components/table/src/components/editTable/EditTableCell.d.ts +15 -57
  92. package/es/components/table/src/components/editTable/componentMap.d.ts +1 -1
  93. package/es/components/table/src/components/editTable/index.d.ts +3 -3
  94. package/es/components/table/src/components/editTable/props.d.ts +6 -6
  95. package/es/components/table/src/components/tableSetting/Column.d.ts +3 -68
  96. package/es/components/table/src/components/tableSetting/Download.d.ts +11 -0
  97. package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +2 -22
  98. package/es/components/table/src/components/tableSetting/Fullscreen.d.ts +2 -22
  99. package/es/components/table/src/components/tableSetting/index.d.ts +17 -0
  100. package/es/components/table/src/hooks/useDataSource.d.ts +3 -4
  101. package/es/components/table/src/hooks/useHeader.d.ts +3 -3
  102. package/es/components/table/src/hooks/useHeaderCode.d.ts +2 -2
  103. package/es/components/table/src/hooks/useLoading.d.ts +3 -3
  104. package/es/components/table/src/hooks/usePagination.d.ts +2 -2
  105. package/es/components/table/src/hooks/useRowSelection.d.ts +1 -1
  106. package/es/components/table/src/hooks/useTable.d.ts +1 -1
  107. package/es/components/table/src/hooks/useTableInstance.d.ts +2 -2
  108. package/es/components/table/src/hooks/useTableScroll.d.ts +0 -1
  109. package/es/components/table/src/hooks/useTableStyle.d.ts +5 -0
  110. package/es/components/table/src/index.d.ts +169 -324
  111. package/es/components/table/{index.less → src/index.scss} +309 -279
  112. package/es/components/table/src/props.d.ts +39 -14
  113. package/es/components/table/src/types/actions.type.d.ts +5 -5
  114. package/es/components/table/src/types/header.type.d.ts +6 -6
  115. package/es/components/table/src/types/table.type.d.ts +84 -21
  116. package/es/components/tree/index.d.ts +2 -1
  117. package/es/components/tree/index.js +320 -324
  118. package/es/components/tree/src/basicProps.d.ts +9 -9
  119. package/es/components/tree/src/components/ContextMenu.d.ts +17 -17
  120. package/es/components/tree/src/components/TreeHeader.d.ts +13 -33
  121. package/es/components/tree/src/hooks/useContextMenu.d.ts +2 -2
  122. package/es/components/tree/src/hooks/useMethod.d.ts +16 -0
  123. package/es/components/tree/src/hooks/useTree.d.ts +5 -15
  124. package/es/components/tree/src/index.d.ts +52 -6369
  125. package/es/components/tree/src/index.scss +178 -0
  126. package/es/components/tree/src/types/action.type.d.ts +64 -0
  127. package/es/components/tree/src/{type → types}/menu.d.ts +1 -1
  128. package/es/components/tree/src/types/tree.d.ts +31 -0
  129. package/es/components/tree/src/utils/tree.d.ts +1 -1
  130. package/es/components/upload/index.d.ts +1 -1
  131. package/es/components/upload/index.js +111 -102
  132. package/es/components/upload/src/basicProps.d.ts +11 -7
  133. package/es/components/upload/src/components/PdfView.d.ts +2 -9
  134. package/es/components/upload/src/components/WordView.d.ts +2 -7
  135. package/es/components/upload/src/hooks/useFile.d.ts +3 -3
  136. package/es/components/upload/src/index.d.ts +47 -96
  137. package/es/components/upload/{index.less → src/index.scss} +19 -13
  138. package/es/components/upload/src/type/file.d.ts +2 -2
  139. package/es/components/upload/src/utils/upload.d.ts +1 -1
  140. package/es/components/vxe_table/index.d.ts +4 -0
  141. package/es/components/vxe_table/index.js +1162 -0
  142. package/es/components/vxe_table/src/components/AApiSelect.d.ts +12 -0
  143. package/es/components/vxe_table/src/components/AAutoComplete.d.ts +2 -0
  144. package/es/components/vxe_table/src/components/AButton.d.ts +12 -0
  145. package/es/components/vxe_table/src/components/AButtonGroup.d.ts +2 -0
  146. package/es/components/vxe_table/src/components/ACascader.d.ts +2 -0
  147. package/es/components/vxe_table/src/components/ACheckbox.d.ts +2 -0
  148. package/es/components/vxe_table/src/components/ACheckboxGroup.d.ts +6 -0
  149. package/es/components/vxe_table/src/components/ADatePicker.d.ts +4 -0
  150. package/es/components/vxe_table/src/components/AEmpty.d.ts +6 -0
  151. package/es/components/vxe_table/src/components/AInput.d.ts +2 -0
  152. package/es/components/vxe_table/src/components/AInputNumber.d.ts +2 -0
  153. package/es/components/vxe_table/src/components/AInputSearch.d.ts +2 -0
  154. package/es/components/vxe_table/src/components/AMonthPicker.d.ts +2 -0
  155. package/es/components/vxe_table/src/components/ARadioGroup.d.ts +6 -0
  156. package/es/components/vxe_table/src/components/ARangePicker.d.ts +2 -0
  157. package/es/components/vxe_table/src/components/ARate.d.ts +2 -0
  158. package/es/components/vxe_table/src/components/ASelect.d.ts +2 -0
  159. package/es/components/vxe_table/src/components/ASwitch.d.ts +2 -0
  160. package/es/components/vxe_table/src/components/ATimePicker.d.ts +2 -0
  161. package/es/components/vxe_table/src/components/ATreeSelect.d.ts +2 -0
  162. package/es/components/vxe_table/src/components/AWeekPicker.d.ts +2 -0
  163. package/es/components/vxe_table/src/components/AYearPicker.d.ts +2 -0
  164. package/es/components/vxe_table/src/components/Select.d.ts +2 -0
  165. package/es/components/vxe_table/src/components/common.d.ts +52 -0
  166. package/es/components/vxe_table/src/components/componentMap.d.ts +3 -0
  167. package/es/components/vxe_table/src/components/index.d.ts +4 -0
  168. package/es/components/vxe_table/src/hooks/useColumns.d.ts +1 -0
  169. package/es/components/vxe_table/src/hooks/useComponents.d.ts +2 -0
  170. package/es/components/vxe_table/src/hooks/useHeader.d.ts +6 -0
  171. package/es/components/vxe_table/src/hooks/useProps.d.ts +3 -0
  172. package/es/components/vxe_table/src/hooks/useVxeTable.d.ts +7 -0
  173. package/es/components/vxe_table/src/index.d.ts +26 -0
  174. package/es/components/vxe_table/src/index.scss +13 -0
  175. package/es/components/vxe_table/src/props.d.ts +1 -0
  176. package/es/components/vxe_table/src/types/componentType.d.ts +1 -0
  177. package/es/components/vxe_table/src/types/vxeTable.type.d.ts +45 -0
  178. package/es/components/vxe_table/src/utils/index.d.ts +6 -0
  179. package/es/directives/index.d.ts +1 -4
  180. package/es/directives/index.js +6 -1991
  181. package/es/theme/index.d.ts +9 -9
  182. package/es/theme/index.js +2112 -2344
  183. package/es/theme/src/components/content/index.d.ts +2 -31
  184. package/es/theme/src/components/feature/BackTop.d.ts +2 -0
  185. package/es/theme/src/components/feature/index.d.ts +2 -7
  186. package/es/theme/src/components/footer/index.d.ts +2 -31
  187. package/es/theme/src/components/header/MultipleHeader.d.ts +2 -0
  188. package/es/theme/src/components/header/components/BreadCrumb.d.ts +2 -0
  189. package/es/theme/src/components/header/components/FullScreen.d.ts +2 -0
  190. package/es/theme/src/components/header/components/LangPicker.d.ts +12 -0
  191. package/es/theme/src/components/header/components/Logo.d.ts +22 -0
  192. package/es/theme/src/components/header/components/MenuFilter.d.ts +2 -0
  193. package/es/theme/src/components/header/components/Notice.d.ts +2 -0
  194. package/es/theme/src/components/header/components/SettintTheme.d.ts +2 -0
  195. package/es/theme/src/components/header/components/Size.d.ts +2 -0
  196. package/es/theme/src/components/header/components/Trigger.d.ts +6 -0
  197. package/es/theme/src/components/header/components/UserInfo.d.ts +2 -0
  198. package/es/theme/src/components/header/components/lock/Lockscreen.d.ts +2 -85
  199. package/es/theme/src/components/header/components/lock/Recharge.d.ts +4 -6
  200. package/es/theme/src/components/header/components/lock/useBattery.d.ts +4 -4
  201. package/es/theme/src/components/header/components/lock/useTime.d.ts +5 -5
  202. package/es/theme/src/components/header/components/theme-drawer/Color.d.ts +26 -0
  203. package/es/theme/src/components/header/components/theme-drawer/ColorPrimary.d.ts +27 -0
  204. package/es/theme/src/components/header/components/theme-drawer/Feature.d.ts +2 -0
  205. package/es/theme/src/components/header/components/theme-drawer/InputNumber.d.ts +28 -0
  206. package/es/theme/src/components/header/components/theme-drawer/MenuType.d.ts +2 -0
  207. package/es/theme/src/components/header/components/theme-drawer/Select.d.ts +44 -0
  208. package/es/theme/src/components/header/components/theme-drawer/Switch.d.ts +29 -0
  209. package/es/theme/src/components/header/components/theme-drawer/Var.d.ts +2 -0
  210. package/es/theme/src/components/header/components/theme-drawer/styles/GlobalStyle.d.ts +2 -0
  211. package/es/theme/src/components/header/components/theme-drawer/styles/MenuStyle.d.ts +2 -0
  212. package/es/theme/src/components/header/helper/changeTheme.d.ts +15 -0
  213. package/es/theme/src/components/header/helper/{menu-tree.d.ts → menuTree.d.ts} +1 -1
  214. package/es/theme/src/components/header/index.d.ts +4 -547
  215. package/es/theme/src/components/sider/components/DragBar.d.ts +2 -0
  216. package/es/theme/src/components/sider/components/{layout-menu.d.ts → LayoutMenu.d.ts} +5 -5
  217. package/es/theme/src/components/sider/components/MixSider.d.ts +2 -0
  218. package/es/theme/src/components/sider/components/SiderTrigger.d.ts +14 -0
  219. package/es/theme/src/components/sider/components/basic-menu/basic-menu-item.d.ts +8 -35
  220. package/es/theme/src/components/sider/components/basic-menu/basic-sub-menu-item.d.ts +8 -100
  221. package/es/theme/src/components/sider/components/basic-menu/index.d.ts +64 -0
  222. package/es/theme/src/components/sider/components/basic-menu/menu-item-content.d.ts +6 -10
  223. package/es/theme/src/components/sider/components/{props.d.ts → basic-menu/props.d.ts} +12 -29
  224. package/es/theme/src/components/sider/helper/sider.d.ts +3 -3
  225. package/es/theme/src/components/sider/helper/split-menu.d.ts +2 -2
  226. package/es/theme/src/components/sider/index.d.ts +2 -235
  227. package/es/theme/src/components/tabs/components/TabContent.d.ts +4 -21
  228. package/es/theme/src/components/tabs/components/TabRedo.d.ts +2 -23
  229. package/es/theme/src/components/tabs/hooks/useTabDropdown.d.ts +9 -3
  230. package/es/theme/src/components/tabs/hooks/useTabs.d.ts +1 -1
  231. package/es/theme/src/components/tabs/index.d.ts +2 -86
  232. package/es/theme/src/consts/color.d.ts +3 -0
  233. package/es/theme/src/consts/index.d.ts +14 -0
  234. package/es/theme/src/enums/index.d.ts +34 -1
  235. package/es/theme/src/hooks/index.d.ts +6 -6
  236. package/es/theme/src/hooks/useDragLine.d.ts +1 -1
  237. package/es/theme/src/hooks/useHeader.d.ts +22 -23
  238. package/es/theme/src/hooks/useMenu.d.ts +26 -26
  239. package/es/theme/src/hooks/useMultifyTab.d.ts +6 -6
  240. package/es/theme/src/hooks/useOpenKeys.d.ts +3 -3
  241. package/es/theme/src/hooks/useTheme.d.ts +25 -7
  242. package/es/theme/src/index.d.ts +2 -1630
  243. package/es/theme/src/index.scss +1134 -0
  244. package/es/theme/src/stores/index.d.ts +2 -2
  245. package/es/theme/src/stores/lockscreen.store.d.ts +7 -5
  246. package/es/theme/src/stores/routeReuse.store.d.ts +18 -20
  247. package/es/theme/src/stores/theme.store.d.ts +9 -15
  248. package/es/theme/{transition.less → src/transition.scss} +1 -1
  249. package/es/theme/src/types/index.d.ts +0 -3
  250. package/es/theme/src/types/menu.type.d.ts +2 -1
  251. package/es/theme/src/types/theme.type.d.ts +31 -12
  252. package/es/theme/src/utils/color.d.ts +14 -0
  253. package/es/theme/src/utils/index.d.ts +3 -0
  254. package/es/theme/src/utils.ts/index.d.ts +3 -0
  255. package/index.d.ts +12 -13
  256. package/index.js +44 -62
  257. package/manualContentPath.js +73 -19
  258. package/package.json +65 -65
  259. package/tsconfig.json +19 -30
  260. package/tsconfig.tsbuildinfo +1 -0
  261. package/vite.config.ts +82 -68
  262. package/es/assets/data/icons/actions.d.ts +0 -1
  263. package/es/assets/data/icons/actions.ts +0 -423
  264. package/es/assets/data/icons/code.d.ts +0 -1
  265. package/es/assets/data/icons/code.ts +0 -10
  266. package/es/assets/data/icons/commuticate.d.ts +0 -1
  267. package/es/assets/data/icons/commuticate.ts +0 -182
  268. package/es/assets/data/icons/currency.d.ts +0 -1
  269. package/es/assets/data/icons/currency.ts +0 -44
  270. package/es/assets/data/icons/devices.d.ts +0 -1
  271. package/es/assets/data/icons/devices.ts +0 -126
  272. package/es/assets/data/icons/edit.d.ts +0 -1
  273. package/es/assets/data/icons/edit.ts +0 -163
  274. package/es/assets/data/icons/file.d.ts +0 -1
  275. package/es/assets/data/icons/file.ts +0 -99
  276. package/es/assets/data/icons/math.d.ts +0 -1
  277. package/es/assets/data/icons/math.ts +0 -53
  278. package/es/assets/data/icons/message.d.ts +0 -1
  279. package/es/assets/data/icons/message.ts +0 -68
  280. package/es/assets/data/icons/navigate.d.ts +0 -1
  281. package/es/assets/data/icons/navigate.ts +0 -181
  282. package/es/assets/data/icons/other.d.ts +0 -1
  283. package/es/assets/data/icons/other.ts +0 -324
  284. package/es/assets/data/index.d.ts +0 -4
  285. package/es/assets/data/index.ts +0 -58
  286. package/es/assets/imgs/tree/forder-open.svg +0 -1
  287. package/es/assets/imgs/tree/forder.svg +0 -1
  288. package/es/components/container/src/components/scroll-bar.d.ts +0 -70
  289. package/es/components/container/src/scroll-container.d.ts +0 -76
  290. package/es/components/container/src/slot-container.d.ts +0 -20
  291. package/es/components/curd/src/components/Curd.d.ts +0 -384
  292. package/es/components/drawer/index.less +0 -16
  293. package/es/components/drawer/src/components/DrawerHeader.d.ts +0 -11
  294. package/es/components/form/index.less +0 -361
  295. package/es/components/form/src/components/formIcon.d.ts +0 -14
  296. package/es/components/form/src/components/formInputUseDialog.d.ts +0 -17
  297. package/es/components/form/src/components/radioButton.d.ts +0 -34
  298. package/es/components/form/src/enums/index.d.ts +0 -7
  299. package/es/components/icons/index.less +0 -47
  300. package/es/components/icons/src/pick-icon.d.ts +0 -455
  301. package/es/components/iframe/index.less +0 -29
  302. package/es/components/modal/src/components/ModalWrap.d.ts +0 -79
  303. package/es/components/source/utils/index.d.ts +0 -8
  304. package/es/components/table/src/enums/table.enum.d.ts +0 -5
  305. package/es/components/table/src/hooks/useRow.d.ts +0 -5
  306. package/es/components/tree/index.less +0 -200
  307. package/es/components/tree/src/type/tree.d.ts +0 -50
  308. package/es/directives/icon.d.ts +0 -2
  309. package/es/global.d.ts +0 -7
  310. package/es/index.d.ts +0 -1
  311. package/es/index.js +0 -4
  312. package/es/theme/index.less +0 -1003
  313. package/es/theme/src/components/feature/back-top.d.ts +0 -5
  314. package/es/theme/src/components/header/components/bread-crumb.d.ts +0 -6
  315. package/es/theme/src/components/header/components/fullscreen.d.ts +0 -5
  316. package/es/theme/src/components/header/components/index.d.ts +0 -11
  317. package/es/theme/src/components/header/components/lang-picker.d.ts +0 -23
  318. package/es/theme/src/components/header/components/lock/index.d.ts +0 -2
  319. package/es/theme/src/components/header/components/logo.d.ts +0 -55
  320. package/es/theme/src/components/header/components/menu-filter.d.ts +0 -22
  321. package/es/theme/src/components/header/components/notify.d.ts +0 -22
  322. package/es/theme/src/components/header/components/setting-theme.d.ts +0 -223
  323. package/es/theme/src/components/header/components/size.d.ts +0 -21
  324. package/es/theme/src/components/header/components/theme-drawer/feature.d.ts +0 -138
  325. package/es/theme/src/components/header/components/theme-drawer/index.d.ts +0 -3
  326. package/es/theme/src/components/header/components/theme-drawer/menu-type.d.ts +0 -16
  327. package/es/theme/src/components/header/components/theme-drawer/select.d.ts +0 -58
  328. package/es/theme/src/components/header/components/theme-drawer/switch.d.ts +0 -49
  329. package/es/theme/src/components/header/components/trigger.d.ts +0 -10
  330. package/es/theme/src/components/header/components/user-info.d.ts +0 -44
  331. package/es/theme/src/components/header/helper/change-theme.d.ts +0 -13
  332. package/es/theme/src/components/header/multiple-header.d.ts +0 -660
  333. package/es/theme/src/components/sider/components/basic-menu/basic-menu.d.ts +0 -207
  334. package/es/theme/src/components/sider/components/drag-bar.d.ts +0 -14
  335. package/es/theme/src/components/sider/components/sider-trigger.d.ts +0 -17
  336. package/es/theme/src/components/sider/mix-sider.d.ts +0 -167
  337. package/es/theme/src/components/tabs/components/index.d.ts +0 -3
  338. package/es/theme/src/components/tabs/types/tabs.type.d.ts +0 -7
  339. package/es/theme/src/enums/theme.enum.d.ts +0 -34
  340. package/es/theme/src/setting/theme.setting.d.ts +0 -2
  341. package/es/utils/withInstall.d.ts +0 -4
  342. package/tailwind.config.cjs +0 -11
  343. package/tsconfig.node.json +0 -9
  344. /package/es/assets/{icons → fonts}/iconfont.css +0 -0
  345. /package/es/assets/{icons → fonts}/iconfont.eot +0 -0
  346. /package/es/assets/{icons → fonts}/iconfont.svg +0 -0
  347. /package/es/assets/{icons → fonts}/iconfont.ttf +0 -0
  348. /package/es/assets/{icons → fonts}/iconfont.woff +0 -0
  349. /package/es/assets/{icons → fonts}/iconfont.woff2 +0 -0
  350. /package/es/components/container/src/types/{scroll.type.d.ts → index.d.ts} +0 -0
@@ -1,8 +1,8 @@
1
- import { CSSProperties, PropType } from 'vue';
1
+ import { CSSProperties } from 'vue';
2
2
  import { ButtonProps } from '../types/form.type';
3
- declare const _sfc_main: import("vue").DefineComponent<{
3
+ declare const _default: import("vue").DefineComponent<{
4
4
  mode: {
5
- type: PropType<"search" | "dialog">;
5
+ type: globalThis.PropType<"search" | "dialog">;
6
6
  default: string;
7
7
  };
8
8
  show: {
@@ -18,7 +18,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
18
18
  default: number;
19
19
  };
20
20
  buttonList: {
21
- type: PropType<ButtonProps[]>;
21
+ type: globalThis.PropType<ButtonProps[]>;
22
22
  default: any[];
23
23
  };
24
24
  authPrefix: {
@@ -32,3085 +32,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
32
32
  type: ObjectConstructor;
33
33
  };
34
34
  style: {
35
- type: PropType<CSSProperties>;
35
+ type: globalThis.PropType<CSSProperties>;
36
36
  default: () => void;
37
37
  };
38
- }, {
39
- props: any;
40
- emits: (event: "handle-method", ...args: any[]) => void;
41
- t: {
42
- (key: string): string;
43
- (key: string, locale: string): string;
44
- (key: string, locale: string, list: unknown[]): string;
45
- (key: string, locale: string, named: Record<string, unknown>): string;
46
- (key: string, list: unknown[]): string;
47
- (key: string, named: Record<string, unknown>): string;
48
- };
49
- advancedRef: import("vue").Ref<{
50
- valueOf: () => boolean;
51
- }>;
52
- key: number;
53
- showAdvanceRef: import("vue").ComputedRef<boolean>;
54
- getAuth: (auth: string) => string | null;
55
- colOpt: import("vue").ComputedRef<{
56
- style: {
57
- accentColor?: string;
58
- alignContent?: string;
59
- alignItems?: string;
60
- alignSelf?: string;
61
- alignTracks?: string;
62
- animationComposition?: string;
63
- animationDelay?: string;
64
- animationDirection?: string;
65
- animationDuration?: string;
66
- animationFillMode?: string;
67
- animationIterationCount?: import("csstype").AnimationIterationCountProperty;
68
- animationName?: string;
69
- animationPlayState?: string;
70
- animationTimeline?: string;
71
- animationTimingFunction?: string;
72
- appearance?: import("csstype").AppearanceProperty;
73
- aspectRatio?: import("csstype").AspectRatioProperty;
74
- backdropFilter?: string;
75
- backfaceVisibility?: import("csstype").BackfaceVisibilityProperty;
76
- backgroundAttachment?: string;
77
- backgroundBlendMode?: string;
78
- backgroundClip?: string;
79
- backgroundColor?: string;
80
- backgroundImage?: string;
81
- backgroundOrigin?: string;
82
- backgroundPositionX?: import("csstype").BackgroundPositionXProperty<string | number>;
83
- backgroundPositionY?: import("csstype").BackgroundPositionYProperty<string | number>;
84
- backgroundRepeat?: string;
85
- backgroundSize?: import("csstype").BackgroundSizeProperty<string | number>;
86
- blockOverflow?: string;
87
- blockSize?: import("csstype").BlockSizeProperty<string | number>;
88
- borderBlockColor?: string;
89
- borderBlockEndColor?: string;
90
- borderBlockEndStyle?: import("csstype").BorderBlockEndStyleProperty;
91
- borderBlockEndWidth?: import("csstype").BorderBlockEndWidthProperty<string | number>;
92
- borderBlockStartColor?: string;
93
- borderBlockStartStyle?: import("csstype").BorderBlockStartStyleProperty;
94
- borderBlockStartWidth?: import("csstype").BorderBlockStartWidthProperty<string | number>;
95
- borderBlockStyle?: import("csstype").BorderBlockStyleProperty;
96
- borderBlockWidth?: import("csstype").BorderBlockWidthProperty<string | number>;
97
- borderBottomColor?: string;
98
- borderBottomLeftRadius?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
99
- borderBottomRightRadius?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
100
- borderBottomStyle?: import("csstype").BorderBottomStyleProperty;
101
- borderBottomWidth?: import("csstype").BorderBottomWidthProperty<string | number>;
102
- borderCollapse?: import("csstype").BorderCollapseProperty;
103
- borderEndEndRadius?: import("csstype").BorderEndEndRadiusProperty<string | number>;
104
- borderEndStartRadius?: import("csstype").BorderEndStartRadiusProperty<string | number>;
105
- borderImageOutset?: import("csstype").BorderImageOutsetProperty<string | number>;
106
- borderImageRepeat?: string;
107
- borderImageSlice?: import("csstype").BorderImageSliceProperty;
108
- borderImageSource?: string;
109
- borderImageWidth?: import("csstype").BorderImageWidthProperty<string | number>;
110
- borderInlineColor?: string;
111
- borderInlineEndColor?: string;
112
- borderInlineEndStyle?: import("csstype").BorderInlineEndStyleProperty;
113
- borderInlineEndWidth?: import("csstype").BorderInlineEndWidthProperty<string | number>;
114
- borderInlineStartColor?: string;
115
- borderInlineStartStyle?: import("csstype").BorderInlineStartStyleProperty;
116
- borderInlineStartWidth?: import("csstype").BorderInlineStartWidthProperty<string | number>;
117
- borderInlineStyle?: import("csstype").BorderInlineStyleProperty;
118
- borderInlineWidth?: import("csstype").BorderInlineWidthProperty<string | number>;
119
- borderLeftColor?: string;
120
- borderLeftStyle?: import("csstype").BorderLeftStyleProperty;
121
- borderLeftWidth?: import("csstype").BorderLeftWidthProperty<string | number>;
122
- borderRightColor?: string;
123
- borderRightStyle?: import("csstype").BorderRightStyleProperty;
124
- borderRightWidth?: import("csstype").BorderRightWidthProperty<string | number>;
125
- borderSpacing?: import("csstype").BorderSpacingProperty<string | number>;
126
- borderStartEndRadius?: import("csstype").BorderStartEndRadiusProperty<string | number>;
127
- borderStartStartRadius?: import("csstype").BorderStartStartRadiusProperty<string | number>;
128
- borderTopColor?: string;
129
- borderTopLeftRadius?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
130
- borderTopRightRadius?: import("csstype").BorderTopRightRadiusProperty<string | number>;
131
- borderTopStyle?: import("csstype").BorderTopStyleProperty;
132
- borderTopWidth?: import("csstype").BorderTopWidthProperty<string | number>;
133
- bottom?: import("csstype").BottomProperty<string | number>;
134
- boxDecorationBreak?: import("csstype").BoxDecorationBreakProperty;
135
- boxShadow?: string;
136
- boxSizing?: import("csstype").BoxSizingProperty;
137
- breakAfter?: import("csstype").BreakAfterProperty;
138
- breakBefore?: import("csstype").BreakBeforeProperty;
139
- breakInside?: import("csstype").BreakInsideProperty;
140
- captionSide?: import("csstype").CaptionSideProperty;
141
- caretColor?: string;
142
- clear?: import("csstype").ClearProperty;
143
- clipPath?: string;
144
- color?: string;
145
- colorAdjust?: import("csstype").PrintColorAdjustProperty;
146
- colorScheme?: string;
147
- columnCount?: import("csstype").ColumnCountProperty;
148
- columnFill?: import("csstype").ColumnFillProperty;
149
- columnGap?: import("csstype").ColumnGapProperty<string | number>;
150
- columnRuleColor?: string;
151
- columnRuleStyle?: string;
152
- columnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number>;
153
- columnSpan?: import("csstype").ColumnSpanProperty;
154
- columnWidth?: import("csstype").ColumnWidthProperty<string | number>;
155
- contain?: string;
156
- content?: string;
157
- contentVisibility?: import("csstype").ContentVisibilityProperty;
158
- counterIncrement?: string;
159
- counterReset?: string;
160
- counterSet?: string;
161
- cursor?: string;
162
- direction?: import("csstype").DirectionProperty;
163
- display?: string;
164
- emptyCells?: import("csstype").EmptyCellsProperty;
165
- filter?: string;
166
- flexBasis?: import("csstype").FlexBasisProperty<string | number>;
167
- flexDirection?: import("csstype").FlexDirectionProperty;
168
- flexGrow?: import("csstype").GlobalsNumber;
169
- flexShrink?: import("csstype").GlobalsNumber;
170
- flexWrap?: import("csstype").FlexWrapProperty;
171
- float?: import("csstype").FloatProperty;
172
- fontFamily?: string;
173
- fontFeatureSettings?: string;
174
- fontKerning?: import("csstype").FontKerningProperty;
175
- fontLanguageOverride?: string;
176
- fontOpticalSizing?: import("csstype").FontOpticalSizingProperty;
177
- fontSize?: import("csstype").FontSizeProperty<string | number>;
178
- fontSizeAdjust?: import("csstype").FontSizeAdjustProperty;
179
- fontSmooth?: import("csstype").FontSmoothProperty<string | number>;
180
- fontStretch?: string;
181
- fontStyle?: string;
182
- fontSynthesis?: string;
183
- fontVariant?: string;
184
- fontVariantAlternates?: string;
185
- fontVariantCaps?: import("csstype").FontVariantCapsProperty;
186
- fontVariantEastAsian?: string;
187
- fontVariantLigatures?: string;
188
- fontVariantNumeric?: string;
189
- fontVariantPosition?: import("csstype").FontVariantPositionProperty;
190
- fontVariationSettings?: string;
191
- fontWeight?: import("csstype").FontWeightProperty;
192
- forcedColorAdjust?: import("csstype").ForcedColorAdjustProperty;
193
- gridAutoColumns?: import("csstype").GridAutoColumnsProperty<string | number>;
194
- gridAutoFlow?: string;
195
- gridAutoRows?: import("csstype").GridAutoRowsProperty<string | number>;
196
- gridColumnEnd?: import("csstype").GridColumnEndProperty;
197
- gridColumnStart?: import("csstype").GridColumnStartProperty;
198
- gridRowEnd?: import("csstype").GridRowEndProperty;
199
- gridRowStart?: import("csstype").GridRowStartProperty;
200
- gridTemplateAreas?: string;
201
- gridTemplateColumns?: import("csstype").GridTemplateColumnsProperty<string | number>;
202
- gridTemplateRows?: import("csstype").GridTemplateRowsProperty<string | number>;
203
- hangingPunctuation?: string;
204
- height?: import("csstype").HeightProperty<string | number>;
205
- hyphenateCharacter?: string;
206
- hyphens?: import("csstype").HyphensProperty;
207
- imageOrientation?: string;
208
- imageRendering?: import("csstype").ImageRenderingProperty;
209
- imageResolution?: string;
210
- initialLetter?: import("csstype").InitialLetterProperty;
211
- inlineSize?: import("csstype").InlineSizeProperty<string | number>;
212
- inputSecurity?: import("csstype").InputSecurityProperty;
213
- inset?: import("csstype").InsetProperty<string | number>;
214
- insetBlock?: import("csstype").InsetBlockProperty<string | number>;
215
- insetBlockEnd?: import("csstype").InsetBlockEndProperty<string | number>;
216
- insetBlockStart?: import("csstype").InsetBlockStartProperty<string | number>;
217
- insetInline?: import("csstype").InsetInlineProperty<string | number>;
218
- insetInlineEnd?: import("csstype").InsetInlineEndProperty<string | number>;
219
- insetInlineStart?: import("csstype").InsetInlineStartProperty<string | number>;
220
- isolation?: import("csstype").IsolationProperty;
221
- justifyContent?: string;
222
- justifyItems?: string;
223
- justifySelf?: string;
224
- justifyTracks?: string;
225
- left?: import("csstype").LeftProperty<string | number>;
226
- letterSpacing?: import("csstype").LetterSpacingProperty<string | number>;
227
- lineBreak?: import("csstype").LineBreakProperty;
228
- lineHeight?: import("csstype").LineHeightProperty<string | number>;
229
- lineHeightStep?: import("csstype").LineHeightStepProperty<string | number>;
230
- listStyleImage?: string;
231
- listStylePosition?: import("csstype").ListStylePositionProperty;
232
- listStyleType?: string;
233
- marginBlock?: import("csstype").MarginBlockProperty<string | number>;
234
- marginBlockEnd?: import("csstype").MarginBlockEndProperty<string | number>;
235
- marginBlockStart?: import("csstype").MarginBlockStartProperty<string | number>;
236
- marginBottom?: import("csstype").MarginBottomProperty<string | number>;
237
- marginInline?: import("csstype").MarginInlineProperty<string | number>;
238
- marginInlineEnd?: import("csstype").MarginInlineEndProperty<string | number>;
239
- marginInlineStart?: import("csstype").MarginInlineStartProperty<string | number>;
240
- marginLeft?: import("csstype").MarginLeftProperty<string | number>;
241
- marginRight?: import("csstype").MarginRightProperty<string | number>;
242
- marginTop?: import("csstype").MarginTopProperty<string | number>;
243
- maskBorderMode?: import("csstype").MaskBorderModeProperty;
244
- maskBorderOutset?: import("csstype").MaskBorderOutsetProperty<string | number>;
245
- maskBorderRepeat?: string;
246
- maskBorderSlice?: import("csstype").MaskBorderSliceProperty;
247
- maskBorderSource?: string;
248
- maskBorderWidth?: import("csstype").MaskBorderWidthProperty<string | number>;
249
- maskClip?: string;
250
- maskComposite?: string;
251
- maskImage?: string;
252
- maskMode?: string;
253
- maskOrigin?: string;
254
- maskPosition?: import("csstype").MaskPositionProperty<string | number>;
255
- maskRepeat?: string;
256
- maskSize?: import("csstype").MaskSizeProperty<string | number>;
257
- maskType?: import("csstype").MaskTypeProperty;
258
- mathDepth?: import("csstype").MathDepthProperty;
259
- mathShift?: import("csstype").MathShiftProperty;
260
- mathStyle?: import("csstype").MathStyleProperty;
261
- maxBlockSize?: import("csstype").MaxBlockSizeProperty<string | number>;
262
- maxHeight?: import("csstype").MaxHeightProperty<string | number>;
263
- maxInlineSize?: import("csstype").MaxInlineSizeProperty<string | number>;
264
- maxLines?: import("csstype").MaxLinesProperty;
265
- maxWidth?: import("csstype").MaxWidthProperty<string | number>;
266
- minBlockSize?: import("csstype").MinBlockSizeProperty<string | number>;
267
- minHeight?: import("csstype").MinHeightProperty<string | number>;
268
- minInlineSize?: import("csstype").MinInlineSizeProperty<string | number>;
269
- minWidth?: import("csstype").MinWidthProperty<string | number>;
270
- mixBlendMode?: import("csstype").MixBlendModeProperty;
271
- motionDistance?: import("csstype").OffsetDistanceProperty<string | number>;
272
- motionPath?: string;
273
- motionRotation?: string;
274
- objectFit?: import("csstype").ObjectFitProperty;
275
- objectPosition?: import("csstype").ObjectPositionProperty<string | number>;
276
- offsetAnchor?: import("csstype").OffsetAnchorProperty<string | number>;
277
- offsetDistance?: import("csstype").OffsetDistanceProperty<string | number>;
278
- offsetPath?: string;
279
- offsetRotate?: string;
280
- offsetRotation?: string;
281
- opacity?: import("csstype").OpacityProperty;
282
- order?: import("csstype").GlobalsNumber;
283
- orphans?: import("csstype").GlobalsNumber;
284
- outlineColor?: string;
285
- outlineOffset?: import("csstype").OutlineOffsetProperty<string | number>;
286
- outlineStyle?: string;
287
- outlineWidth?: import("csstype").OutlineWidthProperty<string | number>;
288
- overflowAnchor?: import("csstype").OverflowAnchorProperty;
289
- overflowBlock?: import("csstype").OverflowBlockProperty;
290
- overflowClipBox?: import("csstype").OverflowClipBoxProperty;
291
- overflowClipMargin?: import("csstype").OverflowClipMarginProperty<string | number>;
292
- overflowInline?: import("csstype").OverflowInlineProperty;
293
- overflowWrap?: import("csstype").OverflowWrapProperty;
294
- overflowX?: import("csstype").OverflowXProperty;
295
- overflowY?: import("csstype").OverflowYProperty;
296
- overscrollBehaviorBlock?: import("csstype").OverscrollBehaviorBlockProperty;
297
- overscrollBehaviorInline?: import("csstype").OverscrollBehaviorInlineProperty;
298
- overscrollBehaviorX?: import("csstype").OverscrollBehaviorXProperty;
299
- overscrollBehaviorY?: import("csstype").OverscrollBehaviorYProperty;
300
- paddingBlock?: import("csstype").PaddingBlockProperty<string | number>;
301
- paddingBlockEnd?: import("csstype").PaddingBlockEndProperty<string | number>;
302
- paddingBlockStart?: import("csstype").PaddingBlockStartProperty<string | number>;
303
- paddingBottom?: import("csstype").PaddingBottomProperty<string | number>;
304
- paddingInline?: import("csstype").PaddingInlineProperty<string | number>;
305
- paddingInlineEnd?: import("csstype").PaddingInlineEndProperty<string | number>;
306
- paddingInlineStart?: import("csstype").PaddingInlineStartProperty<string | number>;
307
- paddingLeft?: import("csstype").PaddingLeftProperty<string | number>;
308
- paddingRight?: import("csstype").PaddingRightProperty<string | number>;
309
- paddingTop?: import("csstype").PaddingTopProperty<string | number>;
310
- pageBreakAfter?: import("csstype").PageBreakAfterProperty;
311
- pageBreakBefore?: import("csstype").PageBreakBeforeProperty;
312
- pageBreakInside?: import("csstype").PageBreakInsideProperty;
313
- paintOrder?: string;
314
- perspective?: import("csstype").PerspectiveProperty<string | number>;
315
- perspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number>;
316
- placeContent?: string;
317
- pointerEvents?: import("csstype").PointerEventsProperty;
318
- position?: import("csstype").PositionProperty;
319
- printColorAdjust?: import("csstype").PrintColorAdjustProperty;
320
- quotes?: string;
321
- resize?: import("csstype").ResizeProperty;
322
- right?: import("csstype").RightProperty<string | number>;
323
- rotate?: string;
324
- rowGap?: import("csstype").RowGapProperty<string | number>;
325
- rubyAlign?: import("csstype").RubyAlignProperty;
326
- rubyMerge?: import("csstype").RubyMergeProperty;
327
- rubyPosition?: string;
328
- scale?: import("csstype").ScaleProperty;
329
- scrollBehavior?: import("csstype").ScrollBehaviorProperty;
330
- scrollMargin?: import("csstype").ScrollMarginProperty<string | number>;
331
- scrollMarginBlock?: import("csstype").ScrollMarginBlockProperty<string | number>;
332
- scrollMarginBlockEnd?: import("csstype").ScrollMarginBlockEndProperty<string | number>;
333
- scrollMarginBlockStart?: import("csstype").ScrollMarginBlockStartProperty<string | number>;
334
- scrollMarginBottom?: import("csstype").ScrollMarginBottomProperty<string | number>;
335
- scrollMarginInline?: import("csstype").ScrollMarginInlineProperty<string | number>;
336
- scrollMarginInlineEnd?: import("csstype").ScrollMarginInlineEndProperty<string | number>;
337
- scrollMarginInlineStart?: import("csstype").ScrollMarginInlineStartProperty<string | number>;
338
- scrollMarginLeft?: import("csstype").ScrollMarginLeftProperty<string | number>;
339
- scrollMarginRight?: import("csstype").ScrollMarginRightProperty<string | number>;
340
- scrollMarginTop?: import("csstype").ScrollMarginTopProperty<string | number>;
341
- scrollPadding?: import("csstype").ScrollPaddingProperty<string | number>;
342
- scrollPaddingBlock?: import("csstype").ScrollPaddingBlockProperty<string | number>;
343
- scrollPaddingBlockEnd?: import("csstype").ScrollPaddingBlockEndProperty<string | number>;
344
- scrollPaddingBlockStart?: import("csstype").ScrollPaddingBlockStartProperty<string | number>;
345
- scrollPaddingBottom?: import("csstype").ScrollPaddingBottomProperty<string | number>;
346
- scrollPaddingInline?: import("csstype").ScrollPaddingInlineProperty<string | number>;
347
- scrollPaddingInlineEnd?: import("csstype").ScrollPaddingInlineEndProperty<string | number>;
348
- scrollPaddingInlineStart?: import("csstype").ScrollPaddingInlineStartProperty<string | number>;
349
- scrollPaddingLeft?: import("csstype").ScrollPaddingLeftProperty<string | number>;
350
- scrollPaddingRight?: import("csstype").ScrollPaddingRightProperty<string | number>;
351
- scrollPaddingTop?: import("csstype").ScrollPaddingTopProperty<string | number>;
352
- scrollSnapAlign?: string;
353
- scrollSnapMargin?: import("csstype").ScrollMarginProperty<string | number>;
354
- scrollSnapMarginBottom?: import("csstype").ScrollMarginBottomProperty<string | number>;
355
- scrollSnapMarginLeft?: import("csstype").ScrollMarginLeftProperty<string | number>;
356
- scrollSnapMarginRight?: import("csstype").ScrollMarginRightProperty<string | number>;
357
- scrollSnapMarginTop?: import("csstype").ScrollMarginTopProperty<string | number>;
358
- scrollSnapStop?: import("csstype").ScrollSnapStopProperty;
359
- scrollSnapType?: string;
360
- scrollbarColor?: string;
361
- scrollbarGutter?: string;
362
- scrollbarWidth?: import("csstype").ScrollbarWidthProperty;
363
- shapeImageThreshold?: import("csstype").ShapeImageThresholdProperty;
364
- shapeMargin?: import("csstype").ShapeMarginProperty<string | number>;
365
- shapeOutside?: string;
366
- tabSize?: import("csstype").TabSizeProperty<string | number>;
367
- tableLayout?: import("csstype").TableLayoutProperty;
368
- textAlign?: import("csstype").TextAlignProperty;
369
- textAlignLast?: import("csstype").TextAlignLastProperty;
370
- textCombineUpright?: string;
371
- textDecorationColor?: string;
372
- textDecorationLine?: string;
373
- textDecorationSkip?: string;
374
- textDecorationSkipInk?: import("csstype").TextDecorationSkipInkProperty;
375
- textDecorationStyle?: import("csstype").TextDecorationStyleProperty;
376
- textDecorationThickness?: import("csstype").TextDecorationThicknessProperty<string | number>;
377
- textEmphasisColor?: string;
378
- textEmphasisPosition?: string;
379
- textEmphasisStyle?: string;
380
- textIndent?: import("csstype").TextIndentProperty<string | number>;
381
- textJustify?: import("csstype").TextJustifyProperty;
382
- textOrientation?: import("csstype").TextOrientationProperty;
383
- textOverflow?: string;
384
- textRendering?: import("csstype").TextRenderingProperty;
385
- textShadow?: string;
386
- textSizeAdjust?: string;
387
- textTransform?: import("csstype").TextTransformProperty;
388
- textUnderlineOffset?: import("csstype").TextUnderlineOffsetProperty<string | number>;
389
- textUnderlinePosition?: string;
390
- top?: import("csstype").TopProperty<string | number>;
391
- touchAction?: string;
392
- transform?: string;
393
- transformBox?: import("csstype").TransformBoxProperty;
394
- transformOrigin?: import("csstype").TransformOriginProperty<string | number>;
395
- transformStyle?: import("csstype").TransformStyleProperty;
396
- transitionDelay?: string;
397
- transitionDuration?: string;
398
- transitionProperty?: string;
399
- transitionTimingFunction?: string;
400
- translate?: import("csstype").TranslateProperty<string | number>;
401
- unicodeBidi?: import("csstype").UnicodeBidiProperty;
402
- userSelect?: import("csstype").UserSelectProperty;
403
- verticalAlign?: import("csstype").VerticalAlignProperty<string | number>;
404
- visibility?: import("csstype").VisibilityProperty;
405
- whiteSpace?: import("csstype").WhiteSpaceProperty;
406
- widows?: import("csstype").GlobalsNumber;
407
- width?: import("csstype").WidthProperty<string | number>;
408
- willChange?: string;
409
- wordBreak?: import("csstype").WordBreakProperty;
410
- wordSpacing?: import("csstype").WordSpacingProperty<string | number>;
411
- wordWrap?: import("csstype").WordWrapProperty;
412
- writingMode?: import("csstype").WritingModeProperty;
413
- zIndex?: import("csstype").ZIndexProperty;
414
- zoom?: import("csstype").ZoomProperty;
415
- all?: import("csstype").Globals;
416
- animation?: import("csstype").AnimationProperty;
417
- background?: import("csstype").BackgroundProperty<string | number>;
418
- backgroundPosition?: import("csstype").BackgroundPositionProperty<string | number>;
419
- border?: import("csstype").BorderProperty<string | number>;
420
- borderBlock?: import("csstype").BorderBlockProperty<string | number>;
421
- borderBlockEnd?: import("csstype").BorderBlockEndProperty<string | number>;
422
- borderBlockStart?: import("csstype").BorderBlockStartProperty<string | number>;
423
- borderBottom?: import("csstype").BorderBottomProperty<string | number>;
424
- borderColor?: string;
425
- borderImage?: import("csstype").BorderImageProperty;
426
- borderInline?: import("csstype").BorderInlineProperty<string | number>;
427
- borderInlineEnd?: import("csstype").BorderInlineEndProperty<string | number>;
428
- borderInlineStart?: import("csstype").BorderInlineStartProperty<string | number>;
429
- borderLeft?: import("csstype").BorderLeftProperty<string | number>;
430
- borderRadius?: import("csstype").BorderRadiusProperty<string | number>;
431
- borderRight?: import("csstype").BorderRightProperty<string | number>;
432
- borderStyle?: string;
433
- borderTop?: import("csstype").BorderTopProperty<string | number>;
434
- borderWidth?: import("csstype").BorderWidthProperty<string | number>;
435
- columnRule?: import("csstype").ColumnRuleProperty<string | number>;
436
- columns?: import("csstype").ColumnsProperty<string | number>;
437
- flex?: import("csstype").FlexProperty<string | number>;
438
- flexFlow?: string;
439
- font?: string;
440
- gap?: import("csstype").GapProperty<string | number>;
441
- grid?: string;
442
- gridArea?: import("csstype").GridAreaProperty;
443
- gridColumn?: import("csstype").GridColumnProperty;
444
- gridRow?: import("csstype").GridRowProperty;
445
- gridTemplate?: string;
446
- lineClamp?: import("csstype").LineClampProperty;
447
- listStyle?: string;
448
- margin?: import("csstype").MarginProperty<string | number>;
449
- mask?: import("csstype").MaskProperty<string | number>;
450
- maskBorder?: import("csstype").MaskBorderProperty;
451
- motion?: import("csstype").OffsetProperty<string | number>;
452
- offset?: import("csstype").OffsetProperty<string | number>;
453
- outline?: import("csstype").OutlineProperty<string | number>;
454
- overflow?: string;
455
- overscrollBehavior?: string;
456
- padding?: import("csstype").PaddingProperty<string | number>;
457
- placeItems?: string;
458
- placeSelf?: string;
459
- textDecoration?: import("csstype").TextDecorationProperty<string | number>;
460
- textEmphasis?: string;
461
- transition?: string;
462
- MozAnimationDelay?: string;
463
- MozAnimationDirection?: string;
464
- MozAnimationDuration?: string;
465
- MozAnimationFillMode?: string;
466
- MozAnimationIterationCount?: import("csstype").AnimationIterationCountProperty;
467
- MozAnimationName?: string;
468
- MozAnimationPlayState?: string;
469
- MozAnimationTimingFunction?: string;
470
- MozAppearance?: import("csstype").MozAppearanceProperty;
471
- MozBackfaceVisibility?: import("csstype").BackfaceVisibilityProperty;
472
- MozBorderBottomColors?: string;
473
- MozBorderEndColor?: string;
474
- MozBorderEndStyle?: import("csstype").BorderInlineEndStyleProperty;
475
- MozBorderEndWidth?: import("csstype").BorderInlineEndWidthProperty<string | number>;
476
- MozBorderLeftColors?: string;
477
- MozBorderRightColors?: string;
478
- MozBorderStartColor?: string;
479
- MozBorderStartStyle?: import("csstype").BorderInlineStartStyleProperty;
480
- MozBorderTopColors?: string;
481
- MozBoxSizing?: import("csstype").BoxSizingProperty;
482
- MozColumnCount?: import("csstype").ColumnCountProperty;
483
- MozColumnFill?: import("csstype").ColumnFillProperty;
484
- MozColumnRuleColor?: string;
485
- MozColumnRuleStyle?: string;
486
- MozColumnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number>;
487
- MozColumnWidth?: import("csstype").ColumnWidthProperty<string | number>;
488
- MozContextProperties?: string;
489
- MozFontFeatureSettings?: string;
490
- MozFontLanguageOverride?: string;
491
- MozHyphens?: import("csstype").HyphensProperty;
492
- MozImageRegion?: string;
493
- MozMarginEnd?: import("csstype").MarginInlineEndProperty<string | number>;
494
- MozMarginStart?: import("csstype").MarginInlineStartProperty<string | number>;
495
- MozOrient?: import("csstype").MozOrientProperty;
496
- MozOsxFontSmoothing?: import("csstype").FontSmoothProperty<string | number>;
497
- MozPaddingEnd?: import("csstype").PaddingInlineEndProperty<string | number>;
498
- MozPaddingStart?: import("csstype").PaddingInlineStartProperty<string | number>;
499
- MozPerspective?: import("csstype").PerspectiveProperty<string | number>;
500
- MozPerspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number>;
501
- MozStackSizing?: import("csstype").MozStackSizingProperty;
502
- MozTabSize?: import("csstype").TabSizeProperty<string | number>;
503
- MozTextBlink?: import("csstype").MozTextBlinkProperty;
504
- MozTextSizeAdjust?: string;
505
- MozTransformOrigin?: import("csstype").TransformOriginProperty<string | number>;
506
- MozTransformStyle?: import("csstype").TransformStyleProperty;
507
- MozTransitionDelay?: string;
508
- MozTransitionDuration?: string;
509
- MozTransitionProperty?: string;
510
- MozTransitionTimingFunction?: string;
511
- MozUserFocus?: import("csstype").MozUserFocusProperty;
512
- MozUserModify?: import("csstype").MozUserModifyProperty;
513
- MozUserSelect?: import("csstype").UserSelectProperty;
514
- MozWindowDragging?: import("csstype").MozWindowDraggingProperty;
515
- MozWindowShadow?: import("csstype").MozWindowShadowProperty;
516
- msAccelerator?: import("csstype").MsAcceleratorProperty;
517
- msBlockProgression?: import("csstype").MsBlockProgressionProperty;
518
- msContentZoomChaining?: import("csstype").MsContentZoomChainingProperty;
519
- msContentZoomLimitMax?: string;
520
- msContentZoomLimitMin?: string;
521
- msContentZoomSnapPoints?: string;
522
- msContentZoomSnapType?: import("csstype").MsContentZoomSnapTypeProperty;
523
- msContentZooming?: import("csstype").MsContentZoomingProperty;
524
- msFilter?: string;
525
- msFlexDirection?: import("csstype").FlexDirectionProperty;
526
- msFlexPositive?: import("csstype").GlobalsNumber;
527
- msFlowFrom?: string;
528
- msFlowInto?: string;
529
- msGridColumns?: import("csstype").MsGridColumnsProperty<string | number>;
530
- msGridRows?: import("csstype").MsGridRowsProperty<string | number>;
531
- msHighContrastAdjust?: import("csstype").MsHighContrastAdjustProperty;
532
- msHyphenateLimitChars?: import("csstype").MsHyphenateLimitCharsProperty;
533
- msHyphenateLimitLines?: import("csstype").MsHyphenateLimitLinesProperty;
534
- msHyphenateLimitZone?: import("csstype").MsHyphenateLimitZoneProperty<string | number>;
535
- msHyphens?: import("csstype").HyphensProperty;
536
- msImeAlign?: import("csstype").MsImeAlignProperty;
537
- msLineBreak?: import("csstype").LineBreakProperty;
538
- msOrder?: import("csstype").GlobalsNumber;
539
- msOverflowStyle?: import("csstype").MsOverflowStyleProperty;
540
- msOverflowX?: import("csstype").OverflowXProperty;
541
- msOverflowY?: import("csstype").OverflowYProperty;
542
- msScrollChaining?: import("csstype").MsScrollChainingProperty;
543
- msScrollLimitXMax?: import("csstype").MsScrollLimitXMaxProperty<string | number>;
544
- msScrollLimitXMin?: import("csstype").MsScrollLimitXMinProperty<string | number>;
545
- msScrollLimitYMax?: import("csstype").MsScrollLimitYMaxProperty<string | number>;
546
- msScrollLimitYMin?: import("csstype").MsScrollLimitYMinProperty<string | number>;
547
- msScrollRails?: import("csstype").MsScrollRailsProperty;
548
- msScrollSnapPointsX?: string;
549
- msScrollSnapPointsY?: string;
550
- msScrollSnapType?: import("csstype").MsScrollSnapTypeProperty;
551
- msScrollTranslation?: import("csstype").MsScrollTranslationProperty;
552
- msScrollbar3dlightColor?: string;
553
- msScrollbarArrowColor?: string;
554
- msScrollbarBaseColor?: string;
555
- msScrollbarDarkshadowColor?: string;
556
- msScrollbarFaceColor?: string;
557
- msScrollbarHighlightColor?: string;
558
- msScrollbarShadowColor?: string;
559
- msScrollbarTrackColor?: string;
560
- msTextAutospace?: import("csstype").MsTextAutospaceProperty;
561
- msTextCombineHorizontal?: string;
562
- msTextOverflow?: string;
563
- msTouchAction?: string;
564
- msTouchSelect?: import("csstype").MsTouchSelectProperty;
565
- msTransform?: string;
566
- msTransformOrigin?: import("csstype").TransformOriginProperty<string | number>;
567
- msTransitionDelay?: string;
568
- msTransitionDuration?: string;
569
- msTransitionProperty?: string;
570
- msTransitionTimingFunction?: string;
571
- msUserSelect?: import("csstype").MsUserSelectProperty;
572
- msWordBreak?: import("csstype").WordBreakProperty;
573
- msWrapFlow?: import("csstype").MsWrapFlowProperty;
574
- msWrapMargin?: import("csstype").MsWrapMarginProperty<string | number>;
575
- msWrapThrough?: import("csstype").MsWrapThroughProperty;
576
- msWritingMode?: import("csstype").WritingModeProperty;
577
- WebkitAlignContent?: string;
578
- WebkitAlignItems?: string;
579
- WebkitAlignSelf?: string;
580
- WebkitAnimationDelay?: string;
581
- WebkitAnimationDirection?: string;
582
- WebkitAnimationDuration?: string;
583
- WebkitAnimationFillMode?: string;
584
- WebkitAnimationIterationCount?: import("csstype").AnimationIterationCountProperty;
585
- WebkitAnimationName?: string;
586
- WebkitAnimationPlayState?: string;
587
- WebkitAnimationTimingFunction?: string;
588
- WebkitAppearance?: import("csstype").WebkitAppearanceProperty;
589
- WebkitBackdropFilter?: string;
590
- WebkitBackfaceVisibility?: import("csstype").BackfaceVisibilityProperty;
591
- WebkitBackgroundClip?: string;
592
- WebkitBackgroundOrigin?: string;
593
- WebkitBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number>;
594
- WebkitBorderBeforeColor?: string;
595
- WebkitBorderBeforeStyle?: string;
596
- WebkitBorderBeforeWidth?: import("csstype").WebkitBorderBeforeWidthProperty<string | number>;
597
- WebkitBorderBottomLeftRadius?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
598
- WebkitBorderBottomRightRadius?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
599
- WebkitBorderImageSlice?: import("csstype").BorderImageSliceProperty;
600
- WebkitBorderTopLeftRadius?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
601
- WebkitBorderTopRightRadius?: import("csstype").BorderTopRightRadiusProperty<string | number>;
602
- WebkitBoxDecorationBreak?: import("csstype").BoxDecorationBreakProperty;
603
- WebkitBoxReflect?: import("csstype").WebkitBoxReflectProperty<string | number>;
604
- WebkitBoxShadow?: string;
605
- WebkitBoxSizing?: import("csstype").BoxSizingProperty;
606
- WebkitClipPath?: string;
607
- WebkitColumnCount?: import("csstype").ColumnCountProperty;
608
- WebkitColumnFill?: import("csstype").ColumnFillProperty;
609
- WebkitColumnRuleColor?: string;
610
- WebkitColumnRuleStyle?: string;
611
- WebkitColumnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number>;
612
- WebkitColumnSpan?: import("csstype").ColumnSpanProperty;
613
- WebkitColumnWidth?: import("csstype").ColumnWidthProperty<string | number>;
614
- WebkitFilter?: string;
615
- WebkitFlexBasis?: import("csstype").FlexBasisProperty<string | number>;
616
- WebkitFlexDirection?: import("csstype").FlexDirectionProperty;
617
- WebkitFlexGrow?: import("csstype").GlobalsNumber;
618
- WebkitFlexShrink?: import("csstype").GlobalsNumber;
619
- WebkitFlexWrap?: import("csstype").FlexWrapProperty;
620
- WebkitFontFeatureSettings?: string;
621
- WebkitFontKerning?: import("csstype").FontKerningProperty;
622
- WebkitFontSmoothing?: import("csstype").FontSmoothProperty<string | number>;
623
- WebkitFontVariantLigatures?: string;
624
- WebkitHyphenateCharacter?: string;
625
- WebkitHyphens?: import("csstype").HyphensProperty;
626
- WebkitInitialLetter?: import("csstype").InitialLetterProperty;
627
- WebkitJustifyContent?: string;
628
- WebkitLineBreak?: import("csstype").LineBreakProperty;
629
- WebkitLineClamp?: import("csstype").WebkitLineClampProperty;
630
- WebkitMarginEnd?: import("csstype").MarginInlineEndProperty<string | number>;
631
- WebkitMarginStart?: import("csstype").MarginInlineStartProperty<string | number>;
632
- WebkitMaskAttachment?: string;
633
- WebkitMaskBoxImageOutset?: import("csstype").MaskBorderOutsetProperty<string | number>;
634
- WebkitMaskBoxImageRepeat?: string;
635
- WebkitMaskBoxImageSlice?: import("csstype").MaskBorderSliceProperty;
636
- WebkitMaskBoxImageSource?: string;
637
- WebkitMaskBoxImageWidth?: import("csstype").MaskBorderWidthProperty<string | number>;
638
- WebkitMaskClip?: string;
639
- WebkitMaskComposite?: string;
640
- WebkitMaskImage?: string;
641
- WebkitMaskOrigin?: string;
642
- WebkitMaskPosition?: import("csstype").WebkitMaskPositionProperty<string | number>;
643
- WebkitMaskPositionX?: import("csstype").WebkitMaskPositionXProperty<string | number>;
644
- WebkitMaskPositionY?: import("csstype").WebkitMaskPositionYProperty<string | number>;
645
- WebkitMaskRepeat?: string;
646
- WebkitMaskRepeatX?: import("csstype").WebkitMaskRepeatXProperty;
647
- WebkitMaskRepeatY?: import("csstype").WebkitMaskRepeatYProperty;
648
- WebkitMaskSize?: import("csstype").WebkitMaskSizeProperty<string | number>;
649
- WebkitMaxInlineSize?: import("csstype").MaxInlineSizeProperty<string | number>;
650
- WebkitOrder?: import("csstype").GlobalsNumber;
651
- WebkitOverflowScrolling?: import("csstype").WebkitOverflowScrollingProperty;
652
- WebkitPaddingEnd?: import("csstype").PaddingInlineEndProperty<string | number>;
653
- WebkitPaddingStart?: import("csstype").PaddingInlineStartProperty<string | number>;
654
- WebkitPerspective?: import("csstype").PerspectiveProperty<string | number>;
655
- WebkitPerspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number>;
656
- WebkitPrintColorAdjust?: import("csstype").PrintColorAdjustProperty;
657
- WebkitRubyPosition?: string;
658
- WebkitScrollSnapType?: string;
659
- WebkitShapeMargin?: import("csstype").ShapeMarginProperty<string | number>;
660
- WebkitTapHighlightColor?: string;
661
- WebkitTextCombine?: string;
662
- WebkitTextDecorationColor?: string;
663
- WebkitTextDecorationLine?: string;
664
- WebkitTextDecorationSkip?: string;
665
- WebkitTextDecorationStyle?: import("csstype").TextDecorationStyleProperty;
666
- WebkitTextEmphasisColor?: string;
667
- WebkitTextEmphasisPosition?: string;
668
- WebkitTextEmphasisStyle?: string;
669
- WebkitTextFillColor?: string;
670
- WebkitTextOrientation?: import("csstype").TextOrientationProperty;
671
- WebkitTextSizeAdjust?: string;
672
- WebkitTextStrokeColor?: string;
673
- WebkitTextStrokeWidth?: import("csstype").WebkitTextStrokeWidthProperty<string | number>;
674
- WebkitTextUnderlinePosition?: string;
675
- WebkitTouchCallout?: import("csstype").WebkitTouchCalloutProperty;
676
- WebkitTransform?: string;
677
- WebkitTransformOrigin?: import("csstype").TransformOriginProperty<string | number>;
678
- WebkitTransformStyle?: import("csstype").TransformStyleProperty;
679
- WebkitTransitionDelay?: string;
680
- WebkitTransitionDuration?: string;
681
- WebkitTransitionProperty?: string;
682
- WebkitTransitionTimingFunction?: string;
683
- WebkitUserModify?: import("csstype").WebkitUserModifyProperty;
684
- WebkitUserSelect?: import("csstype").UserSelectProperty;
685
- WebkitWritingMode?: import("csstype").WritingModeProperty;
686
- MozAnimation?: import("csstype").AnimationProperty;
687
- MozBorderImage?: import("csstype").BorderImageProperty;
688
- MozColumnRule?: import("csstype").ColumnRuleProperty<string | number>;
689
- MozColumns?: import("csstype").ColumnsProperty<string | number>;
690
- MozTransition?: string;
691
- msContentZoomLimit?: string;
692
- msContentZoomSnap?: string;
693
- msFlex?: import("csstype").FlexProperty<string | number>;
694
- msScrollLimit?: string;
695
- msScrollSnapX?: string;
696
- msScrollSnapY?: string;
697
- msTransition?: string;
698
- WebkitAnimation?: import("csstype").AnimationProperty;
699
- WebkitBorderBefore?: import("csstype").WebkitBorderBeforeProperty<string | number>;
700
- WebkitBorderImage?: import("csstype").BorderImageProperty;
701
- WebkitBorderRadius?: import("csstype").BorderRadiusProperty<string | number>;
702
- WebkitColumnRule?: import("csstype").ColumnRuleProperty<string | number>;
703
- WebkitColumns?: import("csstype").ColumnsProperty<string | number>;
704
- WebkitFlex?: import("csstype").FlexProperty<string | number>;
705
- WebkitFlexFlow?: string;
706
- WebkitMask?: import("csstype").WebkitMaskProperty<string | number>;
707
- WebkitMaskBoxImage?: import("csstype").MaskBorderProperty;
708
- WebkitTextEmphasis?: string;
709
- WebkitTextStroke?: import("csstype").WebkitTextStrokeProperty<string | number>;
710
- WebkitTransition?: string;
711
- azimuth?: string;
712
- boxAlign?: import("csstype").BoxAlignProperty;
713
- boxDirection?: import("csstype").BoxDirectionProperty;
714
- boxFlex?: import("csstype").GlobalsNumber;
715
- boxFlexGroup?: import("csstype").GlobalsNumber;
716
- boxLines?: import("csstype").BoxLinesProperty;
717
- boxOrdinalGroup?: import("csstype").GlobalsNumber;
718
- boxOrient?: import("csstype").BoxOrientProperty;
719
- boxPack?: import("csstype").BoxPackProperty;
720
- clip?: string;
721
- gridColumnGap?: import("csstype").GridColumnGapProperty<string | number>;
722
- gridGap?: import("csstype").GridGapProperty<string | number>;
723
- gridRowGap?: import("csstype").GridRowGapProperty<string | number>;
724
- imeMode?: import("csstype").ImeModeProperty;
725
- offsetBlock?: import("csstype").InsetBlockProperty<string | number>;
726
- offsetBlockEnd?: import("csstype").InsetBlockEndProperty<string | number>;
727
- offsetBlockStart?: import("csstype").InsetBlockStartProperty<string | number>;
728
- offsetInline?: import("csstype").InsetInlineProperty<string | number>;
729
- offsetInlineEnd?: import("csstype").InsetInlineEndProperty<string | number>;
730
- offsetInlineStart?: import("csstype").InsetInlineStartProperty<string | number>;
731
- scrollSnapCoordinate?: import("csstype").ScrollSnapCoordinateProperty<string | number>;
732
- scrollSnapDestination?: import("csstype").ScrollSnapDestinationProperty<string | number>;
733
- scrollSnapPointsX?: string;
734
- scrollSnapPointsY?: string;
735
- scrollSnapTypeX?: import("csstype").ScrollSnapTypeXProperty;
736
- scrollSnapTypeY?: import("csstype").ScrollSnapTypeYProperty;
737
- KhtmlBoxAlign?: import("csstype").BoxAlignProperty;
738
- KhtmlBoxDirection?: import("csstype").BoxDirectionProperty;
739
- KhtmlBoxFlex?: import("csstype").GlobalsNumber;
740
- KhtmlBoxFlexGroup?: import("csstype").GlobalsNumber;
741
- KhtmlBoxLines?: import("csstype").BoxLinesProperty;
742
- KhtmlBoxOrdinalGroup?: import("csstype").GlobalsNumber;
743
- KhtmlBoxOrient?: import("csstype").BoxOrientProperty;
744
- KhtmlBoxPack?: import("csstype").BoxPackProperty;
745
- KhtmlLineBreak?: import("csstype").LineBreakProperty;
746
- KhtmlOpacity?: import("csstype").OpacityProperty;
747
- KhtmlUserSelect?: import("csstype").UserSelectProperty;
748
- MozBackgroundClip?: string;
749
- MozBackgroundInlinePolicy?: import("csstype").BoxDecorationBreakProperty;
750
- MozBackgroundOrigin?: string;
751
- MozBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number>;
752
- MozBinding?: string;
753
- MozBorderRadius?: import("csstype").BorderRadiusProperty<string | number>;
754
- MozBorderRadiusBottomleft?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
755
- MozBorderRadiusBottomright?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
756
- MozBorderRadiusTopleft?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
757
- MozBorderRadiusTopright?: import("csstype").BorderTopRightRadiusProperty<string | number>;
758
- MozBoxAlign?: import("csstype").BoxAlignProperty;
759
- MozBoxDirection?: import("csstype").BoxDirectionProperty;
760
- MozBoxFlex?: import("csstype").GlobalsNumber;
761
- MozBoxOrdinalGroup?: import("csstype").GlobalsNumber;
762
- MozBoxOrient?: import("csstype").BoxOrientProperty;
763
- MozBoxPack?: import("csstype").BoxPackProperty;
764
- MozBoxShadow?: string;
765
- MozFloatEdge?: import("csstype").MozFloatEdgeProperty;
766
- MozForceBrokenImageIcon?: import("csstype").MozForceBrokenImageIconProperty;
767
- MozOpacity?: import("csstype").OpacityProperty;
768
- MozOutline?: import("csstype").OutlineProperty<string | number>;
769
- MozOutlineColor?: string;
770
- MozOutlineRadius?: import("csstype").MozOutlineRadiusProperty<string | number>;
771
- MozOutlineRadiusBottomleft?: import("csstype").MozOutlineRadiusBottomleftProperty<string | number>;
772
- MozOutlineRadiusBottomright?: import("csstype").MozOutlineRadiusBottomrightProperty<string | number>;
773
- MozOutlineRadiusTopleft?: import("csstype").MozOutlineRadiusTopleftProperty<string | number>;
774
- MozOutlineRadiusTopright?: import("csstype").MozOutlineRadiusToprightProperty<string | number>;
775
- MozOutlineStyle?: string;
776
- MozOutlineWidth?: import("csstype").OutlineWidthProperty<string | number>;
777
- MozTextAlignLast?: import("csstype").TextAlignLastProperty;
778
- MozTextDecorationColor?: string;
779
- MozTextDecorationLine?: string;
780
- MozTextDecorationStyle?: import("csstype").TextDecorationStyleProperty;
781
- MozUserInput?: import("csstype").MozUserInputProperty;
782
- msImeMode?: import("csstype").ImeModeProperty;
783
- OAnimation?: import("csstype").AnimationProperty;
784
- OAnimationDelay?: string;
785
- OAnimationDirection?: string;
786
- OAnimationDuration?: string;
787
- OAnimationFillMode?: string;
788
- OAnimationIterationCount?: import("csstype").AnimationIterationCountProperty;
789
- OAnimationName?: string;
790
- OAnimationPlayState?: string;
791
- OAnimationTimingFunction?: string;
792
- OBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number>;
793
- OBorderImage?: import("csstype").BorderImageProperty;
794
- OObjectFit?: import("csstype").ObjectFitProperty;
795
- OObjectPosition?: import("csstype").ObjectPositionProperty<string | number>;
796
- OTabSize?: import("csstype").TabSizeProperty<string | number>;
797
- OTextOverflow?: string;
798
- OTransform?: string;
799
- OTransformOrigin?: import("csstype").TransformOriginProperty<string | number>;
800
- OTransition?: string;
801
- OTransitionDelay?: string;
802
- OTransitionDuration?: string;
803
- OTransitionProperty?: string;
804
- OTransitionTimingFunction?: string;
805
- WebkitBoxAlign?: import("csstype").BoxAlignProperty;
806
- WebkitBoxDirection?: import("csstype").BoxDirectionProperty;
807
- WebkitBoxFlex?: import("csstype").GlobalsNumber;
808
- WebkitBoxFlexGroup?: import("csstype").GlobalsNumber;
809
- WebkitBoxLines?: import("csstype").BoxLinesProperty;
810
- WebkitBoxOrdinalGroup?: import("csstype").GlobalsNumber;
811
- WebkitBoxOrient?: import("csstype").BoxOrientProperty;
812
- WebkitBoxPack?: import("csstype").BoxPackProperty;
813
- WebkitScrollSnapPointsX?: string;
814
- WebkitScrollSnapPointsY?: string;
815
- alignmentBaseline?: import("csstype").AlignmentBaselineProperty;
816
- baselineShift?: import("csstype").BaselineShiftProperty<string | number>;
817
- clipRule?: import("csstype").ClipRuleProperty;
818
- colorInterpolation?: import("csstype").ColorInterpolationProperty;
819
- colorRendering?: import("csstype").ColorRenderingProperty;
820
- dominantBaseline?: import("csstype").DominantBaselineProperty;
821
- fill?: string;
822
- fillOpacity?: import("csstype").GlobalsNumber;
823
- fillRule?: import("csstype").FillRuleProperty;
824
- floodColor?: string;
825
- floodOpacity?: import("csstype").GlobalsNumber;
826
- glyphOrientationVertical?: import("csstype").GlyphOrientationVerticalProperty;
827
- lightingColor?: string;
828
- marker?: string;
829
- markerEnd?: string;
830
- markerMid?: string;
831
- markerStart?: string;
832
- shapeRendering?: import("csstype").ShapeRenderingProperty;
833
- stopColor?: string;
834
- stopOpacity?: import("csstype").GlobalsNumber;
835
- stroke?: string;
836
- strokeDasharray?: import("csstype").StrokeDasharrayProperty<string | number>;
837
- strokeDashoffset?: import("csstype").StrokeDashoffsetProperty<string | number>;
838
- strokeLinecap?: import("csstype").StrokeLinecapProperty;
839
- strokeLinejoin?: import("csstype").StrokeLinejoinProperty;
840
- strokeMiterlimit?: import("csstype").GlobalsNumber;
841
- strokeOpacity?: import("csstype").GlobalsNumber;
842
- strokeWidth?: import("csstype").StrokeWidthProperty<string | number>;
843
- textAnchor?: import("csstype").TextAnchorProperty;
844
- vectorEffect?: import("csstype").VectorEffectProperty;
845
- "accent-color"?: string;
846
- "align-content"?: string;
847
- "align-items"?: string;
848
- "align-self"?: string;
849
- "align-tracks"?: string;
850
- "animation-composition"?: string;
851
- "animation-delay"?: string;
852
- "animation-direction"?: string;
853
- "animation-duration"?: string;
854
- "animation-fill-mode"?: string;
855
- "animation-iteration-count"?: import("csstype").AnimationIterationCountProperty;
856
- "animation-name"?: string;
857
- "animation-play-state"?: string;
858
- "animation-timeline"?: string;
859
- "animation-timing-function"?: string;
860
- "aspect-ratio"?: import("csstype").AspectRatioProperty;
861
- "backdrop-filter"?: string;
862
- "backface-visibility"?: import("csstype").BackfaceVisibilityProperty;
863
- "background-attachment"?: string;
864
- "background-blend-mode"?: string;
865
- "background-clip"?: string;
866
- "background-color"?: string;
867
- "background-image"?: string;
868
- "background-origin"?: string;
869
- "background-position-x"?: import("csstype").BackgroundPositionXProperty<string | number>;
870
- "background-position-y"?: import("csstype").BackgroundPositionYProperty<string | number>;
871
- "background-repeat"?: string;
872
- "background-size"?: import("csstype").BackgroundSizeProperty<string | number>;
873
- "block-overflow"?: string;
874
- "block-size"?: import("csstype").BlockSizeProperty<string | number>;
875
- "border-block-color"?: string;
876
- "border-block-end-color"?: string;
877
- "border-block-end-style"?: import("csstype").BorderBlockEndStyleProperty;
878
- "border-block-end-width"?: import("csstype").BorderBlockEndWidthProperty<string | number>;
879
- "border-block-start-color"?: string;
880
- "border-block-start-style"?: import("csstype").BorderBlockStartStyleProperty;
881
- "border-block-start-width"?: import("csstype").BorderBlockStartWidthProperty<string | number>;
882
- "border-block-style"?: import("csstype").BorderBlockStyleProperty;
883
- "border-block-width"?: import("csstype").BorderBlockWidthProperty<string | number>;
884
- "border-bottom-color"?: string;
885
- "border-bottom-left-radius"?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
886
- "border-bottom-right-radius"?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
887
- "border-bottom-style"?: import("csstype").BorderBottomStyleProperty;
888
- "border-bottom-width"?: import("csstype").BorderBottomWidthProperty<string | number>;
889
- "border-collapse"?: import("csstype").BorderCollapseProperty;
890
- "border-end-end-radius"?: import("csstype").BorderEndEndRadiusProperty<string | number>;
891
- "border-end-start-radius"?: import("csstype").BorderEndStartRadiusProperty<string | number>;
892
- "border-image-outset"?: import("csstype").BorderImageOutsetProperty<string | number>;
893
- "border-image-repeat"?: string;
894
- "border-image-slice"?: import("csstype").BorderImageSliceProperty;
895
- "border-image-source"?: string;
896
- "border-image-width"?: import("csstype").BorderImageWidthProperty<string | number>;
897
- "border-inline-color"?: string;
898
- "border-inline-end-color"?: string;
899
- "border-inline-end-style"?: import("csstype").BorderInlineEndStyleProperty;
900
- "border-inline-end-width"?: import("csstype").BorderInlineEndWidthProperty<string | number>;
901
- "border-inline-start-color"?: string;
902
- "border-inline-start-style"?: import("csstype").BorderInlineStartStyleProperty;
903
- "border-inline-start-width"?: import("csstype").BorderInlineStartWidthProperty<string | number>;
904
- "border-inline-style"?: import("csstype").BorderInlineStyleProperty;
905
- "border-inline-width"?: import("csstype").BorderInlineWidthProperty<string | number>;
906
- "border-left-color"?: string;
907
- "border-left-style"?: import("csstype").BorderLeftStyleProperty;
908
- "border-left-width"?: import("csstype").BorderLeftWidthProperty<string | number>;
909
- "border-right-color"?: string;
910
- "border-right-style"?: import("csstype").BorderRightStyleProperty;
911
- "border-right-width"?: import("csstype").BorderRightWidthProperty<string | number>;
912
- "border-spacing"?: import("csstype").BorderSpacingProperty<string | number>;
913
- "border-start-end-radius"?: import("csstype").BorderStartEndRadiusProperty<string | number>;
914
- "border-start-start-radius"?: import("csstype").BorderStartStartRadiusProperty<string | number>;
915
- "border-top-color"?: string;
916
- "border-top-left-radius"?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
917
- "border-top-right-radius"?: import("csstype").BorderTopRightRadiusProperty<string | number>;
918
- "border-top-style"?: import("csstype").BorderTopStyleProperty;
919
- "border-top-width"?: import("csstype").BorderTopWidthProperty<string | number>;
920
- "box-decoration-break"?: import("csstype").BoxDecorationBreakProperty;
921
- "box-shadow"?: string;
922
- "box-sizing"?: import("csstype").BoxSizingProperty;
923
- "break-after"?: import("csstype").BreakAfterProperty;
924
- "break-before"?: import("csstype").BreakBeforeProperty;
925
- "break-inside"?: import("csstype").BreakInsideProperty;
926
- "caption-side"?: import("csstype").CaptionSideProperty;
927
- "caret-color"?: string;
928
- "clip-path"?: string;
929
- "color-adjust"?: import("csstype").PrintColorAdjustProperty;
930
- "color-scheme"?: string;
931
- "column-count"?: import("csstype").ColumnCountProperty;
932
- "column-fill"?: import("csstype").ColumnFillProperty;
933
- "column-gap"?: import("csstype").ColumnGapProperty<string | number>;
934
- "column-rule-color"?: string;
935
- "column-rule-style"?: string;
936
- "column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number>;
937
- "column-span"?: import("csstype").ColumnSpanProperty;
938
- "column-width"?: import("csstype").ColumnWidthProperty<string | number>;
939
- "content-visibility"?: import("csstype").ContentVisibilityProperty;
940
- "counter-increment"?: string;
941
- "counter-reset"?: string;
942
- "counter-set"?: string;
943
- "empty-cells"?: import("csstype").EmptyCellsProperty;
944
- "flex-basis"?: import("csstype").FlexBasisProperty<string | number>;
945
- "flex-direction"?: import("csstype").FlexDirectionProperty;
946
- "flex-grow"?: import("csstype").GlobalsNumber;
947
- "flex-shrink"?: import("csstype").GlobalsNumber;
948
- "flex-wrap"?: import("csstype").FlexWrapProperty;
949
- "font-family"?: string;
950
- "font-feature-settings"?: string;
951
- "font-kerning"?: import("csstype").FontKerningProperty;
952
- "font-language-override"?: string;
953
- "font-optical-sizing"?: import("csstype").FontOpticalSizingProperty;
954
- "font-size"?: import("csstype").FontSizeProperty<string | number>;
955
- "font-size-adjust"?: import("csstype").FontSizeAdjustProperty;
956
- "font-smooth"?: import("csstype").FontSmoothProperty<string | number>;
957
- "font-stretch"?: string;
958
- "font-style"?: string;
959
- "font-synthesis"?: string;
960
- "font-variant"?: string;
961
- "font-variant-alternates"?: string;
962
- "font-variant-caps"?: import("csstype").FontVariantCapsProperty;
963
- "font-variant-east-asian"?: string;
964
- "font-variant-ligatures"?: string;
965
- "font-variant-numeric"?: string;
966
- "font-variant-position"?: import("csstype").FontVariantPositionProperty;
967
- "font-variation-settings"?: string;
968
- "font-weight"?: import("csstype").FontWeightProperty;
969
- "forced-color-adjust"?: import("csstype").ForcedColorAdjustProperty;
970
- "grid-auto-columns"?: import("csstype").GridAutoColumnsProperty<string | number>;
971
- "grid-auto-flow"?: string;
972
- "grid-auto-rows"?: import("csstype").GridAutoRowsProperty<string | number>;
973
- "grid-column-end"?: import("csstype").GridColumnEndProperty;
974
- "grid-column-start"?: import("csstype").GridColumnStartProperty;
975
- "grid-row-end"?: import("csstype").GridRowEndProperty;
976
- "grid-row-start"?: import("csstype").GridRowStartProperty;
977
- "grid-template-areas"?: string;
978
- "grid-template-columns"?: import("csstype").GridTemplateColumnsProperty<string | number>;
979
- "grid-template-rows"?: import("csstype").GridTemplateRowsProperty<string | number>;
980
- "hanging-punctuation"?: string;
981
- "hyphenate-character"?: string;
982
- "image-orientation"?: string;
983
- "image-rendering"?: import("csstype").ImageRenderingProperty;
984
- "image-resolution"?: string;
985
- "initial-letter"?: import("csstype").InitialLetterProperty;
986
- "inline-size"?: import("csstype").InlineSizeProperty<string | number>;
987
- "input-security"?: import("csstype").InputSecurityProperty;
988
- "inset-block"?: import("csstype").InsetBlockProperty<string | number>;
989
- "inset-block-end"?: import("csstype").InsetBlockEndProperty<string | number>;
990
- "inset-block-start"?: import("csstype").InsetBlockStartProperty<string | number>;
991
- "inset-inline"?: import("csstype").InsetInlineProperty<string | number>;
992
- "inset-inline-end"?: import("csstype").InsetInlineEndProperty<string | number>;
993
- "inset-inline-start"?: import("csstype").InsetInlineStartProperty<string | number>;
994
- "justify-content"?: string;
995
- "justify-items"?: string;
996
- "justify-self"?: string;
997
- "justify-tracks"?: string;
998
- "letter-spacing"?: import("csstype").LetterSpacingProperty<string | number>;
999
- "line-break"?: import("csstype").LineBreakProperty;
1000
- "line-height"?: import("csstype").LineHeightProperty<string | number>;
1001
- "line-height-step"?: import("csstype").LineHeightStepProperty<string | number>;
1002
- "list-style-image"?: string;
1003
- "list-style-position"?: import("csstype").ListStylePositionProperty;
1004
- "list-style-type"?: string;
1005
- "margin-block"?: import("csstype").MarginBlockProperty<string | number>;
1006
- "margin-block-end"?: import("csstype").MarginBlockEndProperty<string | number>;
1007
- "margin-block-start"?: import("csstype").MarginBlockStartProperty<string | number>;
1008
- "margin-bottom"?: import("csstype").MarginBottomProperty<string | number>;
1009
- "margin-inline"?: import("csstype").MarginInlineProperty<string | number>;
1010
- "margin-inline-end"?: import("csstype").MarginInlineEndProperty<string | number>;
1011
- "margin-inline-start"?: import("csstype").MarginInlineStartProperty<string | number>;
1012
- "margin-left"?: import("csstype").MarginLeftProperty<string | number>;
1013
- "margin-right"?: import("csstype").MarginRightProperty<string | number>;
1014
- "margin-top"?: import("csstype").MarginTopProperty<string | number>;
1015
- "mask-border-mode"?: import("csstype").MaskBorderModeProperty;
1016
- "mask-border-outset"?: import("csstype").MaskBorderOutsetProperty<string | number>;
1017
- "mask-border-repeat"?: string;
1018
- "mask-border-slice"?: import("csstype").MaskBorderSliceProperty;
1019
- "mask-border-source"?: string;
1020
- "mask-border-width"?: import("csstype").MaskBorderWidthProperty<string | number>;
1021
- "mask-clip"?: string;
1022
- "mask-composite"?: string;
1023
- "mask-image"?: string;
1024
- "mask-mode"?: string;
1025
- "mask-origin"?: string;
1026
- "mask-position"?: import("csstype").MaskPositionProperty<string | number>;
1027
- "mask-repeat"?: string;
1028
- "mask-size"?: import("csstype").MaskSizeProperty<string | number>;
1029
- "mask-type"?: import("csstype").MaskTypeProperty;
1030
- "math-depth"?: import("csstype").MathDepthProperty;
1031
- "math-shift"?: import("csstype").MathShiftProperty;
1032
- "math-style"?: import("csstype").MathStyleProperty;
1033
- "max-block-size"?: import("csstype").MaxBlockSizeProperty<string | number>;
1034
- "max-height"?: import("csstype").MaxHeightProperty<string | number>;
1035
- "max-inline-size"?: import("csstype").MaxInlineSizeProperty<string | number>;
1036
- "max-lines"?: import("csstype").MaxLinesProperty;
1037
- "max-width"?: import("csstype").MaxWidthProperty<string | number>;
1038
- "min-block-size"?: import("csstype").MinBlockSizeProperty<string | number>;
1039
- "min-height"?: import("csstype").MinHeightProperty<string | number>;
1040
- "min-inline-size"?: import("csstype").MinInlineSizeProperty<string | number>;
1041
- "min-width"?: import("csstype").MinWidthProperty<string | number>;
1042
- "mix-blend-mode"?: import("csstype").MixBlendModeProperty;
1043
- "motion-distance"?: import("csstype").OffsetDistanceProperty<string | number>;
1044
- "motion-path"?: string;
1045
- "motion-rotation"?: string;
1046
- "object-fit"?: import("csstype").ObjectFitProperty;
1047
- "object-position"?: import("csstype").ObjectPositionProperty<string | number>;
1048
- "offset-anchor"?: import("csstype").OffsetAnchorProperty<string | number>;
1049
- "offset-distance"?: import("csstype").OffsetDistanceProperty<string | number>;
1050
- "offset-path"?: string;
1051
- "offset-rotate"?: string;
1052
- "offset-rotation"?: string;
1053
- "outline-color"?: string;
1054
- "outline-offset"?: import("csstype").OutlineOffsetProperty<string | number>;
1055
- "outline-style"?: string;
1056
- "outline-width"?: import("csstype").OutlineWidthProperty<string | number>;
1057
- "overflow-anchor"?: import("csstype").OverflowAnchorProperty;
1058
- "overflow-block"?: import("csstype").OverflowBlockProperty;
1059
- "overflow-clip-box"?: import("csstype").OverflowClipBoxProperty;
1060
- "overflow-clip-margin"?: import("csstype").OverflowClipMarginProperty<string | number>;
1061
- "overflow-inline"?: import("csstype").OverflowInlineProperty;
1062
- "overflow-wrap"?: import("csstype").OverflowWrapProperty;
1063
- "overflow-x"?: import("csstype").OverflowXProperty;
1064
- "overflow-y"?: import("csstype").OverflowYProperty;
1065
- "overscroll-behavior-block"?: import("csstype").OverscrollBehaviorBlockProperty;
1066
- "overscroll-behavior-inline"?: import("csstype").OverscrollBehaviorInlineProperty;
1067
- "overscroll-behavior-x"?: import("csstype").OverscrollBehaviorXProperty;
1068
- "overscroll-behavior-y"?: import("csstype").OverscrollBehaviorYProperty;
1069
- "padding-block"?: import("csstype").PaddingBlockProperty<string | number>;
1070
- "padding-block-end"?: import("csstype").PaddingBlockEndProperty<string | number>;
1071
- "padding-block-start"?: import("csstype").PaddingBlockStartProperty<string | number>;
1072
- "padding-bottom"?: import("csstype").PaddingBottomProperty<string | number>;
1073
- "padding-inline"?: import("csstype").PaddingInlineProperty<string | number>;
1074
- "padding-inline-end"?: import("csstype").PaddingInlineEndProperty<string | number>;
1075
- "padding-inline-start"?: import("csstype").PaddingInlineStartProperty<string | number>;
1076
- "padding-left"?: import("csstype").PaddingLeftProperty<string | number>;
1077
- "padding-right"?: import("csstype").PaddingRightProperty<string | number>;
1078
- "padding-top"?: import("csstype").PaddingTopProperty<string | number>;
1079
- "page-break-after"?: import("csstype").PageBreakAfterProperty;
1080
- "page-break-before"?: import("csstype").PageBreakBeforeProperty;
1081
- "page-break-inside"?: import("csstype").PageBreakInsideProperty;
1082
- "paint-order"?: string;
1083
- "perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number>;
1084
- "place-content"?: string;
1085
- "pointer-events"?: import("csstype").PointerEventsProperty;
1086
- "print-color-adjust"?: import("csstype").PrintColorAdjustProperty;
1087
- "row-gap"?: import("csstype").RowGapProperty<string | number>;
1088
- "ruby-align"?: import("csstype").RubyAlignProperty;
1089
- "ruby-merge"?: import("csstype").RubyMergeProperty;
1090
- "ruby-position"?: string;
1091
- "scroll-behavior"?: import("csstype").ScrollBehaviorProperty;
1092
- "scroll-margin"?: import("csstype").ScrollMarginProperty<string | number>;
1093
- "scroll-margin-block"?: import("csstype").ScrollMarginBlockProperty<string | number>;
1094
- "scroll-margin-block-end"?: import("csstype").ScrollMarginBlockEndProperty<string | number>;
1095
- "scroll-margin-block-start"?: import("csstype").ScrollMarginBlockStartProperty<string | number>;
1096
- "scroll-margin-bottom"?: import("csstype").ScrollMarginBottomProperty<string | number>;
1097
- "scroll-margin-inline"?: import("csstype").ScrollMarginInlineProperty<string | number>;
1098
- "scroll-margin-inline-end"?: import("csstype").ScrollMarginInlineEndProperty<string | number>;
1099
- "scroll-margin-inline-start"?: import("csstype").ScrollMarginInlineStartProperty<string | number>;
1100
- "scroll-margin-left"?: import("csstype").ScrollMarginLeftProperty<string | number>;
1101
- "scroll-margin-right"?: import("csstype").ScrollMarginRightProperty<string | number>;
1102
- "scroll-margin-top"?: import("csstype").ScrollMarginTopProperty<string | number>;
1103
- "scroll-padding"?: import("csstype").ScrollPaddingProperty<string | number>;
1104
- "scroll-padding-block"?: import("csstype").ScrollPaddingBlockProperty<string | number>;
1105
- "scroll-padding-block-end"?: import("csstype").ScrollPaddingBlockEndProperty<string | number>;
1106
- "scroll-padding-block-start"?: import("csstype").ScrollPaddingBlockStartProperty<string | number>;
1107
- "scroll-padding-bottom"?: import("csstype").ScrollPaddingBottomProperty<string | number>;
1108
- "scroll-padding-inline"?: import("csstype").ScrollPaddingInlineProperty<string | number>;
1109
- "scroll-padding-inline-end"?: import("csstype").ScrollPaddingInlineEndProperty<string | number>;
1110
- "scroll-padding-inline-start"?: import("csstype").ScrollPaddingInlineStartProperty<string | number>;
1111
- "scroll-padding-left"?: import("csstype").ScrollPaddingLeftProperty<string | number>;
1112
- "scroll-padding-right"?: import("csstype").ScrollPaddingRightProperty<string | number>;
1113
- "scroll-padding-top"?: import("csstype").ScrollPaddingTopProperty<string | number>;
1114
- "scroll-snap-align"?: string;
1115
- "scroll-snap-margin"?: import("csstype").ScrollMarginProperty<string | number>;
1116
- "scroll-snap-margin-bottom"?: import("csstype").ScrollMarginBottomProperty<string | number>;
1117
- "scroll-snap-margin-left"?: import("csstype").ScrollMarginLeftProperty<string | number>;
1118
- "scroll-snap-margin-right"?: import("csstype").ScrollMarginRightProperty<string | number>;
1119
- "scroll-snap-margin-top"?: import("csstype").ScrollMarginTopProperty<string | number>;
1120
- "scroll-snap-stop"?: import("csstype").ScrollSnapStopProperty;
1121
- "scroll-snap-type"?: string;
1122
- "scrollbar-color"?: string;
1123
- "scrollbar-gutter"?: string;
1124
- "scrollbar-width"?: import("csstype").ScrollbarWidthProperty;
1125
- "shape-image-threshold"?: import("csstype").ShapeImageThresholdProperty;
1126
- "shape-margin"?: import("csstype").ShapeMarginProperty<string | number>;
1127
- "shape-outside"?: string;
1128
- "tab-size"?: import("csstype").TabSizeProperty<string | number>;
1129
- "table-layout"?: import("csstype").TableLayoutProperty;
1130
- "text-align"?: import("csstype").TextAlignProperty;
1131
- "text-align-last"?: import("csstype").TextAlignLastProperty;
1132
- "text-combine-upright"?: string;
1133
- "text-decoration-color"?: string;
1134
- "text-decoration-line"?: string;
1135
- "text-decoration-skip"?: string;
1136
- "text-decoration-skip-ink"?: import("csstype").TextDecorationSkipInkProperty;
1137
- "text-decoration-style"?: import("csstype").TextDecorationStyleProperty;
1138
- "text-decoration-thickness"?: import("csstype").TextDecorationThicknessProperty<string | number>;
1139
- "text-emphasis-color"?: string;
1140
- "text-emphasis-position"?: string;
1141
- "text-emphasis-style"?: string;
1142
- "text-indent"?: import("csstype").TextIndentProperty<string | number>;
1143
- "text-justify"?: import("csstype").TextJustifyProperty;
1144
- "text-orientation"?: import("csstype").TextOrientationProperty;
1145
- "text-overflow"?: string;
1146
- "text-rendering"?: import("csstype").TextRenderingProperty;
1147
- "text-shadow"?: string;
1148
- "text-size-adjust"?: string;
1149
- "text-transform"?: import("csstype").TextTransformProperty;
1150
- "text-underline-offset"?: import("csstype").TextUnderlineOffsetProperty<string | number>;
1151
- "text-underline-position"?: string;
1152
- "touch-action"?: string;
1153
- "transform-box"?: import("csstype").TransformBoxProperty;
1154
- "transform-origin"?: import("csstype").TransformOriginProperty<string | number>;
1155
- "transform-style"?: import("csstype").TransformStyleProperty;
1156
- "transition-delay"?: string;
1157
- "transition-duration"?: string;
1158
- "transition-property"?: string;
1159
- "transition-timing-function"?: string;
1160
- "unicode-bidi"?: import("csstype").UnicodeBidiProperty;
1161
- "user-select"?: import("csstype").UserSelectProperty;
1162
- "vertical-align"?: import("csstype").VerticalAlignProperty<string | number>;
1163
- "white-space"?: import("csstype").WhiteSpaceProperty;
1164
- "will-change"?: string;
1165
- "word-break"?: import("csstype").WordBreakProperty;
1166
- "word-spacing"?: import("csstype").WordSpacingProperty<string | number>;
1167
- "word-wrap"?: import("csstype").WordWrapProperty;
1168
- "writing-mode"?: import("csstype").WritingModeProperty;
1169
- "z-index"?: import("csstype").ZIndexProperty;
1170
- "background-position"?: import("csstype").BackgroundPositionProperty<string | number>;
1171
- "border-block"?: import("csstype").BorderBlockProperty<string | number>;
1172
- "border-block-end"?: import("csstype").BorderBlockEndProperty<string | number>;
1173
- "border-block-start"?: import("csstype").BorderBlockStartProperty<string | number>;
1174
- "border-bottom"?: import("csstype").BorderBottomProperty<string | number>;
1175
- "border-color"?: string;
1176
- "border-image"?: import("csstype").BorderImageProperty;
1177
- "border-inline"?: import("csstype").BorderInlineProperty<string | number>;
1178
- "border-inline-end"?: import("csstype").BorderInlineEndProperty<string | number>;
1179
- "border-inline-start"?: import("csstype").BorderInlineStartProperty<string | number>;
1180
- "border-left"?: import("csstype").BorderLeftProperty<string | number>;
1181
- "border-radius"?: import("csstype").BorderRadiusProperty<string | number>;
1182
- "border-right"?: import("csstype").BorderRightProperty<string | number>;
1183
- "border-style"?: string;
1184
- "border-top"?: import("csstype").BorderTopProperty<string | number>;
1185
- "border-width"?: import("csstype").BorderWidthProperty<string | number>;
1186
- "column-rule"?: import("csstype").ColumnRuleProperty<string | number>;
1187
- "flex-flow"?: string;
1188
- "grid-area"?: import("csstype").GridAreaProperty;
1189
- "grid-column"?: import("csstype").GridColumnProperty;
1190
- "grid-row"?: import("csstype").GridRowProperty;
1191
- "grid-template"?: string;
1192
- "line-clamp"?: import("csstype").LineClampProperty;
1193
- "list-style"?: string;
1194
- "mask-border"?: import("csstype").MaskBorderProperty;
1195
- "overscroll-behavior"?: string;
1196
- "place-items"?: string;
1197
- "place-self"?: string;
1198
- "text-decoration"?: import("csstype").TextDecorationProperty<string | number>;
1199
- "text-emphasis"?: string;
1200
- "-moz-animation-delay"?: string;
1201
- "-moz-animation-direction"?: string;
1202
- "-moz-animation-duration"?: string;
1203
- "-moz-animation-fill-mode"?: string;
1204
- "-moz-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty;
1205
- "-moz-animation-name"?: string;
1206
- "-moz-animation-play-state"?: string;
1207
- "-moz-animation-timing-function"?: string;
1208
- "-moz-appearance"?: import("csstype").MozAppearanceProperty;
1209
- "-moz-backface-visibility"?: import("csstype").BackfaceVisibilityProperty;
1210
- "-moz-border-bottom-colors"?: string;
1211
- "-moz-border-end-color"?: string;
1212
- "-moz-border-end-style"?: import("csstype").BorderInlineEndStyleProperty;
1213
- "-moz-border-end-width"?: import("csstype").BorderInlineEndWidthProperty<string | number>;
1214
- "-moz-border-left-colors"?: string;
1215
- "-moz-border-right-colors"?: string;
1216
- "-moz-border-start-color"?: string;
1217
- "-moz-border-start-style"?: import("csstype").BorderInlineStartStyleProperty;
1218
- "-moz-border-top-colors"?: string;
1219
- "-moz-box-sizing"?: import("csstype").BoxSizingProperty;
1220
- "-moz-column-count"?: import("csstype").ColumnCountProperty;
1221
- "-moz-column-fill"?: import("csstype").ColumnFillProperty;
1222
- "-moz-column-rule-color"?: string;
1223
- "-moz-column-rule-style"?: string;
1224
- "-moz-column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number>;
1225
- "-moz-column-width"?: import("csstype").ColumnWidthProperty<string | number>;
1226
- "-moz-context-properties"?: string;
1227
- "-moz-font-feature-settings"?: string;
1228
- "-moz-font-language-override"?: string;
1229
- "-moz-hyphens"?: import("csstype").HyphensProperty;
1230
- "-moz-image-region"?: string;
1231
- "-moz-margin-end"?: import("csstype").MarginInlineEndProperty<string | number>;
1232
- "-moz-margin-start"?: import("csstype").MarginInlineStartProperty<string | number>;
1233
- "-moz-orient"?: import("csstype").MozOrientProperty;
1234
- "-moz-osx-font-smoothing"?: import("csstype").FontSmoothProperty<string | number>;
1235
- "-moz-padding-end"?: import("csstype").PaddingInlineEndProperty<string | number>;
1236
- "-moz-padding-start"?: import("csstype").PaddingInlineStartProperty<string | number>;
1237
- "-moz-perspective"?: import("csstype").PerspectiveProperty<string | number>;
1238
- "-moz-perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number>;
1239
- "-moz-stack-sizing"?: import("csstype").MozStackSizingProperty;
1240
- "-moz-tab-size"?: import("csstype").TabSizeProperty<string | number>;
1241
- "-moz-text-blink"?: import("csstype").MozTextBlinkProperty;
1242
- "-moz-text-size-adjust"?: string;
1243
- "-moz-transform-origin"?: import("csstype").TransformOriginProperty<string | number>;
1244
- "-moz-transform-style"?: import("csstype").TransformStyleProperty;
1245
- "-moz-transition-delay"?: string;
1246
- "-moz-transition-duration"?: string;
1247
- "-moz-transition-property"?: string;
1248
- "-moz-transition-timing-function"?: string;
1249
- "-moz-user-focus"?: import("csstype").MozUserFocusProperty;
1250
- "-moz-user-modify"?: import("csstype").MozUserModifyProperty;
1251
- "-moz-user-select"?: import("csstype").UserSelectProperty;
1252
- "-moz-window-dragging"?: import("csstype").MozWindowDraggingProperty;
1253
- "-moz-window-shadow"?: import("csstype").MozWindowShadowProperty;
1254
- "-ms-accelerator"?: import("csstype").MsAcceleratorProperty;
1255
- "-ms-block-progression"?: import("csstype").MsBlockProgressionProperty;
1256
- "-ms-content-zoom-chaining"?: import("csstype").MsContentZoomChainingProperty;
1257
- "-ms-content-zoom-limit-max"?: string;
1258
- "-ms-content-zoom-limit-min"?: string;
1259
- "-ms-content-zoom-snap-points"?: string;
1260
- "-ms-content-zoom-snap-type"?: import("csstype").MsContentZoomSnapTypeProperty;
1261
- "-ms-content-zooming"?: import("csstype").MsContentZoomingProperty;
1262
- "-ms-filter"?: string;
1263
- "-ms-flex-direction"?: import("csstype").FlexDirectionProperty;
1264
- "-ms-flex-positive"?: import("csstype").GlobalsNumber;
1265
- "-ms-flow-from"?: string;
1266
- "-ms-flow-into"?: string;
1267
- "-ms-grid-columns"?: import("csstype").MsGridColumnsProperty<string | number>;
1268
- "-ms-grid-rows"?: import("csstype").MsGridRowsProperty<string | number>;
1269
- "-ms-high-contrast-adjust"?: import("csstype").MsHighContrastAdjustProperty;
1270
- "-ms-hyphenate-limit-chars"?: import("csstype").MsHyphenateLimitCharsProperty;
1271
- "-ms-hyphenate-limit-lines"?: import("csstype").MsHyphenateLimitLinesProperty;
1272
- "-ms-hyphenate-limit-zone"?: import("csstype").MsHyphenateLimitZoneProperty<string | number>;
1273
- "-ms-hyphens"?: import("csstype").HyphensProperty;
1274
- "-ms-ime-align"?: import("csstype").MsImeAlignProperty;
1275
- "-ms-line-break"?: import("csstype").LineBreakProperty;
1276
- "-ms-order"?: import("csstype").GlobalsNumber;
1277
- "-ms-overflow-style"?: import("csstype").MsOverflowStyleProperty;
1278
- "-ms-overflow-x"?: import("csstype").OverflowXProperty;
1279
- "-ms-overflow-y"?: import("csstype").OverflowYProperty;
1280
- "-ms-scroll-chaining"?: import("csstype").MsScrollChainingProperty;
1281
- "-ms-scroll-limit-x-max"?: import("csstype").MsScrollLimitXMaxProperty<string | number>;
1282
- "-ms-scroll-limit-x-min"?: import("csstype").MsScrollLimitXMinProperty<string | number>;
1283
- "-ms-scroll-limit-y-max"?: import("csstype").MsScrollLimitYMaxProperty<string | number>;
1284
- "-ms-scroll-limit-y-min"?: import("csstype").MsScrollLimitYMinProperty<string | number>;
1285
- "-ms-scroll-rails"?: import("csstype").MsScrollRailsProperty;
1286
- "-ms-scroll-snap-points-x"?: string;
1287
- "-ms-scroll-snap-points-y"?: string;
1288
- "-ms-scroll-snap-type"?: import("csstype").MsScrollSnapTypeProperty;
1289
- "-ms-scroll-translation"?: import("csstype").MsScrollTranslationProperty;
1290
- "-ms-scrollbar-3dlight-color"?: string;
1291
- "-ms-scrollbar-arrow-color"?: string;
1292
- "-ms-scrollbar-base-color"?: string;
1293
- "-ms-scrollbar-darkshadow-color"?: string;
1294
- "-ms-scrollbar-face-color"?: string;
1295
- "-ms-scrollbar-highlight-color"?: string;
1296
- "-ms-scrollbar-shadow-color"?: string;
1297
- "-ms-scrollbar-track-color"?: string;
1298
- "-ms-text-autospace"?: import("csstype").MsTextAutospaceProperty;
1299
- "-ms-text-combine-horizontal"?: string;
1300
- "-ms-text-overflow"?: string;
1301
- "-ms-touch-action"?: string;
1302
- "-ms-touch-select"?: import("csstype").MsTouchSelectProperty;
1303
- "-ms-transform"?: string;
1304
- "-ms-transform-origin"?: import("csstype").TransformOriginProperty<string | number>;
1305
- "-ms-transition-delay"?: string;
1306
- "-ms-transition-duration"?: string;
1307
- "-ms-transition-property"?: string;
1308
- "-ms-transition-timing-function"?: string;
1309
- "-ms-user-select"?: import("csstype").MsUserSelectProperty;
1310
- "-ms-word-break"?: import("csstype").WordBreakProperty;
1311
- "-ms-wrap-flow"?: import("csstype").MsWrapFlowProperty;
1312
- "-ms-wrap-margin"?: import("csstype").MsWrapMarginProperty<string | number>;
1313
- "-ms-wrap-through"?: import("csstype").MsWrapThroughProperty;
1314
- "-ms-writing-mode"?: import("csstype").WritingModeProperty;
1315
- "-webkit-align-content"?: string;
1316
- "-webkit-align-items"?: string;
1317
- "-webkit-align-self"?: string;
1318
- "-webkit-animation-delay"?: string;
1319
- "-webkit-animation-direction"?: string;
1320
- "-webkit-animation-duration"?: string;
1321
- "-webkit-animation-fill-mode"?: string;
1322
- "-webkit-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty;
1323
- "-webkit-animation-name"?: string;
1324
- "-webkit-animation-play-state"?: string;
1325
- "-webkit-animation-timing-function"?: string;
1326
- "-webkit-appearance"?: import("csstype").WebkitAppearanceProperty;
1327
- "-webkit-backdrop-filter"?: string;
1328
- "-webkit-backface-visibility"?: import("csstype").BackfaceVisibilityProperty;
1329
- "-webkit-background-clip"?: string;
1330
- "-webkit-background-origin"?: string;
1331
- "-webkit-background-size"?: import("csstype").BackgroundSizeProperty<string | number>;
1332
- "-webkit-border-before-color"?: string;
1333
- "-webkit-border-before-style"?: string;
1334
- "-webkit-border-before-width"?: import("csstype").WebkitBorderBeforeWidthProperty<string | number>;
1335
- "-webkit-border-bottom-left-radius"?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
1336
- "-webkit-border-bottom-right-radius"?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
1337
- "-webkit-border-image-slice"?: import("csstype").BorderImageSliceProperty;
1338
- "-webkit-border-top-left-radius"?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
1339
- "-webkit-border-top-right-radius"?: import("csstype").BorderTopRightRadiusProperty<string | number>;
1340
- "-webkit-box-decoration-break"?: import("csstype").BoxDecorationBreakProperty;
1341
- "-webkit-box-reflect"?: import("csstype").WebkitBoxReflectProperty<string | number>;
1342
- "-webkit-box-shadow"?: string;
1343
- "-webkit-box-sizing"?: import("csstype").BoxSizingProperty;
1344
- "-webkit-clip-path"?: string;
1345
- "-webkit-column-count"?: import("csstype").ColumnCountProperty;
1346
- "-webkit-column-fill"?: import("csstype").ColumnFillProperty;
1347
- "-webkit-column-rule-color"?: string;
1348
- "-webkit-column-rule-style"?: string;
1349
- "-webkit-column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number>;
1350
- "-webkit-column-span"?: import("csstype").ColumnSpanProperty;
1351
- "-webkit-column-width"?: import("csstype").ColumnWidthProperty<string | number>;
1352
- "-webkit-filter"?: string;
1353
- "-webkit-flex-basis"?: import("csstype").FlexBasisProperty<string | number>;
1354
- "-webkit-flex-direction"?: import("csstype").FlexDirectionProperty;
1355
- "-webkit-flex-grow"?: import("csstype").GlobalsNumber;
1356
- "-webkit-flex-shrink"?: import("csstype").GlobalsNumber;
1357
- "-webkit-flex-wrap"?: import("csstype").FlexWrapProperty;
1358
- "-webkit-font-feature-settings"?: string;
1359
- "-webkit-font-kerning"?: import("csstype").FontKerningProperty;
1360
- "-webkit-font-smoothing"?: import("csstype").FontSmoothProperty<string | number>;
1361
- "-webkit-font-variant-ligatures"?: string;
1362
- "-webkit-hyphenate-character"?: string;
1363
- "-webkit-hyphens"?: import("csstype").HyphensProperty;
1364
- "-webkit-initial-letter"?: import("csstype").InitialLetterProperty;
1365
- "-webkit-justify-content"?: string;
1366
- "-webkit-line-break"?: import("csstype").LineBreakProperty;
1367
- "-webkit-line-clamp"?: import("csstype").WebkitLineClampProperty;
1368
- "-webkit-margin-end"?: import("csstype").MarginInlineEndProperty<string | number>;
1369
- "-webkit-margin-start"?: import("csstype").MarginInlineStartProperty<string | number>;
1370
- "-webkit-mask-attachment"?: string;
1371
- "-webkit-mask-box-image-outset"?: import("csstype").MaskBorderOutsetProperty<string | number>;
1372
- "-webkit-mask-box-image-repeat"?: string;
1373
- "-webkit-mask-box-image-slice"?: import("csstype").MaskBorderSliceProperty;
1374
- "-webkit-mask-box-image-source"?: string;
1375
- "-webkit-mask-box-image-width"?: import("csstype").MaskBorderWidthProperty<string | number>;
1376
- "-webkit-mask-clip"?: string;
1377
- "-webkit-mask-composite"?: string;
1378
- "-webkit-mask-image"?: string;
1379
- "-webkit-mask-origin"?: string;
1380
- "-webkit-mask-position"?: import("csstype").WebkitMaskPositionProperty<string | number>;
1381
- "-webkit-mask-position-x"?: import("csstype").WebkitMaskPositionXProperty<string | number>;
1382
- "-webkit-mask-position-y"?: import("csstype").WebkitMaskPositionYProperty<string | number>;
1383
- "-webkit-mask-repeat"?: string;
1384
- "-webkit-mask-repeat-x"?: import("csstype").WebkitMaskRepeatXProperty;
1385
- "-webkit-mask-repeat-y"?: import("csstype").WebkitMaskRepeatYProperty;
1386
- "-webkit-mask-size"?: import("csstype").WebkitMaskSizeProperty<string | number>;
1387
- "-webkit-max-inline-size"?: import("csstype").MaxInlineSizeProperty<string | number>;
1388
- "-webkit-order"?: import("csstype").GlobalsNumber;
1389
- "-webkit-overflow-scrolling"?: import("csstype").WebkitOverflowScrollingProperty;
1390
- "-webkit-padding-end"?: import("csstype").PaddingInlineEndProperty<string | number>;
1391
- "-webkit-padding-start"?: import("csstype").PaddingInlineStartProperty<string | number>;
1392
- "-webkit-perspective"?: import("csstype").PerspectiveProperty<string | number>;
1393
- "-webkit-perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number>;
1394
- "-webkit-print-color-adjust"?: import("csstype").PrintColorAdjustProperty;
1395
- "-webkit-ruby-position"?: string;
1396
- "-webkit-scroll-snap-type"?: string;
1397
- "-webkit-shape-margin"?: import("csstype").ShapeMarginProperty<string | number>;
1398
- "-webkit-tap-highlight-color"?: string;
1399
- "-webkit-text-combine"?: string;
1400
- "-webkit-text-decoration-color"?: string;
1401
- "-webkit-text-decoration-line"?: string;
1402
- "-webkit-text-decoration-skip"?: string;
1403
- "-webkit-text-decoration-style"?: import("csstype").TextDecorationStyleProperty;
1404
- "-webkit-text-emphasis-color"?: string;
1405
- "-webkit-text-emphasis-position"?: string;
1406
- "-webkit-text-emphasis-style"?: string;
1407
- "-webkit-text-fill-color"?: string;
1408
- "-webkit-text-orientation"?: import("csstype").TextOrientationProperty;
1409
- "-webkit-text-size-adjust"?: string;
1410
- "-webkit-text-stroke-color"?: string;
1411
- "-webkit-text-stroke-width"?: import("csstype").WebkitTextStrokeWidthProperty<string | number>;
1412
- "-webkit-text-underline-position"?: string;
1413
- "-webkit-touch-callout"?: import("csstype").WebkitTouchCalloutProperty;
1414
- "-webkit-transform"?: string;
1415
- "-webkit-transform-origin"?: import("csstype").TransformOriginProperty<string | number>;
1416
- "-webkit-transform-style"?: import("csstype").TransformStyleProperty;
1417
- "-webkit-transition-delay"?: string;
1418
- "-webkit-transition-duration"?: string;
1419
- "-webkit-transition-property"?: string;
1420
- "-webkit-transition-timing-function"?: string;
1421
- "-webkit-user-modify"?: import("csstype").WebkitUserModifyProperty;
1422
- "-webkit-user-select"?: import("csstype").UserSelectProperty;
1423
- "-webkit-writing-mode"?: import("csstype").WritingModeProperty;
1424
- "-moz-animation"?: import("csstype").AnimationProperty;
1425
- "-moz-border-image"?: import("csstype").BorderImageProperty;
1426
- "-moz-column-rule"?: import("csstype").ColumnRuleProperty<string | number>;
1427
- "-moz-columns"?: import("csstype").ColumnsProperty<string | number>;
1428
- "-moz-transition"?: string;
1429
- "-ms-content-zoom-limit"?: string;
1430
- "-ms-content-zoom-snap"?: string;
1431
- "-ms-flex"?: import("csstype").FlexProperty<string | number>;
1432
- "-ms-scroll-limit"?: string;
1433
- "-ms-scroll-snap-x"?: string;
1434
- "-ms-scroll-snap-y"?: string;
1435
- "-ms-transition"?: string;
1436
- "-webkit-animation"?: import("csstype").AnimationProperty;
1437
- "-webkit-border-before"?: import("csstype").WebkitBorderBeforeProperty<string | number>;
1438
- "-webkit-border-image"?: import("csstype").BorderImageProperty;
1439
- "-webkit-border-radius"?: import("csstype").BorderRadiusProperty<string | number>;
1440
- "-webkit-column-rule"?: import("csstype").ColumnRuleProperty<string | number>;
1441
- "-webkit-columns"?: import("csstype").ColumnsProperty<string | number>;
1442
- "-webkit-flex"?: import("csstype").FlexProperty<string | number>;
1443
- "-webkit-flex-flow"?: string;
1444
- "-webkit-mask"?: import("csstype").WebkitMaskProperty<string | number>;
1445
- "-webkit-mask-box-image"?: import("csstype").MaskBorderProperty;
1446
- "-webkit-text-emphasis"?: string;
1447
- "-webkit-text-stroke"?: import("csstype").WebkitTextStrokeProperty<string | number>;
1448
- "-webkit-transition"?: string;
1449
- "box-align"?: import("csstype").BoxAlignProperty;
1450
- "box-direction"?: import("csstype").BoxDirectionProperty;
1451
- "box-flex"?: import("csstype").GlobalsNumber;
1452
- "box-flex-group"?: import("csstype").GlobalsNumber;
1453
- "box-lines"?: import("csstype").BoxLinesProperty;
1454
- "box-ordinal-group"?: import("csstype").GlobalsNumber;
1455
- "box-orient"?: import("csstype").BoxOrientProperty;
1456
- "box-pack"?: import("csstype").BoxPackProperty;
1457
- "grid-column-gap"?: import("csstype").GridColumnGapProperty<string | number>;
1458
- "grid-gap"?: import("csstype").GridGapProperty<string | number>;
1459
- "grid-row-gap"?: import("csstype").GridRowGapProperty<string | number>;
1460
- "ime-mode"?: import("csstype").ImeModeProperty;
1461
- "offset-block"?: import("csstype").InsetBlockProperty<string | number>;
1462
- "offset-block-end"?: import("csstype").InsetBlockEndProperty<string | number>;
1463
- "offset-block-start"?: import("csstype").InsetBlockStartProperty<string | number>;
1464
- "offset-inline"?: import("csstype").InsetInlineProperty<string | number>;
1465
- "offset-inline-end"?: import("csstype").InsetInlineEndProperty<string | number>;
1466
- "offset-inline-start"?: import("csstype").InsetInlineStartProperty<string | number>;
1467
- "scroll-snap-coordinate"?: import("csstype").ScrollSnapCoordinateProperty<string | number>;
1468
- "scroll-snap-destination"?: import("csstype").ScrollSnapDestinationProperty<string | number>;
1469
- "scroll-snap-points-x"?: string;
1470
- "scroll-snap-points-y"?: string;
1471
- "scroll-snap-type-x"?: import("csstype").ScrollSnapTypeXProperty;
1472
- "scroll-snap-type-y"?: import("csstype").ScrollSnapTypeYProperty;
1473
- "-khtml-box-align"?: import("csstype").BoxAlignProperty;
1474
- "-khtml-box-direction"?: import("csstype").BoxDirectionProperty;
1475
- "-khtml-box-flex"?: import("csstype").GlobalsNumber;
1476
- "-khtml-box-flex-group"?: import("csstype").GlobalsNumber;
1477
- "-khtml-box-lines"?: import("csstype").BoxLinesProperty;
1478
- "-khtml-box-ordinal-group"?: import("csstype").GlobalsNumber;
1479
- "-khtml-box-orient"?: import("csstype").BoxOrientProperty;
1480
- "-khtml-box-pack"?: import("csstype").BoxPackProperty;
1481
- "-khtml-line-break"?: import("csstype").LineBreakProperty;
1482
- "-khtml-opacity"?: import("csstype").OpacityProperty;
1483
- "-khtml-user-select"?: import("csstype").UserSelectProperty;
1484
- "-moz-background-clip"?: string;
1485
- "-moz-background-inline-policy"?: import("csstype").BoxDecorationBreakProperty;
1486
- "-moz-background-origin"?: string;
1487
- "-moz-background-size"?: import("csstype").BackgroundSizeProperty<string | number>;
1488
- "-moz-binding"?: string;
1489
- "-moz-border-radius"?: import("csstype").BorderRadiusProperty<string | number>;
1490
- "-moz-border-radius-bottomleft"?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
1491
- "-moz-border-radius-bottomright"?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
1492
- "-moz-border-radius-topleft"?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
1493
- "-moz-border-radius-topright"?: import("csstype").BorderTopRightRadiusProperty<string | number>;
1494
- "-moz-box-align"?: import("csstype").BoxAlignProperty;
1495
- "-moz-box-direction"?: import("csstype").BoxDirectionProperty;
1496
- "-moz-box-flex"?: import("csstype").GlobalsNumber;
1497
- "-moz-box-ordinal-group"?: import("csstype").GlobalsNumber;
1498
- "-moz-box-orient"?: import("csstype").BoxOrientProperty;
1499
- "-moz-box-pack"?: import("csstype").BoxPackProperty;
1500
- "-moz-box-shadow"?: string;
1501
- "-moz-float-edge"?: import("csstype").MozFloatEdgeProperty;
1502
- "-moz-force-broken-image-icon"?: import("csstype").MozForceBrokenImageIconProperty;
1503
- "-moz-opacity"?: import("csstype").OpacityProperty;
1504
- "-moz-outline"?: import("csstype").OutlineProperty<string | number>;
1505
- "-moz-outline-color"?: string;
1506
- "-moz-outline-radius"?: import("csstype").MozOutlineRadiusProperty<string | number>;
1507
- "-moz-outline-radius-bottomleft"?: import("csstype").MozOutlineRadiusBottomleftProperty<string | number>;
1508
- "-moz-outline-radius-bottomright"?: import("csstype").MozOutlineRadiusBottomrightProperty<string | number>;
1509
- "-moz-outline-radius-topleft"?: import("csstype").MozOutlineRadiusTopleftProperty<string | number>;
1510
- "-moz-outline-radius-topright"?: import("csstype").MozOutlineRadiusToprightProperty<string | number>;
1511
- "-moz-outline-style"?: string;
1512
- "-moz-outline-width"?: import("csstype").OutlineWidthProperty<string | number>;
1513
- "-moz-text-align-last"?: import("csstype").TextAlignLastProperty;
1514
- "-moz-text-decoration-color"?: string;
1515
- "-moz-text-decoration-line"?: string;
1516
- "-moz-text-decoration-style"?: import("csstype").TextDecorationStyleProperty;
1517
- "-moz-user-input"?: import("csstype").MozUserInputProperty;
1518
- "-ms-ime-mode"?: import("csstype").ImeModeProperty;
1519
- "-o-animation"?: import("csstype").AnimationProperty;
1520
- "-o-animation-delay"?: string;
1521
- "-o-animation-direction"?: string;
1522
- "-o-animation-duration"?: string;
1523
- "-o-animation-fill-mode"?: string;
1524
- "-o-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty;
1525
- "-o-animation-name"?: string;
1526
- "-o-animation-play-state"?: string;
1527
- "-o-animation-timing-function"?: string;
1528
- "-o-background-size"?: import("csstype").BackgroundSizeProperty<string | number>;
1529
- "-o-border-image"?: import("csstype").BorderImageProperty;
1530
- "-o-object-fit"?: import("csstype").ObjectFitProperty;
1531
- "-o-object-position"?: import("csstype").ObjectPositionProperty<string | number>;
1532
- "-o-tab-size"?: import("csstype").TabSizeProperty<string | number>;
1533
- "-o-text-overflow"?: string;
1534
- "-o-transform"?: string;
1535
- "-o-transform-origin"?: import("csstype").TransformOriginProperty<string | number>;
1536
- "-o-transition"?: string;
1537
- "-o-transition-delay"?: string;
1538
- "-o-transition-duration"?: string;
1539
- "-o-transition-property"?: string;
1540
- "-o-transition-timing-function"?: string;
1541
- "-webkit-box-align"?: import("csstype").BoxAlignProperty;
1542
- "-webkit-box-direction"?: import("csstype").BoxDirectionProperty;
1543
- "-webkit-box-flex"?: import("csstype").GlobalsNumber;
1544
- "-webkit-box-flex-group"?: import("csstype").GlobalsNumber;
1545
- "-webkit-box-lines"?: import("csstype").BoxLinesProperty;
1546
- "-webkit-box-ordinal-group"?: import("csstype").GlobalsNumber;
1547
- "-webkit-box-orient"?: import("csstype").BoxOrientProperty;
1548
- "-webkit-box-pack"?: import("csstype").BoxPackProperty;
1549
- "-webkit-scroll-snap-points-x"?: string;
1550
- "-webkit-scroll-snap-points-y"?: string;
1551
- "alignment-baseline"?: import("csstype").AlignmentBaselineProperty;
1552
- "baseline-shift"?: import("csstype").BaselineShiftProperty<string | number>;
1553
- "clip-rule"?: import("csstype").ClipRuleProperty;
1554
- "color-interpolation"?: import("csstype").ColorInterpolationProperty;
1555
- "color-rendering"?: import("csstype").ColorRenderingProperty;
1556
- "dominant-baseline"?: import("csstype").DominantBaselineProperty;
1557
- "fill-opacity"?: import("csstype").GlobalsNumber;
1558
- "fill-rule"?: import("csstype").FillRuleProperty;
1559
- "flood-color"?: string;
1560
- "flood-opacity"?: import("csstype").GlobalsNumber;
1561
- "glyph-orientation-vertical"?: import("csstype").GlyphOrientationVerticalProperty;
1562
- "lighting-color"?: string;
1563
- "marker-end"?: string;
1564
- "marker-mid"?: string;
1565
- "marker-start"?: string;
1566
- "shape-rendering"?: import("csstype").ShapeRenderingProperty;
1567
- "stop-color"?: string;
1568
- "stop-opacity"?: import("csstype").GlobalsNumber;
1569
- "stroke-dasharray"?: import("csstype").StrokeDasharrayProperty<string | number>;
1570
- "stroke-dashoffset"?: import("csstype").StrokeDashoffsetProperty<string | number>;
1571
- "stroke-linecap"?: import("csstype").StrokeLinecapProperty;
1572
- "stroke-linejoin"?: import("csstype").StrokeLinejoinProperty;
1573
- "stroke-miterlimit"?: import("csstype").GlobalsNumber;
1574
- "stroke-opacity"?: import("csstype").GlobalsNumber;
1575
- "stroke-width"?: import("csstype").StrokeWidthProperty<string | number>;
1576
- "text-anchor"?: import("csstype").TextAnchorProperty;
1577
- "vector-effect"?: import("csstype").VectorEffectProperty;
1578
- };
1579
- span?: undefined;
1580
- } | {
1581
- style: {
1582
- accentColor?: string;
1583
- alignContent?: string;
1584
- alignItems?: string;
1585
- alignSelf?: string;
1586
- alignTracks?: string;
1587
- animationComposition?: string;
1588
- animationDelay?: string;
1589
- animationDirection?: string;
1590
- animationDuration?: string;
1591
- animationFillMode?: string;
1592
- animationIterationCount?: import("csstype").AnimationIterationCountProperty;
1593
- animationName?: string;
1594
- animationPlayState?: string;
1595
- animationTimeline?: string;
1596
- animationTimingFunction?: string;
1597
- appearance?: import("csstype").AppearanceProperty;
1598
- aspectRatio?: import("csstype").AspectRatioProperty;
1599
- backdropFilter?: string;
1600
- backfaceVisibility?: import("csstype").BackfaceVisibilityProperty;
1601
- backgroundAttachment?: string;
1602
- backgroundBlendMode?: string;
1603
- backgroundClip?: string;
1604
- backgroundColor?: string;
1605
- backgroundImage?: string;
1606
- backgroundOrigin?: string;
1607
- backgroundPositionX?: import("csstype").BackgroundPositionXProperty<string | number>;
1608
- backgroundPositionY?: import("csstype").BackgroundPositionYProperty<string | number>;
1609
- backgroundRepeat?: string;
1610
- backgroundSize?: import("csstype").BackgroundSizeProperty<string | number>;
1611
- blockOverflow?: string;
1612
- blockSize?: import("csstype").BlockSizeProperty<string | number>;
1613
- borderBlockColor?: string;
1614
- borderBlockEndColor?: string;
1615
- borderBlockEndStyle?: import("csstype").BorderBlockEndStyleProperty;
1616
- borderBlockEndWidth?: import("csstype").BorderBlockEndWidthProperty<string | number>;
1617
- borderBlockStartColor?: string;
1618
- borderBlockStartStyle?: import("csstype").BorderBlockStartStyleProperty;
1619
- borderBlockStartWidth?: import("csstype").BorderBlockStartWidthProperty<string | number>;
1620
- borderBlockStyle?: import("csstype").BorderBlockStyleProperty;
1621
- borderBlockWidth?: import("csstype").BorderBlockWidthProperty<string | number>;
1622
- borderBottomColor?: string;
1623
- borderBottomLeftRadius?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
1624
- borderBottomRightRadius?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
1625
- borderBottomStyle?: import("csstype").BorderBottomStyleProperty;
1626
- borderBottomWidth?: import("csstype").BorderBottomWidthProperty<string | number>;
1627
- borderCollapse?: import("csstype").BorderCollapseProperty;
1628
- borderEndEndRadius?: import("csstype").BorderEndEndRadiusProperty<string | number>;
1629
- borderEndStartRadius?: import("csstype").BorderEndStartRadiusProperty<string | number>;
1630
- borderImageOutset?: import("csstype").BorderImageOutsetProperty<string | number>;
1631
- borderImageRepeat?: string;
1632
- borderImageSlice?: import("csstype").BorderImageSliceProperty;
1633
- borderImageSource?: string;
1634
- borderImageWidth?: import("csstype").BorderImageWidthProperty<string | number>;
1635
- borderInlineColor?: string;
1636
- borderInlineEndColor?: string;
1637
- borderInlineEndStyle?: import("csstype").BorderInlineEndStyleProperty;
1638
- borderInlineEndWidth?: import("csstype").BorderInlineEndWidthProperty<string | number>;
1639
- borderInlineStartColor?: string;
1640
- borderInlineStartStyle?: import("csstype").BorderInlineStartStyleProperty;
1641
- borderInlineStartWidth?: import("csstype").BorderInlineStartWidthProperty<string | number>;
1642
- borderInlineStyle?: import("csstype").BorderInlineStyleProperty;
1643
- borderInlineWidth?: import("csstype").BorderInlineWidthProperty<string | number>;
1644
- borderLeftColor?: string;
1645
- borderLeftStyle?: import("csstype").BorderLeftStyleProperty;
1646
- borderLeftWidth?: import("csstype").BorderLeftWidthProperty<string | number>;
1647
- borderRightColor?: string;
1648
- borderRightStyle?: import("csstype").BorderRightStyleProperty;
1649
- borderRightWidth?: import("csstype").BorderRightWidthProperty<string | number>;
1650
- borderSpacing?: import("csstype").BorderSpacingProperty<string | number>;
1651
- borderStartEndRadius?: import("csstype").BorderStartEndRadiusProperty<string | number>;
1652
- borderStartStartRadius?: import("csstype").BorderStartStartRadiusProperty<string | number>;
1653
- borderTopColor?: string;
1654
- borderTopLeftRadius?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
1655
- borderTopRightRadius?: import("csstype").BorderTopRightRadiusProperty<string | number>;
1656
- borderTopStyle?: import("csstype").BorderTopStyleProperty;
1657
- borderTopWidth?: import("csstype").BorderTopWidthProperty<string | number>;
1658
- bottom?: import("csstype").BottomProperty<string | number>;
1659
- boxDecorationBreak?: import("csstype").BoxDecorationBreakProperty;
1660
- boxShadow?: string;
1661
- boxSizing?: import("csstype").BoxSizingProperty;
1662
- breakAfter?: import("csstype").BreakAfterProperty;
1663
- breakBefore?: import("csstype").BreakBeforeProperty;
1664
- breakInside?: import("csstype").BreakInsideProperty;
1665
- captionSide?: import("csstype").CaptionSideProperty;
1666
- caretColor?: string;
1667
- clear?: import("csstype").ClearProperty;
1668
- clipPath?: string;
1669
- color?: string;
1670
- colorAdjust?: import("csstype").PrintColorAdjustProperty;
1671
- colorScheme?: string;
1672
- columnCount?: import("csstype").ColumnCountProperty;
1673
- columnFill?: import("csstype").ColumnFillProperty;
1674
- columnGap?: import("csstype").ColumnGapProperty<string | number>;
1675
- columnRuleColor?: string;
1676
- columnRuleStyle?: string;
1677
- columnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number>;
1678
- columnSpan?: import("csstype").ColumnSpanProperty;
1679
- columnWidth?: import("csstype").ColumnWidthProperty<string | number>;
1680
- contain?: string;
1681
- content?: string;
1682
- contentVisibility?: import("csstype").ContentVisibilityProperty;
1683
- counterIncrement?: string;
1684
- counterReset?: string;
1685
- counterSet?: string;
1686
- cursor?: string;
1687
- direction?: import("csstype").DirectionProperty;
1688
- display?: string;
1689
- emptyCells?: import("csstype").EmptyCellsProperty;
1690
- filter?: string;
1691
- flexBasis?: import("csstype").FlexBasisProperty<string | number>;
1692
- flexDirection?: import("csstype").FlexDirectionProperty;
1693
- flexGrow?: import("csstype").GlobalsNumber;
1694
- flexShrink?: import("csstype").GlobalsNumber;
1695
- flexWrap?: import("csstype").FlexWrapProperty;
1696
- float?: import("csstype").FloatProperty;
1697
- fontFamily?: string;
1698
- fontFeatureSettings?: string;
1699
- fontKerning?: import("csstype").FontKerningProperty;
1700
- fontLanguageOverride?: string;
1701
- fontOpticalSizing?: import("csstype").FontOpticalSizingProperty;
1702
- fontSize?: import("csstype").FontSizeProperty<string | number>;
1703
- fontSizeAdjust?: import("csstype").FontSizeAdjustProperty;
1704
- fontSmooth?: import("csstype").FontSmoothProperty<string | number>;
1705
- fontStretch?: string;
1706
- fontStyle?: string;
1707
- fontSynthesis?: string;
1708
- fontVariant?: string;
1709
- fontVariantAlternates?: string;
1710
- fontVariantCaps?: import("csstype").FontVariantCapsProperty;
1711
- fontVariantEastAsian?: string;
1712
- fontVariantLigatures?: string;
1713
- fontVariantNumeric?: string;
1714
- fontVariantPosition?: import("csstype").FontVariantPositionProperty;
1715
- fontVariationSettings?: string;
1716
- fontWeight?: import("csstype").FontWeightProperty;
1717
- forcedColorAdjust?: import("csstype").ForcedColorAdjustProperty;
1718
- gridAutoColumns?: import("csstype").GridAutoColumnsProperty<string | number>;
1719
- gridAutoFlow?: string;
1720
- gridAutoRows?: import("csstype").GridAutoRowsProperty<string | number>;
1721
- gridColumnEnd?: import("csstype").GridColumnEndProperty;
1722
- gridColumnStart?: import("csstype").GridColumnStartProperty;
1723
- gridRowEnd?: import("csstype").GridRowEndProperty;
1724
- gridRowStart?: import("csstype").GridRowStartProperty;
1725
- gridTemplateAreas?: string;
1726
- gridTemplateColumns?: import("csstype").GridTemplateColumnsProperty<string | number>;
1727
- gridTemplateRows?: import("csstype").GridTemplateRowsProperty<string | number>;
1728
- hangingPunctuation?: string;
1729
- height?: import("csstype").HeightProperty<string | number>;
1730
- hyphenateCharacter?: string;
1731
- hyphens?: import("csstype").HyphensProperty;
1732
- imageOrientation?: string;
1733
- imageRendering?: import("csstype").ImageRenderingProperty;
1734
- imageResolution?: string;
1735
- initialLetter?: import("csstype").InitialLetterProperty;
1736
- inlineSize?: import("csstype").InlineSizeProperty<string | number>;
1737
- inputSecurity?: import("csstype").InputSecurityProperty;
1738
- inset?: import("csstype").InsetProperty<string | number>;
1739
- insetBlock?: import("csstype").InsetBlockProperty<string | number>;
1740
- insetBlockEnd?: import("csstype").InsetBlockEndProperty<string | number>;
1741
- insetBlockStart?: import("csstype").InsetBlockStartProperty<string | number>;
1742
- insetInline?: import("csstype").InsetInlineProperty<string | number>;
1743
- insetInlineEnd?: import("csstype").InsetInlineEndProperty<string | number>;
1744
- insetInlineStart?: import("csstype").InsetInlineStartProperty<string | number>;
1745
- isolation?: import("csstype").IsolationProperty;
1746
- justifyContent?: string;
1747
- justifyItems?: string;
1748
- justifySelf?: string;
1749
- justifyTracks?: string;
1750
- left?: import("csstype").LeftProperty<string | number>;
1751
- letterSpacing?: import("csstype").LetterSpacingProperty<string | number>;
1752
- lineBreak?: import("csstype").LineBreakProperty;
1753
- lineHeight?: import("csstype").LineHeightProperty<string | number>;
1754
- lineHeightStep?: import("csstype").LineHeightStepProperty<string | number>;
1755
- listStyleImage?: string;
1756
- listStylePosition?: import("csstype").ListStylePositionProperty;
1757
- listStyleType?: string;
1758
- marginBlock?: import("csstype").MarginBlockProperty<string | number>;
1759
- marginBlockEnd?: import("csstype").MarginBlockEndProperty<string | number>;
1760
- marginBlockStart?: import("csstype").MarginBlockStartProperty<string | number>;
1761
- marginBottom?: import("csstype").MarginBottomProperty<string | number>;
1762
- marginInline?: import("csstype").MarginInlineProperty<string | number>;
1763
- marginInlineEnd?: import("csstype").MarginInlineEndProperty<string | number>;
1764
- marginInlineStart?: import("csstype").MarginInlineStartProperty<string | number>;
1765
- marginLeft?: import("csstype").MarginLeftProperty<string | number>;
1766
- marginRight?: import("csstype").MarginRightProperty<string | number>;
1767
- marginTop?: import("csstype").MarginTopProperty<string | number>;
1768
- maskBorderMode?: import("csstype").MaskBorderModeProperty;
1769
- maskBorderOutset?: import("csstype").MaskBorderOutsetProperty<string | number>;
1770
- maskBorderRepeat?: string;
1771
- maskBorderSlice?: import("csstype").MaskBorderSliceProperty;
1772
- maskBorderSource?: string;
1773
- maskBorderWidth?: import("csstype").MaskBorderWidthProperty<string | number>;
1774
- maskClip?: string;
1775
- maskComposite?: string;
1776
- maskImage?: string;
1777
- maskMode?: string;
1778
- maskOrigin?: string;
1779
- maskPosition?: import("csstype").MaskPositionProperty<string | number>;
1780
- maskRepeat?: string;
1781
- maskSize?: import("csstype").MaskSizeProperty<string | number>;
1782
- maskType?: import("csstype").MaskTypeProperty;
1783
- mathDepth?: import("csstype").MathDepthProperty;
1784
- mathShift?: import("csstype").MathShiftProperty;
1785
- mathStyle?: import("csstype").MathStyleProperty;
1786
- maxBlockSize?: import("csstype").MaxBlockSizeProperty<string | number>;
1787
- maxHeight?: import("csstype").MaxHeightProperty<string | number>;
1788
- maxInlineSize?: import("csstype").MaxInlineSizeProperty<string | number>;
1789
- maxLines?: import("csstype").MaxLinesProperty;
1790
- maxWidth?: import("csstype").MaxWidthProperty<string | number>;
1791
- minBlockSize?: import("csstype").MinBlockSizeProperty<string | number>;
1792
- minHeight?: import("csstype").MinHeightProperty<string | number>;
1793
- minInlineSize?: import("csstype").MinInlineSizeProperty<string | number>;
1794
- minWidth?: import("csstype").MinWidthProperty<string | number>;
1795
- mixBlendMode?: import("csstype").MixBlendModeProperty;
1796
- motionDistance?: import("csstype").OffsetDistanceProperty<string | number>;
1797
- motionPath?: string;
1798
- motionRotation?: string;
1799
- objectFit?: import("csstype").ObjectFitProperty;
1800
- objectPosition?: import("csstype").ObjectPositionProperty<string | number>;
1801
- offsetAnchor?: import("csstype").OffsetAnchorProperty<string | number>;
1802
- offsetDistance?: import("csstype").OffsetDistanceProperty<string | number>;
1803
- offsetPath?: string;
1804
- offsetRotate?: string;
1805
- offsetRotation?: string;
1806
- opacity?: import("csstype").OpacityProperty;
1807
- order?: import("csstype").GlobalsNumber;
1808
- orphans?: import("csstype").GlobalsNumber;
1809
- outlineColor?: string;
1810
- outlineOffset?: import("csstype").OutlineOffsetProperty<string | number>;
1811
- outlineStyle?: string;
1812
- outlineWidth?: import("csstype").OutlineWidthProperty<string | number>;
1813
- overflowAnchor?: import("csstype").OverflowAnchorProperty;
1814
- overflowBlock?: import("csstype").OverflowBlockProperty;
1815
- overflowClipBox?: import("csstype").OverflowClipBoxProperty;
1816
- overflowClipMargin?: import("csstype").OverflowClipMarginProperty<string | number>;
1817
- overflowInline?: import("csstype").OverflowInlineProperty;
1818
- overflowWrap?: import("csstype").OverflowWrapProperty;
1819
- overflowX?: import("csstype").OverflowXProperty;
1820
- overflowY?: import("csstype").OverflowYProperty;
1821
- overscrollBehaviorBlock?: import("csstype").OverscrollBehaviorBlockProperty;
1822
- overscrollBehaviorInline?: import("csstype").OverscrollBehaviorInlineProperty;
1823
- overscrollBehaviorX?: import("csstype").OverscrollBehaviorXProperty;
1824
- overscrollBehaviorY?: import("csstype").OverscrollBehaviorYProperty;
1825
- paddingBlock?: import("csstype").PaddingBlockProperty<string | number>;
1826
- paddingBlockEnd?: import("csstype").PaddingBlockEndProperty<string | number>;
1827
- paddingBlockStart?: import("csstype").PaddingBlockStartProperty<string | number>;
1828
- paddingBottom?: import("csstype").PaddingBottomProperty<string | number>;
1829
- paddingInline?: import("csstype").PaddingInlineProperty<string | number>;
1830
- paddingInlineEnd?: import("csstype").PaddingInlineEndProperty<string | number>;
1831
- paddingInlineStart?: import("csstype").PaddingInlineStartProperty<string | number>;
1832
- paddingLeft?: import("csstype").PaddingLeftProperty<string | number>;
1833
- paddingRight?: import("csstype").PaddingRightProperty<string | number>;
1834
- paddingTop?: import("csstype").PaddingTopProperty<string | number>;
1835
- pageBreakAfter?: import("csstype").PageBreakAfterProperty;
1836
- pageBreakBefore?: import("csstype").PageBreakBeforeProperty;
1837
- pageBreakInside?: import("csstype").PageBreakInsideProperty;
1838
- paintOrder?: string;
1839
- perspective?: import("csstype").PerspectiveProperty<string | number>;
1840
- perspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number>;
1841
- placeContent?: string;
1842
- pointerEvents?: import("csstype").PointerEventsProperty;
1843
- position?: import("csstype").PositionProperty;
1844
- printColorAdjust?: import("csstype").PrintColorAdjustProperty;
1845
- quotes?: string;
1846
- resize?: import("csstype").ResizeProperty;
1847
- right?: import("csstype").RightProperty<string | number>;
1848
- rotate?: string;
1849
- rowGap?: import("csstype").RowGapProperty<string | number>;
1850
- rubyAlign?: import("csstype").RubyAlignProperty;
1851
- rubyMerge?: import("csstype").RubyMergeProperty;
1852
- rubyPosition?: string;
1853
- scale?: import("csstype").ScaleProperty;
1854
- scrollBehavior?: import("csstype").ScrollBehaviorProperty;
1855
- scrollMargin?: import("csstype").ScrollMarginProperty<string | number>;
1856
- scrollMarginBlock?: import("csstype").ScrollMarginBlockProperty<string | number>;
1857
- scrollMarginBlockEnd?: import("csstype").ScrollMarginBlockEndProperty<string | number>;
1858
- scrollMarginBlockStart?: import("csstype").ScrollMarginBlockStartProperty<string | number>;
1859
- scrollMarginBottom?: import("csstype").ScrollMarginBottomProperty<string | number>;
1860
- scrollMarginInline?: import("csstype").ScrollMarginInlineProperty<string | number>;
1861
- scrollMarginInlineEnd?: import("csstype").ScrollMarginInlineEndProperty<string | number>;
1862
- scrollMarginInlineStart?: import("csstype").ScrollMarginInlineStartProperty<string | number>;
1863
- scrollMarginLeft?: import("csstype").ScrollMarginLeftProperty<string | number>;
1864
- scrollMarginRight?: import("csstype").ScrollMarginRightProperty<string | number>;
1865
- scrollMarginTop?: import("csstype").ScrollMarginTopProperty<string | number>;
1866
- scrollPadding?: import("csstype").ScrollPaddingProperty<string | number>;
1867
- scrollPaddingBlock?: import("csstype").ScrollPaddingBlockProperty<string | number>;
1868
- scrollPaddingBlockEnd?: import("csstype").ScrollPaddingBlockEndProperty<string | number>;
1869
- scrollPaddingBlockStart?: import("csstype").ScrollPaddingBlockStartProperty<string | number>;
1870
- scrollPaddingBottom?: import("csstype").ScrollPaddingBottomProperty<string | number>;
1871
- scrollPaddingInline?: import("csstype").ScrollPaddingInlineProperty<string | number>;
1872
- scrollPaddingInlineEnd?: import("csstype").ScrollPaddingInlineEndProperty<string | number>;
1873
- scrollPaddingInlineStart?: import("csstype").ScrollPaddingInlineStartProperty<string | number>;
1874
- scrollPaddingLeft?: import("csstype").ScrollPaddingLeftProperty<string | number>;
1875
- scrollPaddingRight?: import("csstype").ScrollPaddingRightProperty<string | number>;
1876
- scrollPaddingTop?: import("csstype").ScrollPaddingTopProperty<string | number>;
1877
- scrollSnapAlign?: string;
1878
- scrollSnapMargin?: import("csstype").ScrollMarginProperty<string | number>;
1879
- scrollSnapMarginBottom?: import("csstype").ScrollMarginBottomProperty<string | number>;
1880
- scrollSnapMarginLeft?: import("csstype").ScrollMarginLeftProperty<string | number>;
1881
- scrollSnapMarginRight?: import("csstype").ScrollMarginRightProperty<string | number>;
1882
- scrollSnapMarginTop?: import("csstype").ScrollMarginTopProperty<string | number>;
1883
- scrollSnapStop?: import("csstype").ScrollSnapStopProperty;
1884
- scrollSnapType?: string;
1885
- scrollbarColor?: string;
1886
- scrollbarGutter?: string;
1887
- scrollbarWidth?: import("csstype").ScrollbarWidthProperty;
1888
- shapeImageThreshold?: import("csstype").ShapeImageThresholdProperty;
1889
- shapeMargin?: import("csstype").ShapeMarginProperty<string | number>;
1890
- shapeOutside?: string;
1891
- tabSize?: import("csstype").TabSizeProperty<string | number>;
1892
- tableLayout?: import("csstype").TableLayoutProperty;
1893
- textAlign?: import("csstype").TextAlignProperty;
1894
- textAlignLast?: import("csstype").TextAlignLastProperty;
1895
- textCombineUpright?: string;
1896
- textDecorationColor?: string;
1897
- textDecorationLine?: string;
1898
- textDecorationSkip?: string;
1899
- textDecorationSkipInk?: import("csstype").TextDecorationSkipInkProperty;
1900
- textDecorationStyle?: import("csstype").TextDecorationStyleProperty;
1901
- textDecorationThickness?: import("csstype").TextDecorationThicknessProperty<string | number>;
1902
- textEmphasisColor?: string;
1903
- textEmphasisPosition?: string;
1904
- textEmphasisStyle?: string;
1905
- textIndent?: import("csstype").TextIndentProperty<string | number>;
1906
- textJustify?: import("csstype").TextJustifyProperty;
1907
- textOrientation?: import("csstype").TextOrientationProperty;
1908
- textOverflow?: string;
1909
- textRendering?: import("csstype").TextRenderingProperty;
1910
- textShadow?: string;
1911
- textSizeAdjust?: string;
1912
- textTransform?: import("csstype").TextTransformProperty;
1913
- textUnderlineOffset?: import("csstype").TextUnderlineOffsetProperty<string | number>;
1914
- textUnderlinePosition?: string;
1915
- top?: import("csstype").TopProperty<string | number>;
1916
- touchAction?: string;
1917
- transform?: string;
1918
- transformBox?: import("csstype").TransformBoxProperty;
1919
- transformOrigin?: import("csstype").TransformOriginProperty<string | number>;
1920
- transformStyle?: import("csstype").TransformStyleProperty;
1921
- transitionDelay?: string;
1922
- transitionDuration?: string;
1923
- transitionProperty?: string;
1924
- transitionTimingFunction?: string;
1925
- translate?: import("csstype").TranslateProperty<string | number>;
1926
- unicodeBidi?: import("csstype").UnicodeBidiProperty;
1927
- userSelect?: import("csstype").UserSelectProperty;
1928
- verticalAlign?: import("csstype").VerticalAlignProperty<string | number>;
1929
- visibility?: import("csstype").VisibilityProperty;
1930
- whiteSpace?: import("csstype").WhiteSpaceProperty;
1931
- widows?: import("csstype").GlobalsNumber;
1932
- width?: import("csstype").WidthProperty<string | number>;
1933
- willChange?: string;
1934
- wordBreak?: import("csstype").WordBreakProperty;
1935
- wordSpacing?: import("csstype").WordSpacingProperty<string | number>;
1936
- wordWrap?: import("csstype").WordWrapProperty;
1937
- writingMode?: import("csstype").WritingModeProperty;
1938
- zIndex?: import("csstype").ZIndexProperty;
1939
- zoom?: import("csstype").ZoomProperty;
1940
- all?: import("csstype").Globals;
1941
- animation?: import("csstype").AnimationProperty;
1942
- background?: import("csstype").BackgroundProperty<string | number>;
1943
- backgroundPosition?: import("csstype").BackgroundPositionProperty<string | number>;
1944
- border?: import("csstype").BorderProperty<string | number>;
1945
- borderBlock?: import("csstype").BorderBlockProperty<string | number>;
1946
- borderBlockEnd?: import("csstype").BorderBlockEndProperty<string | number>;
1947
- borderBlockStart?: import("csstype").BorderBlockStartProperty<string | number>;
1948
- borderBottom?: import("csstype").BorderBottomProperty<string | number>;
1949
- borderColor?: string;
1950
- borderImage?: import("csstype").BorderImageProperty;
1951
- borderInline?: import("csstype").BorderInlineProperty<string | number>;
1952
- borderInlineEnd?: import("csstype").BorderInlineEndProperty<string | number>;
1953
- borderInlineStart?: import("csstype").BorderInlineStartProperty<string | number>;
1954
- borderLeft?: import("csstype").BorderLeftProperty<string | number>;
1955
- borderRadius?: import("csstype").BorderRadiusProperty<string | number>;
1956
- borderRight?: import("csstype").BorderRightProperty<string | number>;
1957
- borderStyle?: string;
1958
- borderTop?: import("csstype").BorderTopProperty<string | number>;
1959
- borderWidth?: import("csstype").BorderWidthProperty<string | number>;
1960
- columnRule?: import("csstype").ColumnRuleProperty<string | number>;
1961
- columns?: import("csstype").ColumnsProperty<string | number>;
1962
- flex?: import("csstype").FlexProperty<string | number>;
1963
- flexFlow?: string;
1964
- font?: string;
1965
- gap?: import("csstype").GapProperty<string | number>;
1966
- grid?: string;
1967
- gridArea?: import("csstype").GridAreaProperty;
1968
- gridColumn?: import("csstype").GridColumnProperty;
1969
- gridRow?: import("csstype").GridRowProperty;
1970
- gridTemplate?: string;
1971
- lineClamp?: import("csstype").LineClampProperty;
1972
- listStyle?: string;
1973
- margin?: import("csstype").MarginProperty<string | number>;
1974
- mask?: import("csstype").MaskProperty<string | number>;
1975
- maskBorder?: import("csstype").MaskBorderProperty;
1976
- motion?: import("csstype").OffsetProperty<string | number>;
1977
- offset?: import("csstype").OffsetProperty<string | number>;
1978
- outline?: import("csstype").OutlineProperty<string | number>;
1979
- overflow?: string;
1980
- overscrollBehavior?: string;
1981
- padding?: import("csstype").PaddingProperty<string | number>;
1982
- placeItems?: string;
1983
- placeSelf?: string;
1984
- textDecoration?: import("csstype").TextDecorationProperty<string | number>;
1985
- textEmphasis?: string;
1986
- transition?: string;
1987
- MozAnimationDelay?: string;
1988
- MozAnimationDirection?: string;
1989
- MozAnimationDuration?: string;
1990
- MozAnimationFillMode?: string;
1991
- MozAnimationIterationCount?: import("csstype").AnimationIterationCountProperty;
1992
- MozAnimationName?: string;
1993
- MozAnimationPlayState?: string;
1994
- MozAnimationTimingFunction?: string;
1995
- MozAppearance?: import("csstype").MozAppearanceProperty;
1996
- MozBackfaceVisibility?: import("csstype").BackfaceVisibilityProperty;
1997
- MozBorderBottomColors?: string;
1998
- MozBorderEndColor?: string;
1999
- MozBorderEndStyle?: import("csstype").BorderInlineEndStyleProperty;
2000
- MozBorderEndWidth?: import("csstype").BorderInlineEndWidthProperty<string | number>;
2001
- MozBorderLeftColors?: string;
2002
- MozBorderRightColors?: string;
2003
- MozBorderStartColor?: string;
2004
- MozBorderStartStyle?: import("csstype").BorderInlineStartStyleProperty;
2005
- MozBorderTopColors?: string;
2006
- MozBoxSizing?: import("csstype").BoxSizingProperty;
2007
- MozColumnCount?: import("csstype").ColumnCountProperty;
2008
- MozColumnFill?: import("csstype").ColumnFillProperty;
2009
- MozColumnRuleColor?: string;
2010
- MozColumnRuleStyle?: string;
2011
- MozColumnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number>;
2012
- MozColumnWidth?: import("csstype").ColumnWidthProperty<string | number>;
2013
- MozContextProperties?: string;
2014
- MozFontFeatureSettings?: string;
2015
- MozFontLanguageOverride?: string;
2016
- MozHyphens?: import("csstype").HyphensProperty;
2017
- MozImageRegion?: string;
2018
- MozMarginEnd?: import("csstype").MarginInlineEndProperty<string | number>;
2019
- MozMarginStart?: import("csstype").MarginInlineStartProperty<string | number>;
2020
- MozOrient?: import("csstype").MozOrientProperty;
2021
- MozOsxFontSmoothing?: import("csstype").FontSmoothProperty<string | number>;
2022
- MozPaddingEnd?: import("csstype").PaddingInlineEndProperty<string | number>;
2023
- MozPaddingStart?: import("csstype").PaddingInlineStartProperty<string | number>;
2024
- MozPerspective?: import("csstype").PerspectiveProperty<string | number>;
2025
- MozPerspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number>;
2026
- MozStackSizing?: import("csstype").MozStackSizingProperty;
2027
- MozTabSize?: import("csstype").TabSizeProperty<string | number>;
2028
- MozTextBlink?: import("csstype").MozTextBlinkProperty;
2029
- MozTextSizeAdjust?: string;
2030
- MozTransformOrigin?: import("csstype").TransformOriginProperty<string | number>;
2031
- MozTransformStyle?: import("csstype").TransformStyleProperty;
2032
- MozTransitionDelay?: string;
2033
- MozTransitionDuration?: string;
2034
- MozTransitionProperty?: string;
2035
- MozTransitionTimingFunction?: string;
2036
- MozUserFocus?: import("csstype").MozUserFocusProperty;
2037
- MozUserModify?: import("csstype").MozUserModifyProperty;
2038
- MozUserSelect?: import("csstype").UserSelectProperty;
2039
- MozWindowDragging?: import("csstype").MozWindowDraggingProperty;
2040
- MozWindowShadow?: import("csstype").MozWindowShadowProperty;
2041
- msAccelerator?: import("csstype").MsAcceleratorProperty;
2042
- msBlockProgression?: import("csstype").MsBlockProgressionProperty;
2043
- msContentZoomChaining?: import("csstype").MsContentZoomChainingProperty;
2044
- msContentZoomLimitMax?: string;
2045
- msContentZoomLimitMin?: string;
2046
- msContentZoomSnapPoints?: string;
2047
- msContentZoomSnapType?: import("csstype").MsContentZoomSnapTypeProperty;
2048
- msContentZooming?: import("csstype").MsContentZoomingProperty;
2049
- msFilter?: string;
2050
- msFlexDirection?: import("csstype").FlexDirectionProperty;
2051
- msFlexPositive?: import("csstype").GlobalsNumber;
2052
- msFlowFrom?: string;
2053
- msFlowInto?: string;
2054
- msGridColumns?: import("csstype").MsGridColumnsProperty<string | number>;
2055
- msGridRows?: import("csstype").MsGridRowsProperty<string | number>;
2056
- msHighContrastAdjust?: import("csstype").MsHighContrastAdjustProperty;
2057
- msHyphenateLimitChars?: import("csstype").MsHyphenateLimitCharsProperty;
2058
- msHyphenateLimitLines?: import("csstype").MsHyphenateLimitLinesProperty;
2059
- msHyphenateLimitZone?: import("csstype").MsHyphenateLimitZoneProperty<string | number>;
2060
- msHyphens?: import("csstype").HyphensProperty;
2061
- msImeAlign?: import("csstype").MsImeAlignProperty;
2062
- msLineBreak?: import("csstype").LineBreakProperty;
2063
- msOrder?: import("csstype").GlobalsNumber;
2064
- msOverflowStyle?: import("csstype").MsOverflowStyleProperty;
2065
- msOverflowX?: import("csstype").OverflowXProperty;
2066
- msOverflowY?: import("csstype").OverflowYProperty;
2067
- msScrollChaining?: import("csstype").MsScrollChainingProperty;
2068
- msScrollLimitXMax?: import("csstype").MsScrollLimitXMaxProperty<string | number>;
2069
- msScrollLimitXMin?: import("csstype").MsScrollLimitXMinProperty<string | number>;
2070
- msScrollLimitYMax?: import("csstype").MsScrollLimitYMaxProperty<string | number>;
2071
- msScrollLimitYMin?: import("csstype").MsScrollLimitYMinProperty<string | number>;
2072
- msScrollRails?: import("csstype").MsScrollRailsProperty;
2073
- msScrollSnapPointsX?: string;
2074
- msScrollSnapPointsY?: string;
2075
- msScrollSnapType?: import("csstype").MsScrollSnapTypeProperty;
2076
- msScrollTranslation?: import("csstype").MsScrollTranslationProperty;
2077
- msScrollbar3dlightColor?: string;
2078
- msScrollbarArrowColor?: string;
2079
- msScrollbarBaseColor?: string;
2080
- msScrollbarDarkshadowColor?: string;
2081
- msScrollbarFaceColor?: string;
2082
- msScrollbarHighlightColor?: string;
2083
- msScrollbarShadowColor?: string;
2084
- msScrollbarTrackColor?: string;
2085
- msTextAutospace?: import("csstype").MsTextAutospaceProperty;
2086
- msTextCombineHorizontal?: string;
2087
- msTextOverflow?: string;
2088
- msTouchAction?: string;
2089
- msTouchSelect?: import("csstype").MsTouchSelectProperty;
2090
- msTransform?: string;
2091
- msTransformOrigin?: import("csstype").TransformOriginProperty<string | number>;
2092
- msTransitionDelay?: string;
2093
- msTransitionDuration?: string;
2094
- msTransitionProperty?: string;
2095
- msTransitionTimingFunction?: string;
2096
- msUserSelect?: import("csstype").MsUserSelectProperty;
2097
- msWordBreak?: import("csstype").WordBreakProperty;
2098
- msWrapFlow?: import("csstype").MsWrapFlowProperty;
2099
- msWrapMargin?: import("csstype").MsWrapMarginProperty<string | number>;
2100
- msWrapThrough?: import("csstype").MsWrapThroughProperty;
2101
- msWritingMode?: import("csstype").WritingModeProperty;
2102
- WebkitAlignContent?: string;
2103
- WebkitAlignItems?: string;
2104
- WebkitAlignSelf?: string;
2105
- WebkitAnimationDelay?: string;
2106
- WebkitAnimationDirection?: string;
2107
- WebkitAnimationDuration?: string;
2108
- WebkitAnimationFillMode?: string;
2109
- WebkitAnimationIterationCount?: import("csstype").AnimationIterationCountProperty;
2110
- WebkitAnimationName?: string;
2111
- WebkitAnimationPlayState?: string;
2112
- WebkitAnimationTimingFunction?: string;
2113
- WebkitAppearance?: import("csstype").WebkitAppearanceProperty;
2114
- WebkitBackdropFilter?: string;
2115
- WebkitBackfaceVisibility?: import("csstype").BackfaceVisibilityProperty;
2116
- WebkitBackgroundClip?: string;
2117
- WebkitBackgroundOrigin?: string;
2118
- WebkitBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number>;
2119
- WebkitBorderBeforeColor?: string;
2120
- WebkitBorderBeforeStyle?: string;
2121
- WebkitBorderBeforeWidth?: import("csstype").WebkitBorderBeforeWidthProperty<string | number>;
2122
- WebkitBorderBottomLeftRadius?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
2123
- WebkitBorderBottomRightRadius?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
2124
- WebkitBorderImageSlice?: import("csstype").BorderImageSliceProperty;
2125
- WebkitBorderTopLeftRadius?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
2126
- WebkitBorderTopRightRadius?: import("csstype").BorderTopRightRadiusProperty<string | number>;
2127
- WebkitBoxDecorationBreak?: import("csstype").BoxDecorationBreakProperty;
2128
- WebkitBoxReflect?: import("csstype").WebkitBoxReflectProperty<string | number>;
2129
- WebkitBoxShadow?: string;
2130
- WebkitBoxSizing?: import("csstype").BoxSizingProperty;
2131
- WebkitClipPath?: string;
2132
- WebkitColumnCount?: import("csstype").ColumnCountProperty;
2133
- WebkitColumnFill?: import("csstype").ColumnFillProperty;
2134
- WebkitColumnRuleColor?: string;
2135
- WebkitColumnRuleStyle?: string;
2136
- WebkitColumnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number>;
2137
- WebkitColumnSpan?: import("csstype").ColumnSpanProperty;
2138
- WebkitColumnWidth?: import("csstype").ColumnWidthProperty<string | number>;
2139
- WebkitFilter?: string;
2140
- WebkitFlexBasis?: import("csstype").FlexBasisProperty<string | number>;
2141
- WebkitFlexDirection?: import("csstype").FlexDirectionProperty;
2142
- WebkitFlexGrow?: import("csstype").GlobalsNumber;
2143
- WebkitFlexShrink?: import("csstype").GlobalsNumber;
2144
- WebkitFlexWrap?: import("csstype").FlexWrapProperty;
2145
- WebkitFontFeatureSettings?: string;
2146
- WebkitFontKerning?: import("csstype").FontKerningProperty;
2147
- WebkitFontSmoothing?: import("csstype").FontSmoothProperty<string | number>;
2148
- WebkitFontVariantLigatures?: string;
2149
- WebkitHyphenateCharacter?: string;
2150
- WebkitHyphens?: import("csstype").HyphensProperty;
2151
- WebkitInitialLetter?: import("csstype").InitialLetterProperty;
2152
- WebkitJustifyContent?: string;
2153
- WebkitLineBreak?: import("csstype").LineBreakProperty;
2154
- WebkitLineClamp?: import("csstype").WebkitLineClampProperty;
2155
- WebkitMarginEnd?: import("csstype").MarginInlineEndProperty<string | number>;
2156
- WebkitMarginStart?: import("csstype").MarginInlineStartProperty<string | number>;
2157
- WebkitMaskAttachment?: string;
2158
- WebkitMaskBoxImageOutset?: import("csstype").MaskBorderOutsetProperty<string | number>;
2159
- WebkitMaskBoxImageRepeat?: string;
2160
- WebkitMaskBoxImageSlice?: import("csstype").MaskBorderSliceProperty;
2161
- WebkitMaskBoxImageSource?: string;
2162
- WebkitMaskBoxImageWidth?: import("csstype").MaskBorderWidthProperty<string | number>;
2163
- WebkitMaskClip?: string;
2164
- WebkitMaskComposite?: string;
2165
- WebkitMaskImage?: string;
2166
- WebkitMaskOrigin?: string;
2167
- WebkitMaskPosition?: import("csstype").WebkitMaskPositionProperty<string | number>;
2168
- WebkitMaskPositionX?: import("csstype").WebkitMaskPositionXProperty<string | number>;
2169
- WebkitMaskPositionY?: import("csstype").WebkitMaskPositionYProperty<string | number>;
2170
- WebkitMaskRepeat?: string;
2171
- WebkitMaskRepeatX?: import("csstype").WebkitMaskRepeatXProperty;
2172
- WebkitMaskRepeatY?: import("csstype").WebkitMaskRepeatYProperty;
2173
- WebkitMaskSize?: import("csstype").WebkitMaskSizeProperty<string | number>;
2174
- WebkitMaxInlineSize?: import("csstype").MaxInlineSizeProperty<string | number>;
2175
- WebkitOrder?: import("csstype").GlobalsNumber;
2176
- WebkitOverflowScrolling?: import("csstype").WebkitOverflowScrollingProperty;
2177
- WebkitPaddingEnd?: import("csstype").PaddingInlineEndProperty<string | number>;
2178
- WebkitPaddingStart?: import("csstype").PaddingInlineStartProperty<string | number>;
2179
- WebkitPerspective?: import("csstype").PerspectiveProperty<string | number>;
2180
- WebkitPerspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number>;
2181
- WebkitPrintColorAdjust?: import("csstype").PrintColorAdjustProperty;
2182
- WebkitRubyPosition?: string;
2183
- WebkitScrollSnapType?: string;
2184
- WebkitShapeMargin?: import("csstype").ShapeMarginProperty<string | number>;
2185
- WebkitTapHighlightColor?: string;
2186
- WebkitTextCombine?: string;
2187
- WebkitTextDecorationColor?: string;
2188
- WebkitTextDecorationLine?: string;
2189
- WebkitTextDecorationSkip?: string;
2190
- WebkitTextDecorationStyle?: import("csstype").TextDecorationStyleProperty;
2191
- WebkitTextEmphasisColor?: string;
2192
- WebkitTextEmphasisPosition?: string;
2193
- WebkitTextEmphasisStyle?: string;
2194
- WebkitTextFillColor?: string;
2195
- WebkitTextOrientation?: import("csstype").TextOrientationProperty;
2196
- WebkitTextSizeAdjust?: string;
2197
- WebkitTextStrokeColor?: string;
2198
- WebkitTextStrokeWidth?: import("csstype").WebkitTextStrokeWidthProperty<string | number>;
2199
- WebkitTextUnderlinePosition?: string;
2200
- WebkitTouchCallout?: import("csstype").WebkitTouchCalloutProperty;
2201
- WebkitTransform?: string;
2202
- WebkitTransformOrigin?: import("csstype").TransformOriginProperty<string | number>;
2203
- WebkitTransformStyle?: import("csstype").TransformStyleProperty;
2204
- WebkitTransitionDelay?: string;
2205
- WebkitTransitionDuration?: string;
2206
- WebkitTransitionProperty?: string;
2207
- WebkitTransitionTimingFunction?: string;
2208
- WebkitUserModify?: import("csstype").WebkitUserModifyProperty;
2209
- WebkitUserSelect?: import("csstype").UserSelectProperty;
2210
- WebkitWritingMode?: import("csstype").WritingModeProperty;
2211
- MozAnimation?: import("csstype").AnimationProperty;
2212
- MozBorderImage?: import("csstype").BorderImageProperty;
2213
- MozColumnRule?: import("csstype").ColumnRuleProperty<string | number>;
2214
- MozColumns?: import("csstype").ColumnsProperty<string | number>;
2215
- MozTransition?: string;
2216
- msContentZoomLimit?: string;
2217
- msContentZoomSnap?: string;
2218
- msFlex?: import("csstype").FlexProperty<string | number>;
2219
- msScrollLimit?: string;
2220
- msScrollSnapX?: string;
2221
- msScrollSnapY?: string;
2222
- msTransition?: string;
2223
- WebkitAnimation?: import("csstype").AnimationProperty;
2224
- WebkitBorderBefore?: import("csstype").WebkitBorderBeforeProperty<string | number>;
2225
- WebkitBorderImage?: import("csstype").BorderImageProperty;
2226
- WebkitBorderRadius?: import("csstype").BorderRadiusProperty<string | number>;
2227
- WebkitColumnRule?: import("csstype").ColumnRuleProperty<string | number>;
2228
- WebkitColumns?: import("csstype").ColumnsProperty<string | number>;
2229
- WebkitFlex?: import("csstype").FlexProperty<string | number>;
2230
- WebkitFlexFlow?: string;
2231
- WebkitMask?: import("csstype").WebkitMaskProperty<string | number>;
2232
- WebkitMaskBoxImage?: import("csstype").MaskBorderProperty;
2233
- WebkitTextEmphasis?: string;
2234
- WebkitTextStroke?: import("csstype").WebkitTextStrokeProperty<string | number>;
2235
- WebkitTransition?: string;
2236
- azimuth?: string;
2237
- boxAlign?: import("csstype").BoxAlignProperty;
2238
- boxDirection?: import("csstype").BoxDirectionProperty;
2239
- boxFlex?: import("csstype").GlobalsNumber;
2240
- boxFlexGroup?: import("csstype").GlobalsNumber;
2241
- boxLines?: import("csstype").BoxLinesProperty;
2242
- boxOrdinalGroup?: import("csstype").GlobalsNumber;
2243
- boxOrient?: import("csstype").BoxOrientProperty;
2244
- boxPack?: import("csstype").BoxPackProperty;
2245
- clip?: string;
2246
- gridColumnGap?: import("csstype").GridColumnGapProperty<string | number>;
2247
- gridGap?: import("csstype").GridGapProperty<string | number>;
2248
- gridRowGap?: import("csstype").GridRowGapProperty<string | number>;
2249
- imeMode?: import("csstype").ImeModeProperty;
2250
- offsetBlock?: import("csstype").InsetBlockProperty<string | number>;
2251
- offsetBlockEnd?: import("csstype").InsetBlockEndProperty<string | number>;
2252
- offsetBlockStart?: import("csstype").InsetBlockStartProperty<string | number>;
2253
- offsetInline?: import("csstype").InsetInlineProperty<string | number>;
2254
- offsetInlineEnd?: import("csstype").InsetInlineEndProperty<string | number>;
2255
- offsetInlineStart?: import("csstype").InsetInlineStartProperty<string | number>;
2256
- scrollSnapCoordinate?: import("csstype").ScrollSnapCoordinateProperty<string | number>;
2257
- scrollSnapDestination?: import("csstype").ScrollSnapDestinationProperty<string | number>;
2258
- scrollSnapPointsX?: string;
2259
- scrollSnapPointsY?: string;
2260
- scrollSnapTypeX?: import("csstype").ScrollSnapTypeXProperty;
2261
- scrollSnapTypeY?: import("csstype").ScrollSnapTypeYProperty;
2262
- KhtmlBoxAlign?: import("csstype").BoxAlignProperty;
2263
- KhtmlBoxDirection?: import("csstype").BoxDirectionProperty;
2264
- KhtmlBoxFlex?: import("csstype").GlobalsNumber;
2265
- KhtmlBoxFlexGroup?: import("csstype").GlobalsNumber;
2266
- KhtmlBoxLines?: import("csstype").BoxLinesProperty;
2267
- KhtmlBoxOrdinalGroup?: import("csstype").GlobalsNumber;
2268
- KhtmlBoxOrient?: import("csstype").BoxOrientProperty;
2269
- KhtmlBoxPack?: import("csstype").BoxPackProperty;
2270
- KhtmlLineBreak?: import("csstype").LineBreakProperty;
2271
- KhtmlOpacity?: import("csstype").OpacityProperty;
2272
- KhtmlUserSelect?: import("csstype").UserSelectProperty;
2273
- MozBackgroundClip?: string;
2274
- MozBackgroundInlinePolicy?: import("csstype").BoxDecorationBreakProperty;
2275
- MozBackgroundOrigin?: string;
2276
- MozBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number>;
2277
- MozBinding?: string;
2278
- MozBorderRadius?: import("csstype").BorderRadiusProperty<string | number>;
2279
- MozBorderRadiusBottomleft?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
2280
- MozBorderRadiusBottomright?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
2281
- MozBorderRadiusTopleft?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
2282
- MozBorderRadiusTopright?: import("csstype").BorderTopRightRadiusProperty<string | number>;
2283
- MozBoxAlign?: import("csstype").BoxAlignProperty;
2284
- MozBoxDirection?: import("csstype").BoxDirectionProperty;
2285
- MozBoxFlex?: import("csstype").GlobalsNumber;
2286
- MozBoxOrdinalGroup?: import("csstype").GlobalsNumber;
2287
- MozBoxOrient?: import("csstype").BoxOrientProperty;
2288
- MozBoxPack?: import("csstype").BoxPackProperty;
2289
- MozBoxShadow?: string;
2290
- MozFloatEdge?: import("csstype").MozFloatEdgeProperty;
2291
- MozForceBrokenImageIcon?: import("csstype").MozForceBrokenImageIconProperty;
2292
- MozOpacity?: import("csstype").OpacityProperty;
2293
- MozOutline?: import("csstype").OutlineProperty<string | number>;
2294
- MozOutlineColor?: string;
2295
- MozOutlineRadius?: import("csstype").MozOutlineRadiusProperty<string | number>;
2296
- MozOutlineRadiusBottomleft?: import("csstype").MozOutlineRadiusBottomleftProperty<string | number>;
2297
- MozOutlineRadiusBottomright?: import("csstype").MozOutlineRadiusBottomrightProperty<string | number>;
2298
- MozOutlineRadiusTopleft?: import("csstype").MozOutlineRadiusTopleftProperty<string | number>;
2299
- MozOutlineRadiusTopright?: import("csstype").MozOutlineRadiusToprightProperty<string | number>;
2300
- MozOutlineStyle?: string;
2301
- MozOutlineWidth?: import("csstype").OutlineWidthProperty<string | number>;
2302
- MozTextAlignLast?: import("csstype").TextAlignLastProperty;
2303
- MozTextDecorationColor?: string;
2304
- MozTextDecorationLine?: string;
2305
- MozTextDecorationStyle?: import("csstype").TextDecorationStyleProperty;
2306
- MozUserInput?: import("csstype").MozUserInputProperty;
2307
- msImeMode?: import("csstype").ImeModeProperty;
2308
- OAnimation?: import("csstype").AnimationProperty;
2309
- OAnimationDelay?: string;
2310
- OAnimationDirection?: string;
2311
- OAnimationDuration?: string;
2312
- OAnimationFillMode?: string;
2313
- OAnimationIterationCount?: import("csstype").AnimationIterationCountProperty;
2314
- OAnimationName?: string;
2315
- OAnimationPlayState?: string;
2316
- OAnimationTimingFunction?: string;
2317
- OBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number>;
2318
- OBorderImage?: import("csstype").BorderImageProperty;
2319
- OObjectFit?: import("csstype").ObjectFitProperty;
2320
- OObjectPosition?: import("csstype").ObjectPositionProperty<string | number>;
2321
- OTabSize?: import("csstype").TabSizeProperty<string | number>;
2322
- OTextOverflow?: string;
2323
- OTransform?: string;
2324
- OTransformOrigin?: import("csstype").TransformOriginProperty<string | number>;
2325
- OTransition?: string;
2326
- OTransitionDelay?: string;
2327
- OTransitionDuration?: string;
2328
- OTransitionProperty?: string;
2329
- OTransitionTimingFunction?: string;
2330
- WebkitBoxAlign?: import("csstype").BoxAlignProperty;
2331
- WebkitBoxDirection?: import("csstype").BoxDirectionProperty;
2332
- WebkitBoxFlex?: import("csstype").GlobalsNumber;
2333
- WebkitBoxFlexGroup?: import("csstype").GlobalsNumber;
2334
- WebkitBoxLines?: import("csstype").BoxLinesProperty;
2335
- WebkitBoxOrdinalGroup?: import("csstype").GlobalsNumber;
2336
- WebkitBoxOrient?: import("csstype").BoxOrientProperty;
2337
- WebkitBoxPack?: import("csstype").BoxPackProperty;
2338
- WebkitScrollSnapPointsX?: string;
2339
- WebkitScrollSnapPointsY?: string;
2340
- alignmentBaseline?: import("csstype").AlignmentBaselineProperty;
2341
- baselineShift?: import("csstype").BaselineShiftProperty<string | number>;
2342
- clipRule?: import("csstype").ClipRuleProperty;
2343
- colorInterpolation?: import("csstype").ColorInterpolationProperty;
2344
- colorRendering?: import("csstype").ColorRenderingProperty;
2345
- dominantBaseline?: import("csstype").DominantBaselineProperty;
2346
- fill?: string;
2347
- fillOpacity?: import("csstype").GlobalsNumber;
2348
- fillRule?: import("csstype").FillRuleProperty;
2349
- floodColor?: string;
2350
- floodOpacity?: import("csstype").GlobalsNumber;
2351
- glyphOrientationVertical?: import("csstype").GlyphOrientationVerticalProperty;
2352
- lightingColor?: string;
2353
- marker?: string;
2354
- markerEnd?: string;
2355
- markerMid?: string;
2356
- markerStart?: string;
2357
- shapeRendering?: import("csstype").ShapeRenderingProperty;
2358
- stopColor?: string;
2359
- stopOpacity?: import("csstype").GlobalsNumber;
2360
- stroke?: string;
2361
- strokeDasharray?: import("csstype").StrokeDasharrayProperty<string | number>;
2362
- strokeDashoffset?: import("csstype").StrokeDashoffsetProperty<string | number>;
2363
- strokeLinecap?: import("csstype").StrokeLinecapProperty;
2364
- strokeLinejoin?: import("csstype").StrokeLinejoinProperty;
2365
- strokeMiterlimit?: import("csstype").GlobalsNumber;
2366
- strokeOpacity?: import("csstype").GlobalsNumber;
2367
- strokeWidth?: import("csstype").StrokeWidthProperty<string | number>;
2368
- textAnchor?: import("csstype").TextAnchorProperty;
2369
- vectorEffect?: import("csstype").VectorEffectProperty;
2370
- "accent-color"?: string;
2371
- "align-content"?: string;
2372
- "align-items"?: string;
2373
- "align-self"?: string;
2374
- "align-tracks"?: string;
2375
- "animation-composition"?: string;
2376
- "animation-delay"?: string;
2377
- "animation-direction"?: string;
2378
- "animation-duration"?: string;
2379
- "animation-fill-mode"?: string;
2380
- "animation-iteration-count"?: import("csstype").AnimationIterationCountProperty;
2381
- "animation-name"?: string;
2382
- "animation-play-state"?: string;
2383
- "animation-timeline"?: string;
2384
- "animation-timing-function"?: string;
2385
- "aspect-ratio"?: import("csstype").AspectRatioProperty;
2386
- "backdrop-filter"?: string;
2387
- "backface-visibility"?: import("csstype").BackfaceVisibilityProperty;
2388
- "background-attachment"?: string;
2389
- "background-blend-mode"?: string;
2390
- "background-clip"?: string;
2391
- "background-color"?: string;
2392
- "background-image"?: string;
2393
- "background-origin"?: string;
2394
- "background-position-x"?: import("csstype").BackgroundPositionXProperty<string | number>;
2395
- "background-position-y"?: import("csstype").BackgroundPositionYProperty<string | number>;
2396
- "background-repeat"?: string;
2397
- "background-size"?: import("csstype").BackgroundSizeProperty<string | number>;
2398
- "block-overflow"?: string;
2399
- "block-size"?: import("csstype").BlockSizeProperty<string | number>;
2400
- "border-block-color"?: string;
2401
- "border-block-end-color"?: string;
2402
- "border-block-end-style"?: import("csstype").BorderBlockEndStyleProperty;
2403
- "border-block-end-width"?: import("csstype").BorderBlockEndWidthProperty<string | number>;
2404
- "border-block-start-color"?: string;
2405
- "border-block-start-style"?: import("csstype").BorderBlockStartStyleProperty;
2406
- "border-block-start-width"?: import("csstype").BorderBlockStartWidthProperty<string | number>;
2407
- "border-block-style"?: import("csstype").BorderBlockStyleProperty;
2408
- "border-block-width"?: import("csstype").BorderBlockWidthProperty<string | number>;
2409
- "border-bottom-color"?: string;
2410
- "border-bottom-left-radius"?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
2411
- "border-bottom-right-radius"?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
2412
- "border-bottom-style"?: import("csstype").BorderBottomStyleProperty;
2413
- "border-bottom-width"?: import("csstype").BorderBottomWidthProperty<string | number>;
2414
- "border-collapse"?: import("csstype").BorderCollapseProperty;
2415
- "border-end-end-radius"?: import("csstype").BorderEndEndRadiusProperty<string | number>;
2416
- "border-end-start-radius"?: import("csstype").BorderEndStartRadiusProperty<string | number>;
2417
- "border-image-outset"?: import("csstype").BorderImageOutsetProperty<string | number>;
2418
- "border-image-repeat"?: string;
2419
- "border-image-slice"?: import("csstype").BorderImageSliceProperty;
2420
- "border-image-source"?: string;
2421
- "border-image-width"?: import("csstype").BorderImageWidthProperty<string | number>;
2422
- "border-inline-color"?: string;
2423
- "border-inline-end-color"?: string;
2424
- "border-inline-end-style"?: import("csstype").BorderInlineEndStyleProperty;
2425
- "border-inline-end-width"?: import("csstype").BorderInlineEndWidthProperty<string | number>;
2426
- "border-inline-start-color"?: string;
2427
- "border-inline-start-style"?: import("csstype").BorderInlineStartStyleProperty;
2428
- "border-inline-start-width"?: import("csstype").BorderInlineStartWidthProperty<string | number>;
2429
- "border-inline-style"?: import("csstype").BorderInlineStyleProperty;
2430
- "border-inline-width"?: import("csstype").BorderInlineWidthProperty<string | number>;
2431
- "border-left-color"?: string;
2432
- "border-left-style"?: import("csstype").BorderLeftStyleProperty;
2433
- "border-left-width"?: import("csstype").BorderLeftWidthProperty<string | number>;
2434
- "border-right-color"?: string;
2435
- "border-right-style"?: import("csstype").BorderRightStyleProperty;
2436
- "border-right-width"?: import("csstype").BorderRightWidthProperty<string | number>;
2437
- "border-spacing"?: import("csstype").BorderSpacingProperty<string | number>;
2438
- "border-start-end-radius"?: import("csstype").BorderStartEndRadiusProperty<string | number>;
2439
- "border-start-start-radius"?: import("csstype").BorderStartStartRadiusProperty<string | number>;
2440
- "border-top-color"?: string;
2441
- "border-top-left-radius"?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
2442
- "border-top-right-radius"?: import("csstype").BorderTopRightRadiusProperty<string | number>;
2443
- "border-top-style"?: import("csstype").BorderTopStyleProperty;
2444
- "border-top-width"?: import("csstype").BorderTopWidthProperty<string | number>;
2445
- "box-decoration-break"?: import("csstype").BoxDecorationBreakProperty;
2446
- "box-shadow"?: string;
2447
- "box-sizing"?: import("csstype").BoxSizingProperty;
2448
- "break-after"?: import("csstype").BreakAfterProperty;
2449
- "break-before"?: import("csstype").BreakBeforeProperty;
2450
- "break-inside"?: import("csstype").BreakInsideProperty;
2451
- "caption-side"?: import("csstype").CaptionSideProperty;
2452
- "caret-color"?: string;
2453
- "clip-path"?: string;
2454
- "color-adjust"?: import("csstype").PrintColorAdjustProperty;
2455
- "color-scheme"?: string;
2456
- "column-count"?: import("csstype").ColumnCountProperty;
2457
- "column-fill"?: import("csstype").ColumnFillProperty;
2458
- "column-gap"?: import("csstype").ColumnGapProperty<string | number>;
2459
- "column-rule-color"?: string;
2460
- "column-rule-style"?: string;
2461
- "column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number>;
2462
- "column-span"?: import("csstype").ColumnSpanProperty;
2463
- "column-width"?: import("csstype").ColumnWidthProperty<string | number>;
2464
- "content-visibility"?: import("csstype").ContentVisibilityProperty;
2465
- "counter-increment"?: string;
2466
- "counter-reset"?: string;
2467
- "counter-set"?: string;
2468
- "empty-cells"?: import("csstype").EmptyCellsProperty;
2469
- "flex-basis"?: import("csstype").FlexBasisProperty<string | number>;
2470
- "flex-direction"?: import("csstype").FlexDirectionProperty;
2471
- "flex-grow"?: import("csstype").GlobalsNumber;
2472
- "flex-shrink"?: import("csstype").GlobalsNumber;
2473
- "flex-wrap"?: import("csstype").FlexWrapProperty;
2474
- "font-family"?: string;
2475
- "font-feature-settings"?: string;
2476
- "font-kerning"?: import("csstype").FontKerningProperty;
2477
- "font-language-override"?: string;
2478
- "font-optical-sizing"?: import("csstype").FontOpticalSizingProperty;
2479
- "font-size"?: import("csstype").FontSizeProperty<string | number>;
2480
- "font-size-adjust"?: import("csstype").FontSizeAdjustProperty;
2481
- "font-smooth"?: import("csstype").FontSmoothProperty<string | number>;
2482
- "font-stretch"?: string;
2483
- "font-style"?: string;
2484
- "font-synthesis"?: string;
2485
- "font-variant"?: string;
2486
- "font-variant-alternates"?: string;
2487
- "font-variant-caps"?: import("csstype").FontVariantCapsProperty;
2488
- "font-variant-east-asian"?: string;
2489
- "font-variant-ligatures"?: string;
2490
- "font-variant-numeric"?: string;
2491
- "font-variant-position"?: import("csstype").FontVariantPositionProperty;
2492
- "font-variation-settings"?: string;
2493
- "font-weight"?: import("csstype").FontWeightProperty;
2494
- "forced-color-adjust"?: import("csstype").ForcedColorAdjustProperty;
2495
- "grid-auto-columns"?: import("csstype").GridAutoColumnsProperty<string | number>;
2496
- "grid-auto-flow"?: string;
2497
- "grid-auto-rows"?: import("csstype").GridAutoRowsProperty<string | number>;
2498
- "grid-column-end"?: import("csstype").GridColumnEndProperty;
2499
- "grid-column-start"?: import("csstype").GridColumnStartProperty;
2500
- "grid-row-end"?: import("csstype").GridRowEndProperty;
2501
- "grid-row-start"?: import("csstype").GridRowStartProperty;
2502
- "grid-template-areas"?: string;
2503
- "grid-template-columns"?: import("csstype").GridTemplateColumnsProperty<string | number>;
2504
- "grid-template-rows"?: import("csstype").GridTemplateRowsProperty<string | number>;
2505
- "hanging-punctuation"?: string;
2506
- "hyphenate-character"?: string;
2507
- "image-orientation"?: string;
2508
- "image-rendering"?: import("csstype").ImageRenderingProperty;
2509
- "image-resolution"?: string;
2510
- "initial-letter"?: import("csstype").InitialLetterProperty;
2511
- "inline-size"?: import("csstype").InlineSizeProperty<string | number>;
2512
- "input-security"?: import("csstype").InputSecurityProperty;
2513
- "inset-block"?: import("csstype").InsetBlockProperty<string | number>;
2514
- "inset-block-end"?: import("csstype").InsetBlockEndProperty<string | number>;
2515
- "inset-block-start"?: import("csstype").InsetBlockStartProperty<string | number>;
2516
- "inset-inline"?: import("csstype").InsetInlineProperty<string | number>;
2517
- "inset-inline-end"?: import("csstype").InsetInlineEndProperty<string | number>;
2518
- "inset-inline-start"?: import("csstype").InsetInlineStartProperty<string | number>;
2519
- "justify-content"?: string;
2520
- "justify-items"?: string;
2521
- "justify-self"?: string;
2522
- "justify-tracks"?: string;
2523
- "letter-spacing"?: import("csstype").LetterSpacingProperty<string | number>;
2524
- "line-break"?: import("csstype").LineBreakProperty;
2525
- "line-height"?: import("csstype").LineHeightProperty<string | number>;
2526
- "line-height-step"?: import("csstype").LineHeightStepProperty<string | number>;
2527
- "list-style-image"?: string;
2528
- "list-style-position"?: import("csstype").ListStylePositionProperty;
2529
- "list-style-type"?: string;
2530
- "margin-block"?: import("csstype").MarginBlockProperty<string | number>;
2531
- "margin-block-end"?: import("csstype").MarginBlockEndProperty<string | number>;
2532
- "margin-block-start"?: import("csstype").MarginBlockStartProperty<string | number>;
2533
- "margin-bottom"?: import("csstype").MarginBottomProperty<string | number>;
2534
- "margin-inline"?: import("csstype").MarginInlineProperty<string | number>;
2535
- "margin-inline-end"?: import("csstype").MarginInlineEndProperty<string | number>;
2536
- "margin-inline-start"?: import("csstype").MarginInlineStartProperty<string | number>;
2537
- "margin-left"?: import("csstype").MarginLeftProperty<string | number>;
2538
- "margin-right"?: import("csstype").MarginRightProperty<string | number>;
2539
- "margin-top"?: import("csstype").MarginTopProperty<string | number>;
2540
- "mask-border-mode"?: import("csstype").MaskBorderModeProperty;
2541
- "mask-border-outset"?: import("csstype").MaskBorderOutsetProperty<string | number>;
2542
- "mask-border-repeat"?: string;
2543
- "mask-border-slice"?: import("csstype").MaskBorderSliceProperty;
2544
- "mask-border-source"?: string;
2545
- "mask-border-width"?: import("csstype").MaskBorderWidthProperty<string | number>;
2546
- "mask-clip"?: string;
2547
- "mask-composite"?: string;
2548
- "mask-image"?: string;
2549
- "mask-mode"?: string;
2550
- "mask-origin"?: string;
2551
- "mask-position"?: import("csstype").MaskPositionProperty<string | number>;
2552
- "mask-repeat"?: string;
2553
- "mask-size"?: import("csstype").MaskSizeProperty<string | number>;
2554
- "mask-type"?: import("csstype").MaskTypeProperty;
2555
- "math-depth"?: import("csstype").MathDepthProperty;
2556
- "math-shift"?: import("csstype").MathShiftProperty;
2557
- "math-style"?: import("csstype").MathStyleProperty;
2558
- "max-block-size"?: import("csstype").MaxBlockSizeProperty<string | number>;
2559
- "max-height"?: import("csstype").MaxHeightProperty<string | number>;
2560
- "max-inline-size"?: import("csstype").MaxInlineSizeProperty<string | number>;
2561
- "max-lines"?: import("csstype").MaxLinesProperty;
2562
- "max-width"?: import("csstype").MaxWidthProperty<string | number>;
2563
- "min-block-size"?: import("csstype").MinBlockSizeProperty<string | number>;
2564
- "min-height"?: import("csstype").MinHeightProperty<string | number>;
2565
- "min-inline-size"?: import("csstype").MinInlineSizeProperty<string | number>;
2566
- "min-width"?: import("csstype").MinWidthProperty<string | number>;
2567
- "mix-blend-mode"?: import("csstype").MixBlendModeProperty;
2568
- "motion-distance"?: import("csstype").OffsetDistanceProperty<string | number>;
2569
- "motion-path"?: string;
2570
- "motion-rotation"?: string;
2571
- "object-fit"?: import("csstype").ObjectFitProperty;
2572
- "object-position"?: import("csstype").ObjectPositionProperty<string | number>;
2573
- "offset-anchor"?: import("csstype").OffsetAnchorProperty<string | number>;
2574
- "offset-distance"?: import("csstype").OffsetDistanceProperty<string | number>;
2575
- "offset-path"?: string;
2576
- "offset-rotate"?: string;
2577
- "offset-rotation"?: string;
2578
- "outline-color"?: string;
2579
- "outline-offset"?: import("csstype").OutlineOffsetProperty<string | number>;
2580
- "outline-style"?: string;
2581
- "outline-width"?: import("csstype").OutlineWidthProperty<string | number>;
2582
- "overflow-anchor"?: import("csstype").OverflowAnchorProperty;
2583
- "overflow-block"?: import("csstype").OverflowBlockProperty;
2584
- "overflow-clip-box"?: import("csstype").OverflowClipBoxProperty;
2585
- "overflow-clip-margin"?: import("csstype").OverflowClipMarginProperty<string | number>;
2586
- "overflow-inline"?: import("csstype").OverflowInlineProperty;
2587
- "overflow-wrap"?: import("csstype").OverflowWrapProperty;
2588
- "overflow-x"?: import("csstype").OverflowXProperty;
2589
- "overflow-y"?: import("csstype").OverflowYProperty;
2590
- "overscroll-behavior-block"?: import("csstype").OverscrollBehaviorBlockProperty;
2591
- "overscroll-behavior-inline"?: import("csstype").OverscrollBehaviorInlineProperty;
2592
- "overscroll-behavior-x"?: import("csstype").OverscrollBehaviorXProperty;
2593
- "overscroll-behavior-y"?: import("csstype").OverscrollBehaviorYProperty;
2594
- "padding-block"?: import("csstype").PaddingBlockProperty<string | number>;
2595
- "padding-block-end"?: import("csstype").PaddingBlockEndProperty<string | number>;
2596
- "padding-block-start"?: import("csstype").PaddingBlockStartProperty<string | number>;
2597
- "padding-bottom"?: import("csstype").PaddingBottomProperty<string | number>;
2598
- "padding-inline"?: import("csstype").PaddingInlineProperty<string | number>;
2599
- "padding-inline-end"?: import("csstype").PaddingInlineEndProperty<string | number>;
2600
- "padding-inline-start"?: import("csstype").PaddingInlineStartProperty<string | number>;
2601
- "padding-left"?: import("csstype").PaddingLeftProperty<string | number>;
2602
- "padding-right"?: import("csstype").PaddingRightProperty<string | number>;
2603
- "padding-top"?: import("csstype").PaddingTopProperty<string | number>;
2604
- "page-break-after"?: import("csstype").PageBreakAfterProperty;
2605
- "page-break-before"?: import("csstype").PageBreakBeforeProperty;
2606
- "page-break-inside"?: import("csstype").PageBreakInsideProperty;
2607
- "paint-order"?: string;
2608
- "perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number>;
2609
- "place-content"?: string;
2610
- "pointer-events"?: import("csstype").PointerEventsProperty;
2611
- "print-color-adjust"?: import("csstype").PrintColorAdjustProperty;
2612
- "row-gap"?: import("csstype").RowGapProperty<string | number>;
2613
- "ruby-align"?: import("csstype").RubyAlignProperty;
2614
- "ruby-merge"?: import("csstype").RubyMergeProperty;
2615
- "ruby-position"?: string;
2616
- "scroll-behavior"?: import("csstype").ScrollBehaviorProperty;
2617
- "scroll-margin"?: import("csstype").ScrollMarginProperty<string | number>;
2618
- "scroll-margin-block"?: import("csstype").ScrollMarginBlockProperty<string | number>;
2619
- "scroll-margin-block-end"?: import("csstype").ScrollMarginBlockEndProperty<string | number>;
2620
- "scroll-margin-block-start"?: import("csstype").ScrollMarginBlockStartProperty<string | number>;
2621
- "scroll-margin-bottom"?: import("csstype").ScrollMarginBottomProperty<string | number>;
2622
- "scroll-margin-inline"?: import("csstype").ScrollMarginInlineProperty<string | number>;
2623
- "scroll-margin-inline-end"?: import("csstype").ScrollMarginInlineEndProperty<string | number>;
2624
- "scroll-margin-inline-start"?: import("csstype").ScrollMarginInlineStartProperty<string | number>;
2625
- "scroll-margin-left"?: import("csstype").ScrollMarginLeftProperty<string | number>;
2626
- "scroll-margin-right"?: import("csstype").ScrollMarginRightProperty<string | number>;
2627
- "scroll-margin-top"?: import("csstype").ScrollMarginTopProperty<string | number>;
2628
- "scroll-padding"?: import("csstype").ScrollPaddingProperty<string | number>;
2629
- "scroll-padding-block"?: import("csstype").ScrollPaddingBlockProperty<string | number>;
2630
- "scroll-padding-block-end"?: import("csstype").ScrollPaddingBlockEndProperty<string | number>;
2631
- "scroll-padding-block-start"?: import("csstype").ScrollPaddingBlockStartProperty<string | number>;
2632
- "scroll-padding-bottom"?: import("csstype").ScrollPaddingBottomProperty<string | number>;
2633
- "scroll-padding-inline"?: import("csstype").ScrollPaddingInlineProperty<string | number>;
2634
- "scroll-padding-inline-end"?: import("csstype").ScrollPaddingInlineEndProperty<string | number>;
2635
- "scroll-padding-inline-start"?: import("csstype").ScrollPaddingInlineStartProperty<string | number>;
2636
- "scroll-padding-left"?: import("csstype").ScrollPaddingLeftProperty<string | number>;
2637
- "scroll-padding-right"?: import("csstype").ScrollPaddingRightProperty<string | number>;
2638
- "scroll-padding-top"?: import("csstype").ScrollPaddingTopProperty<string | number>;
2639
- "scroll-snap-align"?: string;
2640
- "scroll-snap-margin"?: import("csstype").ScrollMarginProperty<string | number>;
2641
- "scroll-snap-margin-bottom"?: import("csstype").ScrollMarginBottomProperty<string | number>;
2642
- "scroll-snap-margin-left"?: import("csstype").ScrollMarginLeftProperty<string | number>;
2643
- "scroll-snap-margin-right"?: import("csstype").ScrollMarginRightProperty<string | number>;
2644
- "scroll-snap-margin-top"?: import("csstype").ScrollMarginTopProperty<string | number>;
2645
- "scroll-snap-stop"?: import("csstype").ScrollSnapStopProperty;
2646
- "scroll-snap-type"?: string;
2647
- "scrollbar-color"?: string;
2648
- "scrollbar-gutter"?: string;
2649
- "scrollbar-width"?: import("csstype").ScrollbarWidthProperty;
2650
- "shape-image-threshold"?: import("csstype").ShapeImageThresholdProperty;
2651
- "shape-margin"?: import("csstype").ShapeMarginProperty<string | number>;
2652
- "shape-outside"?: string;
2653
- "tab-size"?: import("csstype").TabSizeProperty<string | number>;
2654
- "table-layout"?: import("csstype").TableLayoutProperty;
2655
- "text-align"?: import("csstype").TextAlignProperty;
2656
- "text-align-last"?: import("csstype").TextAlignLastProperty;
2657
- "text-combine-upright"?: string;
2658
- "text-decoration-color"?: string;
2659
- "text-decoration-line"?: string;
2660
- "text-decoration-skip"?: string;
2661
- "text-decoration-skip-ink"?: import("csstype").TextDecorationSkipInkProperty;
2662
- "text-decoration-style"?: import("csstype").TextDecorationStyleProperty;
2663
- "text-decoration-thickness"?: import("csstype").TextDecorationThicknessProperty<string | number>;
2664
- "text-emphasis-color"?: string;
2665
- "text-emphasis-position"?: string;
2666
- "text-emphasis-style"?: string;
2667
- "text-indent"?: import("csstype").TextIndentProperty<string | number>;
2668
- "text-justify"?: import("csstype").TextJustifyProperty;
2669
- "text-orientation"?: import("csstype").TextOrientationProperty;
2670
- "text-overflow"?: string;
2671
- "text-rendering"?: import("csstype").TextRenderingProperty;
2672
- "text-shadow"?: string;
2673
- "text-size-adjust"?: string;
2674
- "text-transform"?: import("csstype").TextTransformProperty;
2675
- "text-underline-offset"?: import("csstype").TextUnderlineOffsetProperty<string | number>;
2676
- "text-underline-position"?: string;
2677
- "touch-action"?: string;
2678
- "transform-box"?: import("csstype").TransformBoxProperty;
2679
- "transform-origin"?: import("csstype").TransformOriginProperty<string | number>;
2680
- "transform-style"?: import("csstype").TransformStyleProperty;
2681
- "transition-delay"?: string;
2682
- "transition-duration"?: string;
2683
- "transition-property"?: string;
2684
- "transition-timing-function"?: string;
2685
- "unicode-bidi"?: import("csstype").UnicodeBidiProperty;
2686
- "user-select"?: import("csstype").UserSelectProperty;
2687
- "vertical-align"?: import("csstype").VerticalAlignProperty<string | number>;
2688
- "white-space"?: import("csstype").WhiteSpaceProperty;
2689
- "will-change"?: string;
2690
- "word-break"?: import("csstype").WordBreakProperty;
2691
- "word-spacing"?: import("csstype").WordSpacingProperty<string | number>;
2692
- "word-wrap"?: import("csstype").WordWrapProperty;
2693
- "writing-mode"?: import("csstype").WritingModeProperty;
2694
- "z-index"?: import("csstype").ZIndexProperty;
2695
- "background-position"?: import("csstype").BackgroundPositionProperty<string | number>;
2696
- "border-block"?: import("csstype").BorderBlockProperty<string | number>;
2697
- "border-block-end"?: import("csstype").BorderBlockEndProperty<string | number>;
2698
- "border-block-start"?: import("csstype").BorderBlockStartProperty<string | number>;
2699
- "border-bottom"?: import("csstype").BorderBottomProperty<string | number>;
2700
- "border-color"?: string;
2701
- "border-image"?: import("csstype").BorderImageProperty;
2702
- "border-inline"?: import("csstype").BorderInlineProperty<string | number>;
2703
- "border-inline-end"?: import("csstype").BorderInlineEndProperty<string | number>;
2704
- "border-inline-start"?: import("csstype").BorderInlineStartProperty<string | number>;
2705
- "border-left"?: import("csstype").BorderLeftProperty<string | number>;
2706
- "border-radius"?: import("csstype").BorderRadiusProperty<string | number>;
2707
- "border-right"?: import("csstype").BorderRightProperty<string | number>;
2708
- "border-style"?: string;
2709
- "border-top"?: import("csstype").BorderTopProperty<string | number>;
2710
- "border-width"?: import("csstype").BorderWidthProperty<string | number>;
2711
- "column-rule"?: import("csstype").ColumnRuleProperty<string | number>;
2712
- "flex-flow"?: string;
2713
- "grid-area"?: import("csstype").GridAreaProperty;
2714
- "grid-column"?: import("csstype").GridColumnProperty;
2715
- "grid-row"?: import("csstype").GridRowProperty;
2716
- "grid-template"?: string;
2717
- "line-clamp"?: import("csstype").LineClampProperty;
2718
- "list-style"?: string;
2719
- "mask-border"?: import("csstype").MaskBorderProperty;
2720
- "overscroll-behavior"?: string;
2721
- "place-items"?: string;
2722
- "place-self"?: string;
2723
- "text-decoration"?: import("csstype").TextDecorationProperty<string | number>;
2724
- "text-emphasis"?: string;
2725
- "-moz-animation-delay"?: string;
2726
- "-moz-animation-direction"?: string;
2727
- "-moz-animation-duration"?: string;
2728
- "-moz-animation-fill-mode"?: string;
2729
- "-moz-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty;
2730
- "-moz-animation-name"?: string;
2731
- "-moz-animation-play-state"?: string;
2732
- "-moz-animation-timing-function"?: string;
2733
- "-moz-appearance"?: import("csstype").MozAppearanceProperty;
2734
- "-moz-backface-visibility"?: import("csstype").BackfaceVisibilityProperty;
2735
- "-moz-border-bottom-colors"?: string;
2736
- "-moz-border-end-color"?: string;
2737
- "-moz-border-end-style"?: import("csstype").BorderInlineEndStyleProperty;
2738
- "-moz-border-end-width"?: import("csstype").BorderInlineEndWidthProperty<string | number>;
2739
- "-moz-border-left-colors"?: string;
2740
- "-moz-border-right-colors"?: string;
2741
- "-moz-border-start-color"?: string;
2742
- "-moz-border-start-style"?: import("csstype").BorderInlineStartStyleProperty;
2743
- "-moz-border-top-colors"?: string;
2744
- "-moz-box-sizing"?: import("csstype").BoxSizingProperty;
2745
- "-moz-column-count"?: import("csstype").ColumnCountProperty;
2746
- "-moz-column-fill"?: import("csstype").ColumnFillProperty;
2747
- "-moz-column-rule-color"?: string;
2748
- "-moz-column-rule-style"?: string;
2749
- "-moz-column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number>;
2750
- "-moz-column-width"?: import("csstype").ColumnWidthProperty<string | number>;
2751
- "-moz-context-properties"?: string;
2752
- "-moz-font-feature-settings"?: string;
2753
- "-moz-font-language-override"?: string;
2754
- "-moz-hyphens"?: import("csstype").HyphensProperty;
2755
- "-moz-image-region"?: string;
2756
- "-moz-margin-end"?: import("csstype").MarginInlineEndProperty<string | number>;
2757
- "-moz-margin-start"?: import("csstype").MarginInlineStartProperty<string | number>;
2758
- "-moz-orient"?: import("csstype").MozOrientProperty;
2759
- "-moz-osx-font-smoothing"?: import("csstype").FontSmoothProperty<string | number>;
2760
- "-moz-padding-end"?: import("csstype").PaddingInlineEndProperty<string | number>;
2761
- "-moz-padding-start"?: import("csstype").PaddingInlineStartProperty<string | number>;
2762
- "-moz-perspective"?: import("csstype").PerspectiveProperty<string | number>;
2763
- "-moz-perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number>;
2764
- "-moz-stack-sizing"?: import("csstype").MozStackSizingProperty;
2765
- "-moz-tab-size"?: import("csstype").TabSizeProperty<string | number>;
2766
- "-moz-text-blink"?: import("csstype").MozTextBlinkProperty;
2767
- "-moz-text-size-adjust"?: string;
2768
- "-moz-transform-origin"?: import("csstype").TransformOriginProperty<string | number>;
2769
- "-moz-transform-style"?: import("csstype").TransformStyleProperty;
2770
- "-moz-transition-delay"?: string;
2771
- "-moz-transition-duration"?: string;
2772
- "-moz-transition-property"?: string;
2773
- "-moz-transition-timing-function"?: string;
2774
- "-moz-user-focus"?: import("csstype").MozUserFocusProperty;
2775
- "-moz-user-modify"?: import("csstype").MozUserModifyProperty;
2776
- "-moz-user-select"?: import("csstype").UserSelectProperty;
2777
- "-moz-window-dragging"?: import("csstype").MozWindowDraggingProperty;
2778
- "-moz-window-shadow"?: import("csstype").MozWindowShadowProperty;
2779
- "-ms-accelerator"?: import("csstype").MsAcceleratorProperty;
2780
- "-ms-block-progression"?: import("csstype").MsBlockProgressionProperty;
2781
- "-ms-content-zoom-chaining"?: import("csstype").MsContentZoomChainingProperty;
2782
- "-ms-content-zoom-limit-max"?: string;
2783
- "-ms-content-zoom-limit-min"?: string;
2784
- "-ms-content-zoom-snap-points"?: string;
2785
- "-ms-content-zoom-snap-type"?: import("csstype").MsContentZoomSnapTypeProperty;
2786
- "-ms-content-zooming"?: import("csstype").MsContentZoomingProperty;
2787
- "-ms-filter"?: string;
2788
- "-ms-flex-direction"?: import("csstype").FlexDirectionProperty;
2789
- "-ms-flex-positive"?: import("csstype").GlobalsNumber;
2790
- "-ms-flow-from"?: string;
2791
- "-ms-flow-into"?: string;
2792
- "-ms-grid-columns"?: import("csstype").MsGridColumnsProperty<string | number>;
2793
- "-ms-grid-rows"?: import("csstype").MsGridRowsProperty<string | number>;
2794
- "-ms-high-contrast-adjust"?: import("csstype").MsHighContrastAdjustProperty;
2795
- "-ms-hyphenate-limit-chars"?: import("csstype").MsHyphenateLimitCharsProperty;
2796
- "-ms-hyphenate-limit-lines"?: import("csstype").MsHyphenateLimitLinesProperty;
2797
- "-ms-hyphenate-limit-zone"?: import("csstype").MsHyphenateLimitZoneProperty<string | number>;
2798
- "-ms-hyphens"?: import("csstype").HyphensProperty;
2799
- "-ms-ime-align"?: import("csstype").MsImeAlignProperty;
2800
- "-ms-line-break"?: import("csstype").LineBreakProperty;
2801
- "-ms-order"?: import("csstype").GlobalsNumber;
2802
- "-ms-overflow-style"?: import("csstype").MsOverflowStyleProperty;
2803
- "-ms-overflow-x"?: import("csstype").OverflowXProperty;
2804
- "-ms-overflow-y"?: import("csstype").OverflowYProperty;
2805
- "-ms-scroll-chaining"?: import("csstype").MsScrollChainingProperty;
2806
- "-ms-scroll-limit-x-max"?: import("csstype").MsScrollLimitXMaxProperty<string | number>;
2807
- "-ms-scroll-limit-x-min"?: import("csstype").MsScrollLimitXMinProperty<string | number>;
2808
- "-ms-scroll-limit-y-max"?: import("csstype").MsScrollLimitYMaxProperty<string | number>;
2809
- "-ms-scroll-limit-y-min"?: import("csstype").MsScrollLimitYMinProperty<string | number>;
2810
- "-ms-scroll-rails"?: import("csstype").MsScrollRailsProperty;
2811
- "-ms-scroll-snap-points-x"?: string;
2812
- "-ms-scroll-snap-points-y"?: string;
2813
- "-ms-scroll-snap-type"?: import("csstype").MsScrollSnapTypeProperty;
2814
- "-ms-scroll-translation"?: import("csstype").MsScrollTranslationProperty;
2815
- "-ms-scrollbar-3dlight-color"?: string;
2816
- "-ms-scrollbar-arrow-color"?: string;
2817
- "-ms-scrollbar-base-color"?: string;
2818
- "-ms-scrollbar-darkshadow-color"?: string;
2819
- "-ms-scrollbar-face-color"?: string;
2820
- "-ms-scrollbar-highlight-color"?: string;
2821
- "-ms-scrollbar-shadow-color"?: string;
2822
- "-ms-scrollbar-track-color"?: string;
2823
- "-ms-text-autospace"?: import("csstype").MsTextAutospaceProperty;
2824
- "-ms-text-combine-horizontal"?: string;
2825
- "-ms-text-overflow"?: string;
2826
- "-ms-touch-action"?: string;
2827
- "-ms-touch-select"?: import("csstype").MsTouchSelectProperty;
2828
- "-ms-transform"?: string;
2829
- "-ms-transform-origin"?: import("csstype").TransformOriginProperty<string | number>;
2830
- "-ms-transition-delay"?: string;
2831
- "-ms-transition-duration"?: string;
2832
- "-ms-transition-property"?: string;
2833
- "-ms-transition-timing-function"?: string;
2834
- "-ms-user-select"?: import("csstype").MsUserSelectProperty;
2835
- "-ms-word-break"?: import("csstype").WordBreakProperty;
2836
- "-ms-wrap-flow"?: import("csstype").MsWrapFlowProperty;
2837
- "-ms-wrap-margin"?: import("csstype").MsWrapMarginProperty<string | number>;
2838
- "-ms-wrap-through"?: import("csstype").MsWrapThroughProperty;
2839
- "-ms-writing-mode"?: import("csstype").WritingModeProperty;
2840
- "-webkit-align-content"?: string;
2841
- "-webkit-align-items"?: string;
2842
- "-webkit-align-self"?: string;
2843
- "-webkit-animation-delay"?: string;
2844
- "-webkit-animation-direction"?: string;
2845
- "-webkit-animation-duration"?: string;
2846
- "-webkit-animation-fill-mode"?: string;
2847
- "-webkit-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty;
2848
- "-webkit-animation-name"?: string;
2849
- "-webkit-animation-play-state"?: string;
2850
- "-webkit-animation-timing-function"?: string;
2851
- "-webkit-appearance"?: import("csstype").WebkitAppearanceProperty;
2852
- "-webkit-backdrop-filter"?: string;
2853
- "-webkit-backface-visibility"?: import("csstype").BackfaceVisibilityProperty;
2854
- "-webkit-background-clip"?: string;
2855
- "-webkit-background-origin"?: string;
2856
- "-webkit-background-size"?: import("csstype").BackgroundSizeProperty<string | number>;
2857
- "-webkit-border-before-color"?: string;
2858
- "-webkit-border-before-style"?: string;
2859
- "-webkit-border-before-width"?: import("csstype").WebkitBorderBeforeWidthProperty<string | number>;
2860
- "-webkit-border-bottom-left-radius"?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
2861
- "-webkit-border-bottom-right-radius"?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
2862
- "-webkit-border-image-slice"?: import("csstype").BorderImageSliceProperty;
2863
- "-webkit-border-top-left-radius"?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
2864
- "-webkit-border-top-right-radius"?: import("csstype").BorderTopRightRadiusProperty<string | number>;
2865
- "-webkit-box-decoration-break"?: import("csstype").BoxDecorationBreakProperty;
2866
- "-webkit-box-reflect"?: import("csstype").WebkitBoxReflectProperty<string | number>;
2867
- "-webkit-box-shadow"?: string;
2868
- "-webkit-box-sizing"?: import("csstype").BoxSizingProperty;
2869
- "-webkit-clip-path"?: string;
2870
- "-webkit-column-count"?: import("csstype").ColumnCountProperty;
2871
- "-webkit-column-fill"?: import("csstype").ColumnFillProperty;
2872
- "-webkit-column-rule-color"?: string;
2873
- "-webkit-column-rule-style"?: string;
2874
- "-webkit-column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number>;
2875
- "-webkit-column-span"?: import("csstype").ColumnSpanProperty;
2876
- "-webkit-column-width"?: import("csstype").ColumnWidthProperty<string | number>;
2877
- "-webkit-filter"?: string;
2878
- "-webkit-flex-basis"?: import("csstype").FlexBasisProperty<string | number>;
2879
- "-webkit-flex-direction"?: import("csstype").FlexDirectionProperty;
2880
- "-webkit-flex-grow"?: import("csstype").GlobalsNumber;
2881
- "-webkit-flex-shrink"?: import("csstype").GlobalsNumber;
2882
- "-webkit-flex-wrap"?: import("csstype").FlexWrapProperty;
2883
- "-webkit-font-feature-settings"?: string;
2884
- "-webkit-font-kerning"?: import("csstype").FontKerningProperty;
2885
- "-webkit-font-smoothing"?: import("csstype").FontSmoothProperty<string | number>;
2886
- "-webkit-font-variant-ligatures"?: string;
2887
- "-webkit-hyphenate-character"?: string;
2888
- "-webkit-hyphens"?: import("csstype").HyphensProperty;
2889
- "-webkit-initial-letter"?: import("csstype").InitialLetterProperty;
2890
- "-webkit-justify-content"?: string;
2891
- "-webkit-line-break"?: import("csstype").LineBreakProperty;
2892
- "-webkit-line-clamp"?: import("csstype").WebkitLineClampProperty;
2893
- "-webkit-margin-end"?: import("csstype").MarginInlineEndProperty<string | number>;
2894
- "-webkit-margin-start"?: import("csstype").MarginInlineStartProperty<string | number>;
2895
- "-webkit-mask-attachment"?: string;
2896
- "-webkit-mask-box-image-outset"?: import("csstype").MaskBorderOutsetProperty<string | number>;
2897
- "-webkit-mask-box-image-repeat"?: string;
2898
- "-webkit-mask-box-image-slice"?: import("csstype").MaskBorderSliceProperty;
2899
- "-webkit-mask-box-image-source"?: string;
2900
- "-webkit-mask-box-image-width"?: import("csstype").MaskBorderWidthProperty<string | number>;
2901
- "-webkit-mask-clip"?: string;
2902
- "-webkit-mask-composite"?: string;
2903
- "-webkit-mask-image"?: string;
2904
- "-webkit-mask-origin"?: string;
2905
- "-webkit-mask-position"?: import("csstype").WebkitMaskPositionProperty<string | number>;
2906
- "-webkit-mask-position-x"?: import("csstype").WebkitMaskPositionXProperty<string | number>;
2907
- "-webkit-mask-position-y"?: import("csstype").WebkitMaskPositionYProperty<string | number>;
2908
- "-webkit-mask-repeat"?: string;
2909
- "-webkit-mask-repeat-x"?: import("csstype").WebkitMaskRepeatXProperty;
2910
- "-webkit-mask-repeat-y"?: import("csstype").WebkitMaskRepeatYProperty;
2911
- "-webkit-mask-size"?: import("csstype").WebkitMaskSizeProperty<string | number>;
2912
- "-webkit-max-inline-size"?: import("csstype").MaxInlineSizeProperty<string | number>;
2913
- "-webkit-order"?: import("csstype").GlobalsNumber;
2914
- "-webkit-overflow-scrolling"?: import("csstype").WebkitOverflowScrollingProperty;
2915
- "-webkit-padding-end"?: import("csstype").PaddingInlineEndProperty<string | number>;
2916
- "-webkit-padding-start"?: import("csstype").PaddingInlineStartProperty<string | number>;
2917
- "-webkit-perspective"?: import("csstype").PerspectiveProperty<string | number>;
2918
- "-webkit-perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number>;
2919
- "-webkit-print-color-adjust"?: import("csstype").PrintColorAdjustProperty;
2920
- "-webkit-ruby-position"?: string;
2921
- "-webkit-scroll-snap-type"?: string;
2922
- "-webkit-shape-margin"?: import("csstype").ShapeMarginProperty<string | number>;
2923
- "-webkit-tap-highlight-color"?: string;
2924
- "-webkit-text-combine"?: string;
2925
- "-webkit-text-decoration-color"?: string;
2926
- "-webkit-text-decoration-line"?: string;
2927
- "-webkit-text-decoration-skip"?: string;
2928
- "-webkit-text-decoration-style"?: import("csstype").TextDecorationStyleProperty;
2929
- "-webkit-text-emphasis-color"?: string;
2930
- "-webkit-text-emphasis-position"?: string;
2931
- "-webkit-text-emphasis-style"?: string;
2932
- "-webkit-text-fill-color"?: string;
2933
- "-webkit-text-orientation"?: import("csstype").TextOrientationProperty;
2934
- "-webkit-text-size-adjust"?: string;
2935
- "-webkit-text-stroke-color"?: string;
2936
- "-webkit-text-stroke-width"?: import("csstype").WebkitTextStrokeWidthProperty<string | number>;
2937
- "-webkit-text-underline-position"?: string;
2938
- "-webkit-touch-callout"?: import("csstype").WebkitTouchCalloutProperty;
2939
- "-webkit-transform"?: string;
2940
- "-webkit-transform-origin"?: import("csstype").TransformOriginProperty<string | number>;
2941
- "-webkit-transform-style"?: import("csstype").TransformStyleProperty;
2942
- "-webkit-transition-delay"?: string;
2943
- "-webkit-transition-duration"?: string;
2944
- "-webkit-transition-property"?: string;
2945
- "-webkit-transition-timing-function"?: string;
2946
- "-webkit-user-modify"?: import("csstype").WebkitUserModifyProperty;
2947
- "-webkit-user-select"?: import("csstype").UserSelectProperty;
2948
- "-webkit-writing-mode"?: import("csstype").WritingModeProperty;
2949
- "-moz-animation"?: import("csstype").AnimationProperty;
2950
- "-moz-border-image"?: import("csstype").BorderImageProperty;
2951
- "-moz-column-rule"?: import("csstype").ColumnRuleProperty<string | number>;
2952
- "-moz-columns"?: import("csstype").ColumnsProperty<string | number>;
2953
- "-moz-transition"?: string;
2954
- "-ms-content-zoom-limit"?: string;
2955
- "-ms-content-zoom-snap"?: string;
2956
- "-ms-flex"?: import("csstype").FlexProperty<string | number>;
2957
- "-ms-scroll-limit"?: string;
2958
- "-ms-scroll-snap-x"?: string;
2959
- "-ms-scroll-snap-y"?: string;
2960
- "-ms-transition"?: string;
2961
- "-webkit-animation"?: import("csstype").AnimationProperty;
2962
- "-webkit-border-before"?: import("csstype").WebkitBorderBeforeProperty<string | number>;
2963
- "-webkit-border-image"?: import("csstype").BorderImageProperty;
2964
- "-webkit-border-radius"?: import("csstype").BorderRadiusProperty<string | number>;
2965
- "-webkit-column-rule"?: import("csstype").ColumnRuleProperty<string | number>;
2966
- "-webkit-columns"?: import("csstype").ColumnsProperty<string | number>;
2967
- "-webkit-flex"?: import("csstype").FlexProperty<string | number>;
2968
- "-webkit-flex-flow"?: string;
2969
- "-webkit-mask"?: import("csstype").WebkitMaskProperty<string | number>;
2970
- "-webkit-mask-box-image"?: import("csstype").MaskBorderProperty;
2971
- "-webkit-text-emphasis"?: string;
2972
- "-webkit-text-stroke"?: import("csstype").WebkitTextStrokeProperty<string | number>;
2973
- "-webkit-transition"?: string;
2974
- "box-align"?: import("csstype").BoxAlignProperty;
2975
- "box-direction"?: import("csstype").BoxDirectionProperty;
2976
- "box-flex"?: import("csstype").GlobalsNumber;
2977
- "box-flex-group"?: import("csstype").GlobalsNumber;
2978
- "box-lines"?: import("csstype").BoxLinesProperty;
2979
- "box-ordinal-group"?: import("csstype").GlobalsNumber;
2980
- "box-orient"?: import("csstype").BoxOrientProperty;
2981
- "box-pack"?: import("csstype").BoxPackProperty;
2982
- "grid-column-gap"?: import("csstype").GridColumnGapProperty<string | number>;
2983
- "grid-gap"?: import("csstype").GridGapProperty<string | number>;
2984
- "grid-row-gap"?: import("csstype").GridRowGapProperty<string | number>;
2985
- "ime-mode"?: import("csstype").ImeModeProperty;
2986
- "offset-block"?: import("csstype").InsetBlockProperty<string | number>;
2987
- "offset-block-end"?: import("csstype").InsetBlockEndProperty<string | number>;
2988
- "offset-block-start"?: import("csstype").InsetBlockStartProperty<string | number>;
2989
- "offset-inline"?: import("csstype").InsetInlineProperty<string | number>;
2990
- "offset-inline-end"?: import("csstype").InsetInlineEndProperty<string | number>;
2991
- "offset-inline-start"?: import("csstype").InsetInlineStartProperty<string | number>;
2992
- "scroll-snap-coordinate"?: import("csstype").ScrollSnapCoordinateProperty<string | number>;
2993
- "scroll-snap-destination"?: import("csstype").ScrollSnapDestinationProperty<string | number>;
2994
- "scroll-snap-points-x"?: string;
2995
- "scroll-snap-points-y"?: string;
2996
- "scroll-snap-type-x"?: import("csstype").ScrollSnapTypeXProperty;
2997
- "scroll-snap-type-y"?: import("csstype").ScrollSnapTypeYProperty;
2998
- "-khtml-box-align"?: import("csstype").BoxAlignProperty;
2999
- "-khtml-box-direction"?: import("csstype").BoxDirectionProperty;
3000
- "-khtml-box-flex"?: import("csstype").GlobalsNumber;
3001
- "-khtml-box-flex-group"?: import("csstype").GlobalsNumber;
3002
- "-khtml-box-lines"?: import("csstype").BoxLinesProperty;
3003
- "-khtml-box-ordinal-group"?: import("csstype").GlobalsNumber;
3004
- "-khtml-box-orient"?: import("csstype").BoxOrientProperty;
3005
- "-khtml-box-pack"?: import("csstype").BoxPackProperty;
3006
- "-khtml-line-break"?: import("csstype").LineBreakProperty;
3007
- "-khtml-opacity"?: import("csstype").OpacityProperty;
3008
- "-khtml-user-select"?: import("csstype").UserSelectProperty;
3009
- "-moz-background-clip"?: string;
3010
- "-moz-background-inline-policy"?: import("csstype").BoxDecorationBreakProperty;
3011
- "-moz-background-origin"?: string;
3012
- "-moz-background-size"?: import("csstype").BackgroundSizeProperty<string | number>;
3013
- "-moz-binding"?: string;
3014
- "-moz-border-radius"?: import("csstype").BorderRadiusProperty<string | number>;
3015
- "-moz-border-radius-bottomleft"?: import("csstype").BorderBottomLeftRadiusProperty<string | number>;
3016
- "-moz-border-radius-bottomright"?: import("csstype").BorderBottomRightRadiusProperty<string | number>;
3017
- "-moz-border-radius-topleft"?: import("csstype").BorderTopLeftRadiusProperty<string | number>;
3018
- "-moz-border-radius-topright"?: import("csstype").BorderTopRightRadiusProperty<string | number>;
3019
- "-moz-box-align"?: import("csstype").BoxAlignProperty;
3020
- "-moz-box-direction"?: import("csstype").BoxDirectionProperty;
3021
- "-moz-box-flex"?: import("csstype").GlobalsNumber;
3022
- "-moz-box-ordinal-group"?: import("csstype").GlobalsNumber;
3023
- "-moz-box-orient"?: import("csstype").BoxOrientProperty;
3024
- "-moz-box-pack"?: import("csstype").BoxPackProperty;
3025
- "-moz-box-shadow"?: string;
3026
- "-moz-float-edge"?: import("csstype").MozFloatEdgeProperty;
3027
- "-moz-force-broken-image-icon"?: import("csstype").MozForceBrokenImageIconProperty;
3028
- "-moz-opacity"?: import("csstype").OpacityProperty;
3029
- "-moz-outline"?: import("csstype").OutlineProperty<string | number>;
3030
- "-moz-outline-color"?: string;
3031
- "-moz-outline-radius"?: import("csstype").MozOutlineRadiusProperty<string | number>;
3032
- "-moz-outline-radius-bottomleft"?: import("csstype").MozOutlineRadiusBottomleftProperty<string | number>;
3033
- "-moz-outline-radius-bottomright"?: import("csstype").MozOutlineRadiusBottomrightProperty<string | number>;
3034
- "-moz-outline-radius-topleft"?: import("csstype").MozOutlineRadiusTopleftProperty<string | number>;
3035
- "-moz-outline-radius-topright"?: import("csstype").MozOutlineRadiusToprightProperty<string | number>;
3036
- "-moz-outline-style"?: string;
3037
- "-moz-outline-width"?: import("csstype").OutlineWidthProperty<string | number>;
3038
- "-moz-text-align-last"?: import("csstype").TextAlignLastProperty;
3039
- "-moz-text-decoration-color"?: string;
3040
- "-moz-text-decoration-line"?: string;
3041
- "-moz-text-decoration-style"?: import("csstype").TextDecorationStyleProperty;
3042
- "-moz-user-input"?: import("csstype").MozUserInputProperty;
3043
- "-ms-ime-mode"?: import("csstype").ImeModeProperty;
3044
- "-o-animation"?: import("csstype").AnimationProperty;
3045
- "-o-animation-delay"?: string;
3046
- "-o-animation-direction"?: string;
3047
- "-o-animation-duration"?: string;
3048
- "-o-animation-fill-mode"?: string;
3049
- "-o-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty;
3050
- "-o-animation-name"?: string;
3051
- "-o-animation-play-state"?: string;
3052
- "-o-animation-timing-function"?: string;
3053
- "-o-background-size"?: import("csstype").BackgroundSizeProperty<string | number>;
3054
- "-o-border-image"?: import("csstype").BorderImageProperty;
3055
- "-o-object-fit"?: import("csstype").ObjectFitProperty;
3056
- "-o-object-position"?: import("csstype").ObjectPositionProperty<string | number>;
3057
- "-o-tab-size"?: import("csstype").TabSizeProperty<string | number>;
3058
- "-o-text-overflow"?: string;
3059
- "-o-transform"?: string;
3060
- "-o-transform-origin"?: import("csstype").TransformOriginProperty<string | number>;
3061
- "-o-transition"?: string;
3062
- "-o-transition-delay"?: string;
3063
- "-o-transition-duration"?: string;
3064
- "-o-transition-property"?: string;
3065
- "-o-transition-timing-function"?: string;
3066
- "-webkit-box-align"?: import("csstype").BoxAlignProperty;
3067
- "-webkit-box-direction"?: import("csstype").BoxDirectionProperty;
3068
- "-webkit-box-flex"?: import("csstype").GlobalsNumber;
3069
- "-webkit-box-flex-group"?: import("csstype").GlobalsNumber;
3070
- "-webkit-box-lines"?: import("csstype").BoxLinesProperty;
3071
- "-webkit-box-ordinal-group"?: import("csstype").GlobalsNumber;
3072
- "-webkit-box-orient"?: import("csstype").BoxOrientProperty;
3073
- "-webkit-box-pack"?: import("csstype").BoxPackProperty;
3074
- "-webkit-scroll-snap-points-x"?: string;
3075
- "-webkit-scroll-snap-points-y"?: string;
3076
- "alignment-baseline"?: import("csstype").AlignmentBaselineProperty;
3077
- "baseline-shift"?: import("csstype").BaselineShiftProperty<string | number>;
3078
- "clip-rule"?: import("csstype").ClipRuleProperty;
3079
- "color-interpolation"?: import("csstype").ColorInterpolationProperty;
3080
- "color-rendering"?: import("csstype").ColorRenderingProperty;
3081
- "dominant-baseline"?: import("csstype").DominantBaselineProperty;
3082
- "fill-opacity"?: import("csstype").GlobalsNumber;
3083
- "fill-rule"?: import("csstype").FillRuleProperty;
3084
- "flood-color"?: string;
3085
- "flood-opacity"?: import("csstype").GlobalsNumber;
3086
- "glyph-orientation-vertical"?: import("csstype").GlyphOrientationVerticalProperty;
3087
- "lighting-color"?: string;
3088
- "marker-end"?: string;
3089
- "marker-mid"?: string;
3090
- "marker-start"?: string;
3091
- "shape-rendering"?: import("csstype").ShapeRenderingProperty;
3092
- "stop-color"?: string;
3093
- "stop-opacity"?: import("csstype").GlobalsNumber;
3094
- "stroke-dasharray"?: import("csstype").StrokeDasharrayProperty<string | number>;
3095
- "stroke-dashoffset"?: import("csstype").StrokeDashoffsetProperty<string | number>;
3096
- "stroke-linecap"?: import("csstype").StrokeLinecapProperty;
3097
- "stroke-linejoin"?: import("csstype").StrokeLinejoinProperty;
3098
- "stroke-miterlimit"?: import("csstype").GlobalsNumber;
3099
- "stroke-opacity"?: import("csstype").GlobalsNumber;
3100
- "stroke-width"?: import("csstype").StrokeWidthProperty<string | number>;
3101
- "text-anchor"?: import("csstype").TextAnchorProperty;
3102
- "vector-effect"?: import("csstype").VectorEffectProperty;
3103
- };
3104
- span: number;
3105
- }>;
3106
- getAdvanceClass: import("vue").ComputedRef<(string | {
3107
- 'basic-arrow--active': boolean;
3108
- })[]>;
3109
- toggleAdvanced: () => void;
3110
- handleBtnClick: (button: ButtonProps) => void;
3111
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "handle-method"[], "handle-method", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
38
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "handle-method"[], "handle-method", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3112
39
  mode: {
3113
- type: PropType<"search" | "dialog">;
40
+ type: globalThis.PropType<"search" | "dialog">;
3114
41
  default: string;
3115
42
  };
3116
43
  show: {
@@ -3126,7 +53,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3126
53
  default: number;
3127
54
  };
3128
55
  buttonList: {
3129
- type: PropType<ButtonProps[]>;
56
+ type: globalThis.PropType<ButtonProps[]>;
3130
57
  default: any[];
3131
58
  };
3132
59
  authPrefix: {
@@ -3140,7 +67,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
3140
67
  type: ObjectConstructor;
3141
68
  };
3142
69
  style: {
3143
- type: PropType<CSSProperties>;
70
+ type: globalThis.PropType<CSSProperties>;
3144
71
  default: () => void;
3145
72
  };
3146
73
  }>> & {
@@ -3149,9 +76,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
3149
76
  style: CSSProperties;
3150
77
  mode: "search" | "dialog";
3151
78
  show: boolean;
3152
- showAdvancedButton: boolean;
3153
79
  minShowColumn: number;
3154
- buttonList: ButtonProps[];
80
+ showAdvancedButton: boolean;
3155
81
  isAdvanced: boolean;
3156
- }>;
3157
- export default _sfc_main;
82
+ buttonList: ButtonProps[];
83
+ }, {}>;
84
+ export default _default;