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