cnhis-design-vue 3.1.37-beta.2 → 3.1.37

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 (385) hide show
  1. package/README.md +123 -123
  2. package/es/components/annotation-edit/index.d.ts +17 -0
  3. package/es/components/annotation-edit/src/AnnotationEdit.d.ts +16 -0
  4. package/es/components/big-table/index.d.ts +1076 -0
  5. package/es/components/big-table/src/BigTable.vue.d.ts +1066 -0
  6. package/es/components/big-table/src/bigTableEmits.d.ts +2 -0
  7. package/es/components/big-table/src/bigTableProps.d.ts +211 -0
  8. package/es/components/big-table/src/bigTableState.d.ts +58 -0
  9. package/es/components/big-table/src/components/NoData.vue.d.ts +49 -0
  10. package/es/components/big-table/src/components/edit-form/edit-date.d.ts +34 -0
  11. package/es/components/big-table/src/components/edit-form/edit-input.d.ts +43 -0
  12. package/es/components/big-table/src/components/edit-form/edit-select-table.d.ts +35 -0
  13. package/es/components/big-table/src/components/edit-form/edit-select.d.ts +35 -0
  14. package/es/components/big-table/src/components/edit-form/edit-separate.vue.d.ts +134 -0
  15. package/es/components/big-table/src/components/edit-form/edit-time.d.ts +43 -0
  16. package/es/components/big-table/src/components/edit-form/useCommon.d.ts +5 -0
  17. package/es/components/big-table/src/components/input-button.vue.d.ts +10 -0
  18. package/es/components/big-table/src/components/separate.vue.d.ts +41 -0
  19. package/es/components/big-table/src/constants/index.d.ts +3 -0
  20. package/es/components/big-table/src/hooks/index.d.ts +9 -0
  21. package/es/components/big-table/src/hooks/useAnchor.d.ts +7 -0
  22. package/es/components/big-table/src/hooks/useAnnotation.d.ts +4 -0
  23. package/es/components/big-table/src/hooks/useBatchEditing.d.ts +17 -0
  24. package/es/components/big-table/src/hooks/useEdit.d.ts +339 -0
  25. package/es/components/big-table/src/hooks/useEvent.d.ts +6 -0
  26. package/es/components/big-table/src/hooks/useFormat.d.ts +30 -0
  27. package/es/components/big-table/src/hooks/useNestTable.d.ts +8 -0
  28. package/es/components/big-table/src/hooks/useSeparateRow.d.ts +40 -0
  29. package/es/components/big-table/src/hooks/useTableParse.d.ts +6 -0
  30. package/es/components/big-table/src/utils.d.ts +61 -0
  31. package/es/components/bpmn-workflow/index.d.ts +72 -0
  32. package/es/components/bpmn-workflow/src/BpmnWorkflow.d.ts +0 -0
  33. package/es/components/bpmn-workflow/src/BpmnWorkflow.vue.d.ts +75 -0
  34. package/es/components/bpmn-workflow/src/custom/customModeler/customBpmn/BpmnRenderer.d.ts +75 -0
  35. package/es/components/bpmn-workflow/src/custom/customModeler/customBpmn/CustomContextPadProvider.d.ts +24 -0
  36. package/es/components/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPalette.d.ts +19 -0
  37. package/es/components/bpmn-workflow/src/custom/customModeler/customBpmn/CustomPathMap.d.ts +70 -0
  38. package/es/components/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRenderer.d.ts +21 -0
  39. package/es/components/bpmn-workflow/src/custom/customModeler/customBpmn/CustomRules.d.ts +12 -0
  40. package/es/components/bpmn-workflow/src/custom/customModeler/customBpmn/index.d.ts +16 -0
  41. package/es/components/bpmn-workflow/src/custom/customModeler/index.d.ts +6 -0
  42. package/es/components/bpmn-workflow/src/custom/customOtherModule/CustomPopupMenu.d.ts +5 -0
  43. package/es/components/bpmn-workflow/src/custom/customOtherModule/customViewerRenderer.d.ts +12 -0
  44. package/es/components/bpmn-workflow/src/custom/customOtherModule/zoomScroll.d.ts +5 -0
  45. package/es/components/bpmn-workflow/src/custom/customRules/no-task.d.ts +4 -0
  46. package/es/components/bpmn-workflow/src/custom/customTranslate/customTranslate.d.ts +1 -0
  47. package/es/components/bpmn-workflow/src/custom/customTranslate/zh.d.ts +226 -0
  48. package/es/components/bpmn-workflow/types/BpmnViewer.d.ts +1 -0
  49. package/es/components/bpmn-workflow/types/ModelingModule.d.ts +1 -0
  50. package/es/components/bpmn-workflow/types/MoveCanvasModule.d.ts +1 -0
  51. package/es/components/button-print/index.d.ts +1901 -0
  52. package/es/components/button-print/src/ButtonPrint.vue.d.ts +1912 -0
  53. package/es/components/button-print/src/components/EditFormat.vue.d.ts +1244 -0
  54. package/es/components/button-print/src/components/IdentityVerification.vue.d.ts +1632 -0
  55. package/es/components/button-print/src/components/Preview.vue.d.ts +41 -0
  56. package/es/components/button-print/src/utils/browserPrint.d.ts +2 -0
  57. package/es/components/button-print/src/utils/dialog.d.ts +12 -0
  58. package/es/components/button-print/src/utils/index.d.ts +2 -0
  59. package/es/components/button-print/src/utils/print.d.ts +56 -0
  60. package/es/components/editor/index.d.ts +30 -0
  61. package/es/components/editor/src/Editor.d.ts +30 -0
  62. package/es/components/fabric-chart/index.d.ts +205 -0
  63. package/es/components/fabric-chart/src/FabricChart.vue.d.ts +207 -0
  64. package/es/components/fabric-chart/src/components/PopupMenu.d.ts +46 -0
  65. package/es/components/fabric-chart/src/components/PopupTip.vue.d.ts +64 -0
  66. package/es/components/fabric-chart/src/components/useStyle.d.ts +7 -0
  67. package/es/components/fabric-chart/src/hooks/constant.d.ts +54 -0
  68. package/es/components/fabric-chart/src/hooks/index.d.ts +11 -0
  69. package/es/components/fabric-chart/src/hooks/useBirthProcess.d.ts +9 -0
  70. package/es/components/fabric-chart/src/hooks/useBirthProcessChart.d.ts +25 -0
  71. package/es/components/fabric-chart/src/hooks/useBottom.d.ts +4 -0
  72. package/es/components/fabric-chart/src/hooks/useCenter.d.ts +16 -0
  73. package/es/components/fabric-chart/src/hooks/useCommon.d.ts +8 -0
  74. package/es/components/fabric-chart/src/hooks/useCumputedPoint.d.ts +14 -0
  75. package/es/components/fabric-chart/src/hooks/useDraw.d.ts +44 -0
  76. package/es/components/fabric-chart/src/hooks/useEvent.d.ts +7 -0
  77. package/es/components/fabric-chart/src/hooks/useGrid.d.ts +4 -0
  78. package/es/components/fabric-chart/src/hooks/useLeft.d.ts +7 -0
  79. package/es/components/fabric-chart/src/hooks/useOther.d.ts +4 -0
  80. package/es/components/fabric-chart/src/hooks/useRight.d.ts +4 -0
  81. package/es/components/fabric-chart/src/hooks/useShadow.d.ts +6 -0
  82. package/es/components/fabric-chart/src/hooks/useTemperatureChart.d.ts +25 -0
  83. package/es/components/fabric-chart/src/hooks/useTop.d.ts +4 -0
  84. package/es/components/fabric-chart/src/interface.d.ts +153 -0
  85. package/es/components/fabric-chart/src/utils/index.d.ts +6823 -0
  86. package/es/components/fabric-chart/src/utils/utils.d.ts +13 -0
  87. package/es/components/field-set/index.d.ts +243 -0
  88. package/es/components/field-set/src/FieldSet.vue.d.ts +197 -0
  89. package/es/components/form-config/index.d.ts +3343 -0
  90. package/es/components/form-config/src/FormConfig.vue.d.ts +3344 -0
  91. package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +675 -0
  92. package/es/components/form-config/src/components/FormConfigDragDisplay.vue.d.ts +108 -0
  93. package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +2396 -0
  94. package/es/components/form-config/src/components/FormConfigMaterialItem.d.ts +14 -0
  95. package/es/components/form-config/src/components/index.d.ts +5 -0
  96. package/es/components/form-config/src/components/renderer/CloseButton.vue.d.ts +27 -0
  97. package/es/components/form-config/src/components/renderer/ComplexNode.vue.d.ts +169 -0
  98. package/es/components/form-config/src/components/renderer/DefaultNode.vue.d.ts +71 -0
  99. package/es/components/form-config/src/components/renderer/index.d.ts +4 -0
  100. package/es/components/form-config/src/constants/index.d.ts +65 -0
  101. package/es/components/form-config/src/hooks/index.d.ts +3 -0
  102. package/es/components/form-config/src/hooks/useConfigurationField.d.ts +8 -0
  103. package/es/components/form-config/src/hooks/useDataNormalize.d.ts +5 -0
  104. package/es/components/form-config/src/hooks/usePresetRenderer.d.ts +4 -0
  105. package/es/components/form-config/src/hooks/useSortalbeConfig.d.ts +14 -0
  106. package/es/components/form-config/src/types/index.d.ts +39 -0
  107. package/es/components/form-config/src/utils/index.d.ts +7 -0
  108. package/es/components/form-render/index.d.ts +657 -0
  109. package/es/components/form-render/src/FormRender.vue.d.ts +650 -0
  110. package/es/components/form-render/src/FormRenderWrapper.vue.d.ts +654 -0
  111. package/es/components/form-render/src/components/renderer/checkbox.d.ts +90 -0
  112. package/es/components/form-render/src/components/renderer/combination.d.ts +51 -0
  113. package/es/components/form-render/src/components/renderer/complex.d.ts +34 -0
  114. package/es/components/form-render/src/components/renderer/date.d.ts +52 -0
  115. package/es/components/form-render/src/components/renderer/formItem.d.ts +15 -0
  116. package/es/components/form-render/src/components/renderer/index.d.ts +3 -0
  117. package/es/components/form-render/src/components/renderer/input.d.ts +23 -0
  118. package/es/components/form-render/src/components/renderer/inputGroup.d.ts +11 -0
  119. package/es/components/form-render/src/components/renderer/inputNumber.d.ts +31 -0
  120. package/es/components/form-render/src/components/renderer/jsonCombination/hooks/useDeepValidate.d.ts +5 -0
  121. package/es/components/form-render/src/components/renderer/jsonCombination/index.d.ts +44 -0
  122. package/es/components/form-render/src/components/renderer/levelSearchCascader.d.ts +91 -0
  123. package/es/components/form-render/src/components/renderer/lineBar/FormCollapse.vue.d.ts +69 -0
  124. package/es/components/form-render/src/components/renderer/lineBar/index.d.ts +68 -0
  125. package/es/components/form-render/src/components/renderer/radio.d.ts +94 -0
  126. package/es/components/form-render/src/components/renderer/remoteSearch.d.ts +41 -0
  127. package/es/components/form-render/src/components/renderer/searchCascade.d.ts +58 -0
  128. package/es/components/form-render/src/components/renderer/select.d.ts +140 -0
  129. package/es/components/form-render/src/components/renderer/simpleComponent.d.ts +18 -0
  130. package/es/components/form-render/src/components/renderer/slider.d.ts +11 -0
  131. package/es/components/form-render/src/components/renderer/switch.d.ts +23 -0
  132. package/es/components/form-render/src/components/renderer/textarea.d.ts +11 -0
  133. package/es/components/form-render/src/components/tooltipMessage.vue.d.ts +13 -0
  134. package/es/components/form-render/src/constants/index.d.ts +54 -0
  135. package/es/components/form-render/src/hooks/index.d.ts +15 -0
  136. package/es/components/form-render/src/hooks/useAnchor.d.ts +16 -0
  137. package/es/components/form-render/src/hooks/useAsyncQueue.d.ts +47 -0
  138. package/es/components/form-render/src/hooks/useBusinessBinding.d.ts +27 -0
  139. package/es/components/form-render/src/hooks/useChangeContext.d.ts +11 -0
  140. package/es/components/form-render/src/hooks/useCommonInjection.d.ts +15 -0
  141. package/es/components/form-render/src/hooks/useCommonLog.d.ts +3 -0
  142. package/es/components/form-render/src/hooks/useFieldListAdaptor.d.ts +64 -0
  143. package/es/components/form-render/src/hooks/useFieldNormalize.d.ts +5 -0
  144. package/es/components/form-render/src/hooks/useFieldVisitor.d.ts +4 -0
  145. package/es/components/form-render/src/hooks/useFormContext.d.ts +11 -0
  146. package/es/components/form-render/src/hooks/useFormField.d.ts +5 -0
  147. package/es/components/form-render/src/hooks/useFormItemDeps.d.ts +11 -0
  148. package/es/components/form-render/src/hooks/useFormRenderLifeCycle.d.ts +13 -0
  149. package/es/components/form-render/src/hooks/useFormRenderOptions.d.ts +39 -0
  150. package/es/components/form-render/src/hooks/useFormRequest.d.ts +26 -0
  151. package/es/components/form-render/src/hooks/useFormValidator.d.ts +6 -0
  152. package/es/components/form-render/src/hooks/useLowCodeReactions.d.ts +7 -0
  153. package/es/components/form-render/src/hooks/useNuiThemeOverrides.d.ts +4 -0
  154. package/es/components/form-render/src/hooks/usePresetScope.d.ts +6 -0
  155. package/es/components/form-render/src/types/fieldItem.d.ts +265 -0
  156. package/es/components/form-render/src/types/index.d.ts +101 -0
  157. package/es/components/form-render/src/utils/business.d.ts +13 -0
  158. package/es/components/form-render/src/utils/dom.d.ts +13 -0
  159. package/es/components/form-render/src/utils/index.d.ts +38 -0
  160. package/es/components/form-render/src/utils/schema.d.ts +83 -0
  161. package/es/components/grid/index.d.ts +3 -0
  162. package/es/components/grid/src/Grid.d.ts +2 -0
  163. package/es/components/grid/src/hooks.d.ts +1 -0
  164. package/es/components/iho-table/index.d.ts +4647 -0
  165. package/es/components/iho-table/src/IhoTable.vue.d.ts +4646 -0
  166. package/es/components/iho-table/src/constants/index.d.ts +80 -0
  167. package/es/components/iho-table/src/hooks/export.d.ts +2 -0
  168. package/es/components/iho-table/src/hooks/index.d.ts +2 -0
  169. package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +93 -0
  170. package/es/components/iho-table/src/hooks/tapHooks/useConfigHooks.d.ts +31 -0
  171. package/es/components/iho-table/src/hooks/tapHooks/useDataHooks.d.ts +16 -0
  172. package/es/components/iho-table/src/hooks/tapHooks/useDomInsertHooks.d.ts +15 -0
  173. package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.d.ts +251 -0
  174. package/es/components/iho-table/src/hooks/tapHooks/useExposeHooks.d.ts +13 -0
  175. package/es/components/iho-table/src/hooks/tapHooks/useFieldHooks.d.ts +25 -0
  176. package/es/components/iho-table/src/hooks/tapHooks/useSetupHooks.d.ts +10 -0
  177. package/es/components/iho-table/src/hooks/useColumnConfigAdaptor.d.ts +11 -0
  178. package/es/components/iho-table/src/hooks/useTableContext.d.ts +9 -0
  179. package/es/components/iho-table/src/hooks/useTablePlugin.d.ts +8 -0
  180. package/es/components/iho-table/src/plugins/anchorPlugin/index.d.ts +1 -0
  181. package/es/components/iho-table/src/plugins/anchorPlugin/tableAnchor.d.ts +2 -0
  182. package/es/components/iho-table/src/plugins/anchorPlugin/useAnchor.d.ts +13 -0
  183. package/es/components/iho-table/src/plugins/defaultConfigPlugin/index.d.ts +1 -0
  184. package/es/components/iho-table/src/plugins/filterPlugin/filter.vue.d.ts +169 -0
  185. package/es/components/iho-table/src/plugins/filterPlugin/index.d.ts +1 -0
  186. package/es/components/iho-table/src/plugins/filterPlugin/types.d.ts +7 -0
  187. package/es/components/iho-table/src/plugins/index.d.ts +3 -0
  188. package/es/components/iho-table/src/plugins/keyboardEventPlugin/index.d.ts +1 -0
  189. package/es/components/iho-table/src/plugins/lowCodeFieldAdaptorPlugin/index.d.ts +1 -0
  190. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/editDate.vue.d.ts +96 -0
  191. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/dateRendererPlugin/index.d.ts +1 -0
  192. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/hooks/useAutoFocus.d.ts +5 -0
  193. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/inputRendererPlugin.d.ts +1 -0
  194. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/numberRendererPlugin.d.ts +1 -0
  195. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/editSelect.d.ts +43 -0
  196. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/index.d.ts +1 -0
  197. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/selectRendererPlugin/selectUtils.d.ts +2 -0
  198. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/editSeparate.vue.d.ts +94 -0
  199. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/index.d.ts +1 -0
  200. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/separateRendererPlugin/separateUtils.d.ts +12 -0
  201. package/es/components/iho-table/src/plugins/rendererPlugins/editableWidgets/timeRendererPlugin.d.ts +1 -0
  202. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/checkRendererPlugin.d.ts +1 -0
  203. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/colorRendererPlugin.d.ts +1 -0
  204. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/defaultRendererPlugin.d.ts +1 -0
  205. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/labelRendererPlugin.d.ts +1 -0
  206. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/pictureRendererPlugin.d.ts +2 -0
  207. package/es/components/iho-table/src/plugins/rendererPlugins/widgets/seqRendererPlugin.d.ts +1 -0
  208. package/es/components/iho-table/src/plugins/rowClickPlugin/index.d.ts +1 -0
  209. package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/index.d.ts +1 -0
  210. package/es/components/iho-table/src/plugins/rowGroupSettingPlugin/rowGroupUtils.d.ts +11 -0
  211. package/es/components/iho-table/src/plugins/virtualTreePlugin/index.d.ts +1 -0
  212. package/es/components/iho-table/src/types/index.d.ts +108 -0
  213. package/es/components/iho-table/src/types/pluginType.d.ts +173 -0
  214. package/es/components/iho-table/src/utils/index.d.ts +49 -0
  215. package/es/components/index.d.ts +37 -0
  216. package/es/components/info-header/index.d.ts +415 -0
  217. package/es/components/info-header/src/HiddenContent.vue.d.ts +86 -0
  218. package/es/components/info-header/src/InfoEllipsis.vue.d.ts +33 -0
  219. package/es/components/info-header/src/InfoHeader.vue.d.ts +405 -0
  220. package/es/components/insurance-sdk/index.d.ts +1 -0
  221. package/es/components/insurance-sdk/src/constants/index.d.ts +161 -0
  222. package/es/components/insurance-sdk/src/utils/index.d.ts +1 -0
  223. package/es/components/insurance-sdk/src/utils/insurance.d.ts +260 -0
  224. package/es/components/keyboard/index.d.ts +334 -0
  225. package/es/components/keyboard/src/Keyboard.vue.d.ts +335 -0
  226. package/es/components/keyboard/src/components/InputNumber.vue.d.ts +64 -0
  227. package/es/components/keyboard/src/components/NumberPanel.vue.d.ts +191 -0
  228. package/es/components/keyboard/src/utils/index.d.ts +1 -0
  229. package/es/components/map/index.d.ts +75 -0
  230. package/es/components/map/src/Map.vue.d.ts +75 -0
  231. package/es/components/recommend-search/index.d.ts +815 -0
  232. package/es/components/recommend-search/src/RecommendSearch.vue.d.ts +817 -0
  233. package/es/components/recommend-search/src/components/BaseSearch.vue.d.ts +143 -0
  234. package/es/components/recommend-search/src/components/RecommendInput.vue.d.ts +341 -0
  235. package/es/components/recommend-search/src/components/RecommendMenu.vue.d.ts +63 -0
  236. package/es/components/recommend-search/src/components/RecommendSelect.vue.d.ts +300 -0
  237. package/es/components/recommend-search/src/constant/index.d.ts +4 -0
  238. package/es/components/recommend-search/src/types/index.d.ts +9 -0
  239. package/es/components/scale-view/index.d.ts +1400 -0
  240. package/es/components/scale-view/src/ScaleView.vue.d.ts +1222 -0
  241. package/es/components/scale-view/src/components/AnswerParse.vue.d.ts +70 -0
  242. package/es/components/scale-view/src/components/EvaluateCountdown.vue.d.ts +154 -0
  243. package/es/components/scale-view/src/components/EvaluatePage.vue.d.ts +110 -0
  244. package/es/components/scale-view/src/components/NoData.vue.d.ts +49 -0
  245. package/es/components/scale-view/src/components/ScaleScore.d.ts +23 -0
  246. package/es/components/scale-view/src/components/composables/choose-common.d.ts +11 -0
  247. package/es/components/scale-view/src/components/formitem/address.d.ts +3992 -0
  248. package/es/components/scale-view/src/components/formitem/r-address.d.ts +34 -0
  249. package/es/components/scale-view/src/components/formitem/r-cascader.d.ts +43 -0
  250. package/es/components/scale-view/src/components/formitem/r-checkbox.d.ts +43 -0
  251. package/es/components/scale-view/src/components/formitem/r-collection.d.ts +32 -0
  252. package/es/components/scale-view/src/components/formitem/r-datetime.d.ts +34 -0
  253. package/es/components/scale-view/src/components/formitem/r-input.d.ts +34 -0
  254. package/es/components/scale-view/src/components/formitem/r-map.d.ts +52 -0
  255. package/es/components/scale-view/src/components/formitem/r-radio.d.ts +43 -0
  256. package/es/components/scale-view/src/components/formitem/r-select.d.ts +61 -0
  257. package/es/components/scale-view/src/components/formitem/r-sign.d.ts +34 -0
  258. package/es/components/scale-view/src/components/formitem/r-upload.d.ts +52 -0
  259. package/es/components/scale-view/src/components/formitem/sign-com.d.ts +63 -0
  260. package/es/components/scale-view/src/components/formitem/standard-modal.d.ts +80 -0
  261. package/es/components/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue.d.ts +87 -0
  262. package/es/components/scale-view/src/hooks/scaleview-computed.d.ts +43 -0
  263. package/es/components/scale-view/src/hooks/scaleview-init.d.ts +3 -0
  264. package/es/components/scale-view/src/hooks/scaleview-props.d.ts +115 -0
  265. package/es/components/scale-view/src/hooks/scaleview-state.d.ts +34 -0
  266. package/es/components/scale-view/src/hooks/scaleview-submit.d.ts +3 -0
  267. package/es/components/scale-view/src/hooks/scaleview-validate.d.ts +3 -0
  268. package/es/components/scale-view/src/hooks/use-component.d.ts +1763 -0
  269. package/es/components/scale-view/src/hooks/use-evaluate.d.ts +21 -0
  270. package/es/components/scale-view/src/hooks/use-event.d.ts +4 -0
  271. package/es/components/scale-view/src/hooks/use-noData.d.ts +9 -0
  272. package/es/components/scale-view/src/utils/judge-types.d.ts +5 -0
  273. package/es/components/search-cascader/index.d.ts +233 -0
  274. package/es/components/search-cascader/src/SearchCascader.vue.d.ts +235 -0
  275. package/es/components/search-cascader/src/components/SearchMenu.d.ts +50 -0
  276. package/es/components/search-cascader/src/components/index.d.ts +1 -0
  277. package/es/components/search-cascader/src/constants/index.d.ts +5 -0
  278. package/es/components/search-cascader/src/hooks/index.d.ts +1 -0
  279. package/es/components/search-cascader/src/hooks/useCssVariable.d.ts +3 -0
  280. package/es/components/search-cascader/src/utils/index.d.ts +2 -0
  281. package/es/components/select-label/index.d.ts +937 -0
  282. package/es/components/select-label/src/LabelFormContent.vue.d.ts +367 -0
  283. package/es/components/select-label/src/SelectLabel.vue.d.ts +571 -0
  284. package/es/components/select-label/src/components/label-classify.vue.d.ts +122 -0
  285. package/es/components/select-person/index.d.ts +323 -0
  286. package/es/components/select-person/src/SelectPerson.vue.d.ts +281 -0
  287. package/es/components/select-person/src/utils/index.d.ts +3 -0
  288. package/es/components/shortcut-provider/index.d.ts +21 -0
  289. package/es/components/shortcut-provider/src/ShortcutProvider.vue.d.ts +19 -0
  290. package/es/components/shortcut-provider/src/constants/index.d.ts +7 -0
  291. package/es/components/shortcut-provider/src/hooks/index.d.ts +2 -0
  292. package/es/components/shortcut-provider/src/hooks/useShortcutSignature.d.ts +4 -0
  293. package/es/components/shortcut-provider/src/hooks/useShortcuts.d.ts +33 -0
  294. package/es/components/shortcut-provider/src/types/index.d.ts +43 -0
  295. package/es/components/shortcut-provider/src/utils/index.d.ts +10 -0
  296. package/es/components/shortcut-setter/index.d.ts +2384 -0
  297. package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +2386 -0
  298. package/es/components/shortcut-setter/src/ShortcutSetterItem.vue.d.ts +99 -0
  299. package/es/components/shortcut-setter/src/types/index.d.ts +6 -0
  300. package/es/components/steps-wheel/index.d.ts +115 -0
  301. package/es/components/steps-wheel/src/StepsWheel.vue.d.ts +114 -0
  302. package/es/components/time-line/index.d.ts +109 -0
  303. package/es/components/time-line/src/TimeLine.vue.d.ts +85 -0
  304. package/es/components/vod-chunk-upload/index.d.ts +232 -0
  305. package/es/components/vod-chunk-upload/src/chunk-upload-new.vue.d.ts +196 -0
  306. package/es/components/vod-chunk-upload/src/hooks/upload-computed.d.ts +11 -0
  307. package/es/components/vod-chunk-upload/src/hooks/upload-data.d.ts +63 -0
  308. package/es/components/vod-chunk-upload/src/hooks/vod-computed.d.ts +10 -0
  309. package/es/components/vod-chunk-upload/src/hooks/vod-data.d.ts +23 -0
  310. package/es/components/vod-chunk-upload/src/vod-chunk-upload/index.d.ts +2 -0
  311. package/es/components/vod-chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +230 -0
  312. package/es/components/vod-chunk-upload/src/vod-upload-modal.d.ts +25 -0
  313. package/es/shared/assets/img/failure.js +1 -1
  314. package/es/shared/assets/img/failure.png.js +1 -1
  315. package/es/shared/assets/img/icon-asc.js +1 -1
  316. package/es/shared/assets/img/icon-desc.js +1 -1
  317. package/es/shared/assets/img/no-permission.js +1 -1
  318. package/es/shared/assets/img/no-permission.png.js +1 -1
  319. package/es/shared/assets/img/nodata.js +1 -1
  320. package/es/shared/assets/img/nodata.png.js +1 -1
  321. package/es/shared/assets/img/notfound.js +1 -1
  322. package/es/shared/assets/img/notfound.png.js +1 -1
  323. package/es/shared/assets/img/qr.js +1 -1
  324. package/es/shared/assets/img/qr.png.js +1 -1
  325. package/es/shared/assets/img/success.js +1 -1
  326. package/es/shared/assets/img/success.png.js +1 -1
  327. package/es/shared/assets/img/video.js +1 -1
  328. package/es/shared/assets/img/video.png.js +1 -1
  329. package/es/shared/assets/img/video_default_cover.js +1 -1
  330. package/es/shared/assets/img/video_default_cover.png.js +1 -1
  331. package/es/shared/assets/img/video_hover.js +1 -1
  332. package/es/shared/assets/img/video_play_hover.js +1 -1
  333. package/es/shared/assets/img/xb_big.js +1 -1
  334. package/es/shared/assets/img/xb_big.png.js +1 -1
  335. package/es/shared/assets/img/xb_small.js +1 -1
  336. package/es/shared/assets/img/xb_small.png.js +1 -1
  337. package/es/shared/components/SelectPage/SelectPage.vue.d.ts +51 -0
  338. package/es/shared/components/SelectPage/index.d.ts +2 -0
  339. package/es/shared/components/SlotRender/SlotRender.d.ts +20 -0
  340. package/es/shared/components/SlotRender/index.d.ts +2 -0
  341. package/es/shared/components/SvgIcon/SvgIcon.vue.d.ts +43 -0
  342. package/es/shared/components/SvgIcon/index.d.ts +2 -0
  343. package/es/shared/components/TextOverTooltip/TextOverTooltip.vue.d.ts +87 -0
  344. package/es/shared/components/TextOverTooltip/index.d.ts +2 -0
  345. package/es/shared/components/VueDraggable/index.d.ts +2 -0
  346. package/es/shared/components/VueDraggable/src/core/componentBuilderHelper.d.ts +9 -0
  347. package/es/shared/components/VueDraggable/src/core/componentStructure.d.ts +22 -0
  348. package/es/shared/components/VueDraggable/src/core/renderHelper.d.ts +7 -0
  349. package/es/shared/components/VueDraggable/src/core/sortableEvents.d.ts +10 -0
  350. package/es/shared/components/VueDraggable/src/util/console.d.ts +1 -0
  351. package/es/shared/components/VueDraggable/src/util/htmlHelper.d.ts +2 -0
  352. package/es/shared/components/VueDraggable/src/util/string.d.ts +1 -0
  353. package/es/shared/components/VueDraggable/src/util/tags.d.ts +3 -0
  354. package/es/shared/components/VueDraggable/src/vuedraggable.d.ts +86 -0
  355. package/es/shared/components/no-data/NoData.vue.d.ts +49 -0
  356. package/es/shared/components/no-data/index.d.ts +2 -0
  357. package/es/shared/components/player-vod/index.vue.d.ts +2 -0
  358. package/es/shared/components/player-vod/player.d.ts +17 -0
  359. package/es/shared/components/player-vod/video-list.d.ts +32 -0
  360. package/es/shared/components/player-vod/video-modal.d.ts +54 -0
  361. package/es/shared/global/variable.d.ts +1 -0
  362. package/es/shared/index.d.ts +0 -0
  363. package/es/shared/types/index.d.ts +22 -0
  364. package/es/shared/utils/anime.d.ts +35 -0
  365. package/es/shared/utils/colorLog.d.ts +31 -0
  366. package/es/shared/utils/index.d.ts +16 -0
  367. package/es/shared/utils/loadViewer.d.ts +2 -0
  368. package/es/shared/utils/tapable/AsyncParallelBailHook.d.ts +3 -0
  369. package/es/shared/utils/tapable/AsyncParallelHook.d.ts +3 -0
  370. package/es/shared/utils/tapable/AsyncSeriesBailHook.d.ts +3 -0
  371. package/es/shared/utils/tapable/AsyncSeriesHook.d.ts +3 -0
  372. package/es/shared/utils/tapable/AsyncSeriesLoopHook.d.ts +3 -0
  373. package/es/shared/utils/tapable/AsyncSeriesWaterfallHook.d.ts +3 -0
  374. package/es/shared/utils/tapable/Hook.d.ts +50 -0
  375. package/es/shared/utils/tapable/HookCodeFactory.d.ts +58 -0
  376. package/es/shared/utils/tapable/HookMap.d.ts +11 -0
  377. package/es/shared/utils/tapable/MultiHook.d.ts +12 -0
  378. package/es/shared/utils/tapable/SyncBailHook.d.ts +3 -0
  379. package/es/shared/utils/tapable/SyncHook.d.ts +3 -0
  380. package/es/shared/utils/tapable/SyncLoopHook.d.ts +3 -0
  381. package/es/shared/utils/tapable/SyncWaterfallHook.d.ts +3 -0
  382. package/es/shared/utils/tapable/index.d.ts +139 -0
  383. package/es/shared/utils/utilExpand.d.ts +1 -0
  384. package/es/shared/utils/vexutils.d.ts +10 -0
  385. package/package.json +2 -2
