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

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