cnhis-design-vue 3.1.24-beta.7 → 3.1.24-beta.9

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