@@ -0,0 +1,2386 @@
1
+ import { Func } from '../../../../es/shared/types';
2
+ import { ShortcutSignatureInfo } from '../../../../es/components/shortcut-provider';
3
+ import { FieldItem } from '../../../../es/components/form-render';
4
+ import { Component } from 'vue';
5
+ declare const _default: import("vue").DefineComponent<{
6
+ glob: {
7
+ type: BooleanConstructor;
8
+ default: boolean;
9
+ };
10
+ scope: {
11
+ type: (SymbolConstructor | StringConstructor)[];
12
+ };
13
+ }, {
14
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
15
+ glob: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ scope: {
20
+ type: (SymbolConstructor | StringConstructor)[];
21
+ };
22
+ }>> & {
23
+ onError?: ((...args: any[]) => any) | undefined;
24
+ onUpdate?: ((...args: any[]) => any) | undefined;
25
+ }>>;
26
+ emit: (event: "error" | "update", ...args: any[]) => void;
27
+ components: Record<string, Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
28
+ key: import("vue").Ref<number>;
29
+ scope: import("vue").ComputedRef<string | symbol | undefined>;
30
+ manager: {
31
+ register: (shortcut: import("../../../../es/components/shortcut-provider").ShortcutOption) => {
32
+ stop: () => void;
33
+ signature: () => string;
34
+ };
35
+ traverse: () => Omit<import("../../../../es/components/shortcut-provider").ShortcutItem, "callback">[];
36
+ clear: () => void;
37
+ update: (key: string, info: KeyboardEvent | Partial<ShortcutSignatureInfo>) => Promise<void>;
38
+ updateManagerDisabled: (disabled?: boolean | undefined) => void;
39
+ };
40
+ fieldList: import("vue").Ref<{
41
+ [x: string]: any;
42
+ val_key: string;
43
+ html_type: string;
44
+ annotation?: boolean | undefined;
45
+ val_key_unit?: string | undefined;
46
+ is_edit?: import("../../../../es/components/form-render").FormCommonState | undefined;
47
+ elem_width?: number | undefined;
48
+ is_show?: import("../../../../es/components/form-render").FormCommonState | undefined;
49
+ is_null?: import("../../../../es/components/form-render").FormCommonState | undefined;
50
+ name?: string | undefined;
51
+ alias?: string | undefined;
52
+ default_val?: any;
53
+ is_empty?: import("../../../../es/components/form-render").FormCommonState | undefined;
54
+ hide_title?: import("../../../../es/components/form-render").FormCommonState | undefined;
55
+ placeholder?: string | undefined;
56
+ validate?: {
57
+ [x: string]: any;
58
+ obj_type?: ("password" | "sex" | "age" | "email" | "id_card" | "age_unit" | "mobile" | "telephone" | "birthday" | "bank_card" | "website" | "gestational_weeks" | "gestational_stage" | "customer_name") | undefined;
59
+ vali_obj?: string | undefined;
60
+ max_value?: string | number | undefined;
61
+ min_value?: string | number | undefined;
62
+ min_length?: string | number | undefined;
63
+ max_length?: string | number | undefined;
64
+ decimal_length?: string | number | undefined;
65
+ regular_expression?: string | {
66
+ exec: (string: string) => RegExpExecArray | null;
67
+ test: (string: string) => boolean;
68
+ readonly source: string;
69
+ readonly global: boolean;
70
+ readonly ignoreCase: boolean;
71
+ readonly multiline: boolean;
72
+ lastIndex: number;
73
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
74
+ readonly flags: string;
75
+ readonly sticky: boolean;
76
+ readonly unicode: boolean;
77
+ readonly dotAll: boolean;
78
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
79
+ [Symbol.replace]: {
80
+ (string: string, replaceValue: string): string;
81
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
82
+ };
83
+ [Symbol.search]: (string: string) => number;
84
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
85
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
86
+ } | undefined;
87
+ regular_error_tip?: string | undefined;
88
+ } | undefined;
89
+ option?: {
90
+ text: string;
91
+ value: any;
92
+ keyword?: string | undefined;
93
+ disabled?: boolean | undefined;
94
+ children?: any[] | undefined;
95
+ }[] | undefined;
96
+ multi_select?: import("../../../../es/components/form-render").FormCommonState | undefined;
97
+ multi_select_value?: string | number | undefined;
98
+ wordbook?: {
99
+ level_num?: number | undefined;
100
+ id?: string | undefined;
101
+ name?: string | undefined;
102
+ render_key?: string[] | undefined;
103
+ search_key?: string[] | undefined;
104
+ primary_key?: string | undefined;
105
+ type?: string | undefined;
106
+ value_key?: string | undefined;
107
+ level_key?: string | undefined;
108
+ link_key?: string | undefined;
109
+ link_key_split?: string | undefined;
110
+ show_key?: string[] | undefined;
111
+ conObj?: import("../../../../es/shared/types").AnyObject[] | undefined;
112
+ conObjFirstLevel?: import("../../../../es/shared/types").AnyObject[] | undefined;
113
+ } | undefined;
114
+ open?: {
115
+ value?: any;
116
+ describe?: string | undefined;
117
+ } | undefined;
118
+ close?: {
119
+ value?: any;
120
+ describe?: string | undefined;
121
+ } | undefined;
122
+ date_format?: string | undefined;
123
+ step_length?: string | number | undefined;
124
+ urlConfig?: {
125
+ url: string;
126
+ method?: import("../../../../es/components/form-render").FormRequestType | undefined;
127
+ nameKey?: string | undefined;
128
+ valueKey?: string | undefined;
129
+ params?: import("../../../../es/shared/types").AnyObject | undefined;
130
+ dependKey?: string | Record<string, string> | (string | {
131
+ paramName: string;
132
+ paramValue?: string | undefined;
133
+ required?: boolean | undefined;
134
+ })[] | undefined;
135
+ } | undefined;
136
+ suffixConfig?: any | any[] | undefined;
137
+ autograph?: string | undefined;
138
+ defined_error_msg?: string | undefined;
139
+ extendKey?: string | undefined;
140
+ is_not_fold?: string | undefined;
141
+ remark?: string | undefined;
142
+ fieldType?: import("@formily/json-schema").SchemaTypes | undefined;
143
+ content?: string | import("../../../../es/components/form-render").FormRenderer | Record<string, import("../../../../es/components/form-render").FormRenderer> | undefined;
144
+ lazyRequest?: boolean | undefined;
145
+ requestCache?: boolean | undefined;
146
+ maxGroupNum?: number | undefined;
147
+ jsonCombination?: boolean | undefined;
148
+ children?: any[] | undefined;
149
+ properties?: any[] | undefined;
150
+ componentProps?: import("../../../../es/shared/types").AnyObject | undefined;
151
+ decoratorProps?: import("../../../../es/shared/types").AnyObject | undefined;
152
+ noDecorator?: {
153
+ valueOf: () => boolean;
154
+ } | undefined;
155
+ display?: "flex" | "grid" | undefined;
156
+ slots?: Record<string, (...args: unknown[]) => unknown> | undefined;
157
+ wrapperStyle?: Record<string, string> | {
158
+ [x: `--${string}`]: string | number | undefined;
159
+ accentColor?: string | undefined;
160
+ alignContent?: string | undefined;
161
+ alignItems?: string | undefined;
162
+ alignSelf?: string | undefined;
163
+ alignTracks?: string | undefined;
164
+ animationComposition?: string | undefined;
165
+ animationDelay?: string | undefined;
166
+ animationDirection?: string | undefined;
167
+ animationDuration?: string | undefined;
168
+ animationFillMode?: string | undefined;
169
+ animationIterationCount?: import("csstype").AnimationIterationCountProperty | undefined;
170
+ animationName?: string | undefined;
171
+ animationPlayState?: string | undefined;
172
+ animationTimeline?: string | undefined;
173
+ animationTimingFunction?: string | undefined;
174
+ appearance?: import("csstype").AppearanceProperty | undefined;
175
+ aspectRatio?: import("csstype").AspectRatioProperty | undefined;
176
+ backdropFilter?: string | undefined;
177
+ backfaceVisibility?: import("csstype").BackfaceVisibilityProperty | undefined;
178
+ backgroundAttachment?: string | undefined;
179
+ backgroundBlendMode?: string | undefined;
180
+ backgroundClip?: string | undefined;
181
+ backgroundColor?: string | undefined;
182
+ backgroundImage?: string | undefined;
183
+ backgroundOrigin?: string | undefined;
184
+ backgroundPositionX?: import("csstype").BackgroundPositionXProperty<string | number> | undefined;
185
+ backgroundPositionY?: import("csstype").BackgroundPositionYProperty<string | number> | undefined;
186
+ backgroundRepeat?: string | undefined;
187
+ backgroundSize?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
188
+ blockOverflow?: string | undefined;
189
+ blockSize?: import("csstype").BlockSizeProperty<string | number> | undefined;
190
+ borderBlockColor?: string | undefined;
191
+ borderBlockEndColor?: string | undefined;
192
+ borderBlockEndStyle?: import("csstype").BorderBlockEndStyleProperty | undefined;
193
+ borderBlockEndWidth?: import("csstype").BorderBlockEndWidthProperty<string | number> | undefined;
194
+ borderBlockStartColor?: string | undefined;
195
+ borderBlockStartStyle?: import("csstype").BorderBlockStartStyleProperty | undefined;
196
+ borderBlockStartWidth?: import("csstype").BorderBlockStartWidthProperty<string | number> | undefined;
197
+ borderBlockStyle?: import("csstype").BorderBlockStyleProperty | undefined;
198
+ borderBlockWidth?: import("csstype").BorderBlockWidthProperty<string | number> | undefined;
199
+ borderBottomColor?: string | undefined;
200
+ borderBottomLeftRadius?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
201
+ borderBottomRightRadius?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
202
+ borderBottomStyle?: import("csstype").BorderBottomStyleProperty | undefined;
203
+ borderBottomWidth?: import("csstype").BorderBottomWidthProperty<string | number> | undefined;
204
+ borderCollapse?: import("csstype").BorderCollapseProperty | undefined;
205
+ borderEndEndRadius?: import("csstype").BorderEndEndRadiusProperty<string | number> | undefined;
206
+ borderEndStartRadius?: import("csstype").BorderEndStartRadiusProperty<string | number> | undefined;
207
+ borderImageOutset?: import("csstype").BorderImageOutsetProperty<string | number> | undefined;
208
+ borderImageRepeat?: string | undefined;
209
+ borderImageSlice?: import("csstype").BorderImageSliceProperty | undefined;
210
+ borderImageSource?: string | undefined;
211
+ borderImageWidth?: import("csstype").BorderImageWidthProperty<string | number> | undefined;
212
+ borderInlineColor?: string | undefined;
213
+ borderInlineEndColor?: string | undefined;
214
+ borderInlineEndStyle?: import("csstype").BorderInlineEndStyleProperty | undefined;
215
+ borderInlineEndWidth?: import("csstype").BorderInlineEndWidthProperty<string | number> | undefined;
216
+ borderInlineStartColor?: string | undefined;
217
+ borderInlineStartStyle?: import("csstype").BorderInlineStartStyleProperty | undefined;
218
+ borderInlineStartWidth?: import("csstype").BorderInlineStartWidthProperty<string | number> | undefined;
219
+ borderInlineStyle?: import("csstype").BorderInlineStyleProperty | undefined;
220
+ borderInlineWidth?: import("csstype").BorderInlineWidthProperty<string | number> | undefined;
221
+ borderLeftColor?: string | undefined;
222
+ borderLeftStyle?: import("csstype").BorderLeftStyleProperty | undefined;
223
+ borderLeftWidth?: import("csstype").BorderLeftWidthProperty<string | number> | undefined;
224
+ borderRightColor?: string | undefined;
225
+ borderRightStyle?: import("csstype").BorderRightStyleProperty | undefined;
226
+ borderRightWidth?: import("csstype").BorderRightWidthProperty<string | number> | undefined;
227
+ borderSpacing?: import("csstype").BorderSpacingProperty<string | number> | undefined;
228
+ borderStartEndRadius?: import("csstype").BorderStartEndRadiusProperty<string | number> | undefined;
229
+ borderStartStartRadius?: import("csstype").BorderStartStartRadiusProperty<string | number> | undefined;
230
+ borderTopColor?: string | undefined;
231
+ borderTopLeftRadius?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
232
+ borderTopRightRadius?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
233
+ borderTopStyle?: import("csstype").BorderTopStyleProperty | undefined;
234
+ borderTopWidth?: import("csstype").BorderTopWidthProperty<string | number> | undefined;
235
+ bottom?: import("csstype").BottomProperty<string | number> | undefined;
236
+ boxDecorationBreak?: import("csstype").BoxDecorationBreakProperty | undefined;
237
+ boxShadow?: string | undefined;
238
+ boxSizing?: import("csstype").BoxSizingProperty | undefined;
239
+ breakAfter?: import("csstype").BreakAfterProperty | undefined;
240
+ breakBefore?: import("csstype").BreakBeforeProperty | undefined;
241
+ breakInside?: import("csstype").BreakInsideProperty | undefined;
242
+ captionSide?: import("csstype").CaptionSideProperty | undefined;
243
+ caretColor?: string | undefined;
244
+ clear?: import("csstype").ClearProperty | undefined;
245
+ clipPath?: string | undefined;
246
+ color?: string | undefined;
247
+ colorAdjust?: import("csstype").PrintColorAdjustProperty | undefined;
248
+ colorScheme?: string | undefined;
249
+ columnCount?: import("csstype").ColumnCountProperty | undefined;
250
+ columnFill?: import("csstype").ColumnFillProperty | undefined;
251
+ columnGap?: import("csstype").ColumnGapProperty<string | number> | undefined;
252
+ columnRuleColor?: string | undefined;
253
+ columnRuleStyle?: string | undefined;
254
+ columnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
255
+ columnSpan?: import("csstype").ColumnSpanProperty | undefined;
256
+ columnWidth?: import("csstype").ColumnWidthProperty<string | number> | undefined;
257
+ contain?: string | undefined;
258
+ content?: string | undefined;
259
+ contentVisibility?: import("csstype").ContentVisibilityProperty | undefined;
260
+ counterIncrement?: string | undefined;
261
+ counterReset?: string | undefined;
262
+ counterSet?: string | undefined;
263
+ cursor?: string | undefined;
264
+ direction?: import("csstype").DirectionProperty | undefined;
265
+ display?: string | undefined;
266
+ emptyCells?: import("csstype").EmptyCellsProperty | undefined;
267
+ filter?: string | undefined;
268
+ flexBasis?: import("csstype").FlexBasisProperty<string | number> | undefined;
269
+ flexDirection?: import("csstype").FlexDirectionProperty | undefined;
270
+ flexGrow?: import("csstype").GlobalsNumber | undefined;
271
+ flexShrink?: import("csstype").GlobalsNumber | undefined;
272
+ flexWrap?: import("csstype").FlexWrapProperty | undefined;
273
+ float?: import("csstype").FloatProperty | undefined;
274
+ fontFamily?: string | undefined;
275
+ fontFeatureSettings?: string | undefined;
276
+ fontKerning?: import("csstype").FontKerningProperty | undefined;
277
+ fontLanguageOverride?: string | undefined;
278
+ fontOpticalSizing?: import("csstype").FontOpticalSizingProperty | undefined;
279
+ fontSize?: import("csstype").FontSizeProperty<string | number> | undefined;
280
+ fontSizeAdjust?: import("csstype").FontSizeAdjustProperty | undefined;
281
+ fontSmooth?: import("csstype").FontSmoothProperty<string | number> | undefined;
282
+ fontStretch?: string | undefined;
283
+ fontStyle?: string | undefined;
284
+ fontSynthesis?: string | undefined;
285
+ fontVariant?: string | undefined;
286
+ fontVariantAlternates?: string | undefined;
287
+ fontVariantCaps?: import("csstype").FontVariantCapsProperty | undefined;
288
+ fontVariantEastAsian?: string | undefined;
289
+ fontVariantLigatures?: string | undefined;
290
+ fontVariantNumeric?: string | undefined;
291
+ fontVariantPosition?: import("csstype").FontVariantPositionProperty | undefined;
292
+ fontVariationSettings?: string | undefined;
293
+ fontWeight?: import("csstype").FontWeightProperty | undefined;
294
+ forcedColorAdjust?: import("csstype").ForcedColorAdjustProperty | undefined;
295
+ gridAutoColumns?: import("csstype").GridAutoColumnsProperty<string | number> | undefined;
296
+ gridAutoFlow?: string | undefined;
297
+ gridAutoRows?: import("csstype").GridAutoRowsProperty<string | number> | undefined;
298
+ gridColumnEnd?: import("csstype").GridColumnEndProperty | undefined;
299
+ gridColumnStart?: import("csstype").GridColumnStartProperty | undefined;
300
+ gridRowEnd?: import("csstype").GridRowEndProperty | undefined;
301
+ gridRowStart?: import("csstype").GridRowStartProperty | undefined;
302
+ gridTemplateAreas?: string | undefined;
303
+ gridTemplateColumns?: import("csstype").GridTemplateColumnsProperty<string | number> | undefined;
304
+ gridTemplateRows?: import("csstype").GridTemplateRowsProperty<string | number> | undefined;
305
+ hangingPunctuation?: string | undefined;
306
+ height?: import("csstype").HeightProperty<string | number> | undefined;
307
+ hyphenateCharacter?: string | undefined;
308
+ hyphens?: import("csstype").HyphensProperty | undefined;
309
+ imageOrientation?: string | undefined;
310
+ imageRendering?: import("csstype").ImageRenderingProperty | undefined;
311
+ imageResolution?: string | undefined;
312
+ initialLetter?: import("csstype").InitialLetterProperty | undefined;
313
+ inlineSize?: import("csstype").InlineSizeProperty<string | number> | undefined;
314
+ inputSecurity?: import("csstype").InputSecurityProperty | undefined;
315
+ inset?: import("csstype").InsetProperty<string | number> | undefined;
316
+ insetBlock?: import("csstype").InsetBlockProperty<string | number> | undefined;
317
+ insetBlockEnd?: import("csstype").InsetBlockEndProperty<string | number> | undefined;
318
+ insetBlockStart?: import("csstype").InsetBlockStartProperty<string | number> | undefined;
319
+ insetInline?: import("csstype").InsetInlineProperty<string | number> | undefined;
320
+ insetInlineEnd?: import("csstype").InsetInlineEndProperty<string | number> | undefined;
321
+ insetInlineStart?: import("csstype").InsetInlineStartProperty<string | number> | undefined;
322
+ isolation?: import("csstype").IsolationProperty | undefined;
323
+ justifyContent?: string | undefined;
324
+ justifyItems?: string | undefined;
325
+ justifySelf?: string | undefined;
326
+ justifyTracks?: string | undefined;
327
+ left?: import("csstype").LeftProperty<string | number> | undefined;
328
+ letterSpacing?: import("csstype").LetterSpacingProperty<string | number> | undefined;
329
+ lineBreak?: import("csstype").LineBreakProperty | undefined;
330
+ lineHeight?: import("csstype").LineHeightProperty<string | number> | undefined;
331
+ lineHeightStep?: import("csstype").LineHeightStepProperty<string | number> | undefined;
332
+ listStyleImage?: string | undefined;
333
+ listStylePosition?: import("csstype").ListStylePositionProperty | undefined;
334
+ listStyleType?: string | undefined;
335
+ marginBlock?: import("csstype").MarginBlockProperty<string | number> | undefined;
336
+ marginBlockEnd?: import("csstype").MarginBlockEndProperty<string | number> | undefined;
337
+ marginBlockStart?: import("csstype").MarginBlockStartProperty<string | number> | undefined;
338
+ marginBottom?: import("csstype").MarginBottomProperty<string | number> | undefined;
339
+ marginInline?: import("csstype").MarginInlineProperty<string | number> | undefined;
340
+ marginInlineEnd?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
341
+ marginInlineStart?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
342
+ marginLeft?: import("csstype").MarginLeftProperty<string | number> | undefined;
343
+ marginRight?: import("csstype").MarginRightProperty<string | number> | undefined;
344
+ marginTop?: import("csstype").MarginTopProperty<string | number> | undefined;
345
+ maskBorderMode?: import("csstype").MaskBorderModeProperty | undefined;
346
+ maskBorderOutset?: import("csstype").MaskBorderOutsetProperty<string | number> | undefined;
347
+ maskBorderRepeat?: string | undefined;
348
+ maskBorderSlice?: import("csstype").MaskBorderSliceProperty | undefined;
349
+ maskBorderSource?: string | undefined;
350
+ maskBorderWidth?: import("csstype").MaskBorderWidthProperty<string | number> | undefined;
351
+ maskClip?: string | undefined;
352
+ maskComposite?: string | undefined;
353
+ maskImage?: string | undefined;
354
+ maskMode?: string | undefined;
355
+ maskOrigin?: string | undefined;
356
+ maskPosition?: import("csstype").MaskPositionProperty<string | number> | undefined;
357
+ maskRepeat?: string | undefined;
358
+ maskSize?: import("csstype").MaskSizeProperty<string | number> | undefined;
359
+ maskType?: import("csstype").MaskTypeProperty | undefined;
360
+ mathDepth?: import("csstype").MathDepthProperty | undefined;
361
+ mathShift?: import("csstype").MathShiftProperty | undefined;
362
+ mathStyle?: import("csstype").MathStyleProperty | undefined;
363
+ maxBlockSize?: import("csstype").MaxBlockSizeProperty<string | number> | undefined;
364
+ maxHeight?: import("csstype").MaxHeightProperty<string | number> | undefined;
365
+ maxInlineSize?: import("csstype").MaxInlineSizeProperty<string | number> | undefined;
366
+ maxLines?: import("csstype").MaxLinesProperty | undefined;
367
+ maxWidth?: import("csstype").MaxWidthProperty<string | number> | undefined;
368
+ minBlockSize?: import("csstype").MinBlockSizeProperty<string | number> | undefined;
369
+ minHeight?: import("csstype").MinHeightProperty<string | number> | undefined;
370
+ minInlineSize?: import("csstype").MinInlineSizeProperty<string | number> | undefined;
371
+ minWidth?: import("csstype").MinWidthProperty<string | number> | undefined;
372
+ mixBlendMode?: import("csstype").MixBlendModeProperty | undefined;
373
+ motionDistance?: import("csstype").OffsetDistanceProperty<string | number> | undefined;
374
+ motionPath?: string | undefined;
375
+ motionRotation?: string | undefined;
376
+ objectFit?: import("csstype").ObjectFitProperty | undefined;
377
+ objectPosition?: import("csstype").ObjectPositionProperty<string | number> | undefined;
378
+ offsetAnchor?: import("csstype").OffsetAnchorProperty<string | number> | undefined;
379
+ offsetDistance?: import("csstype").OffsetDistanceProperty<string | number> | undefined;
380
+ offsetPath?: string | undefined;
381
+ offsetRotate?: string | undefined;
382
+ offsetRotation?: string | undefined;
383
+ opacity?: import("csstype").OpacityProperty | undefined;
384
+ order?: import("csstype").GlobalsNumber | undefined;
385
+ orphans?: import("csstype").GlobalsNumber | undefined;
386
+ outlineColor?: string | undefined;
387
+ outlineOffset?: import("csstype").OutlineOffsetProperty<string | number> | undefined;
388
+ outlineStyle?: string | undefined;
389
+ outlineWidth?: import("csstype").OutlineWidthProperty<string | number> | undefined;
390
+ overflowAnchor?: import("csstype").OverflowAnchorProperty | undefined;
391
+ overflowBlock?: import("csstype").OverflowBlockProperty | undefined;
392
+ overflowClipBox?: import("csstype").OverflowClipBoxProperty | undefined;
393
+ overflowClipMargin?: import("csstype").OverflowClipMarginProperty<string | number> | undefined;
394
+ overflowInline?: import("csstype").OverflowInlineProperty | undefined;
395
+ overflowWrap?: import("csstype").OverflowWrapProperty | undefined;
396
+ overflowX?: import("csstype").OverflowXProperty | undefined;
397
+ overflowY?: import("csstype").OverflowYProperty | undefined;
398
+ overscrollBehaviorBlock?: import("csstype").OverscrollBehaviorBlockProperty | undefined;
399
+ overscrollBehaviorInline?: import("csstype").OverscrollBehaviorInlineProperty | undefined;
400
+ overscrollBehaviorX?: import("csstype").OverscrollBehaviorXProperty | undefined;
401
+ overscrollBehaviorY?: import("csstype").OverscrollBehaviorYProperty | undefined;
402
+ paddingBlock?: import("csstype").PaddingBlockProperty<string | number> | undefined;
403
+ paddingBlockEnd?: import("csstype").PaddingBlockEndProperty<string | number> | undefined;
404
+ paddingBlockStart?: import("csstype").PaddingBlockStartProperty<string | number> | undefined;
405
+ paddingBottom?: import("csstype").PaddingBottomProperty<string | number> | undefined;
406
+ paddingInline?: import("csstype").PaddingInlineProperty<string | number> | undefined;
407
+ paddingInlineEnd?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
408
+ paddingInlineStart?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
409
+ paddingLeft?: import("csstype").PaddingLeftProperty<string | number> | undefined;
410
+ paddingRight?: import("csstype").PaddingRightProperty<string | number> | undefined;
411
+ paddingTop?: import("csstype").PaddingTopProperty<string | number> | undefined;
412
+ pageBreakAfter?: import("csstype").PageBreakAfterProperty | undefined;
413
+ pageBreakBefore?: import("csstype").PageBreakBeforeProperty | undefined;
414
+ pageBreakInside?: import("csstype").PageBreakInsideProperty | undefined;
415
+ paintOrder?: string | undefined;
416
+ perspective?: import("csstype").PerspectiveProperty<string | number> | undefined;
417
+ perspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
418
+ placeContent?: string | undefined;
419
+ pointerEvents?: import("csstype").PointerEventsProperty | undefined;
420
+ position?: import("csstype").PositionProperty | undefined;
421
+ printColorAdjust?: import("csstype").PrintColorAdjustProperty | undefined;
422
+ quotes?: string | undefined;
423
+ resize?: import("csstype").ResizeProperty | undefined;
424
+ right?: import("csstype").RightProperty<string | number> | undefined;
425
+ rotate?: string | undefined;
426
+ rowGap?: import("csstype").RowGapProperty<string | number> | undefined;
427
+ rubyAlign?: import("csstype").RubyAlignProperty | undefined;
428
+ rubyMerge?: import("csstype").RubyMergeProperty | undefined;
429
+ rubyPosition?: string | undefined;
430
+ scale?: import("csstype").ScaleProperty | undefined;
431
+ scrollBehavior?: import("csstype").ScrollBehaviorProperty | undefined;
432
+ scrollMargin?: import("csstype").ScrollMarginProperty<string | number> | undefined;
433
+ scrollMarginBlock?: import("csstype").ScrollMarginBlockProperty<string | number> | undefined;
434
+ scrollMarginBlockEnd?: import("csstype").ScrollMarginBlockEndProperty<string | number> | undefined;
435
+ scrollMarginBlockStart?: import("csstype").ScrollMarginBlockStartProperty<string | number> | undefined;
436
+ scrollMarginBottom?: import("csstype").ScrollMarginBottomProperty<string | number> | undefined;
437
+ scrollMarginInline?: import("csstype").ScrollMarginInlineProperty<string | number> | undefined;
438
+ scrollMarginInlineEnd?: import("csstype").ScrollMarginInlineEndProperty<string | number> | undefined;
439
+ scrollMarginInlineStart?: import("csstype").ScrollMarginInlineStartProperty<string | number> | undefined;
440
+ scrollMarginLeft?: import("csstype").ScrollMarginLeftProperty<string | number> | undefined;
441
+ scrollMarginRight?: import("csstype").ScrollMarginRightProperty<string | number> | undefined;
442
+ scrollMarginTop?: import("csstype").ScrollMarginTopProperty<string | number> | undefined;
443
+ scrollPadding?: import("csstype").ScrollPaddingProperty<string | number> | undefined;
444
+ scrollPaddingBlock?: import("csstype").ScrollPaddingBlockProperty<string | number> | undefined;
445
+ scrollPaddingBlockEnd?: import("csstype").ScrollPaddingBlockEndProperty<string | number> | undefined;
446
+ scrollPaddingBlockStart?: import("csstype").ScrollPaddingBlockStartProperty<string | number> | undefined;
447
+ scrollPaddingBottom?: import("csstype").ScrollPaddingBottomProperty<string | number> | undefined;
448
+ scrollPaddingInline?: import("csstype").ScrollPaddingInlineProperty<string | number> | undefined;
449
+ scrollPaddingInlineEnd?: import("csstype").ScrollPaddingInlineEndProperty<string | number> | undefined;
450
+ scrollPaddingInlineStart?: import("csstype").ScrollPaddingInlineStartProperty<string | number> | undefined;
451
+ scrollPaddingLeft?: import("csstype").ScrollPaddingLeftProperty<string | number> | undefined;
452
+ scrollPaddingRight?: import("csstype").ScrollPaddingRightProperty<string | number> | undefined;
453
+ scrollPaddingTop?: import("csstype").ScrollPaddingTopProperty<string | number> | undefined;
454
+ scrollSnapAlign?: string | undefined;
455
+ scrollSnapMargin?: import("csstype").ScrollMarginProperty<string | number> | undefined;
456
+ scrollSnapMarginBottom?: import("csstype").ScrollMarginBottomProperty<string | number> | undefined;
457
+ scrollSnapMarginLeft?: import("csstype").ScrollMarginLeftProperty<string | number> | undefined;
458
+ scrollSnapMarginRight?: import("csstype").ScrollMarginRightProperty<string | number> | undefined;
459
+ scrollSnapMarginTop?: import("csstype").ScrollMarginTopProperty<string | number> | undefined;
460
+ scrollSnapStop?: import("csstype").ScrollSnapStopProperty | undefined;
461
+ scrollSnapType?: string | undefined;
462
+ scrollbarColor?: string | undefined;
463
+ scrollbarGutter?: string | undefined;
464
+ scrollbarWidth?: import("csstype").ScrollbarWidthProperty | undefined;
465
+ shapeImageThreshold?: import("csstype").ShapeImageThresholdProperty | undefined;
466
+ shapeMargin?: import("csstype").ShapeMarginProperty<string | number> | undefined;
467
+ shapeOutside?: string | undefined;
468
+ tabSize?: import("csstype").TabSizeProperty<string | number> | undefined;
469
+ tableLayout?: import("csstype").TableLayoutProperty | undefined;
470
+ textAlign?: import("csstype").TextAlignProperty | undefined;
471
+ textAlignLast?: import("csstype").TextAlignLastProperty | undefined;
472
+ textCombineUpright?: string | undefined;
473
+ textDecorationColor?: string | undefined;
474
+ textDecorationLine?: string | undefined;
475
+ textDecorationSkip?: string | undefined;
476
+ textDecorationSkipInk?: import("csstype").TextDecorationSkipInkProperty | undefined;
477
+ textDecorationStyle?: import("csstype").TextDecorationStyleProperty | undefined;
478
+ textDecorationThickness?: import("csstype").TextDecorationThicknessProperty<string | number> | undefined;
479
+ textEmphasisColor?: string | undefined;
480
+ textEmphasisPosition?: string | undefined;
481
+ textEmphasisStyle?: string | undefined;
482
+ textIndent?: import("csstype").TextIndentProperty<string | number> | undefined;
483
+ textJustify?: import("csstype").TextJustifyProperty | undefined;
484
+ textOrientation?: import("csstype").TextOrientationProperty | undefined;
485
+ textOverflow?: string | undefined;
486
+ textRendering?: import("csstype").TextRenderingProperty | undefined;
487
+ textShadow?: string | undefined;
488
+ textSizeAdjust?: string | undefined;
489
+ textTransform?: import("csstype").TextTransformProperty | undefined;
490
+ textUnderlineOffset?: import("csstype").TextUnderlineOffsetProperty<string | number> | undefined;
491
+ textUnderlinePosition?: string | undefined;
492
+ top?: import("csstype").TopProperty<string | number> | undefined;
493
+ touchAction?: string | undefined;
494
+ transform?: string | undefined;
495
+ transformBox?: import("csstype").TransformBoxProperty | undefined;
496
+ transformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
497
+ transformStyle?: import("csstype").TransformStyleProperty | undefined;
498
+ transitionDelay?: string | undefined;
499
+ transitionDuration?: string | undefined;
500
+ transitionProperty?: string | undefined;
501
+ transitionTimingFunction?: string | undefined;
502
+ translate?: import("csstype").TranslateProperty<string | number> | undefined;
503
+ unicodeBidi?: import("csstype").UnicodeBidiProperty | undefined;
504
+ userSelect?: import("csstype").UserSelectProperty | undefined;
505
+ verticalAlign?: import("csstype").VerticalAlignProperty<string | number> | undefined;
506
+ visibility?: import("csstype").VisibilityProperty | undefined;
507
+ whiteSpace?: import("csstype").WhiteSpaceProperty | undefined;
508
+ widows?: import("csstype").GlobalsNumber | undefined;
509
+ width?: import("csstype").WidthProperty<string | number> | undefined;
510
+ willChange?: string | undefined;
511
+ wordBreak?: import("csstype").WordBreakProperty | undefined;
512
+ wordSpacing?: import("csstype").WordSpacingProperty<string | number> | undefined;
513
+ wordWrap?: import("csstype").WordWrapProperty | undefined;
514
+ writingMode?: import("csstype").WritingModeProperty | undefined;
515
+ zIndex?: import("csstype").ZIndexProperty | undefined;
516
+ zoom?: import("csstype").ZoomProperty | undefined;
517
+ all?: import("csstype").Globals | undefined;
518
+ animation?: import("csstype").AnimationProperty | undefined;
519
+ background?: import("csstype").BackgroundProperty<string | number> | undefined;
520
+ backgroundPosition?: import("csstype").BackgroundPositionProperty<string | number> | undefined;
521
+ border?: import("csstype").BorderProperty<string | number> | undefined;
522
+ borderBlock?: import("csstype").BorderBlockProperty<string | number> | undefined;
523
+ borderBlockEnd?: import("csstype").BorderBlockEndProperty<string | number> | undefined;
524
+ borderBlockStart?: import("csstype").BorderBlockStartProperty<string | number> | undefined;
525
+ borderBottom?: import("csstype").BorderBottomProperty<string | number> | undefined;
526
+ borderColor?: string | undefined;
527
+ borderImage?: import("csstype").BorderImageProperty | undefined;
528
+ borderInline?: import("csstype").BorderInlineProperty<string | number> | undefined;
529
+ borderInlineEnd?: import("csstype").BorderInlineEndProperty<string | number> | undefined;
530
+ borderInlineStart?: import("csstype").BorderInlineStartProperty<string | number> | undefined;
531
+ borderLeft?: import("csstype").BorderLeftProperty<string | number> | undefined;
532
+ borderRadius?: import("csstype").BorderRadiusProperty<string | number> | undefined;
533
+ borderRight?: import("csstype").BorderRightProperty<string | number> | undefined;
534
+ borderStyle?: string | undefined;
535
+ borderTop?: import("csstype").BorderTopProperty<string | number> | undefined;
536
+ borderWidth?: import("csstype").BorderWidthProperty<string | number> | undefined;
537
+ columnRule?: import("csstype").ColumnRuleProperty<string | number> | undefined;
538
+ columns?: import("csstype").ColumnsProperty<string | number> | undefined;
539
+ flex?: import("csstype").FlexProperty<string | number> | undefined;
540
+ flexFlow?: string | undefined;
541
+ font?: string | undefined;
542
+ gap?: import("csstype").GapProperty<string | number> | undefined;
543
+ grid?: string | undefined;
544
+ gridArea?: import("csstype").GridAreaProperty | undefined;
545
+ gridColumn?: import("csstype").GridColumnProperty | undefined;
546
+ gridRow?: import("csstype").GridRowProperty | undefined;
547
+ gridTemplate?: string | undefined;
548
+ lineClamp?: import("csstype").LineClampProperty | undefined;
549
+ listStyle?: string | undefined;
550
+ margin?: import("csstype").MarginProperty<string | number> | undefined;
551
+ mask?: import("csstype").MaskProperty<string | number> | undefined;
552
+ maskBorder?: import("csstype").MaskBorderProperty | undefined;
553
+ motion?: import("csstype").OffsetProperty<string | number> | undefined;
554
+ offset?: import("csstype").OffsetProperty<string | number> | undefined;
555
+ outline?: import("csstype").OutlineProperty<string | number> | undefined;
556
+ overflow?: string | undefined;
557
+ overscrollBehavior?: string | undefined;
558
+ padding?: import("csstype").PaddingProperty<string | number> | undefined;
559
+ placeItems?: string | undefined;
560
+ placeSelf?: string | undefined;
561
+ textDecoration?: import("csstype").TextDecorationProperty<string | number> | undefined;
562
+ textEmphasis?: string | undefined;
563
+ transition?: string | undefined;
564
+ MozAnimationDelay?: string | undefined;
565
+ MozAnimationDirection?: string | undefined;
566
+ MozAnimationDuration?: string | undefined;
567
+ MozAnimationFillMode?: string | undefined;
568
+ MozAnimationIterationCount?: import("csstype").AnimationIterationCountProperty | undefined;
569
+ MozAnimationName?: string | undefined;
570
+ MozAnimationPlayState?: string | undefined;
571
+ MozAnimationTimingFunction?: string | undefined;
572
+ MozAppearance?: import("csstype").MozAppearanceProperty | undefined;
573
+ MozBackfaceVisibility?: import("csstype").BackfaceVisibilityProperty | undefined;
574
+ MozBorderBottomColors?: string | undefined;
575
+ MozBorderEndColor?: string | undefined;
576
+ MozBorderEndStyle?: import("csstype").BorderInlineEndStyleProperty | undefined;
577
+ MozBorderEndWidth?: import("csstype").BorderInlineEndWidthProperty<string | number> | undefined;
578
+ MozBorderLeftColors?: string | undefined;
579
+ MozBorderRightColors?: string | undefined;
580
+ MozBorderStartColor?: string | undefined;
581
+ MozBorderStartStyle?: import("csstype").BorderInlineStartStyleProperty | undefined;
582
+ MozBorderTopColors?: string | undefined;
583
+ MozBoxSizing?: import("csstype").BoxSizingProperty | undefined;
584
+ MozColumnCount?: import("csstype").ColumnCountProperty | undefined;
585
+ MozColumnFill?: import("csstype").ColumnFillProperty | undefined;
586
+ MozColumnRuleColor?: string | undefined;
587
+ MozColumnRuleStyle?: string | undefined;
588
+ MozColumnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
589
+ MozColumnWidth?: import("csstype").ColumnWidthProperty<string | number> | undefined;
590
+ MozContextProperties?: string | undefined;
591
+ MozFontFeatureSettings?: string | undefined;
592
+ MozFontLanguageOverride?: string | undefined;
593
+ MozHyphens?: import("csstype").HyphensProperty | undefined;
594
+ MozImageRegion?: string | undefined;
595
+ MozMarginEnd?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
596
+ MozMarginStart?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
597
+ MozOrient?: import("csstype").MozOrientProperty | undefined;
598
+ MozOsxFontSmoothing?: import("csstype").FontSmoothProperty<string | number> | undefined;
599
+ MozPaddingEnd?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
600
+ MozPaddingStart?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
601
+ MozPerspective?: import("csstype").PerspectiveProperty<string | number> | undefined;
602
+ MozPerspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
603
+ MozStackSizing?: import("csstype").MozStackSizingProperty | undefined;
604
+ MozTabSize?: import("csstype").TabSizeProperty<string | number> | undefined;
605
+ MozTextBlink?: import("csstype").MozTextBlinkProperty | undefined;
606
+ MozTextSizeAdjust?: string | undefined;
607
+ MozTransformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
608
+ MozTransformStyle?: import("csstype").TransformStyleProperty | undefined;
609
+ MozTransitionDelay?: string | undefined;
610
+ MozTransitionDuration?: string | undefined;
611
+ MozTransitionProperty?: string | undefined;
612
+ MozTransitionTimingFunction?: string | undefined;
613
+ MozUserFocus?: import("csstype").MozUserFocusProperty | undefined;
614
+ MozUserModify?: import("csstype").MozUserModifyProperty | undefined;
615
+ MozUserSelect?: import("csstype").UserSelectProperty | undefined;
616
+ MozWindowDragging?: import("csstype").MozWindowDraggingProperty | undefined;
617
+ MozWindowShadow?: import("csstype").MozWindowShadowProperty | undefined;
618
+ msAccelerator?: import("csstype").MsAcceleratorProperty | undefined;
619
+ msBlockProgression?: import("csstype").MsBlockProgressionProperty | undefined;
620
+ msContentZoomChaining?: import("csstype").MsContentZoomChainingProperty | undefined;
621
+ msContentZoomLimitMax?: string | undefined;
622
+ msContentZoomLimitMin?: string | undefined;
623
+ msContentZoomSnapPoints?: string | undefined;
624
+ msContentZoomSnapType?: import("csstype").MsContentZoomSnapTypeProperty | undefined;
625
+ msContentZooming?: import("csstype").MsContentZoomingProperty | undefined;
626
+ msFilter?: string | undefined;
627
+ msFlexDirection?: import("csstype").FlexDirectionProperty | undefined;
628
+ msFlexPositive?: import("csstype").GlobalsNumber | undefined;
629
+ msFlowFrom?: string | undefined;
630
+ msFlowInto?: string | undefined;
631
+ msGridColumns?: import("csstype").MsGridColumnsProperty<string | number> | undefined;
632
+ msGridRows?: import("csstype").MsGridRowsProperty<string | number> | undefined;
633
+ msHighContrastAdjust?: import("csstype").MsHighContrastAdjustProperty | undefined;
634
+ msHyphenateLimitChars?: import("csstype").MsHyphenateLimitCharsProperty | undefined;
635
+ msHyphenateLimitLines?: import("csstype").MsHyphenateLimitLinesProperty | undefined;
636
+ msHyphenateLimitZone?: import("csstype").MsHyphenateLimitZoneProperty<string | number> | undefined;
637
+ msHyphens?: import("csstype").HyphensProperty | undefined;
638
+ msImeAlign?: import("csstype").MsImeAlignProperty | undefined;
639
+ msLineBreak?: import("csstype").LineBreakProperty | undefined;
640
+ msOrder?: import("csstype").GlobalsNumber | undefined;
641
+ msOverflowStyle?: import("csstype").MsOverflowStyleProperty | undefined;
642
+ msOverflowX?: import("csstype").OverflowXProperty | undefined;
643
+ msOverflowY?: import("csstype").OverflowYProperty | undefined;
644
+ msScrollChaining?: import("csstype").MsScrollChainingProperty | undefined;
645
+ msScrollLimitXMax?: import("csstype").MsScrollLimitXMaxProperty<string | number> | undefined;
646
+ msScrollLimitXMin?: import("csstype").MsScrollLimitXMinProperty<string | number> | undefined;
647
+ msScrollLimitYMax?: import("csstype").MsScrollLimitYMaxProperty<string | number> | undefined;
648
+ msScrollLimitYMin?: import("csstype").MsScrollLimitYMinProperty<string | number> | undefined;
649
+ msScrollRails?: import("csstype").MsScrollRailsProperty | undefined;
650
+ msScrollSnapPointsX?: string | undefined;
651
+ msScrollSnapPointsY?: string | undefined;
652
+ msScrollSnapType?: import("csstype").MsScrollSnapTypeProperty | undefined;
653
+ msScrollTranslation?: import("csstype").MsScrollTranslationProperty | undefined;
654
+ msScrollbar3dlightColor?: string | undefined;
655
+ msScrollbarArrowColor?: string | undefined;
656
+ msScrollbarBaseColor?: string | undefined;
657
+ msScrollbarDarkshadowColor?: string | undefined;
658
+ msScrollbarFaceColor?: string | undefined;
659
+ msScrollbarHighlightColor?: string | undefined;
660
+ msScrollbarShadowColor?: string | undefined;
661
+ msScrollbarTrackColor?: string | undefined;
662
+ msTextAutospace?: import("csstype").MsTextAutospaceProperty | undefined;
663
+ msTextCombineHorizontal?: string | undefined;
664
+ msTextOverflow?: string | undefined;
665
+ msTouchAction?: string | undefined;
666
+ msTouchSelect?: import("csstype").MsTouchSelectProperty | undefined;
667
+ msTransform?: string | undefined;
668
+ msTransformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
669
+ msTransitionDelay?: string | undefined;
670
+ msTransitionDuration?: string | undefined;
671
+ msTransitionProperty?: string | undefined;
672
+ msTransitionTimingFunction?: string | undefined;
673
+ msUserSelect?: import("csstype").MsUserSelectProperty | undefined;
674
+ msWordBreak?: import("csstype").WordBreakProperty | undefined;
675
+ msWrapFlow?: import("csstype").MsWrapFlowProperty | undefined;
676
+ msWrapMargin?: import("csstype").MsWrapMarginProperty<string | number> | undefined;
677
+ msWrapThrough?: import("csstype").MsWrapThroughProperty | undefined;
678
+ msWritingMode?: import("csstype").WritingModeProperty | undefined;
679
+ WebkitAlignContent?: string | undefined;
680
+ WebkitAlignItems?: string | undefined;
681
+ WebkitAlignSelf?: string | undefined;
682
+ WebkitAnimationDelay?: string | undefined;
683
+ WebkitAnimationDirection?: string | undefined;
684
+ WebkitAnimationDuration?: string | undefined;
685
+ WebkitAnimationFillMode?: string | undefined;
686
+ WebkitAnimationIterationCount?: import("csstype").AnimationIterationCountProperty | undefined;
687
+ WebkitAnimationName?: string | undefined;
688
+ WebkitAnimationPlayState?: string | undefined;
689
+ WebkitAnimationTimingFunction?: string | undefined;
690
+ WebkitAppearance?: import("csstype").WebkitAppearanceProperty | undefined;
691
+ WebkitBackdropFilter?: string | undefined;
692
+ WebkitBackfaceVisibility?: import("csstype").BackfaceVisibilityProperty | undefined;
693
+ WebkitBackgroundClip?: string | undefined;
694
+ WebkitBackgroundOrigin?: string | undefined;
695
+ WebkitBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
696
+ WebkitBorderBeforeColor?: string | undefined;
697
+ WebkitBorderBeforeStyle?: string | undefined;
698
+ WebkitBorderBeforeWidth?: import("csstype").WebkitBorderBeforeWidthProperty<string | number> | undefined;
699
+ WebkitBorderBottomLeftRadius?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
700
+ WebkitBorderBottomRightRadius?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
701
+ WebkitBorderImageSlice?: import("csstype").BorderImageSliceProperty | undefined;
702
+ WebkitBorderTopLeftRadius?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
703
+ WebkitBorderTopRightRadius?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
704
+ WebkitBoxDecorationBreak?: import("csstype").BoxDecorationBreakProperty | undefined;
705
+ WebkitBoxReflect?: import("csstype").WebkitBoxReflectProperty<string | number> | undefined;
706
+ WebkitBoxShadow?: string | undefined;
707
+ WebkitBoxSizing?: import("csstype").BoxSizingProperty | undefined;
708
+ WebkitClipPath?: string | undefined;
709
+ WebkitColumnCount?: import("csstype").ColumnCountProperty | undefined;
710
+ WebkitColumnFill?: import("csstype").ColumnFillProperty | undefined;
711
+ WebkitColumnRuleColor?: string | undefined;
712
+ WebkitColumnRuleStyle?: string | undefined;
713
+ WebkitColumnRuleWidth?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
714
+ WebkitColumnSpan?: import("csstype").ColumnSpanProperty | undefined;
715
+ WebkitColumnWidth?: import("csstype").ColumnWidthProperty<string | number> | undefined;
716
+ WebkitFilter?: string | undefined;
717
+ WebkitFlexBasis?: import("csstype").FlexBasisProperty<string | number> | undefined;
718
+ WebkitFlexDirection?: import("csstype").FlexDirectionProperty | undefined;
719
+ WebkitFlexGrow?: import("csstype").GlobalsNumber | undefined;
720
+ WebkitFlexShrink?: import("csstype").GlobalsNumber | undefined;
721
+ WebkitFlexWrap?: import("csstype").FlexWrapProperty | undefined;
722
+ WebkitFontFeatureSettings?: string | undefined;
723
+ WebkitFontKerning?: import("csstype").FontKerningProperty | undefined;
724
+ WebkitFontSmoothing?: import("csstype").FontSmoothProperty<string | number> | undefined;
725
+ WebkitFontVariantLigatures?: string | undefined;
726
+ WebkitHyphenateCharacter?: string | undefined;
727
+ WebkitHyphens?: import("csstype").HyphensProperty | undefined;
728
+ WebkitInitialLetter?: import("csstype").InitialLetterProperty | undefined;
729
+ WebkitJustifyContent?: string | undefined;
730
+ WebkitLineBreak?: import("csstype").LineBreakProperty | undefined;
731
+ WebkitLineClamp?: import("csstype").WebkitLineClampProperty | undefined;
732
+ WebkitMarginEnd?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
733
+ WebkitMarginStart?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
734
+ WebkitMaskAttachment?: string | undefined;
735
+ WebkitMaskBoxImageOutset?: import("csstype").MaskBorderOutsetProperty<string | number> | undefined;
736
+ WebkitMaskBoxImageRepeat?: string | undefined;
737
+ WebkitMaskBoxImageSlice?: import("csstype").MaskBorderSliceProperty | undefined;
738
+ WebkitMaskBoxImageSource?: string | undefined;
739
+ WebkitMaskBoxImageWidth?: import("csstype").MaskBorderWidthProperty<string | number> | undefined;
740
+ WebkitMaskClip?: string | undefined;
741
+ WebkitMaskComposite?: string | undefined;
742
+ WebkitMaskImage?: string | undefined;
743
+ WebkitMaskOrigin?: string | undefined;
744
+ WebkitMaskPosition?: import("csstype").WebkitMaskPositionProperty<string | number> | undefined;
745
+ WebkitMaskPositionX?: import("csstype").WebkitMaskPositionXProperty<string | number> | undefined;
746
+ WebkitMaskPositionY?: import("csstype").WebkitMaskPositionYProperty<string | number> | undefined;
747
+ WebkitMaskRepeat?: string | undefined;
748
+ WebkitMaskRepeatX?: import("csstype").WebkitMaskRepeatXProperty | undefined;
749
+ WebkitMaskRepeatY?: import("csstype").WebkitMaskRepeatYProperty | undefined;
750
+ WebkitMaskSize?: import("csstype").WebkitMaskSizeProperty<string | number> | undefined;
751
+ WebkitMaxInlineSize?: import("csstype").MaxInlineSizeProperty<string | number> | undefined;
752
+ WebkitOrder?: import("csstype").GlobalsNumber | undefined;
753
+ WebkitOverflowScrolling?: import("csstype").WebkitOverflowScrollingProperty | undefined;
754
+ WebkitPaddingEnd?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
755
+ WebkitPaddingStart?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
756
+ WebkitPerspective?: import("csstype").PerspectiveProperty<string | number> | undefined;
757
+ WebkitPerspectiveOrigin?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
758
+ WebkitPrintColorAdjust?: import("csstype").PrintColorAdjustProperty | undefined;
759
+ WebkitRubyPosition?: string | undefined;
760
+ WebkitScrollSnapType?: string | undefined;
761
+ WebkitShapeMargin?: import("csstype").ShapeMarginProperty<string | number> | undefined;
762
+ WebkitTapHighlightColor?: string | undefined;
763
+ WebkitTextCombine?: string | undefined;
764
+ WebkitTextDecorationColor?: string | undefined;
765
+ WebkitTextDecorationLine?: string | undefined;
766
+ WebkitTextDecorationSkip?: string | undefined;
767
+ WebkitTextDecorationStyle?: import("csstype").TextDecorationStyleProperty | undefined;
768
+ WebkitTextEmphasisColor?: string | undefined;
769
+ WebkitTextEmphasisPosition?: string | undefined;
770
+ WebkitTextEmphasisStyle?: string | undefined;
771
+ WebkitTextFillColor?: string | undefined;
772
+ WebkitTextOrientation?: import("csstype").TextOrientationProperty | undefined;
773
+ WebkitTextSizeAdjust?: string | undefined;
774
+ WebkitTextStrokeColor?: string | undefined;
775
+ WebkitTextStrokeWidth?: import("csstype").WebkitTextStrokeWidthProperty<string | number> | undefined;
776
+ WebkitTextUnderlinePosition?: string | undefined;
777
+ WebkitTouchCallout?: import("csstype").WebkitTouchCalloutProperty | undefined;
778
+ WebkitTransform?: string | undefined;
779
+ WebkitTransformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
780
+ WebkitTransformStyle?: import("csstype").TransformStyleProperty | undefined;
781
+ WebkitTransitionDelay?: string | undefined;
782
+ WebkitTransitionDuration?: string | undefined;
783
+ WebkitTransitionProperty?: string | undefined;
784
+ WebkitTransitionTimingFunction?: string | undefined;
785
+ WebkitUserModify?: import("csstype").WebkitUserModifyProperty | undefined;
786
+ WebkitUserSelect?: import("csstype").UserSelectProperty | undefined;
787
+ WebkitWritingMode?: import("csstype").WritingModeProperty | undefined;
788
+ MozAnimation?: import("csstype").AnimationProperty | undefined;
789
+ MozBorderImage?: import("csstype").BorderImageProperty | undefined;
790
+ MozColumnRule?: import("csstype").ColumnRuleProperty<string | number> | undefined;
791
+ MozColumns?: import("csstype").ColumnsProperty<string | number> | undefined;
792
+ MozTransition?: string | undefined;
793
+ msContentZoomLimit?: string | undefined;
794
+ msContentZoomSnap?: string | undefined;
795
+ msFlex?: import("csstype").FlexProperty<string | number> | undefined;
796
+ msScrollLimit?: string | undefined;
797
+ msScrollSnapX?: string | undefined;
798
+ msScrollSnapY?: string | undefined;
799
+ msTransition?: string | undefined;
800
+ WebkitAnimation?: import("csstype").AnimationProperty | undefined;
801
+ WebkitBorderBefore?: import("csstype").WebkitBorderBeforeProperty<string | number> | undefined;
802
+ WebkitBorderImage?: import("csstype").BorderImageProperty | undefined;
803
+ WebkitBorderRadius?: import("csstype").BorderRadiusProperty<string | number> | undefined;
804
+ WebkitColumnRule?: import("csstype").ColumnRuleProperty<string | number> | undefined;
805
+ WebkitColumns?: import("csstype").ColumnsProperty<string | number> | undefined;
806
+ WebkitFlex?: import("csstype").FlexProperty<string | number> | undefined;
807
+ WebkitFlexFlow?: string | undefined;
808
+ WebkitMask?: import("csstype").WebkitMaskProperty<string | number> | undefined;
809
+ WebkitMaskBoxImage?: import("csstype").MaskBorderProperty | undefined;
810
+ WebkitTextEmphasis?: string | undefined;
811
+ WebkitTextStroke?: import("csstype").WebkitTextStrokeProperty<string | number> | undefined;
812
+ WebkitTransition?: string | undefined;
813
+ azimuth?: string | undefined;
814
+ boxAlign?: import("csstype").BoxAlignProperty | undefined;
815
+ boxDirection?: import("csstype").BoxDirectionProperty | undefined;
816
+ boxFlex?: import("csstype").GlobalsNumber | undefined;
817
+ boxFlexGroup?: import("csstype").GlobalsNumber | undefined;
818
+ boxLines?: import("csstype").BoxLinesProperty | undefined;
819
+ boxOrdinalGroup?: import("csstype").GlobalsNumber | undefined;
820
+ boxOrient?: import("csstype").BoxOrientProperty | undefined;
821
+ boxPack?: import("csstype").BoxPackProperty | undefined;
822
+ clip?: string | undefined;
823
+ gridColumnGap?: import("csstype").GridColumnGapProperty<string | number> | undefined;
824
+ gridGap?: import("csstype").GridGapProperty<string | number> | undefined;
825
+ gridRowGap?: import("csstype").GridRowGapProperty<string | number> | undefined;
826
+ imeMode?: import("csstype").ImeModeProperty | undefined;
827
+ offsetBlock?: import("csstype").InsetBlockProperty<string | number> | undefined;
828
+ offsetBlockEnd?: import("csstype").InsetBlockEndProperty<string | number> | undefined;
829
+ offsetBlockStart?: import("csstype").InsetBlockStartProperty<string | number> | undefined;
830
+ offsetInline?: import("csstype").InsetInlineProperty<string | number> | undefined;
831
+ offsetInlineEnd?: import("csstype").InsetInlineEndProperty<string | number> | undefined;
832
+ offsetInlineStart?: import("csstype").InsetInlineStartProperty<string | number> | undefined;
833
+ scrollSnapCoordinate?: import("csstype").ScrollSnapCoordinateProperty<string | number> | undefined;
834
+ scrollSnapDestination?: import("csstype").ScrollSnapDestinationProperty<string | number> | undefined;
835
+ scrollSnapPointsX?: string | undefined;
836
+ scrollSnapPointsY?: string | undefined;
837
+ scrollSnapTypeX?: import("csstype").ScrollSnapTypeXProperty | undefined;
838
+ scrollSnapTypeY?: import("csstype").ScrollSnapTypeYProperty | undefined;
839
+ KhtmlBoxAlign?: import("csstype").BoxAlignProperty | undefined;
840
+ KhtmlBoxDirection?: import("csstype").BoxDirectionProperty | undefined;
841
+ KhtmlBoxFlex?: import("csstype").GlobalsNumber | undefined;
842
+ KhtmlBoxFlexGroup?: import("csstype").GlobalsNumber | undefined;
843
+ KhtmlBoxLines?: import("csstype").BoxLinesProperty | undefined;
844
+ KhtmlBoxOrdinalGroup?: import("csstype").GlobalsNumber | undefined;
845
+ KhtmlBoxOrient?: import("csstype").BoxOrientProperty | undefined;
846
+ KhtmlBoxPack?: import("csstype").BoxPackProperty | undefined;
847
+ KhtmlLineBreak?: import("csstype").LineBreakProperty | undefined;
848
+ KhtmlOpacity?: import("csstype").OpacityProperty | undefined;
849
+ KhtmlUserSelect?: import("csstype").UserSelectProperty | undefined;
850
+ MozBackgroundClip?: string | undefined;
851
+ MozBackgroundInlinePolicy?: import("csstype").BoxDecorationBreakProperty | undefined;
852
+ MozBackgroundOrigin?: string | undefined;
853
+ MozBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
854
+ MozBinding?: string | undefined;
855
+ MozBorderRadius?: import("csstype").BorderRadiusProperty<string | number> | undefined;
856
+ MozBorderRadiusBottomleft?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
857
+ MozBorderRadiusBottomright?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
858
+ MozBorderRadiusTopleft?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
859
+ MozBorderRadiusTopright?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
860
+ MozBoxAlign?: import("csstype").BoxAlignProperty | undefined;
861
+ MozBoxDirection?: import("csstype").BoxDirectionProperty | undefined;
862
+ MozBoxFlex?: import("csstype").GlobalsNumber | undefined;
863
+ MozBoxOrdinalGroup?: import("csstype").GlobalsNumber | undefined;
864
+ MozBoxOrient?: import("csstype").BoxOrientProperty | undefined;
865
+ MozBoxPack?: import("csstype").BoxPackProperty | undefined;
866
+ MozBoxShadow?: string | undefined;
867
+ MozFloatEdge?: import("csstype").MozFloatEdgeProperty | undefined;
868
+ MozForceBrokenImageIcon?: import("csstype").MozForceBrokenImageIconProperty | undefined;
869
+ MozOpacity?: import("csstype").OpacityProperty | undefined;
870
+ MozOutline?: import("csstype").OutlineProperty<string | number> | undefined;
871
+ MozOutlineColor?: string | undefined;
872
+ MozOutlineRadius?: import("csstype").MozOutlineRadiusProperty<string | number> | undefined;
873
+ MozOutlineRadiusBottomleft?: import("csstype").MozOutlineRadiusBottomleftProperty<string | number> | undefined;
874
+ MozOutlineRadiusBottomright?: import("csstype").MozOutlineRadiusBottomrightProperty<string | number> | undefined;
875
+ MozOutlineRadiusTopleft?: import("csstype").MozOutlineRadiusTopleftProperty<string | number> | undefined;
876
+ MozOutlineRadiusTopright?: import("csstype").MozOutlineRadiusToprightProperty<string | number> | undefined;
877
+ MozOutlineStyle?: string | undefined;
878
+ MozOutlineWidth?: import("csstype").OutlineWidthProperty<string | number> | undefined;
879
+ MozTextAlignLast?: import("csstype").TextAlignLastProperty | undefined;
880
+ MozTextDecorationColor?: string | undefined;
881
+ MozTextDecorationLine?: string | undefined;
882
+ MozTextDecorationStyle?: import("csstype").TextDecorationStyleProperty | undefined;
883
+ MozUserInput?: import("csstype").MozUserInputProperty | undefined;
884
+ msImeMode?: import("csstype").ImeModeProperty | undefined;
885
+ OAnimation?: import("csstype").AnimationProperty | undefined;
886
+ OAnimationDelay?: string | undefined;
887
+ OAnimationDirection?: string | undefined;
888
+ OAnimationDuration?: string | undefined;
889
+ OAnimationFillMode?: string | undefined;
890
+ OAnimationIterationCount?: import("csstype").AnimationIterationCountProperty | undefined;
891
+ OAnimationName?: string | undefined;
892
+ OAnimationPlayState?: string | undefined;
893
+ OAnimationTimingFunction?: string | undefined;
894
+ OBackgroundSize?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
895
+ OBorderImage?: import("csstype").BorderImageProperty | undefined;
896
+ OObjectFit?: import("csstype").ObjectFitProperty | undefined;
897
+ OObjectPosition?: import("csstype").ObjectPositionProperty<string | number> | undefined;
898
+ OTabSize?: import("csstype").TabSizeProperty<string | number> | undefined;
899
+ OTextOverflow?: string | undefined;
900
+ OTransform?: string | undefined;
901
+ OTransformOrigin?: import("csstype").TransformOriginProperty<string | number> | undefined;
902
+ OTransition?: string | undefined;
903
+ OTransitionDelay?: string | undefined;
904
+ OTransitionDuration?: string | undefined;
905
+ OTransitionProperty?: string | undefined;
906
+ OTransitionTimingFunction?: string | undefined;
907
+ WebkitBoxAlign?: import("csstype").BoxAlignProperty | undefined;
908
+ WebkitBoxDirection?: import("csstype").BoxDirectionProperty | undefined;
909
+ WebkitBoxFlex?: import("csstype").GlobalsNumber | undefined;
910
+ WebkitBoxFlexGroup?: import("csstype").GlobalsNumber | undefined;
911
+ WebkitBoxLines?: import("csstype").BoxLinesProperty | undefined;
912
+ WebkitBoxOrdinalGroup?: import("csstype").GlobalsNumber | undefined;
913
+ WebkitBoxOrient?: import("csstype").BoxOrientProperty | undefined;
914
+ WebkitBoxPack?: import("csstype").BoxPackProperty | undefined;
915
+ WebkitScrollSnapPointsX?: string | undefined;
916
+ WebkitScrollSnapPointsY?: string | undefined;
917
+ alignmentBaseline?: import("csstype").AlignmentBaselineProperty | undefined;
918
+ baselineShift?: import("csstype").BaselineShiftProperty<string | number> | undefined;
919
+ clipRule?: import("csstype").ClipRuleProperty | undefined;
920
+ colorInterpolation?: import("csstype").ColorInterpolationProperty | undefined;
921
+ colorRendering?: import("csstype").ColorRenderingProperty | undefined;
922
+ dominantBaseline?: import("csstype").DominantBaselineProperty | undefined;
923
+ fill?: string | undefined;
924
+ fillOpacity?: import("csstype").GlobalsNumber | undefined;
925
+ fillRule?: import("csstype").FillRuleProperty | undefined;
926
+ floodColor?: string | undefined;
927
+ floodOpacity?: import("csstype").GlobalsNumber | undefined;
928
+ glyphOrientationVertical?: import("csstype").GlyphOrientationVerticalProperty | undefined;
929
+ lightingColor?: string | undefined;
930
+ marker?: string | undefined;
931
+ markerEnd?: string | undefined;
932
+ markerMid?: string | undefined;
933
+ markerStart?: string | undefined;
934
+ shapeRendering?: import("csstype").ShapeRenderingProperty | undefined;
935
+ stopColor?: string | undefined;
936
+ stopOpacity?: import("csstype").GlobalsNumber | undefined;
937
+ stroke?: string | undefined;
938
+ strokeDasharray?: import("csstype").StrokeDasharrayProperty<string | number> | undefined;
939
+ strokeDashoffset?: import("csstype").StrokeDashoffsetProperty<string | number> | undefined;
940
+ strokeLinecap?: import("csstype").StrokeLinecapProperty | undefined;
941
+ strokeLinejoin?: import("csstype").StrokeLinejoinProperty | undefined;
942
+ strokeMiterlimit?: import("csstype").GlobalsNumber | undefined;
943
+ strokeOpacity?: import("csstype").GlobalsNumber | undefined;
944
+ strokeWidth?: import("csstype").StrokeWidthProperty<string | number> | undefined;
945
+ textAnchor?: import("csstype").TextAnchorProperty | undefined;
946
+ vectorEffect?: import("csstype").VectorEffectProperty | undefined;
947
+ "accent-color"?: string | undefined;
948
+ "align-content"?: string | undefined;
949
+ "align-items"?: string | undefined;
950
+ "align-self"?: string | undefined;
951
+ "align-tracks"?: string | undefined;
952
+ "animation-composition"?: string | undefined;
953
+ "animation-delay"?: string | undefined;
954
+ "animation-direction"?: string | undefined;
955
+ "animation-duration"?: string | undefined;
956
+ "animation-fill-mode"?: string | undefined;
957
+ "animation-iteration-count"?: import("csstype").AnimationIterationCountProperty | undefined;
958
+ "animation-name"?: string | undefined;
959
+ "animation-play-state"?: string | undefined;
960
+ "animation-timeline"?: string | undefined;
961
+ "animation-timing-function"?: string | undefined;
962
+ "aspect-ratio"?: import("csstype").AspectRatioProperty | undefined;
963
+ "backdrop-filter"?: string | undefined;
964
+ "backface-visibility"?: import("csstype").BackfaceVisibilityProperty | undefined;
965
+ "background-attachment"?: string | undefined;
966
+ "background-blend-mode"?: string | undefined;
967
+ "background-clip"?: string | undefined;
968
+ "background-color"?: string | undefined;
969
+ "background-image"?: string | undefined;
970
+ "background-origin"?: string | undefined;
971
+ "background-position-x"?: import("csstype").BackgroundPositionXProperty<string | number> | undefined;
972
+ "background-position-y"?: import("csstype").BackgroundPositionYProperty<string | number> | undefined;
973
+ "background-repeat"?: string | undefined;
974
+ "background-size"?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
975
+ "block-overflow"?: string | undefined;
976
+ "block-size"?: import("csstype").BlockSizeProperty<string | number> | undefined;
977
+ "border-block-color"?: string | undefined;
978
+ "border-block-end-color"?: string | undefined;
979
+ "border-block-end-style"?: import("csstype").BorderBlockEndStyleProperty | undefined;
980
+ "border-block-end-width"?: import("csstype").BorderBlockEndWidthProperty<string | number> | undefined;
981
+ "border-block-start-color"?: string | undefined;
982
+ "border-block-start-style"?: import("csstype").BorderBlockStartStyleProperty | undefined;
983
+ "border-block-start-width"?: import("csstype").BorderBlockStartWidthProperty<string | number> | undefined;
984
+ "border-block-style"?: import("csstype").BorderBlockStyleProperty | undefined;
985
+ "border-block-width"?: import("csstype").BorderBlockWidthProperty<string | number> | undefined;
986
+ "border-bottom-color"?: string | undefined;
987
+ "border-bottom-left-radius"?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
988
+ "border-bottom-right-radius"?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
989
+ "border-bottom-style"?: import("csstype").BorderBottomStyleProperty | undefined;
990
+ "border-bottom-width"?: import("csstype").BorderBottomWidthProperty<string | number> | undefined;
991
+ "border-collapse"?: import("csstype").BorderCollapseProperty | undefined;
992
+ "border-end-end-radius"?: import("csstype").BorderEndEndRadiusProperty<string | number> | undefined;
993
+ "border-end-start-radius"?: import("csstype").BorderEndStartRadiusProperty<string | number> | undefined;
994
+ "border-image-outset"?: import("csstype").BorderImageOutsetProperty<string | number> | undefined;
995
+ "border-image-repeat"?: string | undefined;
996
+ "border-image-slice"?: import("csstype").BorderImageSliceProperty | undefined;
997
+ "border-image-source"?: string | undefined;
998
+ "border-image-width"?: import("csstype").BorderImageWidthProperty<string | number> | undefined;
999
+ "border-inline-color"?: string | undefined;
1000
+ "border-inline-end-color"?: string | undefined;
1001
+ "border-inline-end-style"?: import("csstype").BorderInlineEndStyleProperty | undefined;
1002
+ "border-inline-end-width"?: import("csstype").BorderInlineEndWidthProperty<string | number> | undefined;
1003
+ "border-inline-start-color"?: string | undefined;
1004
+ "border-inline-start-style"?: import("csstype").BorderInlineStartStyleProperty | undefined;
1005
+ "border-inline-start-width"?: import("csstype").BorderInlineStartWidthProperty<string | number> | undefined;
1006
+ "border-inline-style"?: import("csstype").BorderInlineStyleProperty | undefined;
1007
+ "border-inline-width"?: import("csstype").BorderInlineWidthProperty<string | number> | undefined;
1008
+ "border-left-color"?: string | undefined;
1009
+ "border-left-style"?: import("csstype").BorderLeftStyleProperty | undefined;
1010
+ "border-left-width"?: import("csstype").BorderLeftWidthProperty<string | number> | undefined;
1011
+ "border-right-color"?: string | undefined;
1012
+ "border-right-style"?: import("csstype").BorderRightStyleProperty | undefined;
1013
+ "border-right-width"?: import("csstype").BorderRightWidthProperty<string | number> | undefined;
1014
+ "border-spacing"?: import("csstype").BorderSpacingProperty<string | number> | undefined;
1015
+ "border-start-end-radius"?: import("csstype").BorderStartEndRadiusProperty<string | number> | undefined;
1016
+ "border-start-start-radius"?: import("csstype").BorderStartStartRadiusProperty<string | number> | undefined;
1017
+ "border-top-color"?: string | undefined;
1018
+ "border-top-left-radius"?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
1019
+ "border-top-right-radius"?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
1020
+ "border-top-style"?: import("csstype").BorderTopStyleProperty | undefined;
1021
+ "border-top-width"?: import("csstype").BorderTopWidthProperty<string | number> | undefined;
1022
+ "box-decoration-break"?: import("csstype").BoxDecorationBreakProperty | undefined;
1023
+ "box-shadow"?: string | undefined;
1024
+ "box-sizing"?: import("csstype").BoxSizingProperty | undefined;
1025
+ "break-after"?: import("csstype").BreakAfterProperty | undefined;
1026
+ "break-before"?: import("csstype").BreakBeforeProperty | undefined;
1027
+ "break-inside"?: import("csstype").BreakInsideProperty | undefined;
1028
+ "caption-side"?: import("csstype").CaptionSideProperty | undefined;
1029
+ "caret-color"?: string | undefined;
1030
+ "clip-path"?: string | undefined;
1031
+ "color-adjust"?: import("csstype").PrintColorAdjustProperty | undefined;
1032
+ "color-scheme"?: string | undefined;
1033
+ "column-count"?: import("csstype").ColumnCountProperty | undefined;
1034
+ "column-fill"?: import("csstype").ColumnFillProperty | undefined;
1035
+ "column-gap"?: import("csstype").ColumnGapProperty<string | number> | undefined;
1036
+ "column-rule-color"?: string | undefined;
1037
+ "column-rule-style"?: string | undefined;
1038
+ "column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
1039
+ "column-span"?: import("csstype").ColumnSpanProperty | undefined;
1040
+ "column-width"?: import("csstype").ColumnWidthProperty<string | number> | undefined;
1041
+ "content-visibility"?: import("csstype").ContentVisibilityProperty | undefined;
1042
+ "counter-increment"?: string | undefined;
1043
+ "counter-reset"?: string | undefined;
1044
+ "counter-set"?: string | undefined;
1045
+ "empty-cells"?: import("csstype").EmptyCellsProperty | undefined;
1046
+ "flex-basis"?: import("csstype").FlexBasisProperty<string | number> | undefined;
1047
+ "flex-direction"?: import("csstype").FlexDirectionProperty | undefined;
1048
+ "flex-grow"?: import("csstype").GlobalsNumber | undefined;
1049
+ "flex-shrink"?: import("csstype").GlobalsNumber | undefined;
1050
+ "flex-wrap"?: import("csstype").FlexWrapProperty | undefined;
1051
+ "font-family"?: string | undefined;
1052
+ "font-feature-settings"?: string | undefined;
1053
+ "font-kerning"?: import("csstype").FontKerningProperty | undefined;
1054
+ "font-language-override"?: string | undefined;
1055
+ "font-optical-sizing"?: import("csstype").FontOpticalSizingProperty | undefined;
1056
+ "font-size"?: import("csstype").FontSizeProperty<string | number> | undefined;
1057
+ "font-size-adjust"?: import("csstype").FontSizeAdjustProperty | undefined;
1058
+ "font-smooth"?: import("csstype").FontSmoothProperty<string | number> | undefined;
1059
+ "font-stretch"?: string | undefined;
1060
+ "font-style"?: string | undefined;
1061
+ "font-synthesis"?: string | undefined;
1062
+ "font-variant"?: string | undefined;
1063
+ "font-variant-alternates"?: string | undefined;
1064
+ "font-variant-caps"?: import("csstype").FontVariantCapsProperty | undefined;
1065
+ "font-variant-east-asian"?: string | undefined;
1066
+ "font-variant-ligatures"?: string | undefined;
1067
+ "font-variant-numeric"?: string | undefined;
1068
+ "font-variant-position"?: import("csstype").FontVariantPositionProperty | undefined;
1069
+ "font-variation-settings"?: string | undefined;
1070
+ "font-weight"?: import("csstype").FontWeightProperty | undefined;
1071
+ "forced-color-adjust"?: import("csstype").ForcedColorAdjustProperty | undefined;
1072
+ "grid-auto-columns"?: import("csstype").GridAutoColumnsProperty<string | number> | undefined;
1073
+ "grid-auto-flow"?: string | undefined;
1074
+ "grid-auto-rows"?: import("csstype").GridAutoRowsProperty<string | number> | undefined;
1075
+ "grid-column-end"?: import("csstype").GridColumnEndProperty | undefined;
1076
+ "grid-column-start"?: import("csstype").GridColumnStartProperty | undefined;
1077
+ "grid-row-end"?: import("csstype").GridRowEndProperty | undefined;
1078
+ "grid-row-start"?: import("csstype").GridRowStartProperty | undefined;
1079
+ "grid-template-areas"?: string | undefined;
1080
+ "grid-template-columns"?: import("csstype").GridTemplateColumnsProperty<string | number> | undefined;
1081
+ "grid-template-rows"?: import("csstype").GridTemplateRowsProperty<string | number> | undefined;
1082
+ "hanging-punctuation"?: string | undefined;
1083
+ "hyphenate-character"?: string | undefined;
1084
+ "image-orientation"?: string | undefined;
1085
+ "image-rendering"?: import("csstype").ImageRenderingProperty | undefined;
1086
+ "image-resolution"?: string | undefined;
1087
+ "initial-letter"?: import("csstype").InitialLetterProperty | undefined;
1088
+ "inline-size"?: import("csstype").InlineSizeProperty<string | number> | undefined;
1089
+ "input-security"?: import("csstype").InputSecurityProperty | undefined;
1090
+ "inset-block"?: import("csstype").InsetBlockProperty<string | number> | undefined;
1091
+ "inset-block-end"?: import("csstype").InsetBlockEndProperty<string | number> | undefined;
1092
+ "inset-block-start"?: import("csstype").InsetBlockStartProperty<string | number> | undefined;
1093
+ "inset-inline"?: import("csstype").InsetInlineProperty<string | number> | undefined;
1094
+ "inset-inline-end"?: import("csstype").InsetInlineEndProperty<string | number> | undefined;
1095
+ "inset-inline-start"?: import("csstype").InsetInlineStartProperty<string | number> | undefined;
1096
+ "justify-content"?: string | undefined;
1097
+ "justify-items"?: string | undefined;
1098
+ "justify-self"?: string | undefined;
1099
+ "justify-tracks"?: string | undefined;
1100
+ "letter-spacing"?: import("csstype").LetterSpacingProperty<string | number> | undefined;
1101
+ "line-break"?: import("csstype").LineBreakProperty | undefined;
1102
+ "line-height"?: import("csstype").LineHeightProperty<string | number> | undefined;
1103
+ "line-height-step"?: import("csstype").LineHeightStepProperty<string | number> | undefined;
1104
+ "list-style-image"?: string | undefined;
1105
+ "list-style-position"?: import("csstype").ListStylePositionProperty | undefined;
1106
+ "list-style-type"?: string | undefined;
1107
+ "margin-block"?: import("csstype").MarginBlockProperty<string | number> | undefined;
1108
+ "margin-block-end"?: import("csstype").MarginBlockEndProperty<string | number> | undefined;
1109
+ "margin-block-start"?: import("csstype").MarginBlockStartProperty<string | number> | undefined;
1110
+ "margin-bottom"?: import("csstype").MarginBottomProperty<string | number> | undefined;
1111
+ "margin-inline"?: import("csstype").MarginInlineProperty<string | number> | undefined;
1112
+ "margin-inline-end"?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
1113
+ "margin-inline-start"?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
1114
+ "margin-left"?: import("csstype").MarginLeftProperty<string | number> | undefined;
1115
+ "margin-right"?: import("csstype").MarginRightProperty<string | number> | undefined;
1116
+ "margin-top"?: import("csstype").MarginTopProperty<string | number> | undefined;
1117
+ "mask-border-mode"?: import("csstype").MaskBorderModeProperty | undefined;
1118
+ "mask-border-outset"?: import("csstype").MaskBorderOutsetProperty<string | number> | undefined;
1119
+ "mask-border-repeat"?: string | undefined;
1120
+ "mask-border-slice"?: import("csstype").MaskBorderSliceProperty | undefined;
1121
+ "mask-border-source"?: string | undefined;
1122
+ "mask-border-width"?: import("csstype").MaskBorderWidthProperty<string | number> | undefined;
1123
+ "mask-clip"?: string | undefined;
1124
+ "mask-composite"?: string | undefined;
1125
+ "mask-image"?: string | undefined;
1126
+ "mask-mode"?: string | undefined;
1127
+ "mask-origin"?: string | undefined;
1128
+ "mask-position"?: import("csstype").MaskPositionProperty<string | number> | undefined;
1129
+ "mask-repeat"?: string | undefined;
1130
+ "mask-size"?: import("csstype").MaskSizeProperty<string | number> | undefined;
1131
+ "mask-type"?: import("csstype").MaskTypeProperty | undefined;
1132
+ "math-depth"?: import("csstype").MathDepthProperty | undefined;
1133
+ "math-shift"?: import("csstype").MathShiftProperty | undefined;
1134
+ "math-style"?: import("csstype").MathStyleProperty | undefined;
1135
+ "max-block-size"?: import("csstype").MaxBlockSizeProperty<string | number> | undefined;
1136
+ "max-height"?: import("csstype").MaxHeightProperty<string | number> | undefined;
1137
+ "max-inline-size"?: import("csstype").MaxInlineSizeProperty<string | number> | undefined;
1138
+ "max-lines"?: import("csstype").MaxLinesProperty | undefined;
1139
+ "max-width"?: import("csstype").MaxWidthProperty<string | number> | undefined;
1140
+ "min-block-size"?: import("csstype").MinBlockSizeProperty<string | number> | undefined;
1141
+ "min-height"?: import("csstype").MinHeightProperty<string | number> | undefined;
1142
+ "min-inline-size"?: import("csstype").MinInlineSizeProperty<string | number> | undefined;
1143
+ "min-width"?: import("csstype").MinWidthProperty<string | number> | undefined;
1144
+ "mix-blend-mode"?: import("csstype").MixBlendModeProperty | undefined;
1145
+ "motion-distance"?: import("csstype").OffsetDistanceProperty<string | number> | undefined;
1146
+ "motion-path"?: string | undefined;
1147
+ "motion-rotation"?: string | undefined;
1148
+ "object-fit"?: import("csstype").ObjectFitProperty | undefined;
1149
+ "object-position"?: import("csstype").ObjectPositionProperty<string | number> | undefined;
1150
+ "offset-anchor"?: import("csstype").OffsetAnchorProperty<string | number> | undefined;
1151
+ "offset-distance"?: import("csstype").OffsetDistanceProperty<string | number> | undefined;
1152
+ "offset-path"?: string | undefined;
1153
+ "offset-rotate"?: string | undefined;
1154
+ "offset-rotation"?: string | undefined;
1155
+ "outline-color"?: string | undefined;
1156
+ "outline-offset"?: import("csstype").OutlineOffsetProperty<string | number> | undefined;
1157
+ "outline-style"?: string | undefined;
1158
+ "outline-width"?: import("csstype").OutlineWidthProperty<string | number> | undefined;
1159
+ "overflow-anchor"?: import("csstype").OverflowAnchorProperty | undefined;
1160
+ "overflow-block"?: import("csstype").OverflowBlockProperty | undefined;
1161
+ "overflow-clip-box"?: import("csstype").OverflowClipBoxProperty | undefined;
1162
+ "overflow-clip-margin"?: import("csstype").OverflowClipMarginProperty<string | number> | undefined;
1163
+ "overflow-inline"?: import("csstype").OverflowInlineProperty | undefined;
1164
+ "overflow-wrap"?: import("csstype").OverflowWrapProperty | undefined;
1165
+ "overflow-x"?: import("csstype").OverflowXProperty | undefined;
1166
+ "overflow-y"?: import("csstype").OverflowYProperty | undefined;
1167
+ "overscroll-behavior-block"?: import("csstype").OverscrollBehaviorBlockProperty | undefined;
1168
+ "overscroll-behavior-inline"?: import("csstype").OverscrollBehaviorInlineProperty | undefined;
1169
+ "overscroll-behavior-x"?: import("csstype").OverscrollBehaviorXProperty | undefined;
1170
+ "overscroll-behavior-y"?: import("csstype").OverscrollBehaviorYProperty | undefined;
1171
+ "padding-block"?: import("csstype").PaddingBlockProperty<string | number> | undefined;
1172
+ "padding-block-end"?: import("csstype").PaddingBlockEndProperty<string | number> | undefined;
1173
+ "padding-block-start"?: import("csstype").PaddingBlockStartProperty<string | number> | undefined;
1174
+ "padding-bottom"?: import("csstype").PaddingBottomProperty<string | number> | undefined;
1175
+ "padding-inline"?: import("csstype").PaddingInlineProperty<string | number> | undefined;
1176
+ "padding-inline-end"?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
1177
+ "padding-inline-start"?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
1178
+ "padding-left"?: import("csstype").PaddingLeftProperty<string | number> | undefined;
1179
+ "padding-right"?: import("csstype").PaddingRightProperty<string | number> | undefined;
1180
+ "padding-top"?: import("csstype").PaddingTopProperty<string | number> | undefined;
1181
+ "page-break-after"?: import("csstype").PageBreakAfterProperty | undefined;
1182
+ "page-break-before"?: import("csstype").PageBreakBeforeProperty | undefined;
1183
+ "page-break-inside"?: import("csstype").PageBreakInsideProperty | undefined;
1184
+ "paint-order"?: string | undefined;
1185
+ "perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
1186
+ "place-content"?: string | undefined;
1187
+ "pointer-events"?: import("csstype").PointerEventsProperty | undefined;
1188
+ "print-color-adjust"?: import("csstype").PrintColorAdjustProperty | undefined;
1189
+ "row-gap"?: import("csstype").RowGapProperty<string | number> | undefined;
1190
+ "ruby-align"?: import("csstype").RubyAlignProperty | undefined;
1191
+ "ruby-merge"?: import("csstype").RubyMergeProperty | undefined;
1192
+ "ruby-position"?: string | undefined;
1193
+ "scroll-behavior"?: import("csstype").ScrollBehaviorProperty | undefined;
1194
+ "scroll-margin"?: import("csstype").ScrollMarginProperty<string | number> | undefined;
1195
+ "scroll-margin-block"?: import("csstype").ScrollMarginBlockProperty<string | number> | undefined;
1196
+ "scroll-margin-block-end"?: import("csstype").ScrollMarginBlockEndProperty<string | number> | undefined;
1197
+ "scroll-margin-block-start"?: import("csstype").ScrollMarginBlockStartProperty<string | number> | undefined;
1198
+ "scroll-margin-bottom"?: import("csstype").ScrollMarginBottomProperty<string | number> | undefined;
1199
+ "scroll-margin-inline"?: import("csstype").ScrollMarginInlineProperty<string | number> | undefined;
1200
+ "scroll-margin-inline-end"?: import("csstype").ScrollMarginInlineEndProperty<string | number> | undefined;
1201
+ "scroll-margin-inline-start"?: import("csstype").ScrollMarginInlineStartProperty<string | number> | undefined;
1202
+ "scroll-margin-left"?: import("csstype").ScrollMarginLeftProperty<string | number> | undefined;
1203
+ "scroll-margin-right"?: import("csstype").ScrollMarginRightProperty<string | number> | undefined;
1204
+ "scroll-margin-top"?: import("csstype").ScrollMarginTopProperty<string | number> | undefined;
1205
+ "scroll-padding"?: import("csstype").ScrollPaddingProperty<string | number> | undefined;
1206
+ "scroll-padding-block"?: import("csstype").ScrollPaddingBlockProperty<string | number> | undefined;
1207
+ "scroll-padding-block-end"?: import("csstype").ScrollPaddingBlockEndProperty<string | number> | undefined;
1208
+ "scroll-padding-block-start"?: import("csstype").ScrollPaddingBlockStartProperty<string | number> | undefined;
1209
+ "scroll-padding-bottom"?: import("csstype").ScrollPaddingBottomProperty<string | number> | undefined;
1210
+ "scroll-padding-inline"?: import("csstype").ScrollPaddingInlineProperty<string | number> | undefined;
1211
+ "scroll-padding-inline-end"?: import("csstype").ScrollPaddingInlineEndProperty<string | number> | undefined;
1212
+ "scroll-padding-inline-start"?: import("csstype").ScrollPaddingInlineStartProperty<string | number> | undefined;
1213
+ "scroll-padding-left"?: import("csstype").ScrollPaddingLeftProperty<string | number> | undefined;
1214
+ "scroll-padding-right"?: import("csstype").ScrollPaddingRightProperty<string | number> | undefined;
1215
+ "scroll-padding-top"?: import("csstype").ScrollPaddingTopProperty<string | number> | undefined;
1216
+ "scroll-snap-align"?: string | undefined;
1217
+ "scroll-snap-margin"?: import("csstype").ScrollMarginProperty<string | number> | undefined;
1218
+ "scroll-snap-margin-bottom"?: import("csstype").ScrollMarginBottomProperty<string | number> | undefined;
1219
+ "scroll-snap-margin-left"?: import("csstype").ScrollMarginLeftProperty<string | number> | undefined;
1220
+ "scroll-snap-margin-right"?: import("csstype").ScrollMarginRightProperty<string | number> | undefined;
1221
+ "scroll-snap-margin-top"?: import("csstype").ScrollMarginTopProperty<string | number> | undefined;
1222
+ "scroll-snap-stop"?: import("csstype").ScrollSnapStopProperty | undefined;
1223
+ "scroll-snap-type"?: string | undefined;
1224
+ "scrollbar-color"?: string | undefined;
1225
+ "scrollbar-gutter"?: string | undefined;
1226
+ "scrollbar-width"?: import("csstype").ScrollbarWidthProperty | undefined;
1227
+ "shape-image-threshold"?: import("csstype").ShapeImageThresholdProperty | undefined;
1228
+ "shape-margin"?: import("csstype").ShapeMarginProperty<string | number> | undefined;
1229
+ "shape-outside"?: string | undefined;
1230
+ "tab-size"?: import("csstype").TabSizeProperty<string | number> | undefined;
1231
+ "table-layout"?: import("csstype").TableLayoutProperty | undefined;
1232
+ "text-align"?: import("csstype").TextAlignProperty | undefined;
1233
+ "text-align-last"?: import("csstype").TextAlignLastProperty | undefined;
1234
+ "text-combine-upright"?: string | undefined;
1235
+ "text-decoration-color"?: string | undefined;
1236
+ "text-decoration-line"?: string | undefined;
1237
+ "text-decoration-skip"?: string | undefined;
1238
+ "text-decoration-skip-ink"?: import("csstype").TextDecorationSkipInkProperty | undefined;
1239
+ "text-decoration-style"?: import("csstype").TextDecorationStyleProperty | undefined;
1240
+ "text-decoration-thickness"?: import("csstype").TextDecorationThicknessProperty<string | number> | undefined;
1241
+ "text-emphasis-color"?: string | undefined;
1242
+ "text-emphasis-position"?: string | undefined;
1243
+ "text-emphasis-style"?: string | undefined;
1244
+ "text-indent"?: import("csstype").TextIndentProperty<string | number> | undefined;
1245
+ "text-justify"?: import("csstype").TextJustifyProperty | undefined;
1246
+ "text-orientation"?: import("csstype").TextOrientationProperty | undefined;
1247
+ "text-overflow"?: string | undefined;
1248
+ "text-rendering"?: import("csstype").TextRenderingProperty | undefined;
1249
+ "text-shadow"?: string | undefined;
1250
+ "text-size-adjust"?: string | undefined;
1251
+ "text-transform"?: import("csstype").TextTransformProperty | undefined;
1252
+ "text-underline-offset"?: import("csstype").TextUnderlineOffsetProperty<string | number> | undefined;
1253
+ "text-underline-position"?: string | undefined;
1254
+ "touch-action"?: string | undefined;
1255
+ "transform-box"?: import("csstype").TransformBoxProperty | undefined;
1256
+ "transform-origin"?: import("csstype").TransformOriginProperty<string | number> | undefined;
1257
+ "transform-style"?: import("csstype").TransformStyleProperty | undefined;
1258
+ "transition-delay"?: string | undefined;
1259
+ "transition-duration"?: string | undefined;
1260
+ "transition-property"?: string | undefined;
1261
+ "transition-timing-function"?: string | undefined;
1262
+ "unicode-bidi"?: import("csstype").UnicodeBidiProperty | undefined;
1263
+ "user-select"?: import("csstype").UserSelectProperty | undefined;
1264
+ "vertical-align"?: import("csstype").VerticalAlignProperty<string | number> | undefined;
1265
+ "white-space"?: import("csstype").WhiteSpaceProperty | undefined;
1266
+ "will-change"?: string | undefined;
1267
+ "word-break"?: import("csstype").WordBreakProperty | undefined;
1268
+ "word-spacing"?: import("csstype").WordSpacingProperty<string | number> | undefined;
1269
+ "word-wrap"?: import("csstype").WordWrapProperty | undefined;
1270
+ "writing-mode"?: import("csstype").WritingModeProperty | undefined;
1271
+ "z-index"?: import("csstype").ZIndexProperty | undefined;
1272
+ "background-position"?: import("csstype").BackgroundPositionProperty<string | number> | undefined;
1273
+ "border-block"?: import("csstype").BorderBlockProperty<string | number> | undefined;
1274
+ "border-block-end"?: import("csstype").BorderBlockEndProperty<string | number> | undefined;
1275
+ "border-block-start"?: import("csstype").BorderBlockStartProperty<string | number> | undefined;
1276
+ "border-bottom"?: import("csstype").BorderBottomProperty<string | number> | undefined;
1277
+ "border-color"?: string | undefined;
1278
+ "border-image"?: import("csstype").BorderImageProperty | undefined;
1279
+ "border-inline"?: import("csstype").BorderInlineProperty<string | number> | undefined;
1280
+ "border-inline-end"?: import("csstype").BorderInlineEndProperty<string | number> | undefined;
1281
+ "border-inline-start"?: import("csstype").BorderInlineStartProperty<string | number> | undefined;
1282
+ "border-left"?: import("csstype").BorderLeftProperty<string | number> | undefined;
1283
+ "border-radius"?: import("csstype").BorderRadiusProperty<string | number> | undefined;
1284
+ "border-right"?: import("csstype").BorderRightProperty<string | number> | undefined;
1285
+ "border-style"?: string | undefined;
1286
+ "border-top"?: import("csstype").BorderTopProperty<string | number> | undefined;
1287
+ "border-width"?: import("csstype").BorderWidthProperty<string | number> | undefined;
1288
+ "column-rule"?: import("csstype").ColumnRuleProperty<string | number> | undefined;
1289
+ "flex-flow"?: string | undefined;
1290
+ "grid-area"?: import("csstype").GridAreaProperty | undefined;
1291
+ "grid-column"?: import("csstype").GridColumnProperty | undefined;
1292
+ "grid-row"?: import("csstype").GridRowProperty | undefined;
1293
+ "grid-template"?: string | undefined;
1294
+ "line-clamp"?: import("csstype").LineClampProperty | undefined;
1295
+ "list-style"?: string | undefined;
1296
+ "mask-border"?: import("csstype").MaskBorderProperty | undefined;
1297
+ "overscroll-behavior"?: string | undefined;
1298
+ "place-items"?: string | undefined;
1299
+ "place-self"?: string | undefined;
1300
+ "text-decoration"?: import("csstype").TextDecorationProperty<string | number> | undefined;
1301
+ "text-emphasis"?: string | undefined;
1302
+ "-moz-animation-delay"?: string | undefined;
1303
+ "-moz-animation-direction"?: string | undefined;
1304
+ "-moz-animation-duration"?: string | undefined;
1305
+ "-moz-animation-fill-mode"?: string | undefined;
1306
+ "-moz-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty | undefined;
1307
+ "-moz-animation-name"?: string | undefined;
1308
+ "-moz-animation-play-state"?: string | undefined;
1309
+ "-moz-animation-timing-function"?: string | undefined;
1310
+ "-moz-appearance"?: import("csstype").MozAppearanceProperty | undefined;
1311
+ "-moz-backface-visibility"?: import("csstype").BackfaceVisibilityProperty | undefined;
1312
+ "-moz-border-bottom-colors"?: string | undefined;
1313
+ "-moz-border-end-color"?: string | undefined;
1314
+ "-moz-border-end-style"?: import("csstype").BorderInlineEndStyleProperty | undefined;
1315
+ "-moz-border-end-width"?: import("csstype").BorderInlineEndWidthProperty<string | number> | undefined;
1316
+ "-moz-border-left-colors"?: string | undefined;
1317
+ "-moz-border-right-colors"?: string | undefined;
1318
+ "-moz-border-start-color"?: string | undefined;
1319
+ "-moz-border-start-style"?: import("csstype").BorderInlineStartStyleProperty | undefined;
1320
+ "-moz-border-top-colors"?: string | undefined;
1321
+ "-moz-box-sizing"?: import("csstype").BoxSizingProperty | undefined;
1322
+ "-moz-column-count"?: import("csstype").ColumnCountProperty | undefined;
1323
+ "-moz-column-fill"?: import("csstype").ColumnFillProperty | undefined;
1324
+ "-moz-column-rule-color"?: string | undefined;
1325
+ "-moz-column-rule-style"?: string | undefined;
1326
+ "-moz-column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
1327
+ "-moz-column-width"?: import("csstype").ColumnWidthProperty<string | number> | undefined;
1328
+ "-moz-context-properties"?: string | undefined;
1329
+ "-moz-font-feature-settings"?: string | undefined;
1330
+ "-moz-font-language-override"?: string | undefined;
1331
+ "-moz-hyphens"?: import("csstype").HyphensProperty | undefined;
1332
+ "-moz-image-region"?: string | undefined;
1333
+ "-moz-margin-end"?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
1334
+ "-moz-margin-start"?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
1335
+ "-moz-orient"?: import("csstype").MozOrientProperty | undefined;
1336
+ "-moz-osx-font-smoothing"?: import("csstype").FontSmoothProperty<string | number> | undefined;
1337
+ "-moz-padding-end"?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
1338
+ "-moz-padding-start"?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
1339
+ "-moz-perspective"?: import("csstype").PerspectiveProperty<string | number> | undefined;
1340
+ "-moz-perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
1341
+ "-moz-stack-sizing"?: import("csstype").MozStackSizingProperty | undefined;
1342
+ "-moz-tab-size"?: import("csstype").TabSizeProperty<string | number> | undefined;
1343
+ "-moz-text-blink"?: import("csstype").MozTextBlinkProperty | undefined;
1344
+ "-moz-text-size-adjust"?: string | undefined;
1345
+ "-moz-transform-origin"?: import("csstype").TransformOriginProperty<string | number> | undefined;
1346
+ "-moz-transform-style"?: import("csstype").TransformStyleProperty | undefined;
1347
+ "-moz-transition-delay"?: string | undefined;
1348
+ "-moz-transition-duration"?: string | undefined;
1349
+ "-moz-transition-property"?: string | undefined;
1350
+ "-moz-transition-timing-function"?: string | undefined;
1351
+ "-moz-user-focus"?: import("csstype").MozUserFocusProperty | undefined;
1352
+ "-moz-user-modify"?: import("csstype").MozUserModifyProperty | undefined;
1353
+ "-moz-user-select"?: import("csstype").UserSelectProperty | undefined;
1354
+ "-moz-window-dragging"?: import("csstype").MozWindowDraggingProperty | undefined;
1355
+ "-moz-window-shadow"?: import("csstype").MozWindowShadowProperty | undefined;
1356
+ "-ms-accelerator"?: import("csstype").MsAcceleratorProperty | undefined;
1357
+ "-ms-block-progression"?: import("csstype").MsBlockProgressionProperty | undefined;
1358
+ "-ms-content-zoom-chaining"?: import("csstype").MsContentZoomChainingProperty | undefined;
1359
+ "-ms-content-zoom-limit-max"?: string | undefined;
1360
+ "-ms-content-zoom-limit-min"?: string | undefined;
1361
+ "-ms-content-zoom-snap-points"?: string | undefined;
1362
+ "-ms-content-zoom-snap-type"?: import("csstype").MsContentZoomSnapTypeProperty | undefined;
1363
+ "-ms-content-zooming"?: import("csstype").MsContentZoomingProperty | undefined;
1364
+ "-ms-filter"?: string | undefined;
1365
+ "-ms-flex-direction"?: import("csstype").FlexDirectionProperty | undefined;
1366
+ "-ms-flex-positive"?: import("csstype").GlobalsNumber | undefined;
1367
+ "-ms-flow-from"?: string | undefined;
1368
+ "-ms-flow-into"?: string | undefined;
1369
+ "-ms-grid-columns"?: import("csstype").MsGridColumnsProperty<string | number> | undefined;
1370
+ "-ms-grid-rows"?: import("csstype").MsGridRowsProperty<string | number> | undefined;
1371
+ "-ms-high-contrast-adjust"?: import("csstype").MsHighContrastAdjustProperty | undefined;
1372
+ "-ms-hyphenate-limit-chars"?: import("csstype").MsHyphenateLimitCharsProperty | undefined;
1373
+ "-ms-hyphenate-limit-lines"?: import("csstype").MsHyphenateLimitLinesProperty | undefined;
1374
+ "-ms-hyphenate-limit-zone"?: import("csstype").MsHyphenateLimitZoneProperty<string | number> | undefined;
1375
+ "-ms-hyphens"?: import("csstype").HyphensProperty | undefined;
1376
+ "-ms-ime-align"?: import("csstype").MsImeAlignProperty | undefined;
1377
+ "-ms-line-break"?: import("csstype").LineBreakProperty | undefined;
1378
+ "-ms-order"?: import("csstype").GlobalsNumber | undefined;
1379
+ "-ms-overflow-style"?: import("csstype").MsOverflowStyleProperty | undefined;
1380
+ "-ms-overflow-x"?: import("csstype").OverflowXProperty | undefined;
1381
+ "-ms-overflow-y"?: import("csstype").OverflowYProperty | undefined;
1382
+ "-ms-scroll-chaining"?: import("csstype").MsScrollChainingProperty | undefined;
1383
+ "-ms-scroll-limit-x-max"?: import("csstype").MsScrollLimitXMaxProperty<string | number> | undefined;
1384
+ "-ms-scroll-limit-x-min"?: import("csstype").MsScrollLimitXMinProperty<string | number> | undefined;
1385
+ "-ms-scroll-limit-y-max"?: import("csstype").MsScrollLimitYMaxProperty<string | number> | undefined;
1386
+ "-ms-scroll-limit-y-min"?: import("csstype").MsScrollLimitYMinProperty<string | number> | undefined;
1387
+ "-ms-scroll-rails"?: import("csstype").MsScrollRailsProperty | undefined;
1388
+ "-ms-scroll-snap-points-x"?: string | undefined;
1389
+ "-ms-scroll-snap-points-y"?: string | undefined;
1390
+ "-ms-scroll-snap-type"?: import("csstype").MsScrollSnapTypeProperty | undefined;
1391
+ "-ms-scroll-translation"?: import("csstype").MsScrollTranslationProperty | undefined;
1392
+ "-ms-scrollbar-3dlight-color"?: string | undefined;
1393
+ "-ms-scrollbar-arrow-color"?: string | undefined;
1394
+ "-ms-scrollbar-base-color"?: string | undefined;
1395
+ "-ms-scrollbar-darkshadow-color"?: string | undefined;
1396
+ "-ms-scrollbar-face-color"?: string | undefined;
1397
+ "-ms-scrollbar-highlight-color"?: string | undefined;
1398
+ "-ms-scrollbar-shadow-color"?: string | undefined;
1399
+ "-ms-scrollbar-track-color"?: string | undefined;
1400
+ "-ms-text-autospace"?: import("csstype").MsTextAutospaceProperty | undefined;
1401
+ "-ms-text-combine-horizontal"?: string | undefined;
1402
+ "-ms-text-overflow"?: string | undefined;
1403
+ "-ms-touch-action"?: string | undefined;
1404
+ "-ms-touch-select"?: import("csstype").MsTouchSelectProperty | undefined;
1405
+ "-ms-transform"?: string | undefined;
1406
+ "-ms-transform-origin"?: import("csstype").TransformOriginProperty<string | number> | undefined;
1407
+ "-ms-transition-delay"?: string | undefined;
1408
+ "-ms-transition-duration"?: string | undefined;
1409
+ "-ms-transition-property"?: string | undefined;
1410
+ "-ms-transition-timing-function"?: string | undefined;
1411
+ "-ms-user-select"?: import("csstype").MsUserSelectProperty | undefined;
1412
+ "-ms-word-break"?: import("csstype").WordBreakProperty | undefined;
1413
+ "-ms-wrap-flow"?: import("csstype").MsWrapFlowProperty | undefined;
1414
+ "-ms-wrap-margin"?: import("csstype").MsWrapMarginProperty<string | number> | undefined;
1415
+ "-ms-wrap-through"?: import("csstype").MsWrapThroughProperty | undefined;
1416
+ "-ms-writing-mode"?: import("csstype").WritingModeProperty | undefined;
1417
+ "-webkit-align-content"?: string | undefined;
1418
+ "-webkit-align-items"?: string | undefined;
1419
+ "-webkit-align-self"?: string | undefined;
1420
+ "-webkit-animation-delay"?: string | undefined;
1421
+ "-webkit-animation-direction"?: string | undefined;
1422
+ "-webkit-animation-duration"?: string | undefined;
1423
+ "-webkit-animation-fill-mode"?: string | undefined;
1424
+ "-webkit-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty | undefined;
1425
+ "-webkit-animation-name"?: string | undefined;
1426
+ "-webkit-animation-play-state"?: string | undefined;
1427
+ "-webkit-animation-timing-function"?: string | undefined;
1428
+ "-webkit-appearance"?: import("csstype").WebkitAppearanceProperty | undefined;
1429
+ "-webkit-backdrop-filter"?: string | undefined;
1430
+ "-webkit-backface-visibility"?: import("csstype").BackfaceVisibilityProperty | undefined;
1431
+ "-webkit-background-clip"?: string | undefined;
1432
+ "-webkit-background-origin"?: string | undefined;
1433
+ "-webkit-background-size"?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
1434
+ "-webkit-border-before-color"?: string | undefined;
1435
+ "-webkit-border-before-style"?: string | undefined;
1436
+ "-webkit-border-before-width"?: import("csstype").WebkitBorderBeforeWidthProperty<string | number> | undefined;
1437
+ "-webkit-border-bottom-left-radius"?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
1438
+ "-webkit-border-bottom-right-radius"?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
1439
+ "-webkit-border-image-slice"?: import("csstype").BorderImageSliceProperty | undefined;
1440
+ "-webkit-border-top-left-radius"?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
1441
+ "-webkit-border-top-right-radius"?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
1442
+ "-webkit-box-decoration-break"?: import("csstype").BoxDecorationBreakProperty | undefined;
1443
+ "-webkit-box-reflect"?: import("csstype").WebkitBoxReflectProperty<string | number> | undefined;
1444
+ "-webkit-box-shadow"?: string | undefined;
1445
+ "-webkit-box-sizing"?: import("csstype").BoxSizingProperty | undefined;
1446
+ "-webkit-clip-path"?: string | undefined;
1447
+ "-webkit-column-count"?: import("csstype").ColumnCountProperty | undefined;
1448
+ "-webkit-column-fill"?: import("csstype").ColumnFillProperty | undefined;
1449
+ "-webkit-column-rule-color"?: string | undefined;
1450
+ "-webkit-column-rule-style"?: string | undefined;
1451
+ "-webkit-column-rule-width"?: import("csstype").ColumnRuleWidthProperty<string | number> | undefined;
1452
+ "-webkit-column-span"?: import("csstype").ColumnSpanProperty | undefined;
1453
+ "-webkit-column-width"?: import("csstype").ColumnWidthProperty<string | number> | undefined;
1454
+ "-webkit-filter"?: string | undefined;
1455
+ "-webkit-flex-basis"?: import("csstype").FlexBasisProperty<string | number> | undefined;
1456
+ "-webkit-flex-direction"?: import("csstype").FlexDirectionProperty | undefined;
1457
+ "-webkit-flex-grow"?: import("csstype").GlobalsNumber | undefined;
1458
+ "-webkit-flex-shrink"?: import("csstype").GlobalsNumber | undefined;
1459
+ "-webkit-flex-wrap"?: import("csstype").FlexWrapProperty | undefined;
1460
+ "-webkit-font-feature-settings"?: string | undefined;
1461
+ "-webkit-font-kerning"?: import("csstype").FontKerningProperty | undefined;
1462
+ "-webkit-font-smoothing"?: import("csstype").FontSmoothProperty<string | number> | undefined;
1463
+ "-webkit-font-variant-ligatures"?: string | undefined;
1464
+ "-webkit-hyphenate-character"?: string | undefined;
1465
+ "-webkit-hyphens"?: import("csstype").HyphensProperty | undefined;
1466
+ "-webkit-initial-letter"?: import("csstype").InitialLetterProperty | undefined;
1467
+ "-webkit-justify-content"?: string | undefined;
1468
+ "-webkit-line-break"?: import("csstype").LineBreakProperty | undefined;
1469
+ "-webkit-line-clamp"?: import("csstype").WebkitLineClampProperty | undefined;
1470
+ "-webkit-margin-end"?: import("csstype").MarginInlineEndProperty<string | number> | undefined;
1471
+ "-webkit-margin-start"?: import("csstype").MarginInlineStartProperty<string | number> | undefined;
1472
+ "-webkit-mask-attachment"?: string | undefined;
1473
+ "-webkit-mask-box-image-outset"?: import("csstype").MaskBorderOutsetProperty<string | number> | undefined;
1474
+ "-webkit-mask-box-image-repeat"?: string | undefined;
1475
+ "-webkit-mask-box-image-slice"?: import("csstype").MaskBorderSliceProperty | undefined;
1476
+ "-webkit-mask-box-image-source"?: string | undefined;
1477
+ "-webkit-mask-box-image-width"?: import("csstype").MaskBorderWidthProperty<string | number> | undefined;
1478
+ "-webkit-mask-clip"?: string | undefined;
1479
+ "-webkit-mask-composite"?: string | undefined;
1480
+ "-webkit-mask-image"?: string | undefined;
1481
+ "-webkit-mask-origin"?: string | undefined;
1482
+ "-webkit-mask-position"?: import("csstype").WebkitMaskPositionProperty<string | number> | undefined;
1483
+ "-webkit-mask-position-x"?: import("csstype").WebkitMaskPositionXProperty<string | number> | undefined;
1484
+ "-webkit-mask-position-y"?: import("csstype").WebkitMaskPositionYProperty<string | number> | undefined;
1485
+ "-webkit-mask-repeat"?: string | undefined;
1486
+ "-webkit-mask-repeat-x"?: import("csstype").WebkitMaskRepeatXProperty | undefined;
1487
+ "-webkit-mask-repeat-y"?: import("csstype").WebkitMaskRepeatYProperty | undefined;
1488
+ "-webkit-mask-size"?: import("csstype").WebkitMaskSizeProperty<string | number> | undefined;
1489
+ "-webkit-max-inline-size"?: import("csstype").MaxInlineSizeProperty<string | number> | undefined;
1490
+ "-webkit-order"?: import("csstype").GlobalsNumber | undefined;
1491
+ "-webkit-overflow-scrolling"?: import("csstype").WebkitOverflowScrollingProperty | undefined;
1492
+ "-webkit-padding-end"?: import("csstype").PaddingInlineEndProperty<string | number> | undefined;
1493
+ "-webkit-padding-start"?: import("csstype").PaddingInlineStartProperty<string | number> | undefined;
1494
+ "-webkit-perspective"?: import("csstype").PerspectiveProperty<string | number> | undefined;
1495
+ "-webkit-perspective-origin"?: import("csstype").PerspectiveOriginProperty<string | number> | undefined;
1496
+ "-webkit-print-color-adjust"?: import("csstype").PrintColorAdjustProperty | undefined;
1497
+ "-webkit-ruby-position"?: string | undefined;
1498
+ "-webkit-scroll-snap-type"?: string | undefined;
1499
+ "-webkit-shape-margin"?: import("csstype").ShapeMarginProperty<string | number> | undefined;
1500
+ "-webkit-tap-highlight-color"?: string | undefined;
1501
+ "-webkit-text-combine"?: string | undefined;
1502
+ "-webkit-text-decoration-color"?: string | undefined;
1503
+ "-webkit-text-decoration-line"?: string | undefined;
1504
+ "-webkit-text-decoration-skip"?: string | undefined;
1505
+ "-webkit-text-decoration-style"?: import("csstype").TextDecorationStyleProperty | undefined;
1506
+ "-webkit-text-emphasis-color"?: string | undefined;
1507
+ "-webkit-text-emphasis-position"?: string | undefined;
1508
+ "-webkit-text-emphasis-style"?: string | undefined;
1509
+ "-webkit-text-fill-color"?: string | undefined;
1510
+ "-webkit-text-orientation"?: import("csstype").TextOrientationProperty | undefined;
1511
+ "-webkit-text-size-adjust"?: string | undefined;
1512
+ "-webkit-text-stroke-color"?: string | undefined;
1513
+ "-webkit-text-stroke-width"?: import("csstype").WebkitTextStrokeWidthProperty<string | number> | undefined;
1514
+ "-webkit-text-underline-position"?: string | undefined;
1515
+ "-webkit-touch-callout"?: import("csstype").WebkitTouchCalloutProperty | undefined;
1516
+ "-webkit-transform"?: string | undefined;
1517
+ "-webkit-transform-origin"?: import("csstype").TransformOriginProperty<string | number> | undefined;
1518
+ "-webkit-transform-style"?: import("csstype").TransformStyleProperty | undefined;
1519
+ "-webkit-transition-delay"?: string | undefined;
1520
+ "-webkit-transition-duration"?: string | undefined;
1521
+ "-webkit-transition-property"?: string | undefined;
1522
+ "-webkit-transition-timing-function"?: string | undefined;
1523
+ "-webkit-user-modify"?: import("csstype").WebkitUserModifyProperty | undefined;
1524
+ "-webkit-user-select"?: import("csstype").UserSelectProperty | undefined;
1525
+ "-webkit-writing-mode"?: import("csstype").WritingModeProperty | undefined;
1526
+ "-moz-animation"?: import("csstype").AnimationProperty | undefined;
1527
+ "-moz-border-image"?: import("csstype").BorderImageProperty | undefined;
1528
+ "-moz-column-rule"?: import("csstype").ColumnRuleProperty<string | number> | undefined;
1529
+ "-moz-columns"?: import("csstype").ColumnsProperty<string | number> | undefined;
1530
+ "-moz-transition"?: string | undefined;
1531
+ "-ms-content-zoom-limit"?: string | undefined;
1532
+ "-ms-content-zoom-snap"?: string | undefined;
1533
+ "-ms-flex"?: import("csstype").FlexProperty<string | number> | undefined;
1534
+ "-ms-scroll-limit"?: string | undefined;
1535
+ "-ms-scroll-snap-x"?: string | undefined;
1536
+ "-ms-scroll-snap-y"?: string | undefined;
1537
+ "-ms-transition"?: string | undefined;
1538
+ "-webkit-animation"?: import("csstype").AnimationProperty | undefined;
1539
+ "-webkit-border-before"?: import("csstype").WebkitBorderBeforeProperty<string | number> | undefined;
1540
+ "-webkit-border-image"?: import("csstype").BorderImageProperty | undefined;
1541
+ "-webkit-border-radius"?: import("csstype").BorderRadiusProperty<string | number> | undefined;
1542
+ "-webkit-column-rule"?: import("csstype").ColumnRuleProperty<string | number> | undefined;
1543
+ "-webkit-columns"?: import("csstype").ColumnsProperty<string | number> | undefined;
1544
+ "-webkit-flex"?: import("csstype").FlexProperty<string | number> | undefined;
1545
+ "-webkit-flex-flow"?: string | undefined;
1546
+ "-webkit-mask"?: import("csstype").WebkitMaskProperty<string | number> | undefined;
1547
+ "-webkit-mask-box-image"?: import("csstype").MaskBorderProperty | undefined;
1548
+ "-webkit-text-emphasis"?: string | undefined;
1549
+ "-webkit-text-stroke"?: import("csstype").WebkitTextStrokeProperty<string | number> | undefined;
1550
+ "-webkit-transition"?: string | undefined;
1551
+ "box-align"?: import("csstype").BoxAlignProperty | undefined;
1552
+ "box-direction"?: import("csstype").BoxDirectionProperty | undefined;
1553
+ "box-flex"?: import("csstype").GlobalsNumber | undefined;
1554
+ "box-flex-group"?: import("csstype").GlobalsNumber | undefined;
1555
+ "box-lines"?: import("csstype").BoxLinesProperty | undefined;
1556
+ "box-ordinal-group"?: import("csstype").GlobalsNumber | undefined;
1557
+ "box-orient"?: import("csstype").BoxOrientProperty | undefined;
1558
+ "box-pack"?: import("csstype").BoxPackProperty | undefined;
1559
+ "grid-column-gap"?: import("csstype").GridColumnGapProperty<string | number> | undefined;
1560
+ "grid-gap"?: import("csstype").GridGapProperty<string | number> | undefined;
1561
+ "grid-row-gap"?: import("csstype").GridRowGapProperty<string | number> | undefined;
1562
+ "ime-mode"?: import("csstype").ImeModeProperty | undefined;
1563
+ "offset-block"?: import("csstype").InsetBlockProperty<string | number> | undefined;
1564
+ "offset-block-end"?: import("csstype").InsetBlockEndProperty<string | number> | undefined;
1565
+ "offset-block-start"?: import("csstype").InsetBlockStartProperty<string | number> | undefined;
1566
+ "offset-inline"?: import("csstype").InsetInlineProperty<string | number> | undefined;
1567
+ "offset-inline-end"?: import("csstype").InsetInlineEndProperty<string | number> | undefined;
1568
+ "offset-inline-start"?: import("csstype").InsetInlineStartProperty<string | number> | undefined;
1569
+ "scroll-snap-coordinate"?: import("csstype").ScrollSnapCoordinateProperty<string | number> | undefined;
1570
+ "scroll-snap-destination"?: import("csstype").ScrollSnapDestinationProperty<string | number> | undefined;
1571
+ "scroll-snap-points-x"?: string | undefined;
1572
+ "scroll-snap-points-y"?: string | undefined;
1573
+ "scroll-snap-type-x"?: import("csstype").ScrollSnapTypeXProperty | undefined;
1574
+ "scroll-snap-type-y"?: import("csstype").ScrollSnapTypeYProperty | undefined;
1575
+ "-khtml-box-align"?: import("csstype").BoxAlignProperty | undefined;
1576
+ "-khtml-box-direction"?: import("csstype").BoxDirectionProperty | undefined;
1577
+ "-khtml-box-flex"?: import("csstype").GlobalsNumber | undefined;
1578
+ "-khtml-box-flex-group"?: import("csstype").GlobalsNumber | undefined;
1579
+ "-khtml-box-lines"?: import("csstype").BoxLinesProperty | undefined;
1580
+ "-khtml-box-ordinal-group"?: import("csstype").GlobalsNumber | undefined;
1581
+ "-khtml-box-orient"?: import("csstype").BoxOrientProperty | undefined;
1582
+ "-khtml-box-pack"?: import("csstype").BoxPackProperty | undefined;
1583
+ "-khtml-line-break"?: import("csstype").LineBreakProperty | undefined;
1584
+ "-khtml-opacity"?: import("csstype").OpacityProperty | undefined;
1585
+ "-khtml-user-select"?: import("csstype").UserSelectProperty | undefined;
1586
+ "-moz-background-clip"?: string | undefined;
1587
+ "-moz-background-inline-policy"?: import("csstype").BoxDecorationBreakProperty | undefined;
1588
+ "-moz-background-origin"?: string | undefined;
1589
+ "-moz-background-size"?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
1590
+ "-moz-binding"?: string | undefined;
1591
+ "-moz-border-radius"?: import("csstype").BorderRadiusProperty<string | number> | undefined;
1592
+ "-moz-border-radius-bottomleft"?: import("csstype").BorderBottomLeftRadiusProperty<string | number> | undefined;
1593
+ "-moz-border-radius-bottomright"?: import("csstype").BorderBottomRightRadiusProperty<string | number> | undefined;
1594
+ "-moz-border-radius-topleft"?: import("csstype").BorderTopLeftRadiusProperty<string | number> | undefined;
1595
+ "-moz-border-radius-topright"?: import("csstype").BorderTopRightRadiusProperty<string | number> | undefined;
1596
+ "-moz-box-align"?: import("csstype").BoxAlignProperty | undefined;
1597
+ "-moz-box-direction"?: import("csstype").BoxDirectionProperty | undefined;
1598
+ "-moz-box-flex"?: import("csstype").GlobalsNumber | undefined;
1599
+ "-moz-box-ordinal-group"?: import("csstype").GlobalsNumber | undefined;
1600
+ "-moz-box-orient"?: import("csstype").BoxOrientProperty | undefined;
1601
+ "-moz-box-pack"?: import("csstype").BoxPackProperty | undefined;
1602
+ "-moz-box-shadow"?: string | undefined;
1603
+ "-moz-float-edge"?: import("csstype").MozFloatEdgeProperty | undefined;
1604
+ "-moz-force-broken-image-icon"?: import("csstype").MozForceBrokenImageIconProperty | undefined;
1605
+ "-moz-opacity"?: import("csstype").OpacityProperty | undefined;
1606
+ "-moz-outline"?: import("csstype").OutlineProperty<string | number> | undefined;
1607
+ "-moz-outline-color"?: string | undefined;
1608
+ "-moz-outline-radius"?: import("csstype").MozOutlineRadiusProperty<string | number> | undefined;
1609
+ "-moz-outline-radius-bottomleft"?: import("csstype").MozOutlineRadiusBottomleftProperty<string | number> | undefined;
1610
+ "-moz-outline-radius-bottomright"?: import("csstype").MozOutlineRadiusBottomrightProperty<string | number> | undefined;
1611
+ "-moz-outline-radius-topleft"?: import("csstype").MozOutlineRadiusTopleftProperty<string | number> | undefined;
1612
+ "-moz-outline-radius-topright"?: import("csstype").MozOutlineRadiusToprightProperty<string | number> | undefined;
1613
+ "-moz-outline-style"?: string | undefined;
1614
+ "-moz-outline-width"?: import("csstype").OutlineWidthProperty<string | number> | undefined;
1615
+ "-moz-text-align-last"?: import("csstype").TextAlignLastProperty | undefined;
1616
+ "-moz-text-decoration-color"?: string | undefined;
1617
+ "-moz-text-decoration-line"?: string | undefined;
1618
+ "-moz-text-decoration-style"?: import("csstype").TextDecorationStyleProperty | undefined;
1619
+ "-moz-user-input"?: import("csstype").MozUserInputProperty | undefined;
1620
+ "-ms-ime-mode"?: import("csstype").ImeModeProperty | undefined;
1621
+ "-o-animation"?: import("csstype").AnimationProperty | undefined;
1622
+ "-o-animation-delay"?: string | undefined;
1623
+ "-o-animation-direction"?: string | undefined;
1624
+ "-o-animation-duration"?: string | undefined;
1625
+ "-o-animation-fill-mode"?: string | undefined;
1626
+ "-o-animation-iteration-count"?: import("csstype").AnimationIterationCountProperty | undefined;
1627
+ "-o-animation-name"?: string | undefined;
1628
+ "-o-animation-play-state"?: string | undefined;
1629
+ "-o-animation-timing-function"?: string | undefined;
1630
+ "-o-background-size"?: import("csstype").BackgroundSizeProperty<string | number> | undefined;
1631
+ "-o-border-image"?: import("csstype").BorderImageProperty | undefined;
1632
+ "-o-object-fit"?: import("csstype").ObjectFitProperty | undefined;
1633
+ "-o-object-position"?: import("csstype").ObjectPositionProperty<string | number> | undefined;
1634
+ "-o-tab-size"?: import("csstype").TabSizeProperty<string | number> | undefined;
1635
+ "-o-text-overflow"?: string | undefined;
1636
+ "-o-transform"?: string | undefined;
1637
+ "-o-transform-origin"?: import("csstype").TransformOriginProperty<string | number> | undefined;
1638
+ "-o-transition"?: string | undefined;
1639
+ "-o-transition-delay"?: string | undefined;
1640
+ "-o-transition-duration"?: string | undefined;
1641
+ "-o-transition-property"?: string | undefined;
1642
+ "-o-transition-timing-function"?: string | undefined;
1643
+ "-webkit-box-align"?: import("csstype").BoxAlignProperty | undefined;
1644
+ "-webkit-box-direction"?: import("csstype").BoxDirectionProperty | undefined;
1645
+ "-webkit-box-flex"?: import("csstype").GlobalsNumber | undefined;
1646
+ "-webkit-box-flex-group"?: import("csstype").GlobalsNumber | undefined;
1647
+ "-webkit-box-lines"?: import("csstype").BoxLinesProperty | undefined;
1648
+ "-webkit-box-ordinal-group"?: import("csstype").GlobalsNumber | undefined;
1649
+ "-webkit-box-orient"?: import("csstype").BoxOrientProperty | undefined;
1650
+ "-webkit-box-pack"?: import("csstype").BoxPackProperty | undefined;
1651
+ "-webkit-scroll-snap-points-x"?: string | undefined;
1652
+ "-webkit-scroll-snap-points-y"?: string | undefined;
1653
+ "alignment-baseline"?: import("csstype").AlignmentBaselineProperty | undefined;
1654
+ "baseline-shift"?: import("csstype").BaselineShiftProperty<string | number> | undefined;
1655
+ "clip-rule"?: import("csstype").ClipRuleProperty | undefined;
1656
+ "color-interpolation"?: import("csstype").ColorInterpolationProperty | undefined;
1657
+ "color-rendering"?: import("csstype").ColorRenderingProperty | undefined;
1658
+ "dominant-baseline"?: import("csstype").DominantBaselineProperty | undefined;
1659
+ "fill-opacity"?: import("csstype").GlobalsNumber | undefined;
1660
+ "fill-rule"?: import("csstype").FillRuleProperty | undefined;
1661
+ "flood-color"?: string | undefined;
1662
+ "flood-opacity"?: import("csstype").GlobalsNumber | undefined;
1663
+ "glyph-orientation-vertical"?: import("csstype").GlyphOrientationVerticalProperty | undefined;
1664
+ "lighting-color"?: string | undefined;
1665
+ "marker-end"?: string | undefined;
1666
+ "marker-mid"?: string | undefined;
1667
+ "marker-start"?: string | undefined;
1668
+ "shape-rendering"?: import("csstype").ShapeRenderingProperty | undefined;
1669
+ "stop-color"?: string | undefined;
1670
+ "stop-opacity"?: import("csstype").GlobalsNumber | undefined;
1671
+ "stroke-dasharray"?: import("csstype").StrokeDasharrayProperty<string | number> | undefined;
1672
+ "stroke-dashoffset"?: import("csstype").StrokeDashoffsetProperty<string | number> | undefined;
1673
+ "stroke-linecap"?: import("csstype").StrokeLinecapProperty | undefined;
1674
+ "stroke-linejoin"?: import("csstype").StrokeLinejoinProperty | undefined;
1675
+ "stroke-miterlimit"?: import("csstype").GlobalsNumber | undefined;
1676
+ "stroke-opacity"?: import("csstype").GlobalsNumber | undefined;
1677
+ "stroke-width"?: import("csstype").StrokeWidthProperty<string | number> | undefined;
1678
+ "text-anchor"?: import("csstype").TextAnchorProperty | undefined;
1679
+ "vector-effect"?: import("csstype").VectorEffectProperty | undefined;
1680
+ } | undefined;
1681
+ validator?: ((value: unknown, fieldItem: FieldItem) => string | void) | undefined;
1682
+ reactions?: {
1683
+ [x: string]: any;
1684
+ dependencies?: string[] | undefined;
1685
+ target?: string | undefined;
1686
+ effects?: import("@formily/json-schema").SchemaEffectTypes[] | undefined;
1687
+ when?: string | boolean | undefined;
1688
+ fulfill?: {
1689
+ state?: import("../../../../es/shared/types").AnyObject | undefined;
1690
+ run?: string | undefined;
1691
+ } | undefined;
1692
+ otherwise?: {
1693
+ state?: import("../../../../es/shared/types").AnyObject | undefined;
1694
+ run?: string | undefined;
1695
+ } | undefined;
1696
+ } | {
1697
+ [x: string]: any;
1698
+ dependencies?: string[] | undefined;
1699
+ target?: string | undefined;
1700
+ effects?: import("@formily/json-schema").SchemaEffectTypes[] | undefined;
1701
+ when?: string | boolean | undefined;
1702
+ fulfill?: {
1703
+ state?: import("../../../../es/shared/types").AnyObject | undefined;
1704
+ run?: string | undefined;
1705
+ } | undefined;
1706
+ otherwise?: {
1707
+ state?: import("../../../../es/shared/types").AnyObject | undefined;
1708
+ run?: string | undefined;
1709
+ } | undefined;
1710
+ }[] | undefined;
1711
+ }[]>;
1712
+ shortcutCache: Record<string, ShortcutSignatureInfo>;
1713
+ loadSignature: () => void;
1714
+ onShortcutChange: ({ key, info, resolve, reject }: {
1715
+ key: string;
1716
+ info: KeyboardEvent;
1717
+ resolve: Func;
1718
+ reject: Func;
1719
+ }) => any;
1720
+ CFormRender: import("../../../../es/shared/types").SFCWithInstall<import("vue").DefineComponent<{}, {
1721
+ formRenderRef: import("vue").Ref<import("../../../../es/components/form-render").FormRenderExpose | undefined>;
1722
+ key: import("vue").Ref<number>;
1723
+ reload: () => Promise<void>;
1724
+ formRenderExposeKeyList: readonly ["validate", "getFormValues", "setFormValues", "setFieldState", "resetFieldState", "resetFields", "queryWidget"];
1725
+ exposed: Partial<import("../../../../es/components/form-render").FormRenderExpose>;
1726
+ FormRender: import("vue").DefineComponent<{
1727
+ fieldList: {
1728
+ type: import("vue").PropType<FieldItem[]>;
1729
+ };
1730
+ initialData: {
1731
+ type: import("vue").PropType<import("../../../../es/shared/types").AnyObject>;
1732
+ default: () => {};
1733
+ };
1734
+ fieldVisitor: {
1735
+ type: import("vue").PropType<import("../../../../es/components/form-render").FieldVisitor>;
1736
+ };
1737
+ column: {
1738
+ type: NumberConstructor;
1739
+ default: number;
1740
+ };
1741
+ maxHeight: {
1742
+ type: (NumberConstructor | StringConstructor)[];
1743
+ default: string;
1744
+ };
1745
+ anchor: {
1746
+ type: BooleanConstructor;
1747
+ default: boolean;
1748
+ };
1749
+ parallelism: {
1750
+ type: NumberConstructor;
1751
+ default: number;
1752
+ };
1753
+ businessFormatter: {
1754
+ type: import("vue").PropType<import("../../../../es/components/form-render").FormBusinessFormatter>;
1755
+ };
1756
+ schema: {
1757
+ type: import("vue").PropType<import("@formily/json-schema").Stringify<{
1758
+ [key: symbol]: any;
1759
+ [key: `x-${string}`]: any;
1760
+ [key: `x-${number}`]: any;
1761
+ version?: string | undefined;
1762
+ name?: import("@formily/json-schema").SchemaKey | undefined;
1763
+ title?: any;
1764
+ description?: any;
1765
+ default?: any;
1766
+ readOnly?: boolean | undefined;
1767
+ writeOnly?: boolean | undefined;
1768
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
1769
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
1770
+ const?: any;
1771
+ multipleOf?: number | undefined;
1772
+ maximum?: number | undefined;
1773
+ exclusiveMaximum?: number | undefined;
1774
+ minimum?: number | undefined;
1775
+ exclusiveMinimum?: number | undefined;
1776
+ maxLength?: number | undefined;
1777
+ minLength?: number | undefined;
1778
+ pattern?: string | RegExp | undefined;
1779
+ maxItems?: number | undefined;
1780
+ minItems?: number | undefined;
1781
+ uniqueItems?: boolean | undefined;
1782
+ maxProperties?: number | undefined;
1783
+ minProperties?: number | undefined;
1784
+ required?: string | boolean | string[] | undefined;
1785
+ format?: string | undefined;
1786
+ $ref?: string | undefined;
1787
+ $namespace?: string | undefined;
1788
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
1789
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
1790
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
1791
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
1792
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
1793
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
1794
+ "x-value"?: any;
1795
+ "x-index"?: number | undefined;
1796
+ "x-pattern"?: any;
1797
+ "x-display"?: any;
1798
+ "x-validator"?: any;
1799
+ "x-decorator"?: any;
1800
+ "x-decorator-props"?: any;
1801
+ "x-component"?: any;
1802
+ "x-component-props"?: any;
1803
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
1804
+ "x-content"?: any;
1805
+ "x-data"?: any;
1806
+ "x-visible"?: boolean | undefined;
1807
+ "x-hidden"?: boolean | undefined;
1808
+ "x-disabled"?: boolean | undefined;
1809
+ "x-editable"?: boolean | undefined;
1810
+ "x-read-only"?: boolean | undefined;
1811
+ "x-read-pretty"?: boolean | undefined;
1812
+ "x-compile-omitted"?: string[] | undefined;
1813
+ }>>;
1814
+ };
1815
+ components: {
1816
+ type: import("vue").PropType<Record<string, Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>>;
1817
+ default: () => {};
1818
+ };
1819
+ scope: {
1820
+ type: import("vue").PropType<import("../../../../es/shared/types").AnyObject>;
1821
+ default: () => {};
1822
+ };
1823
+ annotation: {
1824
+ type: import("vue").PropType<import("../../../../es/shared/types").AnyObject>;
1825
+ };
1826
+ consumer: {
1827
+ type: BooleanConstructor;
1828
+ default: boolean;
1829
+ };
1830
+ uuid: {
1831
+ type: StringConstructor;
1832
+ };
1833
+ lifeCycle: {
1834
+ type: import("vue").PropType<Partial<{
1835
+ onSetup(): void;
1836
+ beforeRequest(fieldKey: string, params?: import("../../../../es/shared/types").AnyObject | undefined): void | import("../../../../es/shared/types").UndefinedAble<import("../../../../es/shared/types").AnyObject>;
1837
+ afterRequest(fieldKey: string, payload?: any): import("../../../../es/shared/types").AnyObject[];
1838
+ }>>;
1839
+ };
1840
+ requestInstance: {
1841
+ type: import("vue").PropType<import("../../../../es/components/form-render").RequestInstance>;
1842
+ };
1843
+ enterToNextWidget: {
1844
+ type: import("vue").PropType<boolean | ((fieldItem: FieldItem) => boolean | void)>;
1845
+ default: boolean;
1846
+ };
1847
+ lowCodeReactions: {
1848
+ type: import("vue").PropType<import("../../../../es/components/form-render").FormLowCodeReactions.Config[]>;
1849
+ };
1850
+ }, {
1851
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1852
+ fieldList: {
1853
+ type: import("vue").PropType<FieldItem[]>;
1854
+ };
1855
+ initialData: {
1856
+ type: import("vue").PropType<import("../../../../es/shared/types").AnyObject>;
1857
+ default: () => {};
1858
+ };
1859
+ fieldVisitor: {
1860
+ type: import("vue").PropType<import("../../../../es/components/form-render").FieldVisitor>;
1861
+ };
1862
+ column: {
1863
+ type: NumberConstructor;
1864
+ default: number;
1865
+ };
1866
+ maxHeight: {
1867
+ type: (NumberConstructor | StringConstructor)[];
1868
+ default: string;
1869
+ };
1870
+ anchor: {
1871
+ type: BooleanConstructor;
1872
+ default: boolean;
1873
+ };
1874
+ parallelism: {
1875
+ type: NumberConstructor;
1876
+ default: number;
1877
+ };
1878
+ businessFormatter: {
1879
+ type: import("vue").PropType<import("../../../../es/components/form-render").FormBusinessFormatter>;
1880
+ };
1881
+ schema: {
1882
+ type: import("vue").PropType<import("@formily/json-schema").Stringify<{
1883
+ [key: symbol]: any;
1884
+ [key: `x-${string}`]: any;
1885
+ [key: `x-${number}`]: any;
1886
+ version?: string | undefined;
1887
+ name?: import("@formily/json-schema").SchemaKey | undefined;
1888
+ title?: any;
1889
+ description?: any;
1890
+ default?: any;
1891
+ readOnly?: boolean | undefined;
1892
+ writeOnly?: boolean | undefined;
1893
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
1894
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
1895
+ const?: any;
1896
+ multipleOf?: number | undefined;
1897
+ maximum?: number | undefined;
1898
+ exclusiveMaximum?: number | undefined;
1899
+ minimum?: number | undefined;
1900
+ exclusiveMinimum?: number | undefined;
1901
+ maxLength?: number | undefined;
1902
+ minLength?: number | undefined;
1903
+ pattern?: string | RegExp | undefined;
1904
+ maxItems?: number | undefined;
1905
+ minItems?: number | undefined;
1906
+ uniqueItems?: boolean | undefined;
1907
+ maxProperties?: number | undefined;
1908
+ minProperties?: number | undefined;
1909
+ required?: string | boolean | string[] | undefined;
1910
+ format?: string | undefined;
1911
+ $ref?: string | undefined;
1912
+ $namespace?: string | undefined;
1913
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
1914
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
1915
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
1916
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
1917
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
1918
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
1919
+ "x-value"?: any;
1920
+ "x-index"?: number | undefined;
1921
+ "x-pattern"?: any;
1922
+ "x-display"?: any;
1923
+ "x-validator"?: any;
1924
+ "x-decorator"?: any;
1925
+ "x-decorator-props"?: any;
1926
+ "x-component"?: any;
1927
+ "x-component-props"?: any;
1928
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
1929
+ "x-content"?: any;
1930
+ "x-data"?: any;
1931
+ "x-visible"?: boolean | undefined;
1932
+ "x-hidden"?: boolean | undefined;
1933
+ "x-disabled"?: boolean | undefined;
1934
+ "x-editable"?: boolean | undefined;
1935
+ "x-read-only"?: boolean | undefined;
1936
+ "x-read-pretty"?: boolean | undefined;
1937
+ "x-compile-omitted"?: string[] | undefined;
1938
+ }>>;
1939
+ };
1940
+ components: {
1941
+ type: import("vue").PropType<Record<string, Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>>;
1942
+ default: () => {};
1943
+ };
1944
+ scope: {
1945
+ type: import("vue").PropType<import("../../../../es/shared/types").AnyObject>;
1946
+ default: () => {};
1947
+ };
1948
+ annotation: {
1949
+ type: import("vue").PropType<import("../../../../es/shared/types").AnyObject>;
1950
+ };
1951
+ consumer: {
1952
+ type: BooleanConstructor;
1953
+ default: boolean;
1954
+ };
1955
+ uuid: {
1956
+ type: StringConstructor;
1957
+ };
1958
+ lifeCycle: {
1959
+ type: import("vue").PropType<Partial<{
1960
+ onSetup(): void;
1961
+ beforeRequest(fieldKey: string, params?: import("../../../../es/shared/types").AnyObject | undefined): void | import("../../../../es/shared/types").UndefinedAble<import("../../../../es/shared/types").AnyObject>;
1962
+ afterRequest(fieldKey: string, payload?: any): import("../../../../es/shared/types").AnyObject[];
1963
+ }>>;
1964
+ };
1965
+ requestInstance: {
1966
+ type: import("vue").PropType<import("../../../../es/components/form-render").RequestInstance>;
1967
+ };
1968
+ enterToNextWidget: {
1969
+ type: import("vue").PropType<boolean | ((fieldItem: FieldItem) => boolean | void)>;
1970
+ default: boolean;
1971
+ };
1972
+ lowCodeReactions: {
1973
+ type: import("vue").PropType<import("../../../../es/components/form-render").FormLowCodeReactions.Config[]>;
1974
+ };
1975
+ }>> & {
1976
+ onFormChange?: ((...args: any[]) => any) | undefined;
1977
+ }>>;
1978
+ emit: (event: "formChange", ...args: any[]) => void;
1979
+ nuiThemeOverrides: import("naive-ui").GlobalThemeOverrides;
1980
+ formModel: import("../../../../es/components/form-render").Form<{
1981
+ [x: string]: any;
1982
+ }>;
1983
+ lowCodeReactionsHandler: (field: string, value: unknown) => void;
1984
+ triggerAllReactionsHandler: () => void;
1985
+ SchemaField: Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
1986
+ businessCollector: import("../../../../es/components/form-render").BusinessCollector;
1987
+ formItemDepsCollector: import("../../../../es/components/form-render").FormItemDepsCollector;
1988
+ changeContextCollector: import("../../../../es/components/form-render").ContextCollector;
1989
+ formUUID: string;
1990
+ formRenderRef: import("vue").Ref<HTMLElement | undefined>;
1991
+ schemaAdaptor: (fieldList: FieldItem[]) => Record<string, import("@formily/json-schema").Stringify<{
1992
+ [key: symbol]: any;
1993
+ [key: `x-${string}`]: any;
1994
+ [key: `x-${number}`]: any;
1995
+ version?: string | undefined;
1996
+ name?: import("@formily/json-schema").SchemaKey | undefined;
1997
+ title?: any;
1998
+ description?: any;
1999
+ default?: any;
2000
+ readOnly?: boolean | undefined;
2001
+ writeOnly?: boolean | undefined;
2002
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
2003
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
2004
+ const?: any;
2005
+ multipleOf?: number | undefined;
2006
+ maximum?: number | undefined;
2007
+ exclusiveMaximum?: number | undefined;
2008
+ minimum?: number | undefined;
2009
+ exclusiveMinimum?: number | undefined;
2010
+ maxLength?: number | undefined;
2011
+ minLength?: number | undefined;
2012
+ pattern?: string | RegExp | undefined;
2013
+ maxItems?: number | undefined;
2014
+ minItems?: number | undefined;
2015
+ uniqueItems?: boolean | undefined;
2016
+ maxProperties?: number | undefined;
2017
+ minProperties?: number | undefined;
2018
+ required?: string | boolean | string[] | undefined;
2019
+ format?: string | undefined;
2020
+ $ref?: string | undefined;
2021
+ $namespace?: string | undefined;
2022
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2023
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2024
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
2025
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
2026
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2027
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
2028
+ "x-value"?: any;
2029
+ "x-index"?: number | undefined;
2030
+ "x-pattern"?: any;
2031
+ "x-display"?: any;
2032
+ "x-validator"?: any;
2033
+ "x-decorator"?: any;
2034
+ "x-decorator-props"?: any;
2035
+ "x-component"?: any;
2036
+ "x-component-props"?: any;
2037
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
2038
+ "x-content"?: any;
2039
+ "x-data"?: any;
2040
+ "x-visible"?: boolean | undefined;
2041
+ "x-hidden"?: boolean | undefined;
2042
+ "x-disabled"?: boolean | undefined;
2043
+ "x-editable"?: boolean | undefined;
2044
+ "x-read-only"?: boolean | undefined;
2045
+ "x-read-pretty"?: boolean | undefined;
2046
+ "x-compile-omitted"?: string[] | undefined;
2047
+ }>>;
2048
+ _fieldList: FieldItem[];
2049
+ parsedSchema: import("vue").ComputedRef<import("@formily/json-schema").Stringify<{
2050
+ [key: symbol]: any;
2051
+ [key: `x-${string}`]: any;
2052
+ [key: `x-${number}`]: any;
2053
+ version?: string | undefined;
2054
+ name?: import("@formily/json-schema").SchemaKey | undefined;
2055
+ title?: any;
2056
+ description?: any;
2057
+ default?: any;
2058
+ readOnly?: boolean | undefined;
2059
+ writeOnly?: boolean | undefined;
2060
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
2061
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
2062
+ const?: any;
2063
+ multipleOf?: number | undefined;
2064
+ maximum?: number | undefined;
2065
+ exclusiveMaximum?: number | undefined;
2066
+ minimum?: number | undefined;
2067
+ exclusiveMinimum?: number | undefined;
2068
+ maxLength?: number | undefined;
2069
+ minLength?: number | undefined;
2070
+ pattern?: string | RegExp | undefined;
2071
+ maxItems?: number | undefined;
2072
+ minItems?: number | undefined;
2073
+ uniqueItems?: boolean | undefined;
2074
+ maxProperties?: number | undefined;
2075
+ minProperties?: number | undefined;
2076
+ required?: string | boolean | string[] | undefined;
2077
+ format?: string | undefined;
2078
+ $ref?: string | undefined;
2079
+ $namespace?: string | undefined;
2080
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2081
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2082
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
2083
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
2084
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2085
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
2086
+ "x-value"?: any;
2087
+ "x-index"?: number | undefined;
2088
+ "x-pattern"?: any;
2089
+ "x-display"?: any;
2090
+ "x-validator"?: any;
2091
+ "x-decorator"?: any;
2092
+ "x-decorator-props"?: any;
2093
+ "x-component"?: any;
2094
+ "x-component-props"?: any;
2095
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
2096
+ "x-content"?: any;
2097
+ "x-data"?: any;
2098
+ "x-visible"?: boolean | undefined;
2099
+ "x-hidden"?: boolean | undefined;
2100
+ "x-disabled"?: boolean | undefined;
2101
+ "x-editable"?: boolean | undefined;
2102
+ "x-read-only"?: boolean | undefined;
2103
+ "x-read-pretty"?: boolean | undefined;
2104
+ "x-compile-omitted"?: string[] | undefined;
2105
+ }>>;
2106
+ currentAnchor: import("vue").WritableComputedRef<string>;
2107
+ generateAnchorList: (schema: import("@formily/json-schema").Stringify<{
2108
+ [key: symbol]: any;
2109
+ [key: `x-${string}`]: any;
2110
+ [key: `x-${number}`]: any;
2111
+ version?: string | undefined;
2112
+ name?: import("@formily/json-schema").SchemaKey | undefined;
2113
+ title?: any;
2114
+ description?: any;
2115
+ default?: any;
2116
+ readOnly?: boolean | undefined;
2117
+ writeOnly?: boolean | undefined;
2118
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
2119
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
2120
+ const?: any;
2121
+ multipleOf?: number | undefined;
2122
+ maximum?: number | undefined;
2123
+ exclusiveMaximum?: number | undefined;
2124
+ minimum?: number | undefined;
2125
+ exclusiveMinimum?: number | undefined;
2126
+ maxLength?: number | undefined;
2127
+ minLength?: number | undefined;
2128
+ pattern?: string | RegExp | undefined;
2129
+ maxItems?: number | undefined;
2130
+ minItems?: number | undefined;
2131
+ uniqueItems?: boolean | undefined;
2132
+ maxProperties?: number | undefined;
2133
+ minProperties?: number | undefined;
2134
+ required?: string | boolean | string[] | undefined;
2135
+ format?: string | undefined;
2136
+ $ref?: string | undefined;
2137
+ $namespace?: string | undefined;
2138
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2139
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2140
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
2141
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
2142
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2143
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
2144
+ "x-value"?: any;
2145
+ "x-index"?: number | undefined;
2146
+ "x-pattern"?: any;
2147
+ "x-display"?: any;
2148
+ "x-validator"?: any;
2149
+ "x-decorator"?: any;
2150
+ "x-decorator-props"?: any;
2151
+ "x-component"?: any;
2152
+ "x-component-props"?: any;
2153
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
2154
+ "x-content"?: any;
2155
+ "x-data"?: any;
2156
+ "x-visible"?: boolean | undefined;
2157
+ "x-hidden"?: boolean | undefined;
2158
+ "x-disabled"?: boolean | undefined;
2159
+ "x-editable"?: boolean | undefined;
2160
+ "x-read-only"?: boolean | undefined;
2161
+ "x-read-pretty"?: boolean | undefined;
2162
+ "x-compile-omitted"?: string[] | undefined;
2163
+ }>) => void;
2164
+ anchorIdList: import("vue").Ref<{
2165
+ name: string;
2166
+ title: string;
2167
+ }[]>;
2168
+ formHeight: import("vue").ComputedRef<string | undefined>;
2169
+ onScroll: () => void;
2170
+ onKeydown: (event: KeyboardEvent) => void;
2171
+ queryWidget: (key: string, wrapperElement: HTMLElement, fieldList: FieldItem[]) => Promise<{
2172
+ widgetElement: HTMLInputElement | null | undefined;
2173
+ widgetElementList: HTMLInputElement[];
2174
+ decoratorElement: HTMLElement | null | undefined;
2175
+ }>;
2176
+ FormConsumer: import("vue").DefineComponent<{}, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
2177
+ FormProvider: import("vue").DefineComponent<Record<"form", any>, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<Record<"form", any>>>, {
2178
+ form: any;
2179
+ }>;
2180
+ NForm: any;
2181
+ NTabPane: import("vue").DefineComponent<{
2182
+ readonly tab: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2183
+ [key: string]: any;
2184
+ }> | (() => import("vue").VNodeChild)>;
2185
+ readonly name: {
2186
+ readonly type: import("vue").PropType<string | number>;
2187
+ readonly required: true;
2188
+ };
2189
+ readonly disabled: BooleanConstructor;
2190
+ readonly displayDirective: {
2191
+ readonly type: import("vue").PropType<"if" | "show" | "show:lazy">;
2192
+ readonly default: "if";
2193
+ };
2194
+ readonly closable: {
2195
+ readonly type: import("vue").PropType<boolean | undefined>;
2196
+ readonly default: undefined;
2197
+ };
2198
+ readonly tabProps: import("vue").PropType<import("vue").HTMLAttributes>;
2199
+ readonly label: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2200
+ [key: string]: any;
2201
+ }> | (() => import("vue").VNodeChild)>;
2202
+ }, {
2203
+ style: import("vue").Ref<string | import("vue").CSSProperties | undefined>;
2204
+ class: import("vue").Ref<string | undefined>;
2205
+ mergedClsPrefix: import("vue").Ref<string>;
2206
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2207
+ readonly tab: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2208
+ [key: string]: any;
2209
+ }> | (() => import("vue").VNodeChild)>;
2210
+ readonly name: {
2211
+ readonly type: import("vue").PropType<string | number>;
2212
+ readonly required: true;
2213
+ };
2214
+ readonly disabled: BooleanConstructor;
2215
+ readonly displayDirective: {
2216
+ readonly type: import("vue").PropType<"if" | "show" | "show:lazy">;
2217
+ readonly default: "if";
2218
+ };
2219
+ readonly closable: {
2220
+ readonly type: import("vue").PropType<boolean | undefined>;
2221
+ readonly default: undefined;
2222
+ };
2223
+ readonly tabProps: import("vue").PropType<import("vue").HTMLAttributes>;
2224
+ readonly label: import("vue").PropType<string | number | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
2225
+ [key: string]: any;
2226
+ }> | (() => import("vue").VNodeChild)>;
2227
+ }>>, {
2228
+ readonly disabled: boolean;
2229
+ readonly closable: boolean | undefined;
2230
+ readonly displayDirective: "if" | "show" | "show:lazy";
2231
+ }>;
2232
+ NTabs: any;
2233
+ NConfigProvider: any;
2234
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "formChange"[], "formChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2235
+ fieldList: {
2236
+ type: import("vue").PropType<FieldItem[]>;
2237
+ };
2238
+ initialData: {
2239
+ type: import("vue").PropType<import("../../../../es/shared/types").AnyObject>;
2240
+ default: () => {};
2241
+ };
2242
+ fieldVisitor: {
2243
+ type: import("vue").PropType<import("../../../../es/components/form-render").FieldVisitor>;
2244
+ };
2245
+ column: {
2246
+ type: NumberConstructor;
2247
+ default: number;
2248
+ };
2249
+ maxHeight: {
2250
+ type: (NumberConstructor | StringConstructor)[];
2251
+ default: string;
2252
+ };
2253
+ anchor: {
2254
+ type: BooleanConstructor;
2255
+ default: boolean;
2256
+ };
2257
+ parallelism: {
2258
+ type: NumberConstructor;
2259
+ default: number;
2260
+ };
2261
+ businessFormatter: {
2262
+ type: import("vue").PropType<import("../../../../es/components/form-render").FormBusinessFormatter>;
2263
+ };
2264
+ schema: {
2265
+ type: import("vue").PropType<import("@formily/json-schema").Stringify<{
2266
+ [key: symbol]: any;
2267
+ [key: `x-${string}`]: any;
2268
+ [key: `x-${number}`]: any;
2269
+ version?: string | undefined;
2270
+ name?: import("@formily/json-schema").SchemaKey | undefined;
2271
+ title?: any;
2272
+ description?: any;
2273
+ default?: any;
2274
+ readOnly?: boolean | undefined;
2275
+ writeOnly?: boolean | undefined;
2276
+ type?: import("@formily/json-schema").SchemaTypes | undefined;
2277
+ enum?: import("@formily/json-schema").SchemaEnum<any> | undefined;
2278
+ const?: any;
2279
+ multipleOf?: number | undefined;
2280
+ maximum?: number | undefined;
2281
+ exclusiveMaximum?: number | undefined;
2282
+ minimum?: number | undefined;
2283
+ exclusiveMinimum?: number | undefined;
2284
+ maxLength?: number | undefined;
2285
+ minLength?: number | undefined;
2286
+ pattern?: string | RegExp | undefined;
2287
+ maxItems?: number | undefined;
2288
+ minItems?: number | undefined;
2289
+ uniqueItems?: boolean | undefined;
2290
+ maxProperties?: number | undefined;
2291
+ minProperties?: number | undefined;
2292
+ required?: string | boolean | string[] | undefined;
2293
+ format?: string | undefined;
2294
+ $ref?: string | undefined;
2295
+ $namespace?: string | undefined;
2296
+ definitions?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2297
+ properties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2298
+ items?: import("@formily/json-schema").SchemaItems<any, any, any, any, any, any, any, any> | undefined;
2299
+ additionalItems?: import("@formily/json-schema").Stringify<any> | undefined;
2300
+ patternProperties?: import("@formily/json-schema").SchemaProperties<any, any, any, any, any, any, any, any> | undefined;
2301
+ additionalProperties?: import("@formily/json-schema").Stringify<any> | undefined;
2302
+ "x-value"?: any;
2303
+ "x-index"?: number | undefined;
2304
+ "x-pattern"?: any;
2305
+ "x-display"?: any;
2306
+ "x-validator"?: any;
2307
+ "x-decorator"?: any;
2308
+ "x-decorator-props"?: any;
2309
+ "x-component"?: any;
2310
+ "x-component-props"?: any;
2311
+ "x-reactions"?: import("@formily/json-schema").SchemaReactions<any> | undefined;
2312
+ "x-content"?: any;
2313
+ "x-data"?: any;
2314
+ "x-visible"?: boolean | undefined;
2315
+ "x-hidden"?: boolean | undefined;
2316
+ "x-disabled"?: boolean | undefined;
2317
+ "x-editable"?: boolean | undefined;
2318
+ "x-read-only"?: boolean | undefined;
2319
+ "x-read-pretty"?: boolean | undefined;
2320
+ "x-compile-omitted"?: string[] | undefined;
2321
+ }>>;
2322
+ };
2323
+ components: {
2324
+ type: import("vue").PropType<Record<string, Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>>;
2325
+ default: () => {};
2326
+ };
2327
+ scope: {
2328
+ type: import("vue").PropType<import("../../../../es/shared/types").AnyObject>;
2329
+ default: () => {};
2330
+ };
2331
+ annotation: {
2332
+ type: import("vue").PropType<import("../../../../es/shared/types").AnyObject>;
2333
+ };
2334
+ consumer: {
2335
+ type: BooleanConstructor;
2336
+ default: boolean;
2337
+ };
2338
+ uuid: {
2339
+ type: StringConstructor;
2340
+ };
2341
+ lifeCycle: {
2342
+ type: import("vue").PropType<Partial<{
2343
+ onSetup(): void;
2344
+ beforeRequest(fieldKey: string, params?: import("../../../../es/shared/types").AnyObject | undefined): void | import("../../../../es/shared/types").UndefinedAble<import("../../../../es/shared/types").AnyObject>;
2345
+ afterRequest(fieldKey: string, payload?: any): import("../../../../es/shared/types").AnyObject[];
2346
+ }>>;
2347
+ };
2348
+ requestInstance: {
2349
+ type: import("vue").PropType<import("../../../../es/components/form-render").RequestInstance>;
2350
+ };
2351
+ enterToNextWidget: {
2352
+ type: import("vue").PropType<boolean | ((fieldItem: FieldItem) => boolean | void)>;
2353
+ default: boolean;
2354
+ };
2355
+ lowCodeReactions: {
2356
+ type: import("vue").PropType<import("../../../../es/components/form-render").FormLowCodeReactions.Config[]>;
2357
+ };
2358
+ }>> & {
2359
+ onFormChange?: ((...args: any[]) => any) | undefined;
2360
+ }, {
2361
+ anchor: boolean;
2362
+ maxHeight: string | number;
2363
+ column: number;
2364
+ components: Record<string, Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | import("vue").FunctionalComponent<{}, {}>>;
2365
+ initialData: import("../../../../es/shared/types").AnyObject;
2366
+ parallelism: number;
2367
+ scope: import("../../../../es/shared/types").AnyObject;
2368
+ consumer: boolean;
2369
+ enterToNextWidget: boolean | ((fieldItem: FieldItem) => boolean | void);
2370
+ }>;
2371
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
2372
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "update")[], "error" | "update", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2373
+ glob: {
2374
+ type: BooleanConstructor;
2375
+ default: boolean;
2376
+ };
2377
+ scope: {
2378
+ type: (SymbolConstructor | StringConstructor)[];
2379
+ };
2380
+ }>> & {
2381
+ onError?: ((...args: any[]) => any) | undefined;
2382
+ onUpdate?: ((...args: any[]) => any) | undefined;
2383
+ }, {
2384
+ glob: boolean;
2385
+ }>;
2386
+ export default _default;