@gct-paas/design 0.1.4-dev.8 → 0.1.5-dev.0

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 (566) hide show
  1. package/dist/index.min.css +2 -1
  2. package/dist/loader.esm.min.js +1 -0
  3. package/es/_virtual/_plugin-vue_export-helper.mjs +7 -8
  4. package/es/_virtual/_rolldown/runtime.mjs +13 -0
  5. package/es/components/design-icon-button/design-icon-button.d.ts +2 -4
  6. package/es/components/design-icon-button/design-icon-button.mjs +95 -148
  7. package/es/components/design-save-tip/design-save-tip.mjs +76 -102
  8. package/es/components/design-step-check/design-step-check.mjs +92 -118
  9. package/es/components/design-view-layout/{design-view-layout.module.css → design-view-layout.css} +28 -25
  10. package/es/components/design-view-layout/design-view-layout.mjs +135 -204
  11. package/es/components/editor/index.mjs +13 -15
  12. package/es/components/editor/style/border-editor/border-box.vue.mjs +7 -7
  13. package/es/components/editor/style/border-editor/border-box.vue_vue_type_script_setup_true_name_border-box_lang.mjs +245 -0
  14. package/es/components/editor/style/border-editor/border-editor.vue.mjs +7 -7
  15. package/es/components/editor/style/border-editor/border-editor.vue_vue_type_script_setup_true_lang.mjs +57 -0
  16. package/es/components/editor/style/border-editor/border-radius.vue.mjs +7 -7
  17. package/es/components/editor/style/border-editor/border-radius.vue_vue_type_script_setup_true_lang.mjs +177 -0
  18. package/es/components/editor/style/border-editor/util.mjs +48 -70
  19. package/es/components/editor/style/font-editor/align-group.vue.mjs +7 -7
  20. package/es/components/editor/style/font-editor/align-group.vue_vue_type_script_setup_true_name_align-group_lang.mjs +54 -0
  21. package/es/components/editor/style/font-editor/font-editor.vue.mjs +5 -72
  22. package/es/components/editor/style/font-editor/font-editor.vue_vue_type_script_setup_true_name_font-editor_lang.mjs +61 -0
  23. package/es/components/editor/style/font-editor/font-style-group.vue.mjs +7 -7
  24. package/es/components/editor/style/font-editor/font-style-group.vue_vue_type_script_setup_true_lang.mjs +72 -0
  25. package/es/components/editor/style/font-editor/util.mjs +10 -10
  26. package/es/components/editor/style/position-editor/position-editor.vue.mjs +7 -7
  27. package/es/components/editor/style/position-editor/position-editor.vue_vue_type_script_setup_true_name_position-editor_lang.mjs +193 -0
  28. package/es/components/editor/style/spacing-editor/spacing-editor.vue.mjs +7 -7
  29. package/es/components/editor/style/spacing-editor/spacing-editor.vue_vue_type_script_setup_true_lang.mjs +262 -0
  30. package/es/components/field-cascader/index.d.ts +2 -0
  31. package/es/components/field-cascader/index.mjs +1 -0
  32. package/es/components/field-cascader/src/FieldCascader.vue.d.ts +87 -0
  33. package/es/components/field-cascader/src/FieldCascader.vue.mjs +6 -0
  34. package/es/components/field-cascader/src/FieldCascader.vue_vue_type_script_setup_true_lang.mjs +115 -0
  35. package/es/components/field-cascader/src/FieldCascader.vue_vue_type_style_index_0_lang.css +69 -0
  36. package/es/components/field-cascader/src/SearchInput.vue.d.ts +11 -0
  37. package/es/components/field-cascader/src/SearchInput.vue.mjs +7 -0
  38. package/es/components/field-cascader/src/SearchInput.vue_vue_type_script_setup_true_lang.mjs +38 -0
  39. package/es/components/field-cascader/src/SearchInput.vue_vue_type_style_index_0_scoped_512c4b38_lang.css +9 -0
  40. package/es/components/field-cascader/src/hooks.d.ts +129 -0
  41. package/es/components/field-cascader/src/hooks.mjs +163 -0
  42. package/es/components/field-transfer/components/Cascader/FieldCascader.d.ts +25 -0
  43. package/es/components/field-transfer/components/Cascader/FieldCascader.mjs +150 -0
  44. package/es/components/field-transfer/components/Transfer/AdvancedColumnSetting.d.ts +46 -0
  45. package/es/components/field-transfer/components/Transfer/AdvancedColumnSetting.mjs +45 -0
  46. package/es/components/field-transfer/components/Transfer/AdvancedTransfer.d.ts +39 -0
  47. package/es/components/field-transfer/components/Transfer/AdvancedTransfer.mjs +124 -0
  48. package/es/components/field-transfer/components/Transfer/FieldTransfer.d.ts +83 -0
  49. package/es/components/field-transfer/components/Transfer/FieldTransfer.mjs +112 -0
  50. package/es/components/field-transfer/components/Transfer/TransferTree.d.ts +62 -0
  51. package/es/components/field-transfer/components/Transfer/TransferTree.mjs +84 -0
  52. package/es/components/field-transfer/components/Transfer/TreeItem.d.ts +17 -0
  53. package/es/components/field-transfer/components/Transfer/TreeItem.mjs +25 -0
  54. package/es/components/field-transfer/components/field-transfer-modal.vue.d.ts +43 -0
  55. package/es/components/field-transfer/components/field-transfer-modal.vue.mjs +7 -0
  56. package/es/components/field-transfer/components/field-transfer-modal.vue_vue_type_script_setup_true_name_field-transfer-modal_lang.mjs +166 -0
  57. package/es/components/field-transfer/components/field-transfer-modal.vue_vue_type_style_index_0_scoped_0c9dd8a1_lang.css +5 -0
  58. package/es/components/field-transfer/components/modal-wrapper.vue.d.ts +19 -0
  59. package/es/components/field-transfer/components/modal-wrapper.vue.mjs +5 -0
  60. package/es/components/field-transfer/components/modal-wrapper.vue_vue_type_script_setup_true_name_modal-wrapper_lang.mjs +27 -0
  61. package/es/components/field-transfer/hooks/useTreeData.d.ts +139 -0
  62. package/es/components/field-transfer/hooks/useTreeData.mjs +136 -0
  63. package/es/components/field-transfer/index.d.ts +21 -0
  64. package/es/components/field-transfer/index.mjs +1 -0
  65. package/es/components/field-transfer/less/AdvancedTransfer.css +60 -0
  66. package/es/components/field-transfer/less/FieldCascader.css +57 -0
  67. package/es/components/field-transfer/less/TransferTree.css +86 -0
  68. package/es/components/field-transfer/less/TreeItem.css +29 -0
  69. package/es/components/field-transfer/useFieldTransfer.d.ts +47 -0
  70. package/es/components/field-transfer/useFieldTransfer.mjs +48 -0
  71. package/es/components/field-transfer/utils/tree-tool.d.ts +6 -0
  72. package/es/components/field-transfer/utils/tree-tool.mjs +62 -0
  73. package/es/components/icon/downleft-icon.vue.mjs +21 -25
  74. package/es/components/icon/downleft-icon.vue_vue_type_script_lang.mjs +9 -0
  75. package/es/components/icon/downright-icon.vue.mjs +21 -25
  76. package/es/components/icon/downright-icon.vue_vue_type_script_lang.mjs +9 -0
  77. package/es/components/icon/upleft-icon.vue.mjs +21 -25
  78. package/es/components/icon/upleft-icon.vue_vue_type_script_lang.mjs +9 -0
  79. package/es/components/icon/upright-icon.vue.mjs +21 -25
  80. package/es/components/icon/upright-icon.vue_vue_type_script_lang.mjs +9 -0
  81. package/es/components/index.d.ts +3 -0
  82. package/es/components/index.mjs +23 -25
  83. package/es/components/mobile-container/mobile-container.d.ts +3 -0
  84. package/es/components/mobile-container/mobile-container.mjs +39 -78
  85. package/es/components/modal-name-editor/modal-name-editor.d.ts +2 -2
  86. package/es/components/modal-name-editor/modal-name-editor.mjs +132 -171
  87. package/es/components/user-occupy/index.d.ts +4 -0
  88. package/es/components/user-occupy/index.mjs +3 -0
  89. package/es/components/user-occupy/occupy.const.d.ts +4 -0
  90. package/es/components/user-occupy/occupy.const.mjs +7 -0
  91. package/es/components/user-occupy/useUserOccupy.d.ts +38 -0
  92. package/es/components/user-occupy/useUserOccupy.mjs +162 -0
  93. package/es/components/user-occupy/user-lock.vue.d.ts +2 -0
  94. package/es/components/user-occupy/user-lock.vue.mjs +7 -0
  95. package/es/components/user-occupy/user-lock.vue_vue_type_script_setup_true_lang.mjs +16 -0
  96. package/es/components/user-occupy/user-lock.vue_vue_type_style_index_0_scoped_b40d46ff_lang.css +29 -0
  97. package/es/components/user-occupy/user-occupy.vue.d.ts +2 -0
  98. package/es/components/user-occupy/user-occupy.vue.mjs +7 -0
  99. package/es/components/user-occupy/user-occupy.vue_vue_type_script_setup_true_lang.mjs +34 -0
  100. package/es/components/user-occupy/user-occupy.vue_vue_type_style_index_0_scoped_24cb9749_lang.css +25 -0
  101. package/es/constant/design-editor-type.mjs +53 -14
  102. package/es/constant/index.d.ts +0 -26
  103. package/es/constant/index.mjs +241 -72
  104. package/es/constant/page-designer.d.ts +1 -12
  105. package/es/constant/page-designer.mjs +58 -51
  106. package/es/create-app-vue.d.ts +8 -0
  107. package/es/create-app-vue.mjs +13 -0
  108. package/es/data/design-container-node/design-container-node.d.ts +1 -1
  109. package/es/data/design-container-node/design-container-node.mjs +15 -5
  110. package/es/data/design-editor-node/design-editor-node.d.ts +1 -1
  111. package/es/data/design-editor-node/design-editor-node.mjs +18 -7
  112. package/es/data/design-node/design-node.d.ts +1 -1
  113. package/es/data/design-node/design-node.mjs +60 -65
  114. package/es/data/index.mjs +3 -0
  115. package/es/hooks/design-view/constants/style-editor.const.d.ts +24 -0
  116. package/es/hooks/design-view/constants/style-editor.const.mjs +63 -0
  117. package/es/hooks/design-view/design-state.d.ts +2586 -0
  118. package/es/hooks/design-view/design-state.mjs +103 -0
  119. package/es/hooks/design-view/designer/useDesignCache.d.ts +4 -0
  120. package/es/hooks/design-view/designer/useDesignCache.mjs +48 -0
  121. package/es/hooks/design-view/designer/useDesignHistory.d.ts +16 -0
  122. package/es/hooks/design-view/designer/useDesignHistory.mjs +110 -0
  123. package/es/hooks/design-view/designer/useDesignModal.d.ts +3150 -0
  124. package/es/hooks/design-view/designer/useDesignModal.mjs +109 -0
  125. package/es/hooks/design-view/designer/useDesignPreview.d.ts +11 -0
  126. package/es/hooks/design-view/designer/useDesignPreview.mjs +117 -0
  127. package/es/hooks/design-view/designer/useDesignSave.d.ts +12 -0
  128. package/es/hooks/design-view/designer/useDesignSave.mjs +225 -0
  129. package/es/hooks/design-view/{usePropEditor.d.ts → editor/usePropEditor.d.ts} +3 -3
  130. package/es/hooks/design-view/editor/usePropEditor.mjs +93 -0
  131. package/es/hooks/design-view/{useStyle.d.ts → editor/useStyle.d.ts} +2 -2
  132. package/es/hooks/design-view/editor/useStyle.mjs +39 -0
  133. package/es/hooks/design-view/editor/useStyleEditor.d.ts +30 -0
  134. package/es/hooks/design-view/editor/useStyleEditor.mjs +84 -0
  135. package/es/hooks/design-view/{useGlobal.d.ts → global/useGlobal.d.ts} +200 -108
  136. package/es/hooks/design-view/global/useGlobal.mjs +77 -0
  137. package/es/hooks/design-view/{useScope.d.ts → layout/useScope.d.ts} +3 -3
  138. package/es/hooks/design-view/layout/useScope.mjs +83 -0
  139. package/es/hooks/design-view/{useToolkit.d.ts → layout/useToolkit.d.ts} +63 -33
  140. package/es/hooks/design-view/layout/useToolkit.mjs +304 -0
  141. package/es/hooks/design-view/{usePage.d.ts → page/usePage.d.ts} +1 -3
  142. package/es/hooks/design-view/page/usePage.mjs +161 -0
  143. package/es/hooks/design-view/page/usePageOccupy.d.ts +33 -0
  144. package/es/hooks/design-view/page/usePageOccupy.mjs +98 -0
  145. package/es/hooks/design-view/useDesigner.d.ts +1651 -337
  146. package/es/hooks/design-view/useDesigner.mjs +123 -819
  147. package/es/hooks/design-view/utils/color.util.d.ts +21 -0
  148. package/es/hooks/design-view/utils/color.util.mjs +56 -0
  149. package/es/hooks/design-view/utils/field-schema.util.d.ts +55 -0
  150. package/es/hooks/design-view/utils/field-schema.util.mjs +93 -0
  151. package/es/hooks/design-view/widget/useSelectedWidget.d.ts +53 -0
  152. package/es/hooks/design-view/widget/useSelectedWidget.mjs +228 -0
  153. package/es/hooks/design-view/{useWidget.d.ts → widget/useWidget.d.ts} +12 -13
  154. package/es/hooks/design-view/widget/useWidget.mjs +97 -0
  155. package/es/hooks/design-view/widget/useWidgetQuery.d.ts +13 -0
  156. package/es/hooks/design-view/widget/useWidgetQuery.mjs +106 -0
  157. package/es/hooks/design-view/widget/useWidgetRegistry.d.ts +11 -0
  158. package/es/hooks/design-view/widget/useWidgetRegistry.mjs +89 -0
  159. package/es/hooks/designer.hooks.mjs +17 -11
  160. package/es/hooks/develop/useCacheHistory.mjs +129 -152
  161. package/es/hooks/develop/useKeyParser.mjs +76 -68
  162. package/es/hooks/index.d.ts +22 -11
  163. package/es/hooks/index.mjs +28 -0
  164. package/es/hooks/use-model-field/use-model-field.d.ts +32 -0
  165. package/es/hooks/use-model-field/use-model-field.mjs +269 -0
  166. package/es/hooks/widgets/useAsyncFields.d.ts +17 -0
  167. package/es/hooks/widgets/useAsyncFields.mjs +143 -0
  168. package/es/hooks/widgets/useFileAttrsHooks.d.ts +28 -0
  169. package/es/hooks/widgets/useFileAttrsHooks.mjs +37 -0
  170. package/es/index.d.ts +3 -8
  171. package/es/index.mjs +95 -52
  172. package/es/interface/actions/i-design-view.actions.d.ts +1 -1
  173. package/es/interface/controller/i-design-view.controller.d.ts +1 -1
  174. package/es/interface/design/i-model-field-node-data/i-model-field-node-data.d.ts +1 -1
  175. package/es/interface/design/index.d.ts +0 -8
  176. package/es/interface/designer/i-designer-provider.d.ts +2 -85
  177. package/es/interface/designer/i-designer-state.d.ts +14 -0
  178. package/es/interface/designer/index.d.ts +0 -2
  179. package/es/interface/i-drag-item/i-drag-item.d.ts +1 -1
  180. package/es/interface/index.d.ts +0 -2
  181. package/es/interface/state/i-design-view.state.d.ts +1 -1
  182. package/es/loader.d.ts +1 -0
  183. package/es/props/index.d.ts +1 -1
  184. package/es/props/index.mjs +55 -52
  185. package/es/register/designer-register/designer-register.d.ts +29 -0
  186. package/es/register/designer-register/designer-register.mjs +111 -66
  187. package/es/register/index.d.ts +0 -1
  188. package/es/register/index.mjs +2 -0
  189. package/es/register/material/material.register.mjs +131 -133
  190. package/es/schema/begin-drag/begin-drag.d.ts +13 -0
  191. package/es/schema/begin-drag/begin-drag.mjs +108 -0
  192. package/es/schema/common-config/autofill-editor-config.d.ts +5 -0
  193. package/es/schema/common-config/autofill-editor-config.mjs +34 -0
  194. package/es/schema/common-config/base-button-config.d.ts +3 -0
  195. package/es/schema/common-config/base-button-config.mjs +76 -0
  196. package/es/schema/common-config/button-editor-config.d.ts +4 -0
  197. package/es/schema/common-config/button-editor-config.mjs +134 -0
  198. package/es/schema/common-config/button-props-func.d.ts +5 -0
  199. package/es/schema/common-config/button-props-func.mjs +11 -0
  200. package/es/schema/common-config/column-editor-config.d.ts +6 -0
  201. package/es/schema/common-config/column-editor-config.mjs +28 -0
  202. package/es/schema/common-config/common-event-config.d.ts +6 -0
  203. package/es/schema/common-config/common-event-config.mjs +16 -0
  204. package/es/schema/common-config/common-field-editor-config.d.ts +49 -0
  205. package/es/schema/common-config/common-field-editor-config.mjs +292 -0
  206. package/es/schema/common-config/common-style.d.ts +3 -0
  207. package/es/schema/common-config/common-style.mjs +85 -0
  208. package/es/schema/common-config/display-editor-config.d.ts +3 -0
  209. package/es/schema/common-config/display-editor-config.mjs +70 -0
  210. package/es/schema/common-config/formItem-editor-config.d.ts +2 -0
  211. package/es/schema/common-config/formItem-editor-config.mjs +20 -0
  212. package/es/schema/common-config/permission-editor-config.d.ts +2 -0
  213. package/es/schema/common-config/permission-editor-config.mjs +13 -0
  214. package/es/schema/field/card-list-field.d.ts +4 -0
  215. package/es/schema/field/card-list-field.mjs +269 -0
  216. package/es/schema/field/data-table-column.d.ts +81 -0
  217. package/es/schema/field/data-table-column.mjs +269 -0
  218. package/es/schema/field/descriptions-field.d.ts +3 -0
  219. package/es/schema/field/index.d.ts +14 -0
  220. package/es/schema/field/index.mjs +65 -0
  221. package/es/schema/index.d.ts +18 -0
  222. package/es/schema/index.mjs +17 -0
  223. package/es/schema/modal/modal-body.d.ts +2 -0
  224. package/es/schema/modal/modal-body.mjs +9 -0
  225. package/es/schema/modal/modal-footer.d.ts +2 -0
  226. package/es/schema/modal/modal-footer.mjs +9 -0
  227. package/es/schema/modal/modal.d.ts +8 -0
  228. package/es/schema/modal/modal.mjs +173 -0
  229. package/es/schema/search/BaseDate.d.ts +143 -0
  230. package/es/schema/search/BaseDate.mjs +114 -0
  231. package/es/schema/search/BaseSearch.d.ts +141 -0
  232. package/es/schema/search/BaseSearch.mjs +155 -0
  233. package/es/schema/utils.d.ts +8 -0
  234. package/es/schema/utils.mjs +76 -0
  235. package/es/setup-app.d.ts +1 -0
  236. package/es/setup-app.mjs +11 -0
  237. package/es/utils/design-interceptors/design-interceptors.d.ts +8 -0
  238. package/es/utils/design-interceptors/design-interceptors.mjs +23 -0
  239. package/es/utils/design-plugin-pkg-util/design-plugin-pkg-util.d.ts +28 -0
  240. package/es/utils/design-plugin-pkg-util/design-plugin-pkg-util.mjs +57 -0
  241. package/es/utils/design-view/index.d.ts +9 -0
  242. package/es/utils/design-view/index.mjs +20 -0
  243. package/es/utils/field-attrs/basicAttrs.mjs +577 -721
  244. package/es/utils/field-attrs/index.mjs +10 -6
  245. package/es/utils/field-filter/index.d.ts +4 -0
  246. package/es/utils/field-filter/index.mjs +68 -0
  247. package/es/utils/find-deep-types/find-deep-types.mjs +34 -24
  248. package/es/utils/flatten.d.ts +12 -0
  249. package/es/utils/flatten.mjs +32 -0
  250. package/es/utils/formula-editor-design/formula-editor-design.d.ts +9 -0
  251. package/es/utils/formula-editor-design/formula-editor-design.mjs +31 -0
  252. package/es/utils/index.d.ts +10 -4
  253. package/es/utils/index.mjs +13 -0
  254. package/es/utils/init-widget-info/init-widget-info.d.ts +16 -0
  255. package/es/utils/init-widget-info/init-widget-info.mjs +53 -0
  256. package/es/utils/schema/index.d.ts +10 -0
  257. package/es/utils/schema/index.mjs +18 -0
  258. package/es/utils/transform-js/index.d.ts +1 -0
  259. package/es/utils/transform-js/index.mjs +1 -0
  260. package/es/utils/transform-js/transform-js.d.ts +14 -0
  261. package/es/utils/transform-js/transform-js.mjs +76 -0
  262. package/package.json +27 -18
  263. package/dist/index.esm.min.mjs +0 -25068
  264. package/dist/index.min.cjs +0 -70
  265. package/dist/index.system.min.js +0 -70
  266. package/es/components/design/design-content/design-content.css +0 -76
  267. package/es/components/design/design-content/design-content.d.ts +0 -191
  268. package/es/components/design/design-content/design-content.mjs +0 -361
  269. package/es/components/design/design-drag-item/design-drag-item.css +0 -179
  270. package/es/components/design/design-drag-item/design-drag-item.d.ts +0 -55
  271. package/es/components/design/design-drag-item/design-drag-item.mjs +0 -293
  272. package/es/components/design/design-drop-container/design-drop-container.css +0 -103
  273. package/es/components/design/design-drop-container/design-drop-container.d.ts +0 -87
  274. package/es/components/design/design-drop-container/design-drop-container.mjs +0 -217
  275. package/es/components/design/design-drop-line/design-drop-line.css +0 -165
  276. package/es/components/design/design-drop-line/design-drop-line.d.ts +0 -72
  277. package/es/components/design/design-drop-line/design-drop-line.mjs +0 -174
  278. package/es/components/design/design-item-actions/design-item-actions.css +0 -97
  279. package/es/components/design/design-item-actions/design-item-actions.d.ts +0 -42
  280. package/es/components/design/design-item-actions/design-item-actions.mjs +0 -195
  281. package/es/components/design/design-item-highlighter/design-item-highlighter.css +0 -70
  282. package/es/components/design/design-item-highlighter/design-item-highlighter.d.ts +0 -168
  283. package/es/components/design/design-item-highlighter/design-item-highlighter.mjs +0 -164
  284. package/es/components/design/design-item-highlighter-container/design-item-highlighter-container.css +0 -85
  285. package/es/components/design/design-item-highlighter-container/design-item-highlighter-container.d.ts +0 -53
  286. package/es/components/design/design-item-highlighter-container/design-item-highlighter-container.mjs +0 -223
  287. package/es/components/design/design-item-hover-title/design-item-hover-title.css +0 -12
  288. package/es/components/design/design-item-hover-title/design-item-hover-title.d.ts +0 -60
  289. package/es/components/design/design-item-hover-title/design-item-hover-title.mjs +0 -74
  290. package/es/components/design/design-item-preview/design-item-preview.css +0 -91
  291. package/es/components/design/design-item-preview/design-item-preview.d.ts +0 -1
  292. package/es/components/design/design-item-preview/design-item-preview.mjs +0 -50
  293. package/es/components/design/design-not-drag-item/design-not-drag-item.css +0 -67
  294. package/es/components/design/design-not-drag-item/design-not-drag-item.d.ts +0 -49
  295. package/es/components/design/design-not-drag-item/design-not-drag-item.mjs +0 -85
  296. package/es/components/design/design-not-found/design-not-found.css +0 -68
  297. package/es/components/design/design-not-found/design-not-found.d.ts +0 -14
  298. package/es/components/design/design-not-found/design-not-found.mjs +0 -26
  299. package/es/components/design/index.d.ts +0 -6
  300. package/es/components/design/index.mjs +0 -22
  301. package/es/components/design-view-layout/design-view-layout.module.scss.mjs +0 -27
  302. package/es/components/editor/style/border-editor/border-box.vue2.mjs +0 -305
  303. package/es/components/editor/style/border-editor/border-editor.vue2.mjs +0 -60
  304. package/es/components/editor/style/border-editor/border-radius.vue2.mjs +0 -212
  305. package/es/components/editor/style/font-editor/align-group.vue2.mjs +0 -66
  306. package/es/components/editor/style/font-editor/font-editor.vue2.mjs +0 -5
  307. package/es/components/editor/style/font-editor/font-style-group.vue2.mjs +0 -105
  308. package/es/components/editor/style/position-editor/position-editor.vue2.mjs +0 -242
  309. package/es/components/editor/style/spacing-editor/spacing-editor.vue2.mjs +0 -311
  310. package/es/components/icon/downleft-icon.vue2.mjs +0 -11
  311. package/es/components/icon/downright-icon.vue2.mjs +0 -11
  312. package/es/components/icon/upleft-icon.vue2.mjs +0 -11
  313. package/es/components/icon/upright-icon.vue2.mjs +0 -11
  314. package/es/components/material/index.d.ts +0 -5
  315. package/es/components/material/index.mjs +0 -9
  316. package/es/components/material/material-content/material-content.css +0 -86
  317. package/es/components/material/material-content/material-content.d.ts +0 -179
  318. package/es/components/material/material-content/material-content.mjs +0 -59
  319. package/es/components/material/material-module/material-module.css +0 -104
  320. package/es/components/material/material-module/material-module.d.ts +0 -68
  321. package/es/components/material/material-module/material-module.mjs +0 -108
  322. package/es/components/material/material-module-drag-container/material-module-drag-container.css +0 -69
  323. package/es/components/material/material-module-drag-container/material-module-drag-container.d.ts +0 -58
  324. package/es/components/material/material-module-drag-container/material-module-drag-container.mjs +0 -32
  325. package/es/components/material/material-module-drag-item/material-module-drag-item.css +0 -83
  326. package/es/components/material/material-module-drag-item/material-module-drag-item.d.ts +0 -17
  327. package/es/components/material/material-module-drag-item/material-module-drag-item.mjs +0 -101
  328. package/es/components/material/material-outline-tree/material-outline-tree.css +0 -81
  329. package/es/components/material/material-outline-tree/material-outline-tree.d.ts +0 -1
  330. package/es/components/material/material-outline-tree/material-outline-tree.mjs +0 -87
  331. package/es/components/material/material-tab-pane/material-tab-pane.css +0 -68
  332. package/es/components/material/material-tab-pane/material-tab-pane.d.ts +0 -13
  333. package/es/components/material/material-tab-pane/material-tab-pane.mjs +0 -26
  334. package/es/components/material/material-tabs/material-tabs.css +0 -105
  335. package/es/components/material/material-tabs/material-tabs.d.ts +0 -99
  336. package/es/components/material/material-tabs/material-tabs.mjs +0 -69
  337. package/es/components/panel/index.d.ts +0 -5
  338. package/es/components/panel/index.mjs +0 -9
  339. package/es/components/panel/panel-content/panel-content.css +0 -183
  340. package/es/components/panel/panel-content/panel-content.d.ts +0 -19
  341. package/es/components/panel/panel-content/panel-content.mjs +0 -71
  342. package/es/components/panel/panel-form/panel-form.css +0 -67
  343. package/es/components/panel/panel-form/panel-form.d.ts +0 -62
  344. package/es/components/panel/panel-form/panel-form.mjs +0 -73
  345. package/es/components/panel/panel-path/panel-path.css +0 -89
  346. package/es/components/panel/panel-path/panel-path.d.ts +0 -35
  347. package/es/components/panel/panel-path/panel-path.mjs +0 -72
  348. package/es/controller/index.d.ts +0 -1
  349. package/es/controller/view/design-view.controller.d.ts +0 -47
  350. package/es/controller/view/design-view.controller.mjs +0 -184
  351. package/es/dictionary/tab-type/tab-type.mjs +0 -24
  352. package/es/editor/child-list-editor/child-list-editor.css +0 -76
  353. package/es/editor/child-list-editor/child-list-editor.d.ts +0 -163
  354. package/es/editor/child-list-editor/child-list-editor.mjs +0 -143
  355. package/es/editor/child-list-editor/child-list-editor.provider.d.ts +0 -13
  356. package/es/editor/child-list-editor/child-list-editor.provider.mjs +0 -5
  357. package/es/editor/child-list-editor/components/child-list-item-editor.css +0 -112
  358. package/es/editor/child-list-editor/components/child-list-item-editor.d.ts +0 -133
  359. package/es/editor/child-list-editor/components/child-list-item-editor.mjs +0 -238
  360. package/es/editor/child-list-editor/index.d.ts +0 -4
  361. package/es/editor/child-list-editor/index.mjs +0 -13
  362. package/es/editor/content-tag-style/content-tag-style.css +0 -164
  363. package/es/editor/content-tag-style/content-tag-style.d.ts +0 -112
  364. package/es/editor/content-tag-style/content-tag-style.mjs +0 -103
  365. package/es/editor/content-tag-style/index.d.ts +0 -8
  366. package/es/editor/content-tag-style/index.mjs +0 -15
  367. package/es/editor/custom-exp-menu-editor/components/custom-exp-menu-item.css +0 -156
  368. package/es/editor/custom-exp-menu-editor/components/custom-exp-menu-item.d.ts +0 -29
  369. package/es/editor/custom-exp-menu-editor/components/custom-exp-menu-item.mjs +0 -134
  370. package/es/editor/custom-exp-menu-editor/custom-exp-menu-editor.css +0 -76
  371. package/es/editor/custom-exp-menu-editor/custom-exp-menu-editor.d.ts +0 -38
  372. package/es/editor/custom-exp-menu-editor/custom-exp-menu-editor.mjs +0 -163
  373. package/es/editor/custom-exp-menu-editor/custom-exp-menu-editor.provider.d.ts +0 -13
  374. package/es/editor/custom-exp-menu-editor/custom-exp-menu-editor.provider.mjs +0 -5
  375. package/es/editor/custom-exp-menu-editor/i-custom-exp-menu-model.d.ts +0 -23
  376. package/es/editor/custom-exp-menu-editor/index.d.ts +0 -5
  377. package/es/editor/custom-exp-menu-editor/index.mjs +0 -13
  378. package/es/editor/custom-exp-menu-editor/modal/exp-menu.modal.d.ts +0 -37
  379. package/es/editor/field-info-editor/field-info-editor.css +0 -125
  380. package/es/editor/field-info-editor/field-info-editor.d.ts +0 -111
  381. package/es/editor/field-info-editor/field-info-editor.mjs +0 -60
  382. package/es/editor/field-info-editor/index.d.ts +0 -8
  383. package/es/editor/field-info-editor/index.mjs +0 -13
  384. package/es/editor/index.d.ts +0 -5
  385. package/es/editor/index.mjs +0 -27
  386. package/es/editor/model-field-select/index.d.ts +0 -8
  387. package/es/editor/model-field-select/index.mjs +0 -13
  388. package/es/editor/model-field-select/model-field-select.css +0 -141
  389. package/es/editor/model-field-select/model-field-select.d.ts +0 -42
  390. package/es/editor/model-field-select/model-field-select.mjs +0 -312
  391. package/es/editor/style-border/index.d.ts +0 -8
  392. package/es/editor/style-border/index.mjs +0 -15
  393. package/es/editor/style-border/style-border.d.ts +0 -38
  394. package/es/editor/style-border/style-border.mjs +0 -45
  395. package/es/editor/style-font/index.d.ts +0 -8
  396. package/es/editor/style-font/index.mjs +0 -15
  397. package/es/editor/style-font/style-font.css +0 -86
  398. package/es/editor/style-font/style-font.d.ts +0 -38
  399. package/es/editor/style-font/style-font.mjs +0 -45
  400. package/es/editor/style-position/index.d.ts +0 -8
  401. package/es/editor/style-position/index.mjs +0 -15
  402. package/es/editor/style-position/style-position.d.ts +0 -38
  403. package/es/editor/style-position/style-position.mjs +0 -44
  404. package/es/editor/style-spacing/index.d.ts +0 -8
  405. package/es/editor/style-spacing/index.mjs +0 -15
  406. package/es/editor/style-spacing/style-spacing.d.ts +0 -40
  407. package/es/editor/style-spacing/style-spacing.mjs +0 -69
  408. package/es/editor/system-page-select/i-system-page-select.d.ts +0 -23
  409. package/es/editor/system-page-select/index.d.ts +0 -9
  410. package/es/editor/system-page-select/index.mjs +0 -15
  411. package/es/editor/system-page-select/system-page-select.css +0 -119
  412. package/es/editor/system-page-select/system-page-select.d.ts +0 -38
  413. package/es/editor/system-page-select/system-page-select.mjs +0 -82
  414. package/es/hooks/design-view/getFieldSchema.d.ts +0 -26
  415. package/es/hooks/design-view/getFieldSchema.mjs +0 -78
  416. package/es/hooks/design-view/useGlobal.mjs +0 -74
  417. package/es/hooks/design-view/usePage.mjs +0 -171
  418. package/es/hooks/design-view/usePageOccupy.d.ts +0 -13
  419. package/es/hooks/design-view/usePageOccupy.mjs +0 -69
  420. package/es/hooks/design-view/usePropEditor.mjs +0 -99
  421. package/es/hooks/design-view/useScope.mjs +0 -92
  422. package/es/hooks/design-view/useSelectedWidget.d.ts +0 -53
  423. package/es/hooks/design-view/useSelectedWidget.mjs +0 -249
  424. package/es/hooks/design-view/useStyle.mjs +0 -30
  425. package/es/hooks/design-view/useStyleEditor.d.ts +0 -27
  426. package/es/hooks/design-view/useToolkit.mjs +0 -299
  427. package/es/hooks/design-view/useWidget.mjs +0 -124
  428. package/es/hooks/use-design-view-controller/use-design-view-controller.d.ts +0 -11
  429. package/es/hooks/use-design-view-controller/use-design-view-controller.mjs +0 -26
  430. package/es/hooks/web/useUUid.d.ts +0 -41
  431. package/es/hooks/web/useUUid.mjs +0 -93
  432. package/es/interface/design/i-design-container-node.d.ts +0 -13
  433. package/es/interface/design/i-design-data.d.ts +0 -44
  434. package/es/interface/design/i-design-editor-data.d.ts +0 -20
  435. package/es/interface/design/i-design-editor-node.d.ts +0 -15
  436. package/es/interface/design/i-design-node-data.d.ts +0 -19
  437. package/es/interface/design/i-design-node.d.ts +0 -80
  438. package/es/interface/design/i-design-page-node-data.d.ts +0 -15
  439. package/es/interface/design/i-design-tree-item.d.ts +0 -26
  440. package/es/interface/designer/i-designer-dnd-item-hooks.d.ts +0 -21
  441. package/es/interface/designer/i-designer-schema-exports.d.ts +0 -13
  442. package/es/interface/editor/child-list-editor/child-list-editor.d.ts +0 -114
  443. package/es/interface/editor/index.d.ts +0 -9
  444. package/es/interface/editor/style-border/i-style-border.controller.d.ts +0 -11
  445. package/es/interface/editor/style-border/i-style-border.d.ts +0 -22
  446. package/es/interface/editor/style-font/i-style-font.controller.d.ts +0 -11
  447. package/es/interface/editor/style-font/i-style-font.d.ts +0 -13
  448. package/es/interface/editor/style-position/i-style-position.controller.d.ts +0 -11
  449. package/es/interface/editor/style-position/i-style-position.d.ts +0 -13
  450. package/es/interface/editor/style-spacing/i-style-spacing.controller.d.ts +0 -11
  451. package/es/interface/editor/style-spacing/i-style-spacing.d.ts +0 -22
  452. package/es/interface/provider/i-node-provider.d.ts +0 -142
  453. package/es/plugins/design-custom-exp-menu/components/design-custom-exp-menu-component.css +0 -87
  454. package/es/plugins/design-custom-exp-menu/components/design-custom-exp-menu.component.d.ts +0 -9
  455. package/es/plugins/design-custom-exp-menu/components/design-custom-exp-menu.component.mjs +0 -106
  456. package/es/plugins/design-custom-exp-menu/design-custom-exp-menu.data.d.ts +0 -51
  457. package/es/plugins/design-custom-exp-menu/design-custom-exp-menu.data.mjs +0 -89
  458. package/es/plugins/design-custom-exp-menu/design-custom-exp-menu.provider.d.ts +0 -23
  459. package/es/plugins/design-custom-exp-menu/design-custom-exp-menu.provider.mjs +0 -159
  460. package/es/plugins/design-editor/index.d.ts +0 -5
  461. package/es/plugins/design-editor/index.mjs +0 -13
  462. package/es/plugins/design-editor/upload-file/index.d.ts +0 -4
  463. package/es/plugins/design-editor/upload-file/index.mjs +0 -12
  464. package/es/plugins/design-editor/upload-file/upload-file.css +0 -124
  465. package/es/plugins/design-editor/upload-file/upload-file.d.ts +0 -46
  466. package/es/plugins/design-editor/upload-file/upload-file.mjs +0 -51
  467. package/es/plugins/design-editor/upload-image/index.d.ts +0 -4
  468. package/es/plugins/design-editor/upload-image/index.mjs +0 -12
  469. package/es/plugins/design-editor/upload-image/upload-image.css +0 -79
  470. package/es/plugins/design-editor/upload-image/upload-image.d.ts +0 -46
  471. package/es/plugins/design-editor/upload-image/upload-image.mjs +0 -23
  472. package/es/plugins/design-editor/user-signature/index.d.ts +0 -4
  473. package/es/plugins/design-editor/user-signature/index.mjs +0 -12
  474. package/es/plugins/design-editor/user-signature/user-signature.css +0 -79
  475. package/es/plugins/design-editor/user-signature/user-signature.d.ts +0 -46
  476. package/es/plugins/design-editor/user-signature/user-signature.mjs +0 -23
  477. package/es/plugins/design-grid/components/design-grid.component.css +0 -68
  478. package/es/plugins/design-grid/components/design-grid.component.d.ts +0 -39
  479. package/es/plugins/design-grid/components/design-grid.component.mjs +0 -57
  480. package/es/plugins/design-grid/design-grid.data.d.ts +0 -34
  481. package/es/plugins/design-grid/design-grid.data.mjs +0 -17
  482. package/es/plugins/design-grid/design-grid.provider.d.ts +0 -26
  483. package/es/plugins/design-grid/design-grid.provider.mjs +0 -240
  484. package/es/plugins/design-grid-item/components/design-grid-item.component.d.ts +0 -38
  485. package/es/plugins/design-grid-item/components/design-grid-item.component.mjs +0 -36
  486. package/es/plugins/design-grid-item/design-grid-item.data.d.ts +0 -26
  487. package/es/plugins/design-grid-item/design-grid-item.data.mjs +0 -17
  488. package/es/plugins/design-grid-item/design-grid-item.provider.d.ts +0 -25
  489. package/es/plugins/design-grid-item/design-grid-item.provider.mjs +0 -172
  490. package/es/plugins/design-menu-list/components/design-menu-list.component.css +0 -131
  491. package/es/plugins/design-menu-list/components/design-menu-list.component.d.ts +0 -18
  492. package/es/plugins/design-menu-list/components/design-menu-list.component.mjs +0 -110
  493. package/es/plugins/design-menu-list/design-menu-list.data.d.ts +0 -62
  494. package/es/plugins/design-menu-list/design-menu-list.data.mjs +0 -21
  495. package/es/plugins/design-menu-list/design-menu-list.provider.d.ts +0 -23
  496. package/es/plugins/design-menu-list/design-menu-list.provider.mjs +0 -265
  497. package/es/plugins/design-page/design-page.data.d.ts +0 -15
  498. package/es/plugins/design-page/design-page.data.mjs +0 -17
  499. package/es/plugins/design-page/design-page.provider.d.ts +0 -23
  500. package/es/plugins/design-page/design-page.provider.mjs +0 -109
  501. package/es/plugins/design-panel/components/design-panel-component.css +0 -108
  502. package/es/plugins/design-panel/components/design-panel.component.d.ts +0 -39
  503. package/es/plugins/design-panel/components/design-panel.component.mjs +0 -49
  504. package/es/plugins/design-panel/design-panel.data.d.ts +0 -64
  505. package/es/plugins/design-panel/design-panel.data.mjs +0 -27
  506. package/es/plugins/design-panel/design-panel.provider.d.ts +0 -23
  507. package/es/plugins/design-panel/design-panel.provider.mjs +0 -298
  508. package/es/plugins/design-personal-center/components/design-personal-center.component.css +0 -48
  509. package/es/plugins/design-personal-center/components/design-personal-center.component.vue.d.ts +0 -36
  510. package/es/plugins/design-personal-center/components/design-personal-center.component.vue.mjs +0 -7
  511. package/es/plugins/design-personal-center/components/design-personal-center.component.vue2.mjs +0 -97
  512. package/es/plugins/design-personal-center/design-personal-center.data.d.ts +0 -27
  513. package/es/plugins/design-personal-center/design-personal-center.data.mjs +0 -21
  514. package/es/plugins/design-personal-center/design-personal-center.provider.d.ts +0 -13
  515. package/es/plugins/design-personal-center/design-personal-center.provider.mjs +0 -144
  516. package/es/plugins/design-select-component/components/design-select-component.component.css +0 -107
  517. package/es/plugins/design-select-component/components/design-select-component.component.d.ts +0 -41
  518. package/es/plugins/design-select-component/components/design-select-component.component.mjs +0 -57
  519. package/es/plugins/design-select-component/design-select-component.data.d.ts +0 -57
  520. package/es/plugins/design-select-component/design-select-component.data.mjs +0 -18
  521. package/es/plugins/design-select-component/design-select-component.provider.d.ts +0 -23
  522. package/es/plugins/design-select-component/design-select-component.provider.mjs +0 -207
  523. package/es/plugins/design-tab-item/components/design-tab-item.component.d.ts +0 -38
  524. package/es/plugins/design-tab-item/components/design-tab-item.component.mjs +0 -36
  525. package/es/plugins/design-tab-item/design-tab-item.data.d.ts +0 -35
  526. package/es/plugins/design-tab-item/design-tab-item.data.mjs +0 -22
  527. package/es/plugins/design-tab-item/design-tab-item.provider.d.ts +0 -25
  528. package/es/plugins/design-tab-item/design-tab-item.provider.mjs +0 -185
  529. package/es/plugins/design-tabs/components/design-tabs.component.css +0 -105
  530. package/es/plugins/design-tabs/components/design-tabs.component.d.ts +0 -40
  531. package/es/plugins/design-tabs/components/design-tabs.component.mjs +0 -82
  532. package/es/plugins/design-tabs/design-tabs.data.d.ts +0 -66
  533. package/es/plugins/design-tabs/design-tabs.data.mjs +0 -19
  534. package/es/plugins/design-tabs/design-tabs.provider.d.ts +0 -26
  535. package/es/plugins/design-tabs/design-tabs.provider.mjs +0 -261
  536. package/es/plugins/index.d.ts +0 -5
  537. package/es/plugins/index.mjs +0 -116
  538. package/es/plugins/install-material.d.ts +0 -8
  539. package/es/plugins/install-material.mjs +0 -55
  540. package/es/provider/design-editor-node/design-editor-node.provider.d.ts +0 -40
  541. package/es/provider/design-editor-node/design-editor-node.provider.mjs +0 -44
  542. package/es/provider/index.d.ts +0 -2
  543. package/es/provider/node-base/node-base.provider.d.ts +0 -25
  544. package/es/provider/node-base/node-base.provider.mjs +0 -26
  545. package/es/register/node/node.register.d.ts +0 -113
  546. package/es/register/node/node.register.mjs +0 -134
  547. package/es/store/index.d.ts +0 -1
  548. package/es/store/view/design-view.store.d.ts +0 -5
  549. package/es/store/view/design-view.store.mjs +0 -412
  550. package/es/utils/can-drop/can-drop.d.ts +0 -12
  551. package/es/utils/can-drop/can-drop.mjs +0 -56
  552. package/es/utils/design-install/design-install.d.ts +0 -16
  553. package/es/utils/design-install/design-install.mjs +0 -22
  554. package/es/utils/plugin-pkg-util/plugin-pkg-util.d.ts +0 -97
  555. package/es/utils/plugin-pkg-util/plugin-pkg-util.mjs +0 -266
  556. package/es/views/design-view.css +0 -218
  557. package/es/views/design-view.d.ts +0 -87
  558. package/es/views/design-view.mjs +0 -343
  559. package/es/views/index.d.ts +0 -1
  560. /package/es/components/editor/style/border-editor/{border-box.css → border-box.vue_vue_type_style_index_0_scoped_a5616984_lang.css} +0 -0
  561. /package/es/components/editor/style/border-editor/{border-editor.css → border-editor.vue_vue_type_style_index_0_scoped_f973ba6b_lang.css} +0 -0
  562. /package/es/components/editor/style/border-editor/{border-radius.css → border-radius.vue_vue_type_style_index_0_scoped_1cb5bbdc_lang.css} +0 -0
  563. /package/es/components/editor/style/font-editor/{align-group.css → align-group.vue_vue_type_style_index_0_scoped_afcacb4b_lang.css} +0 -0
  564. /package/es/components/editor/style/font-editor/{font-style-group.css → font-style-group.vue_vue_type_style_index_0_scoped_7df87cdb_lang.css} +0 -0
  565. /package/es/components/editor/style/position-editor/{position-editor.css → position-editor.vue_vue_type_style_index_0_scoped_cc7cb9d8_lang.css} +0 -0
  566. /package/es/components/editor/style/spacing-editor/{spacing-editor.css → spacing-editor.vue_vue_type_style_index_0_scoped_18c72ccf_lang.css} +0 -0
@@ -0,0 +1,3150 @@
1
+ import { BuiltinType } from '@gct-paas/core';
2
+ import { LowCodeModal } from '@gct-paas/schema';
3
+ export declare function useDesignModal(): {
4
+ modalInfo: import('vue').Ref<{
5
+ id: string;
6
+ alias: string;
7
+ name: string;
8
+ platform: import('@gct-paas/core').Platform;
9
+ modalName: string;
10
+ compName?: string | undefined;
11
+ compKey?: string | undefined;
12
+ type: BuiltinType.MODAL;
13
+ js: string;
14
+ css: string;
15
+ children: [{
16
+ id: string;
17
+ type: BuiltinType.MODAL_BODY | string;
18
+ children: {
19
+ [x: string]: any;
20
+ id: string;
21
+ platform: import('@gct-paas/core').Platform;
22
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
23
+ alias: string;
24
+ name: string;
25
+ compName?: string | undefined;
26
+ compKey?: string | undefined;
27
+ type: string | import('@gct-paas/core').FormComponents;
28
+ icon: string;
29
+ children?: any[] | undefined;
30
+ internal?: boolean | undefined;
31
+ description?: string | undefined;
32
+ style: {
33
+ position?: string | undefined;
34
+ top?: string | undefined;
35
+ left?: string | undefined;
36
+ right?: string | undefined;
37
+ bottom?: string | undefined;
38
+ width?: string | undefined;
39
+ height?: string | undefined;
40
+ maxHeight?: string | undefined;
41
+ backgroundColor?: string | undefined;
42
+ marginAll?: string | undefined;
43
+ marginTop?: string | undefined;
44
+ marginRight?: string | undefined;
45
+ marginBottom?: string | undefined;
46
+ marginLeft?: string | undefined;
47
+ paddingAll?: string | undefined;
48
+ paddingTop?: string | undefined;
49
+ paddingRight?: string | undefined;
50
+ paddingBottom?: string | undefined;
51
+ paddingLeft?: string | undefined;
52
+ labelFont?: {
53
+ fontSize: string;
54
+ bold: boolean;
55
+ italic: boolean;
56
+ textDecoration: import('@gct-paas/core').TextDecoration;
57
+ color: string;
58
+ align: "left" | "right" | "justify";
59
+ } | undefined;
60
+ contentFont?: {
61
+ fontSize: string;
62
+ bold: boolean;
63
+ italic: boolean;
64
+ textDecoration: import('@gct-paas/core').TextDecoration;
65
+ color: string;
66
+ align: "left" | "right" | "justify";
67
+ } | undefined;
68
+ tagStyle?: {
69
+ color?: string | undefined;
70
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
71
+ } | undefined;
72
+ tagStyleOpen?: boolean | undefined;
73
+ borderAll?: {
74
+ borderWidth?: string | undefined;
75
+ borderStyle?: string | undefined;
76
+ borderColor?: string | undefined;
77
+ } | undefined;
78
+ borderLeft?: {
79
+ borderWidth?: string | undefined;
80
+ borderStyle?: string | undefined;
81
+ borderColor?: string | undefined;
82
+ } | undefined;
83
+ borderRight?: {
84
+ borderWidth?: string | undefined;
85
+ borderStyle?: string | undefined;
86
+ borderColor?: string | undefined;
87
+ } | undefined;
88
+ borderBottom?: {
89
+ borderWidth?: string | undefined;
90
+ borderStyle?: string | undefined;
91
+ borderColor?: string | undefined;
92
+ } | undefined;
93
+ borderTop?: {
94
+ borderWidth?: string | undefined;
95
+ borderStyle?: string | undefined;
96
+ borderColor?: string | undefined;
97
+ } | undefined;
98
+ borderTopRightRadius?: string | undefined;
99
+ borderTopLeftRadius?: string | undefined;
100
+ borderBottomRightRadius?: string | undefined;
101
+ borderBottomLeftRadius?: string | undefined;
102
+ borderAllRadius?: string | undefined;
103
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
104
+ columnwidth?: number | undefined;
105
+ columnFontStyleByRule?: {
106
+ displayRule: string;
107
+ contentFont: {
108
+ fontSize: string;
109
+ bold: boolean;
110
+ italic: boolean;
111
+ textDecoration: import('@gct-paas/core').TextDecoration;
112
+ color: string;
113
+ align: "left" | "right" | "justify";
114
+ };
115
+ tagStyle: {
116
+ color?: string | undefined;
117
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
118
+ };
119
+ progressStyle: {
120
+ color: string;
121
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
122
+ };
123
+ tagType: import('@gct-paas/core').tagEnum;
124
+ tagStyleOpen: boolean;
125
+ }[] | undefined;
126
+ columnBackgroundByRule?: {
127
+ displayRule: string;
128
+ backgroundColor?: string | undefined;
129
+ }[] | undefined;
130
+ tableheight?: number | undefined;
131
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
132
+ enableHeaderBGColor?: boolean | undefined;
133
+ enableBGColor?: boolean | undefined;
134
+ };
135
+ props: {
136
+ [x: string]: any;
137
+ hidden: boolean;
138
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
139
+ displayRule?: string | undefined;
140
+ modeldata?: {
141
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
142
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
143
+ subModel?: 0 | 1 | undefined;
144
+ supportProcess?: 0 | 1 | undefined;
145
+ } | undefined;
146
+ componentDependency: {
147
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
148
+ configDependency: {
149
+ hidden?: {
150
+ expressionStr?: string | undefined;
151
+ expression?: string | undefined;
152
+ value?: boolean | undefined;
153
+ fieldValue?: boolean | undefined;
154
+ strategy?: string | undefined;
155
+ } | undefined;
156
+ readonly?: {
157
+ expressionStr?: string | undefined;
158
+ expression?: string | undefined;
159
+ value?: boolean | undefined;
160
+ fieldValue?: boolean | undefined;
161
+ strategy?: string | undefined;
162
+ } | undefined;
163
+ disabled?: {
164
+ expressionStr?: string | undefined;
165
+ expression?: string | undefined;
166
+ value?: boolean | undefined;
167
+ fieldValue?: boolean | undefined;
168
+ strategy?: string | undefined;
169
+ } | undefined;
170
+ required?: {
171
+ expressionStr?: string | undefined;
172
+ expression?: string | undefined;
173
+ value?: boolean | undefined;
174
+ fieldValue?: boolean | undefined;
175
+ strategy?: string | undefined;
176
+ } | undefined;
177
+ assignment?: {
178
+ expressionStr?: string | undefined;
179
+ expression?: string | undefined;
180
+ value?: boolean | undefined;
181
+ fieldValue?: boolean | undefined;
182
+ strategy?: string | undefined;
183
+ } | undefined;
184
+ };
185
+ };
186
+ deviceConnectivity: boolean;
187
+ };
188
+ events: import('@gct-paas/schema').IBasicEvents;
189
+ formItem?: boolean | undefined;
190
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
191
+ displayName?: string | undefined;
192
+ i18n?: Record<string, string> | undefined;
193
+ isField?: boolean | undefined;
194
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
195
+ preLocation?: string | undefined;
196
+ ignoringStyle?: string[] | undefined;
197
+ isReadonlyWidget?: boolean | undefined;
198
+ parentComponent?: import('@gct-paas/core').FormComponents | undefined;
199
+ dropPlaceholder?: string | undefined;
200
+ _plugin?: {
201
+ key: string;
202
+ version: string;
203
+ url: string;
204
+ } | undefined;
205
+ }[];
206
+ }, {
207
+ id: string;
208
+ type: BuiltinType.MODAL_FOOTER;
209
+ children: {
210
+ [x: string]: any;
211
+ id: string;
212
+ platform: import('@gct-paas/core').Platform;
213
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
214
+ alias: string;
215
+ name: string;
216
+ compName?: string | undefined;
217
+ compKey?: string | undefined;
218
+ type: string | import('@gct-paas/core').FormComponents;
219
+ icon: string;
220
+ children?: any[] | undefined;
221
+ internal?: boolean | undefined;
222
+ description?: string | undefined;
223
+ style: {
224
+ position?: string | undefined;
225
+ top?: string | undefined;
226
+ left?: string | undefined;
227
+ right?: string | undefined;
228
+ bottom?: string | undefined;
229
+ width?: string | undefined;
230
+ height?: string | undefined;
231
+ maxHeight?: string | undefined;
232
+ backgroundColor?: string | undefined;
233
+ marginAll?: string | undefined;
234
+ marginTop?: string | undefined;
235
+ marginRight?: string | undefined;
236
+ marginBottom?: string | undefined;
237
+ marginLeft?: string | undefined;
238
+ paddingAll?: string | undefined;
239
+ paddingTop?: string | undefined;
240
+ paddingRight?: string | undefined;
241
+ paddingBottom?: string | undefined;
242
+ paddingLeft?: string | undefined;
243
+ labelFont?: {
244
+ fontSize: string;
245
+ bold: boolean;
246
+ italic: boolean;
247
+ textDecoration: import('@gct-paas/core').TextDecoration;
248
+ color: string;
249
+ align: "left" | "right" | "justify";
250
+ } | undefined;
251
+ contentFont?: {
252
+ fontSize: string;
253
+ bold: boolean;
254
+ italic: boolean;
255
+ textDecoration: import('@gct-paas/core').TextDecoration;
256
+ color: string;
257
+ align: "left" | "right" | "justify";
258
+ } | undefined;
259
+ tagStyle?: {
260
+ color?: string | undefined;
261
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
262
+ } | undefined;
263
+ tagStyleOpen?: boolean | undefined;
264
+ borderAll?: {
265
+ borderWidth?: string | undefined;
266
+ borderStyle?: string | undefined;
267
+ borderColor?: string | undefined;
268
+ } | undefined;
269
+ borderLeft?: {
270
+ borderWidth?: string | undefined;
271
+ borderStyle?: string | undefined;
272
+ borderColor?: string | undefined;
273
+ } | undefined;
274
+ borderRight?: {
275
+ borderWidth?: string | undefined;
276
+ borderStyle?: string | undefined;
277
+ borderColor?: string | undefined;
278
+ } | undefined;
279
+ borderBottom?: {
280
+ borderWidth?: string | undefined;
281
+ borderStyle?: string | undefined;
282
+ borderColor?: string | undefined;
283
+ } | undefined;
284
+ borderTop?: {
285
+ borderWidth?: string | undefined;
286
+ borderStyle?: string | undefined;
287
+ borderColor?: string | undefined;
288
+ } | undefined;
289
+ borderTopRightRadius?: string | undefined;
290
+ borderTopLeftRadius?: string | undefined;
291
+ borderBottomRightRadius?: string | undefined;
292
+ borderBottomLeftRadius?: string | undefined;
293
+ borderAllRadius?: string | undefined;
294
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
295
+ columnwidth?: number | undefined;
296
+ columnFontStyleByRule?: {
297
+ displayRule: string;
298
+ contentFont: {
299
+ fontSize: string;
300
+ bold: boolean;
301
+ italic: boolean;
302
+ textDecoration: import('@gct-paas/core').TextDecoration;
303
+ color: string;
304
+ align: "left" | "right" | "justify";
305
+ };
306
+ tagStyle: {
307
+ color?: string | undefined;
308
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
309
+ };
310
+ progressStyle: {
311
+ color: string;
312
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
313
+ };
314
+ tagType: import('@gct-paas/core').tagEnum;
315
+ tagStyleOpen: boolean;
316
+ }[] | undefined;
317
+ columnBackgroundByRule?: {
318
+ displayRule: string;
319
+ backgroundColor?: string | undefined;
320
+ }[] | undefined;
321
+ tableheight?: number | undefined;
322
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
323
+ enableHeaderBGColor?: boolean | undefined;
324
+ enableBGColor?: boolean | undefined;
325
+ };
326
+ props: {
327
+ [x: string]: any;
328
+ hidden: boolean;
329
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
330
+ displayRule?: string | undefined;
331
+ modeldata?: {
332
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
333
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
334
+ subModel?: 0 | 1 | undefined;
335
+ supportProcess?: 0 | 1 | undefined;
336
+ } | undefined;
337
+ componentDependency: {
338
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
339
+ configDependency: {
340
+ hidden?: {
341
+ expressionStr?: string | undefined;
342
+ expression?: string | undefined;
343
+ value?: boolean | undefined;
344
+ fieldValue?: boolean | undefined;
345
+ strategy?: string | undefined;
346
+ } | undefined;
347
+ readonly?: {
348
+ expressionStr?: string | undefined;
349
+ expression?: string | undefined;
350
+ value?: boolean | undefined;
351
+ fieldValue?: boolean | undefined;
352
+ strategy?: string | undefined;
353
+ } | undefined;
354
+ disabled?: {
355
+ expressionStr?: string | undefined;
356
+ expression?: string | undefined;
357
+ value?: boolean | undefined;
358
+ fieldValue?: boolean | undefined;
359
+ strategy?: string | undefined;
360
+ } | undefined;
361
+ required?: {
362
+ expressionStr?: string | undefined;
363
+ expression?: string | undefined;
364
+ value?: boolean | undefined;
365
+ fieldValue?: boolean | undefined;
366
+ strategy?: string | undefined;
367
+ } | undefined;
368
+ assignment?: {
369
+ expressionStr?: string | undefined;
370
+ expression?: string | undefined;
371
+ value?: boolean | undefined;
372
+ fieldValue?: boolean | undefined;
373
+ strategy?: string | undefined;
374
+ } | undefined;
375
+ };
376
+ };
377
+ deviceConnectivity: boolean;
378
+ };
379
+ events: import('@gct-paas/schema').IBasicEvents;
380
+ formItem?: boolean | undefined;
381
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
382
+ displayName?: string | undefined;
383
+ i18n?: Record<string, string> | undefined;
384
+ isField?: boolean | undefined;
385
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
386
+ preLocation?: string | undefined;
387
+ ignoringStyle?: string[] | undefined;
388
+ isReadonlyWidget?: boolean | undefined;
389
+ parentComponent?: import('@gct-paas/core').FormComponents | undefined;
390
+ dropPlaceholder?: string | undefined;
391
+ _plugin?: {
392
+ key: string;
393
+ version: string;
394
+ url: string;
395
+ } | undefined;
396
+ }[];
397
+ }, ({
398
+ id: string;
399
+ type: BuiltinType.BottomButtonContainer;
400
+ children: {
401
+ [x: string]: any;
402
+ id: string;
403
+ platform: import('@gct-paas/core').Platform;
404
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
405
+ alias: string;
406
+ name: string;
407
+ compName?: string | undefined;
408
+ compKey?: string | undefined;
409
+ type: string | import('@gct-paas/core').FormComponents;
410
+ icon: string;
411
+ children?: any[] | undefined;
412
+ internal?: boolean | undefined;
413
+ description?: string | undefined;
414
+ style: {
415
+ position?: string | undefined;
416
+ top?: string | undefined;
417
+ left?: string | undefined;
418
+ right?: string | undefined;
419
+ bottom?: string | undefined;
420
+ width?: string | undefined;
421
+ height?: string | undefined;
422
+ maxHeight?: string | undefined;
423
+ backgroundColor?: string | undefined;
424
+ marginAll?: string | undefined;
425
+ marginTop?: string | undefined;
426
+ marginRight?: string | undefined;
427
+ marginBottom?: string | undefined;
428
+ marginLeft?: string | undefined;
429
+ paddingAll?: string | undefined;
430
+ paddingTop?: string | undefined;
431
+ paddingRight?: string | undefined;
432
+ paddingBottom?: string | undefined;
433
+ paddingLeft?: string | undefined;
434
+ labelFont?: {
435
+ fontSize: string;
436
+ bold: boolean;
437
+ italic: boolean;
438
+ textDecoration: import('@gct-paas/core').TextDecoration;
439
+ color: string;
440
+ align: "left" | "right" | "justify";
441
+ } | undefined;
442
+ contentFont?: {
443
+ fontSize: string;
444
+ bold: boolean;
445
+ italic: boolean;
446
+ textDecoration: import('@gct-paas/core').TextDecoration;
447
+ color: string;
448
+ align: "left" | "right" | "justify";
449
+ } | undefined;
450
+ tagStyle?: {
451
+ color?: string | undefined;
452
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
453
+ } | undefined;
454
+ tagStyleOpen?: boolean | undefined;
455
+ borderAll?: {
456
+ borderWidth?: string | undefined;
457
+ borderStyle?: string | undefined;
458
+ borderColor?: string | undefined;
459
+ } | undefined;
460
+ borderLeft?: {
461
+ borderWidth?: string | undefined;
462
+ borderStyle?: string | undefined;
463
+ borderColor?: string | undefined;
464
+ } | undefined;
465
+ borderRight?: {
466
+ borderWidth?: string | undefined;
467
+ borderStyle?: string | undefined;
468
+ borderColor?: string | undefined;
469
+ } | undefined;
470
+ borderBottom?: {
471
+ borderWidth?: string | undefined;
472
+ borderStyle?: string | undefined;
473
+ borderColor?: string | undefined;
474
+ } | undefined;
475
+ borderTop?: {
476
+ borderWidth?: string | undefined;
477
+ borderStyle?: string | undefined;
478
+ borderColor?: string | undefined;
479
+ } | undefined;
480
+ borderTopRightRadius?: string | undefined;
481
+ borderTopLeftRadius?: string | undefined;
482
+ borderBottomRightRadius?: string | undefined;
483
+ borderBottomLeftRadius?: string | undefined;
484
+ borderAllRadius?: string | undefined;
485
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
486
+ columnwidth?: number | undefined;
487
+ columnFontStyleByRule?: {
488
+ displayRule: string;
489
+ contentFont: {
490
+ fontSize: string;
491
+ bold: boolean;
492
+ italic: boolean;
493
+ textDecoration: import('@gct-paas/core').TextDecoration;
494
+ color: string;
495
+ align: "left" | "right" | "justify";
496
+ };
497
+ tagStyle: {
498
+ color?: string | undefined;
499
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
500
+ };
501
+ progressStyle: {
502
+ color: string;
503
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
504
+ };
505
+ tagType: import('@gct-paas/core').tagEnum;
506
+ tagStyleOpen: boolean;
507
+ }[] | undefined;
508
+ columnBackgroundByRule?: {
509
+ displayRule: string;
510
+ backgroundColor?: string | undefined;
511
+ }[] | undefined;
512
+ tableheight?: number | undefined;
513
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
514
+ enableHeaderBGColor?: boolean | undefined;
515
+ enableBGColor?: boolean | undefined;
516
+ };
517
+ props: {
518
+ [x: string]: any;
519
+ hidden: boolean;
520
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
521
+ displayRule?: string | undefined;
522
+ modeldata?: {
523
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
524
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
525
+ subModel?: 0 | 1 | undefined;
526
+ supportProcess?: 0 | 1 | undefined;
527
+ } | undefined;
528
+ componentDependency: {
529
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
530
+ configDependency: {
531
+ hidden?: {
532
+ expressionStr?: string | undefined;
533
+ expression?: string | undefined;
534
+ value?: boolean | undefined;
535
+ fieldValue?: boolean | undefined;
536
+ strategy?: string | undefined;
537
+ } | undefined;
538
+ readonly?: {
539
+ expressionStr?: string | undefined;
540
+ expression?: string | undefined;
541
+ value?: boolean | undefined;
542
+ fieldValue?: boolean | undefined;
543
+ strategy?: string | undefined;
544
+ } | undefined;
545
+ disabled?: {
546
+ expressionStr?: string | undefined;
547
+ expression?: string | undefined;
548
+ value?: boolean | undefined;
549
+ fieldValue?: boolean | undefined;
550
+ strategy?: string | undefined;
551
+ } | undefined;
552
+ required?: {
553
+ expressionStr?: string | undefined;
554
+ expression?: string | undefined;
555
+ value?: boolean | undefined;
556
+ fieldValue?: boolean | undefined;
557
+ strategy?: string | undefined;
558
+ } | undefined;
559
+ assignment?: {
560
+ expressionStr?: string | undefined;
561
+ expression?: string | undefined;
562
+ value?: boolean | undefined;
563
+ fieldValue?: boolean | undefined;
564
+ strategy?: string | undefined;
565
+ } | undefined;
566
+ };
567
+ };
568
+ deviceConnectivity: boolean;
569
+ };
570
+ events: import('@gct-paas/schema').IBasicEvents;
571
+ formItem?: boolean | undefined;
572
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
573
+ displayName?: string | undefined;
574
+ i18n?: Record<string, string> | undefined;
575
+ isField?: boolean | undefined;
576
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
577
+ preLocation?: string | undefined;
578
+ ignoringStyle?: string[] | undefined;
579
+ isReadonlyWidget?: boolean | undefined;
580
+ parentComponent?: import('@gct-paas/core').FormComponents | undefined;
581
+ dropPlaceholder?: string | undefined;
582
+ _plugin?: {
583
+ key: string;
584
+ version: string;
585
+ url: string;
586
+ } | undefined;
587
+ }[];
588
+ } | undefined)?];
589
+ props: {
590
+ [x: string]: any;
591
+ modalTitle?: string | undefined;
592
+ unitType: "px" | "%";
593
+ modalWidth: number;
594
+ mUnitType: "%";
595
+ mModalWidth: number;
596
+ isSubTableModal?: boolean | undefined;
597
+ bindSubTableId?: string | undefined;
598
+ createModalTitle?: string | undefined;
599
+ editModalTitle?: string | undefined;
600
+ };
601
+ events: import("@gct-paas/schema").LowCodeWidget.BasicEvents;
602
+ i18n?: Record<string, string> | undefined;
603
+ style: {
604
+ position?: string | undefined;
605
+ top?: string | undefined;
606
+ left?: string | undefined;
607
+ right?: string | undefined;
608
+ bottom?: string | undefined;
609
+ width?: string | undefined;
610
+ height?: string | undefined;
611
+ maxHeight?: string | undefined;
612
+ backgroundColor?: string | undefined;
613
+ marginAll?: string | undefined;
614
+ marginTop?: string | undefined;
615
+ marginRight?: string | undefined;
616
+ marginBottom?: string | undefined;
617
+ marginLeft?: string | undefined;
618
+ paddingAll?: string | undefined;
619
+ paddingTop?: string | undefined;
620
+ paddingRight?: string | undefined;
621
+ paddingBottom?: string | undefined;
622
+ paddingLeft?: string | undefined;
623
+ labelFont?: {
624
+ fontSize: string;
625
+ bold: boolean;
626
+ italic: boolean;
627
+ textDecoration: import('@gct-paas/core').TextDecoration;
628
+ color: string;
629
+ align: "left" | "right" | "justify";
630
+ } | undefined;
631
+ contentFont?: {
632
+ fontSize: string;
633
+ bold: boolean;
634
+ italic: boolean;
635
+ textDecoration: import('@gct-paas/core').TextDecoration;
636
+ color: string;
637
+ align: "left" | "right" | "justify";
638
+ } | undefined;
639
+ tagStyle?: {
640
+ color?: string | undefined;
641
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
642
+ } | undefined;
643
+ tagStyleOpen?: boolean | undefined;
644
+ borderAll?: {
645
+ borderWidth?: string | undefined;
646
+ borderStyle?: string | undefined;
647
+ borderColor?: string | undefined;
648
+ } | undefined;
649
+ borderLeft?: {
650
+ borderWidth?: string | undefined;
651
+ borderStyle?: string | undefined;
652
+ borderColor?: string | undefined;
653
+ } | undefined;
654
+ borderRight?: {
655
+ borderWidth?: string | undefined;
656
+ borderStyle?: string | undefined;
657
+ borderColor?: string | undefined;
658
+ } | undefined;
659
+ borderBottom?: {
660
+ borderWidth?: string | undefined;
661
+ borderStyle?: string | undefined;
662
+ borderColor?: string | undefined;
663
+ } | undefined;
664
+ borderTop?: {
665
+ borderWidth?: string | undefined;
666
+ borderStyle?: string | undefined;
667
+ borderColor?: string | undefined;
668
+ } | undefined;
669
+ borderTopRightRadius?: string | undefined;
670
+ borderTopLeftRadius?: string | undefined;
671
+ borderBottomRightRadius?: string | undefined;
672
+ borderBottomLeftRadius?: string | undefined;
673
+ borderAllRadius?: string | undefined;
674
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
675
+ columnwidth?: number | undefined;
676
+ columnFontStyleByRule?: {
677
+ displayRule: string;
678
+ contentFont: {
679
+ fontSize: string;
680
+ bold: boolean;
681
+ italic: boolean;
682
+ textDecoration: import('@gct-paas/core').TextDecoration;
683
+ color: string;
684
+ align: "left" | "right" | "justify";
685
+ };
686
+ tagStyle: {
687
+ color?: string | undefined;
688
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
689
+ };
690
+ progressStyle: {
691
+ color: string;
692
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
693
+ };
694
+ tagType: import('@gct-paas/core').tagEnum;
695
+ tagStyleOpen: boolean;
696
+ }[] | undefined;
697
+ columnBackgroundByRule?: {
698
+ displayRule: string;
699
+ backgroundColor?: string | undefined;
700
+ }[] | undefined;
701
+ tableheight?: number | undefined;
702
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
703
+ enableHeaderBGColor?: boolean | undefined;
704
+ enableBGColor?: boolean | undefined;
705
+ };
706
+ runJs?: string | undefined;
707
+ los?: Record<string, IData> | undefined;
708
+ icon: string;
709
+ isField: boolean;
710
+ }, import('node_modules/@gct-paas/schema/es/interface/modal/i-modal').IModal | {
711
+ id: string;
712
+ alias: string;
713
+ name: string;
714
+ platform: import('@gct-paas/core').Platform;
715
+ modalName: string;
716
+ compName?: string | undefined;
717
+ compKey?: string | undefined;
718
+ type: BuiltinType.MODAL;
719
+ js: string;
720
+ css: string;
721
+ children: [{
722
+ id: string;
723
+ type: BuiltinType.MODAL_BODY | string;
724
+ children: {
725
+ [x: string]: any;
726
+ id: string;
727
+ platform: import('@gct-paas/core').Platform;
728
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
729
+ alias: string;
730
+ name: string;
731
+ compName?: string | undefined;
732
+ compKey?: string | undefined;
733
+ type: string | import('@gct-paas/core').FormComponents;
734
+ icon: string;
735
+ children?: any[] | undefined;
736
+ internal?: boolean | undefined;
737
+ description?: string | undefined;
738
+ style: {
739
+ position?: string | undefined;
740
+ top?: string | undefined;
741
+ left?: string | undefined;
742
+ right?: string | undefined;
743
+ bottom?: string | undefined;
744
+ width?: string | undefined;
745
+ height?: string | undefined;
746
+ maxHeight?: string | undefined;
747
+ backgroundColor?: string | undefined;
748
+ marginAll?: string | undefined;
749
+ marginTop?: string | undefined;
750
+ marginRight?: string | undefined;
751
+ marginBottom?: string | undefined;
752
+ marginLeft?: string | undefined;
753
+ paddingAll?: string | undefined;
754
+ paddingTop?: string | undefined;
755
+ paddingRight?: string | undefined;
756
+ paddingBottom?: string | undefined;
757
+ paddingLeft?: string | undefined;
758
+ labelFont?: {
759
+ fontSize: string;
760
+ bold: boolean;
761
+ italic: boolean;
762
+ textDecoration: import('@gct-paas/core').TextDecoration;
763
+ color: string;
764
+ align: "left" | "right" | "justify";
765
+ } | undefined;
766
+ contentFont?: {
767
+ fontSize: string;
768
+ bold: boolean;
769
+ italic: boolean;
770
+ textDecoration: import('@gct-paas/core').TextDecoration;
771
+ color: string;
772
+ align: "left" | "right" | "justify";
773
+ } | undefined;
774
+ tagStyle?: {
775
+ color?: string | undefined;
776
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
777
+ } | undefined;
778
+ tagStyleOpen?: boolean | undefined;
779
+ borderAll?: {
780
+ borderWidth?: string | undefined;
781
+ borderStyle?: string | undefined;
782
+ borderColor?: string | undefined;
783
+ } | undefined;
784
+ borderLeft?: {
785
+ borderWidth?: string | undefined;
786
+ borderStyle?: string | undefined;
787
+ borderColor?: string | undefined;
788
+ } | undefined;
789
+ borderRight?: {
790
+ borderWidth?: string | undefined;
791
+ borderStyle?: string | undefined;
792
+ borderColor?: string | undefined;
793
+ } | undefined;
794
+ borderBottom?: {
795
+ borderWidth?: string | undefined;
796
+ borderStyle?: string | undefined;
797
+ borderColor?: string | undefined;
798
+ } | undefined;
799
+ borderTop?: {
800
+ borderWidth?: string | undefined;
801
+ borderStyle?: string | undefined;
802
+ borderColor?: string | undefined;
803
+ } | undefined;
804
+ borderTopRightRadius?: string | undefined;
805
+ borderTopLeftRadius?: string | undefined;
806
+ borderBottomRightRadius?: string | undefined;
807
+ borderBottomLeftRadius?: string | undefined;
808
+ borderAllRadius?: string | undefined;
809
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
810
+ columnwidth?: number | undefined;
811
+ columnFontStyleByRule?: {
812
+ displayRule: string;
813
+ contentFont: {
814
+ fontSize: string;
815
+ bold: boolean;
816
+ italic: boolean;
817
+ textDecoration: import('@gct-paas/core').TextDecoration;
818
+ color: string;
819
+ align: "left" | "right" | "justify";
820
+ };
821
+ tagStyle: {
822
+ color?: string | undefined;
823
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
824
+ };
825
+ progressStyle: {
826
+ color: string;
827
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
828
+ };
829
+ tagType: import('@gct-paas/core').tagEnum;
830
+ tagStyleOpen: boolean;
831
+ }[] | undefined;
832
+ columnBackgroundByRule?: {
833
+ displayRule: string;
834
+ backgroundColor?: string | undefined;
835
+ }[] | undefined;
836
+ tableheight?: number | undefined;
837
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
838
+ enableHeaderBGColor?: boolean | undefined;
839
+ enableBGColor?: boolean | undefined;
840
+ };
841
+ props: {
842
+ [x: string]: any;
843
+ hidden: boolean;
844
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
845
+ displayRule?: string | undefined;
846
+ modeldata?: {
847
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
848
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
849
+ subModel?: 0 | 1 | undefined;
850
+ supportProcess?: 0 | 1 | undefined;
851
+ } | undefined;
852
+ componentDependency: {
853
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
854
+ configDependency: {
855
+ hidden?: {
856
+ expressionStr?: string | undefined;
857
+ expression?: string | undefined;
858
+ value?: boolean | undefined;
859
+ fieldValue?: boolean | undefined;
860
+ strategy?: string | undefined;
861
+ } | undefined;
862
+ readonly?: {
863
+ expressionStr?: string | undefined;
864
+ expression?: string | undefined;
865
+ value?: boolean | undefined;
866
+ fieldValue?: boolean | undefined;
867
+ strategy?: string | undefined;
868
+ } | undefined;
869
+ disabled?: {
870
+ expressionStr?: string | undefined;
871
+ expression?: string | undefined;
872
+ value?: boolean | undefined;
873
+ fieldValue?: boolean | undefined;
874
+ strategy?: string | undefined;
875
+ } | undefined;
876
+ required?: {
877
+ expressionStr?: string | undefined;
878
+ expression?: string | undefined;
879
+ value?: boolean | undefined;
880
+ fieldValue?: boolean | undefined;
881
+ strategy?: string | undefined;
882
+ } | undefined;
883
+ assignment?: {
884
+ expressionStr?: string | undefined;
885
+ expression?: string | undefined;
886
+ value?: boolean | undefined;
887
+ fieldValue?: boolean | undefined;
888
+ strategy?: string | undefined;
889
+ } | undefined;
890
+ };
891
+ };
892
+ deviceConnectivity: boolean;
893
+ };
894
+ events: import('@gct-paas/schema').IBasicEvents;
895
+ formItem?: boolean | undefined;
896
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
897
+ displayName?: string | undefined;
898
+ i18n?: Record<string, string> | undefined;
899
+ isField?: boolean | undefined;
900
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
901
+ preLocation?: string | undefined;
902
+ ignoringStyle?: string[] | undefined;
903
+ isReadonlyWidget?: boolean | undefined;
904
+ parentComponent?: import('@gct-paas/core').FormComponents | undefined;
905
+ dropPlaceholder?: string | undefined;
906
+ _plugin?: {
907
+ key: string;
908
+ version: string;
909
+ url: string;
910
+ } | undefined;
911
+ }[];
912
+ }, {
913
+ id: string;
914
+ type: BuiltinType.MODAL_FOOTER;
915
+ children: {
916
+ [x: string]: any;
917
+ id: string;
918
+ platform: import('@gct-paas/core').Platform;
919
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
920
+ alias: string;
921
+ name: string;
922
+ compName?: string | undefined;
923
+ compKey?: string | undefined;
924
+ type: string | import('@gct-paas/core').FormComponents;
925
+ icon: string;
926
+ children?: any[] | undefined;
927
+ internal?: boolean | undefined;
928
+ description?: string | undefined;
929
+ style: {
930
+ position?: string | undefined;
931
+ top?: string | undefined;
932
+ left?: string | undefined;
933
+ right?: string | undefined;
934
+ bottom?: string | undefined;
935
+ width?: string | undefined;
936
+ height?: string | undefined;
937
+ maxHeight?: string | undefined;
938
+ backgroundColor?: string | undefined;
939
+ marginAll?: string | undefined;
940
+ marginTop?: string | undefined;
941
+ marginRight?: string | undefined;
942
+ marginBottom?: string | undefined;
943
+ marginLeft?: string | undefined;
944
+ paddingAll?: string | undefined;
945
+ paddingTop?: string | undefined;
946
+ paddingRight?: string | undefined;
947
+ paddingBottom?: string | undefined;
948
+ paddingLeft?: string | undefined;
949
+ labelFont?: {
950
+ fontSize: string;
951
+ bold: boolean;
952
+ italic: boolean;
953
+ textDecoration: import('@gct-paas/core').TextDecoration;
954
+ color: string;
955
+ align: "left" | "right" | "justify";
956
+ } | undefined;
957
+ contentFont?: {
958
+ fontSize: string;
959
+ bold: boolean;
960
+ italic: boolean;
961
+ textDecoration: import('@gct-paas/core').TextDecoration;
962
+ color: string;
963
+ align: "left" | "right" | "justify";
964
+ } | undefined;
965
+ tagStyle?: {
966
+ color?: string | undefined;
967
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
968
+ } | undefined;
969
+ tagStyleOpen?: boolean | undefined;
970
+ borderAll?: {
971
+ borderWidth?: string | undefined;
972
+ borderStyle?: string | undefined;
973
+ borderColor?: string | undefined;
974
+ } | undefined;
975
+ borderLeft?: {
976
+ borderWidth?: string | undefined;
977
+ borderStyle?: string | undefined;
978
+ borderColor?: string | undefined;
979
+ } | undefined;
980
+ borderRight?: {
981
+ borderWidth?: string | undefined;
982
+ borderStyle?: string | undefined;
983
+ borderColor?: string | undefined;
984
+ } | undefined;
985
+ borderBottom?: {
986
+ borderWidth?: string | undefined;
987
+ borderStyle?: string | undefined;
988
+ borderColor?: string | undefined;
989
+ } | undefined;
990
+ borderTop?: {
991
+ borderWidth?: string | undefined;
992
+ borderStyle?: string | undefined;
993
+ borderColor?: string | undefined;
994
+ } | undefined;
995
+ borderTopRightRadius?: string | undefined;
996
+ borderTopLeftRadius?: string | undefined;
997
+ borderBottomRightRadius?: string | undefined;
998
+ borderBottomLeftRadius?: string | undefined;
999
+ borderAllRadius?: string | undefined;
1000
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
1001
+ columnwidth?: number | undefined;
1002
+ columnFontStyleByRule?: {
1003
+ displayRule: string;
1004
+ contentFont: {
1005
+ fontSize: string;
1006
+ bold: boolean;
1007
+ italic: boolean;
1008
+ textDecoration: import('@gct-paas/core').TextDecoration;
1009
+ color: string;
1010
+ align: "left" | "right" | "justify";
1011
+ };
1012
+ tagStyle: {
1013
+ color?: string | undefined;
1014
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
1015
+ };
1016
+ progressStyle: {
1017
+ color: string;
1018
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
1019
+ };
1020
+ tagType: import('@gct-paas/core').tagEnum;
1021
+ tagStyleOpen: boolean;
1022
+ }[] | undefined;
1023
+ columnBackgroundByRule?: {
1024
+ displayRule: string;
1025
+ backgroundColor?: string | undefined;
1026
+ }[] | undefined;
1027
+ tableheight?: number | undefined;
1028
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
1029
+ enableHeaderBGColor?: boolean | undefined;
1030
+ enableBGColor?: boolean | undefined;
1031
+ };
1032
+ props: {
1033
+ [x: string]: any;
1034
+ hidden: boolean;
1035
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
1036
+ displayRule?: string | undefined;
1037
+ modeldata?: {
1038
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
1039
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
1040
+ subModel?: 0 | 1 | undefined;
1041
+ supportProcess?: 0 | 1 | undefined;
1042
+ } | undefined;
1043
+ componentDependency: {
1044
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
1045
+ configDependency: {
1046
+ hidden?: {
1047
+ expressionStr?: string | undefined;
1048
+ expression?: string | undefined;
1049
+ value?: boolean | undefined;
1050
+ fieldValue?: boolean | undefined;
1051
+ strategy?: string | undefined;
1052
+ } | undefined;
1053
+ readonly?: {
1054
+ expressionStr?: string | undefined;
1055
+ expression?: string | undefined;
1056
+ value?: boolean | undefined;
1057
+ fieldValue?: boolean | undefined;
1058
+ strategy?: string | undefined;
1059
+ } | undefined;
1060
+ disabled?: {
1061
+ expressionStr?: string | undefined;
1062
+ expression?: string | undefined;
1063
+ value?: boolean | undefined;
1064
+ fieldValue?: boolean | undefined;
1065
+ strategy?: string | undefined;
1066
+ } | undefined;
1067
+ required?: {
1068
+ expressionStr?: string | undefined;
1069
+ expression?: string | undefined;
1070
+ value?: boolean | undefined;
1071
+ fieldValue?: boolean | undefined;
1072
+ strategy?: string | undefined;
1073
+ } | undefined;
1074
+ assignment?: {
1075
+ expressionStr?: string | undefined;
1076
+ expression?: string | undefined;
1077
+ value?: boolean | undefined;
1078
+ fieldValue?: boolean | undefined;
1079
+ strategy?: string | undefined;
1080
+ } | undefined;
1081
+ };
1082
+ };
1083
+ deviceConnectivity: boolean;
1084
+ };
1085
+ events: import('@gct-paas/schema').IBasicEvents;
1086
+ formItem?: boolean | undefined;
1087
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
1088
+ displayName?: string | undefined;
1089
+ i18n?: Record<string, string> | undefined;
1090
+ isField?: boolean | undefined;
1091
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
1092
+ preLocation?: string | undefined;
1093
+ ignoringStyle?: string[] | undefined;
1094
+ isReadonlyWidget?: boolean | undefined;
1095
+ parentComponent?: import('@gct-paas/core').FormComponents | undefined;
1096
+ dropPlaceholder?: string | undefined;
1097
+ _plugin?: {
1098
+ key: string;
1099
+ version: string;
1100
+ url: string;
1101
+ } | undefined;
1102
+ }[];
1103
+ }, ({
1104
+ id: string;
1105
+ type: BuiltinType.BottomButtonContainer;
1106
+ children: {
1107
+ [x: string]: any;
1108
+ id: string;
1109
+ platform: import('@gct-paas/core').Platform;
1110
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
1111
+ alias: string;
1112
+ name: string;
1113
+ compName?: string | undefined;
1114
+ compKey?: string | undefined;
1115
+ type: string | import('@gct-paas/core').FormComponents;
1116
+ icon: string;
1117
+ children?: any[] | undefined;
1118
+ internal?: boolean | undefined;
1119
+ description?: string | undefined;
1120
+ style: {
1121
+ position?: string | undefined;
1122
+ top?: string | undefined;
1123
+ left?: string | undefined;
1124
+ right?: string | undefined;
1125
+ bottom?: string | undefined;
1126
+ width?: string | undefined;
1127
+ height?: string | undefined;
1128
+ maxHeight?: string | undefined;
1129
+ backgroundColor?: string | undefined;
1130
+ marginAll?: string | undefined;
1131
+ marginTop?: string | undefined;
1132
+ marginRight?: string | undefined;
1133
+ marginBottom?: string | undefined;
1134
+ marginLeft?: string | undefined;
1135
+ paddingAll?: string | undefined;
1136
+ paddingTop?: string | undefined;
1137
+ paddingRight?: string | undefined;
1138
+ paddingBottom?: string | undefined;
1139
+ paddingLeft?: string | undefined;
1140
+ labelFont?: {
1141
+ fontSize: string;
1142
+ bold: boolean;
1143
+ italic: boolean;
1144
+ textDecoration: import('@gct-paas/core').TextDecoration;
1145
+ color: string;
1146
+ align: "left" | "right" | "justify";
1147
+ } | undefined;
1148
+ contentFont?: {
1149
+ fontSize: string;
1150
+ bold: boolean;
1151
+ italic: boolean;
1152
+ textDecoration: import('@gct-paas/core').TextDecoration;
1153
+ color: string;
1154
+ align: "left" | "right" | "justify";
1155
+ } | undefined;
1156
+ tagStyle?: {
1157
+ color?: string | undefined;
1158
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
1159
+ } | undefined;
1160
+ tagStyleOpen?: boolean | undefined;
1161
+ borderAll?: {
1162
+ borderWidth?: string | undefined;
1163
+ borderStyle?: string | undefined;
1164
+ borderColor?: string | undefined;
1165
+ } | undefined;
1166
+ borderLeft?: {
1167
+ borderWidth?: string | undefined;
1168
+ borderStyle?: string | undefined;
1169
+ borderColor?: string | undefined;
1170
+ } | undefined;
1171
+ borderRight?: {
1172
+ borderWidth?: string | undefined;
1173
+ borderStyle?: string | undefined;
1174
+ borderColor?: string | undefined;
1175
+ } | undefined;
1176
+ borderBottom?: {
1177
+ borderWidth?: string | undefined;
1178
+ borderStyle?: string | undefined;
1179
+ borderColor?: string | undefined;
1180
+ } | undefined;
1181
+ borderTop?: {
1182
+ borderWidth?: string | undefined;
1183
+ borderStyle?: string | undefined;
1184
+ borderColor?: string | undefined;
1185
+ } | undefined;
1186
+ borderTopRightRadius?: string | undefined;
1187
+ borderTopLeftRadius?: string | undefined;
1188
+ borderBottomRightRadius?: string | undefined;
1189
+ borderBottomLeftRadius?: string | undefined;
1190
+ borderAllRadius?: string | undefined;
1191
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
1192
+ columnwidth?: number | undefined;
1193
+ columnFontStyleByRule?: {
1194
+ displayRule: string;
1195
+ contentFont: {
1196
+ fontSize: string;
1197
+ bold: boolean;
1198
+ italic: boolean;
1199
+ textDecoration: import('@gct-paas/core').TextDecoration;
1200
+ color: string;
1201
+ align: "left" | "right" | "justify";
1202
+ };
1203
+ tagStyle: {
1204
+ color?: string | undefined;
1205
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
1206
+ };
1207
+ progressStyle: {
1208
+ color: string;
1209
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
1210
+ };
1211
+ tagType: import('@gct-paas/core').tagEnum;
1212
+ tagStyleOpen: boolean;
1213
+ }[] | undefined;
1214
+ columnBackgroundByRule?: {
1215
+ displayRule: string;
1216
+ backgroundColor?: string | undefined;
1217
+ }[] | undefined;
1218
+ tableheight?: number | undefined;
1219
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
1220
+ enableHeaderBGColor?: boolean | undefined;
1221
+ enableBGColor?: boolean | undefined;
1222
+ };
1223
+ props: {
1224
+ [x: string]: any;
1225
+ hidden: boolean;
1226
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
1227
+ displayRule?: string | undefined;
1228
+ modeldata?: {
1229
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
1230
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
1231
+ subModel?: 0 | 1 | undefined;
1232
+ supportProcess?: 0 | 1 | undefined;
1233
+ } | undefined;
1234
+ componentDependency: {
1235
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
1236
+ configDependency: {
1237
+ hidden?: {
1238
+ expressionStr?: string | undefined;
1239
+ expression?: string | undefined;
1240
+ value?: boolean | undefined;
1241
+ fieldValue?: boolean | undefined;
1242
+ strategy?: string | undefined;
1243
+ } | undefined;
1244
+ readonly?: {
1245
+ expressionStr?: string | undefined;
1246
+ expression?: string | undefined;
1247
+ value?: boolean | undefined;
1248
+ fieldValue?: boolean | undefined;
1249
+ strategy?: string | undefined;
1250
+ } | undefined;
1251
+ disabled?: {
1252
+ expressionStr?: string | undefined;
1253
+ expression?: string | undefined;
1254
+ value?: boolean | undefined;
1255
+ fieldValue?: boolean | undefined;
1256
+ strategy?: string | undefined;
1257
+ } | undefined;
1258
+ required?: {
1259
+ expressionStr?: string | undefined;
1260
+ expression?: string | undefined;
1261
+ value?: boolean | undefined;
1262
+ fieldValue?: boolean | undefined;
1263
+ strategy?: string | undefined;
1264
+ } | undefined;
1265
+ assignment?: {
1266
+ expressionStr?: string | undefined;
1267
+ expression?: string | undefined;
1268
+ value?: boolean | undefined;
1269
+ fieldValue?: boolean | undefined;
1270
+ strategy?: string | undefined;
1271
+ } | undefined;
1272
+ };
1273
+ };
1274
+ deviceConnectivity: boolean;
1275
+ };
1276
+ events: import('@gct-paas/schema').IBasicEvents;
1277
+ formItem?: boolean | undefined;
1278
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
1279
+ displayName?: string | undefined;
1280
+ i18n?: Record<string, string> | undefined;
1281
+ isField?: boolean | undefined;
1282
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
1283
+ preLocation?: string | undefined;
1284
+ ignoringStyle?: string[] | undefined;
1285
+ isReadonlyWidget?: boolean | undefined;
1286
+ parentComponent?: import('@gct-paas/core').FormComponents | undefined;
1287
+ dropPlaceholder?: string | undefined;
1288
+ _plugin?: {
1289
+ key: string;
1290
+ version: string;
1291
+ url: string;
1292
+ } | undefined;
1293
+ }[];
1294
+ } | undefined)?];
1295
+ props: {
1296
+ [x: string]: any;
1297
+ modalTitle?: string | undefined;
1298
+ unitType: "px" | "%";
1299
+ modalWidth: number;
1300
+ mUnitType: "%";
1301
+ mModalWidth: number;
1302
+ isSubTableModal?: boolean | undefined;
1303
+ bindSubTableId?: string | undefined;
1304
+ createModalTitle?: string | undefined;
1305
+ editModalTitle?: string | undefined;
1306
+ };
1307
+ events: import("@gct-paas/schema").LowCodeWidget.BasicEvents;
1308
+ i18n?: Record<string, string> | undefined;
1309
+ style: {
1310
+ position?: string | undefined;
1311
+ top?: string | undefined;
1312
+ left?: string | undefined;
1313
+ right?: string | undefined;
1314
+ bottom?: string | undefined;
1315
+ width?: string | undefined;
1316
+ height?: string | undefined;
1317
+ maxHeight?: string | undefined;
1318
+ backgroundColor?: string | undefined;
1319
+ marginAll?: string | undefined;
1320
+ marginTop?: string | undefined;
1321
+ marginRight?: string | undefined;
1322
+ marginBottom?: string | undefined;
1323
+ marginLeft?: string | undefined;
1324
+ paddingAll?: string | undefined;
1325
+ paddingTop?: string | undefined;
1326
+ paddingRight?: string | undefined;
1327
+ paddingBottom?: string | undefined;
1328
+ paddingLeft?: string | undefined;
1329
+ labelFont?: {
1330
+ fontSize: string;
1331
+ bold: boolean;
1332
+ italic: boolean;
1333
+ textDecoration: import('@gct-paas/core').TextDecoration;
1334
+ color: string;
1335
+ align: "left" | "right" | "justify";
1336
+ } | undefined;
1337
+ contentFont?: {
1338
+ fontSize: string;
1339
+ bold: boolean;
1340
+ italic: boolean;
1341
+ textDecoration: import('@gct-paas/core').TextDecoration;
1342
+ color: string;
1343
+ align: "left" | "right" | "justify";
1344
+ } | undefined;
1345
+ tagStyle?: {
1346
+ color?: string | undefined;
1347
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
1348
+ } | undefined;
1349
+ tagStyleOpen?: boolean | undefined;
1350
+ borderAll?: {
1351
+ borderWidth?: string | undefined;
1352
+ borderStyle?: string | undefined;
1353
+ borderColor?: string | undefined;
1354
+ } | undefined;
1355
+ borderLeft?: {
1356
+ borderWidth?: string | undefined;
1357
+ borderStyle?: string | undefined;
1358
+ borderColor?: string | undefined;
1359
+ } | undefined;
1360
+ borderRight?: {
1361
+ borderWidth?: string | undefined;
1362
+ borderStyle?: string | undefined;
1363
+ borderColor?: string | undefined;
1364
+ } | undefined;
1365
+ borderBottom?: {
1366
+ borderWidth?: string | undefined;
1367
+ borderStyle?: string | undefined;
1368
+ borderColor?: string | undefined;
1369
+ } | undefined;
1370
+ borderTop?: {
1371
+ borderWidth?: string | undefined;
1372
+ borderStyle?: string | undefined;
1373
+ borderColor?: string | undefined;
1374
+ } | undefined;
1375
+ borderTopRightRadius?: string | undefined;
1376
+ borderTopLeftRadius?: string | undefined;
1377
+ borderBottomRightRadius?: string | undefined;
1378
+ borderBottomLeftRadius?: string | undefined;
1379
+ borderAllRadius?: string | undefined;
1380
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
1381
+ columnwidth?: number | undefined;
1382
+ columnFontStyleByRule?: {
1383
+ displayRule: string;
1384
+ contentFont: {
1385
+ fontSize: string;
1386
+ bold: boolean;
1387
+ italic: boolean;
1388
+ textDecoration: import('@gct-paas/core').TextDecoration;
1389
+ color: string;
1390
+ align: "left" | "right" | "justify";
1391
+ };
1392
+ tagStyle: {
1393
+ color?: string | undefined;
1394
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
1395
+ };
1396
+ progressStyle: {
1397
+ color: string;
1398
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
1399
+ };
1400
+ tagType: import('@gct-paas/core').tagEnum;
1401
+ tagStyleOpen: boolean;
1402
+ }[] | undefined;
1403
+ columnBackgroundByRule?: {
1404
+ displayRule: string;
1405
+ backgroundColor?: string | undefined;
1406
+ }[] | undefined;
1407
+ tableheight?: number | undefined;
1408
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
1409
+ enableHeaderBGColor?: boolean | undefined;
1410
+ enableBGColor?: boolean | undefined;
1411
+ };
1412
+ runJs?: string | undefined;
1413
+ los?: Record<string, IData> | undefined;
1414
+ icon: string;
1415
+ isField: boolean;
1416
+ }>;
1417
+ modalDesignState: import('vue').Ref<boolean, boolean>;
1418
+ modalDesignId: import('vue').Ref<string, string>;
1419
+ modalBody: import('vue').ComputedRef<{
1420
+ id: string;
1421
+ type: BuiltinType.MODAL_BODY | string;
1422
+ children: {
1423
+ [x: string]: any;
1424
+ id: string;
1425
+ platform: import('@gct-paas/core').Platform;
1426
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
1427
+ alias: string;
1428
+ name: string;
1429
+ compName?: string | undefined;
1430
+ compKey?: string | undefined;
1431
+ type: string | import('@gct-paas/core').FormComponents;
1432
+ icon: string;
1433
+ children?: any[] | undefined;
1434
+ internal?: boolean | undefined;
1435
+ description?: string | undefined;
1436
+ style: {
1437
+ position?: string | undefined;
1438
+ top?: string | undefined;
1439
+ left?: string | undefined;
1440
+ right?: string | undefined;
1441
+ bottom?: string | undefined;
1442
+ width?: string | undefined;
1443
+ height?: string | undefined;
1444
+ maxHeight?: string | undefined;
1445
+ backgroundColor?: string | undefined;
1446
+ marginAll?: string | undefined;
1447
+ marginTop?: string | undefined;
1448
+ marginRight?: string | undefined;
1449
+ marginBottom?: string | undefined;
1450
+ marginLeft?: string | undefined;
1451
+ paddingAll?: string | undefined;
1452
+ paddingTop?: string | undefined;
1453
+ paddingRight?: string | undefined;
1454
+ paddingBottom?: string | undefined;
1455
+ paddingLeft?: string | undefined;
1456
+ labelFont?: {
1457
+ fontSize: string;
1458
+ bold: boolean;
1459
+ italic: boolean;
1460
+ textDecoration: import('@gct-paas/core').TextDecoration;
1461
+ color: string;
1462
+ align: "left" | "right" | "justify";
1463
+ } | undefined;
1464
+ contentFont?: {
1465
+ fontSize: string;
1466
+ bold: boolean;
1467
+ italic: boolean;
1468
+ textDecoration: import('@gct-paas/core').TextDecoration;
1469
+ color: string;
1470
+ align: "left" | "right" | "justify";
1471
+ } | undefined;
1472
+ tagStyle?: {
1473
+ color?: string | undefined;
1474
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
1475
+ } | undefined;
1476
+ tagStyleOpen?: boolean | undefined;
1477
+ borderAll?: {
1478
+ borderWidth?: string | undefined;
1479
+ borderStyle?: string | undefined;
1480
+ borderColor?: string | undefined;
1481
+ } | undefined;
1482
+ borderLeft?: {
1483
+ borderWidth?: string | undefined;
1484
+ borderStyle?: string | undefined;
1485
+ borderColor?: string | undefined;
1486
+ } | undefined;
1487
+ borderRight?: {
1488
+ borderWidth?: string | undefined;
1489
+ borderStyle?: string | undefined;
1490
+ borderColor?: string | undefined;
1491
+ } | undefined;
1492
+ borderBottom?: {
1493
+ borderWidth?: string | undefined;
1494
+ borderStyle?: string | undefined;
1495
+ borderColor?: string | undefined;
1496
+ } | undefined;
1497
+ borderTop?: {
1498
+ borderWidth?: string | undefined;
1499
+ borderStyle?: string | undefined;
1500
+ borderColor?: string | undefined;
1501
+ } | undefined;
1502
+ borderTopRightRadius?: string | undefined;
1503
+ borderTopLeftRadius?: string | undefined;
1504
+ borderBottomRightRadius?: string | undefined;
1505
+ borderBottomLeftRadius?: string | undefined;
1506
+ borderAllRadius?: string | undefined;
1507
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
1508
+ columnwidth?: number | undefined;
1509
+ columnFontStyleByRule?: {
1510
+ displayRule: string;
1511
+ contentFont: {
1512
+ fontSize: string;
1513
+ bold: boolean;
1514
+ italic: boolean;
1515
+ textDecoration: import('@gct-paas/core').TextDecoration;
1516
+ color: string;
1517
+ align: "left" | "right" | "justify";
1518
+ };
1519
+ tagStyle: {
1520
+ color?: string | undefined;
1521
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
1522
+ };
1523
+ progressStyle: {
1524
+ color: string;
1525
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
1526
+ };
1527
+ tagType: import('@gct-paas/core').tagEnum;
1528
+ tagStyleOpen: boolean;
1529
+ }[] | undefined;
1530
+ columnBackgroundByRule?: {
1531
+ displayRule: string;
1532
+ backgroundColor?: string | undefined;
1533
+ }[] | undefined;
1534
+ tableheight?: number | undefined;
1535
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
1536
+ enableHeaderBGColor?: boolean | undefined;
1537
+ enableBGColor?: boolean | undefined;
1538
+ };
1539
+ props: {
1540
+ [x: string]: any;
1541
+ hidden: boolean;
1542
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
1543
+ displayRule?: string | undefined;
1544
+ modeldata?: {
1545
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
1546
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
1547
+ subModel?: 0 | 1 | undefined;
1548
+ supportProcess?: 0 | 1 | undefined;
1549
+ } | undefined;
1550
+ componentDependency: {
1551
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
1552
+ configDependency: {
1553
+ hidden?: {
1554
+ expressionStr?: string | undefined;
1555
+ expression?: string | undefined;
1556
+ value?: boolean | undefined;
1557
+ fieldValue?: boolean | undefined;
1558
+ strategy?: string | undefined;
1559
+ } | undefined;
1560
+ readonly?: {
1561
+ expressionStr?: string | undefined;
1562
+ expression?: string | undefined;
1563
+ value?: boolean | undefined;
1564
+ fieldValue?: boolean | undefined;
1565
+ strategy?: string | undefined;
1566
+ } | undefined;
1567
+ disabled?: {
1568
+ expressionStr?: string | undefined;
1569
+ expression?: string | undefined;
1570
+ value?: boolean | undefined;
1571
+ fieldValue?: boolean | undefined;
1572
+ strategy?: string | undefined;
1573
+ } | undefined;
1574
+ required?: {
1575
+ expressionStr?: string | undefined;
1576
+ expression?: string | undefined;
1577
+ value?: boolean | undefined;
1578
+ fieldValue?: boolean | undefined;
1579
+ strategy?: string | undefined;
1580
+ } | undefined;
1581
+ assignment?: {
1582
+ expressionStr?: string | undefined;
1583
+ expression?: string | undefined;
1584
+ value?: boolean | undefined;
1585
+ fieldValue?: boolean | undefined;
1586
+ strategy?: string | undefined;
1587
+ } | undefined;
1588
+ };
1589
+ };
1590
+ deviceConnectivity: boolean;
1591
+ };
1592
+ events: import('@gct-paas/schema').IBasicEvents;
1593
+ formItem?: boolean | undefined;
1594
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
1595
+ displayName?: string | undefined;
1596
+ i18n?: Record<string, string> | undefined;
1597
+ isField?: boolean | undefined;
1598
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
1599
+ preLocation?: string | undefined;
1600
+ ignoringStyle?: string[] | undefined;
1601
+ isReadonlyWidget?: boolean | undefined;
1602
+ parentComponent?: import('@gct-paas/core').FormComponents | undefined;
1603
+ dropPlaceholder?: string | undefined;
1604
+ _plugin?: {
1605
+ key: string;
1606
+ version: string;
1607
+ url: string;
1608
+ } | undefined;
1609
+ }[];
1610
+ } | {
1611
+ id: string;
1612
+ type: BuiltinType.MODAL_FOOTER;
1613
+ children: {
1614
+ [x: string]: any;
1615
+ id: string;
1616
+ platform: import('@gct-paas/core').Platform;
1617
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
1618
+ alias: string;
1619
+ name: string;
1620
+ compName?: string | undefined;
1621
+ compKey?: string | undefined;
1622
+ type: string | import('@gct-paas/core').FormComponents;
1623
+ icon: string;
1624
+ children?: any[] | undefined;
1625
+ internal?: boolean | undefined;
1626
+ description?: string | undefined;
1627
+ style: {
1628
+ position?: string | undefined;
1629
+ top?: string | undefined;
1630
+ left?: string | undefined;
1631
+ right?: string | undefined;
1632
+ bottom?: string | undefined;
1633
+ width?: string | undefined;
1634
+ height?: string | undefined;
1635
+ maxHeight?: string | undefined;
1636
+ backgroundColor?: string | undefined;
1637
+ marginAll?: string | undefined;
1638
+ marginTop?: string | undefined;
1639
+ marginRight?: string | undefined;
1640
+ marginBottom?: string | undefined;
1641
+ marginLeft?: string | undefined;
1642
+ paddingAll?: string | undefined;
1643
+ paddingTop?: string | undefined;
1644
+ paddingRight?: string | undefined;
1645
+ paddingBottom?: string | undefined;
1646
+ paddingLeft?: string | undefined;
1647
+ labelFont?: {
1648
+ fontSize: string;
1649
+ bold: boolean;
1650
+ italic: boolean;
1651
+ textDecoration: import('@gct-paas/core').TextDecoration;
1652
+ color: string;
1653
+ align: "left" | "right" | "justify";
1654
+ } | undefined;
1655
+ contentFont?: {
1656
+ fontSize: string;
1657
+ bold: boolean;
1658
+ italic: boolean;
1659
+ textDecoration: import('@gct-paas/core').TextDecoration;
1660
+ color: string;
1661
+ align: "left" | "right" | "justify";
1662
+ } | undefined;
1663
+ tagStyle?: {
1664
+ color?: string | undefined;
1665
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
1666
+ } | undefined;
1667
+ tagStyleOpen?: boolean | undefined;
1668
+ borderAll?: {
1669
+ borderWidth?: string | undefined;
1670
+ borderStyle?: string | undefined;
1671
+ borderColor?: string | undefined;
1672
+ } | undefined;
1673
+ borderLeft?: {
1674
+ borderWidth?: string | undefined;
1675
+ borderStyle?: string | undefined;
1676
+ borderColor?: string | undefined;
1677
+ } | undefined;
1678
+ borderRight?: {
1679
+ borderWidth?: string | undefined;
1680
+ borderStyle?: string | undefined;
1681
+ borderColor?: string | undefined;
1682
+ } | undefined;
1683
+ borderBottom?: {
1684
+ borderWidth?: string | undefined;
1685
+ borderStyle?: string | undefined;
1686
+ borderColor?: string | undefined;
1687
+ } | undefined;
1688
+ borderTop?: {
1689
+ borderWidth?: string | undefined;
1690
+ borderStyle?: string | undefined;
1691
+ borderColor?: string | undefined;
1692
+ } | undefined;
1693
+ borderTopRightRadius?: string | undefined;
1694
+ borderTopLeftRadius?: string | undefined;
1695
+ borderBottomRightRadius?: string | undefined;
1696
+ borderBottomLeftRadius?: string | undefined;
1697
+ borderAllRadius?: string | undefined;
1698
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
1699
+ columnwidth?: number | undefined;
1700
+ columnFontStyleByRule?: {
1701
+ displayRule: string;
1702
+ contentFont: {
1703
+ fontSize: string;
1704
+ bold: boolean;
1705
+ italic: boolean;
1706
+ textDecoration: import('@gct-paas/core').TextDecoration;
1707
+ color: string;
1708
+ align: "left" | "right" | "justify";
1709
+ };
1710
+ tagStyle: {
1711
+ color?: string | undefined;
1712
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
1713
+ };
1714
+ progressStyle: {
1715
+ color: string;
1716
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
1717
+ };
1718
+ tagType: import('@gct-paas/core').tagEnum;
1719
+ tagStyleOpen: boolean;
1720
+ }[] | undefined;
1721
+ columnBackgroundByRule?: {
1722
+ displayRule: string;
1723
+ backgroundColor?: string | undefined;
1724
+ }[] | undefined;
1725
+ tableheight?: number | undefined;
1726
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
1727
+ enableHeaderBGColor?: boolean | undefined;
1728
+ enableBGColor?: boolean | undefined;
1729
+ };
1730
+ props: {
1731
+ [x: string]: any;
1732
+ hidden: boolean;
1733
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
1734
+ displayRule?: string | undefined;
1735
+ modeldata?: {
1736
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
1737
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
1738
+ subModel?: 0 | 1 | undefined;
1739
+ supportProcess?: 0 | 1 | undefined;
1740
+ } | undefined;
1741
+ componentDependency: {
1742
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
1743
+ configDependency: {
1744
+ hidden?: {
1745
+ expressionStr?: string | undefined;
1746
+ expression?: string | undefined;
1747
+ value?: boolean | undefined;
1748
+ fieldValue?: boolean | undefined;
1749
+ strategy?: string | undefined;
1750
+ } | undefined;
1751
+ readonly?: {
1752
+ expressionStr?: string | undefined;
1753
+ expression?: string | undefined;
1754
+ value?: boolean | undefined;
1755
+ fieldValue?: boolean | undefined;
1756
+ strategy?: string | undefined;
1757
+ } | undefined;
1758
+ disabled?: {
1759
+ expressionStr?: string | undefined;
1760
+ expression?: string | undefined;
1761
+ value?: boolean | undefined;
1762
+ fieldValue?: boolean | undefined;
1763
+ strategy?: string | undefined;
1764
+ } | undefined;
1765
+ required?: {
1766
+ expressionStr?: string | undefined;
1767
+ expression?: string | undefined;
1768
+ value?: boolean | undefined;
1769
+ fieldValue?: boolean | undefined;
1770
+ strategy?: string | undefined;
1771
+ } | undefined;
1772
+ assignment?: {
1773
+ expressionStr?: string | undefined;
1774
+ expression?: string | undefined;
1775
+ value?: boolean | undefined;
1776
+ fieldValue?: boolean | undefined;
1777
+ strategy?: string | undefined;
1778
+ } | undefined;
1779
+ };
1780
+ };
1781
+ deviceConnectivity: boolean;
1782
+ };
1783
+ events: import('@gct-paas/schema').IBasicEvents;
1784
+ formItem?: boolean | undefined;
1785
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
1786
+ displayName?: string | undefined;
1787
+ i18n?: Record<string, string> | undefined;
1788
+ isField?: boolean | undefined;
1789
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
1790
+ preLocation?: string | undefined;
1791
+ ignoringStyle?: string[] | undefined;
1792
+ isReadonlyWidget?: boolean | undefined;
1793
+ parentComponent?: import('@gct-paas/core').FormComponents | undefined;
1794
+ dropPlaceholder?: string | undefined;
1795
+ _plugin?: {
1796
+ key: string;
1797
+ version: string;
1798
+ url: string;
1799
+ } | undefined;
1800
+ }[];
1801
+ } | {
1802
+ id: string;
1803
+ type: BuiltinType.BottomButtonContainer;
1804
+ children: {
1805
+ [x: string]: any;
1806
+ id: string;
1807
+ platform: import('@gct-paas/core').Platform;
1808
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
1809
+ alias: string;
1810
+ name: string;
1811
+ compName?: string | undefined;
1812
+ compKey?: string | undefined;
1813
+ type: string | import('@gct-paas/core').FormComponents;
1814
+ icon: string;
1815
+ children?: any[] | undefined;
1816
+ internal?: boolean | undefined;
1817
+ description?: string | undefined;
1818
+ style: {
1819
+ position?: string | undefined;
1820
+ top?: string | undefined;
1821
+ left?: string | undefined;
1822
+ right?: string | undefined;
1823
+ bottom?: string | undefined;
1824
+ width?: string | undefined;
1825
+ height?: string | undefined;
1826
+ maxHeight?: string | undefined;
1827
+ backgroundColor?: string | undefined;
1828
+ marginAll?: string | undefined;
1829
+ marginTop?: string | undefined;
1830
+ marginRight?: string | undefined;
1831
+ marginBottom?: string | undefined;
1832
+ marginLeft?: string | undefined;
1833
+ paddingAll?: string | undefined;
1834
+ paddingTop?: string | undefined;
1835
+ paddingRight?: string | undefined;
1836
+ paddingBottom?: string | undefined;
1837
+ paddingLeft?: string | undefined;
1838
+ labelFont?: {
1839
+ fontSize: string;
1840
+ bold: boolean;
1841
+ italic: boolean;
1842
+ textDecoration: import('@gct-paas/core').TextDecoration;
1843
+ color: string;
1844
+ align: "left" | "right" | "justify";
1845
+ } | undefined;
1846
+ contentFont?: {
1847
+ fontSize: string;
1848
+ bold: boolean;
1849
+ italic: boolean;
1850
+ textDecoration: import('@gct-paas/core').TextDecoration;
1851
+ color: string;
1852
+ align: "left" | "right" | "justify";
1853
+ } | undefined;
1854
+ tagStyle?: {
1855
+ color?: string | undefined;
1856
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
1857
+ } | undefined;
1858
+ tagStyleOpen?: boolean | undefined;
1859
+ borderAll?: {
1860
+ borderWidth?: string | undefined;
1861
+ borderStyle?: string | undefined;
1862
+ borderColor?: string | undefined;
1863
+ } | undefined;
1864
+ borderLeft?: {
1865
+ borderWidth?: string | undefined;
1866
+ borderStyle?: string | undefined;
1867
+ borderColor?: string | undefined;
1868
+ } | undefined;
1869
+ borderRight?: {
1870
+ borderWidth?: string | undefined;
1871
+ borderStyle?: string | undefined;
1872
+ borderColor?: string | undefined;
1873
+ } | undefined;
1874
+ borderBottom?: {
1875
+ borderWidth?: string | undefined;
1876
+ borderStyle?: string | undefined;
1877
+ borderColor?: string | undefined;
1878
+ } | undefined;
1879
+ borderTop?: {
1880
+ borderWidth?: string | undefined;
1881
+ borderStyle?: string | undefined;
1882
+ borderColor?: string | undefined;
1883
+ } | undefined;
1884
+ borderTopRightRadius?: string | undefined;
1885
+ borderTopLeftRadius?: string | undefined;
1886
+ borderBottomRightRadius?: string | undefined;
1887
+ borderBottomLeftRadius?: string | undefined;
1888
+ borderAllRadius?: string | undefined;
1889
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
1890
+ columnwidth?: number | undefined;
1891
+ columnFontStyleByRule?: {
1892
+ displayRule: string;
1893
+ contentFont: {
1894
+ fontSize: string;
1895
+ bold: boolean;
1896
+ italic: boolean;
1897
+ textDecoration: import('@gct-paas/core').TextDecoration;
1898
+ color: string;
1899
+ align: "left" | "right" | "justify";
1900
+ };
1901
+ tagStyle: {
1902
+ color?: string | undefined;
1903
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
1904
+ };
1905
+ progressStyle: {
1906
+ color: string;
1907
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
1908
+ };
1909
+ tagType: import('@gct-paas/core').tagEnum;
1910
+ tagStyleOpen: boolean;
1911
+ }[] | undefined;
1912
+ columnBackgroundByRule?: {
1913
+ displayRule: string;
1914
+ backgroundColor?: string | undefined;
1915
+ }[] | undefined;
1916
+ tableheight?: number | undefined;
1917
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
1918
+ enableHeaderBGColor?: boolean | undefined;
1919
+ enableBGColor?: boolean | undefined;
1920
+ };
1921
+ props: {
1922
+ [x: string]: any;
1923
+ hidden: boolean;
1924
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
1925
+ displayRule?: string | undefined;
1926
+ modeldata?: {
1927
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
1928
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
1929
+ subModel?: 0 | 1 | undefined;
1930
+ supportProcess?: 0 | 1 | undefined;
1931
+ } | undefined;
1932
+ componentDependency: {
1933
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
1934
+ configDependency: {
1935
+ hidden?: {
1936
+ expressionStr?: string | undefined;
1937
+ expression?: string | undefined;
1938
+ value?: boolean | undefined;
1939
+ fieldValue?: boolean | undefined;
1940
+ strategy?: string | undefined;
1941
+ } | undefined;
1942
+ readonly?: {
1943
+ expressionStr?: string | undefined;
1944
+ expression?: string | undefined;
1945
+ value?: boolean | undefined;
1946
+ fieldValue?: boolean | undefined;
1947
+ strategy?: string | undefined;
1948
+ } | undefined;
1949
+ disabled?: {
1950
+ expressionStr?: string | undefined;
1951
+ expression?: string | undefined;
1952
+ value?: boolean | undefined;
1953
+ fieldValue?: boolean | undefined;
1954
+ strategy?: string | undefined;
1955
+ } | undefined;
1956
+ required?: {
1957
+ expressionStr?: string | undefined;
1958
+ expression?: string | undefined;
1959
+ value?: boolean | undefined;
1960
+ fieldValue?: boolean | undefined;
1961
+ strategy?: string | undefined;
1962
+ } | undefined;
1963
+ assignment?: {
1964
+ expressionStr?: string | undefined;
1965
+ expression?: string | undefined;
1966
+ value?: boolean | undefined;
1967
+ fieldValue?: boolean | undefined;
1968
+ strategy?: string | undefined;
1969
+ } | undefined;
1970
+ };
1971
+ };
1972
+ deviceConnectivity: boolean;
1973
+ };
1974
+ events: import('@gct-paas/schema').IBasicEvents;
1975
+ formItem?: boolean | undefined;
1976
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
1977
+ displayName?: string | undefined;
1978
+ i18n?: Record<string, string> | undefined;
1979
+ isField?: boolean | undefined;
1980
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
1981
+ preLocation?: string | undefined;
1982
+ ignoringStyle?: string[] | undefined;
1983
+ isReadonlyWidget?: boolean | undefined;
1984
+ parentComponent?: import('@gct-paas/core').FormComponents | undefined;
1985
+ dropPlaceholder?: string | undefined;
1986
+ _plugin?: {
1987
+ key: string;
1988
+ version: string;
1989
+ url: string;
1990
+ } | undefined;
1991
+ }[];
1992
+ }>;
1993
+ modalFooter: import('vue').ComputedRef<{
1994
+ id: string;
1995
+ type: BuiltinType.MODAL_BODY | string;
1996
+ children: {
1997
+ [x: string]: any;
1998
+ id: string;
1999
+ platform: import('@gct-paas/core').Platform;
2000
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
2001
+ alias: string;
2002
+ name: string;
2003
+ compName?: string | undefined;
2004
+ compKey?: string | undefined;
2005
+ type: string | import('@gct-paas/core').FormComponents;
2006
+ icon: string;
2007
+ children?: any[] | undefined;
2008
+ internal?: boolean | undefined;
2009
+ description?: string | undefined;
2010
+ style: {
2011
+ position?: string | undefined;
2012
+ top?: string | undefined;
2013
+ left?: string | undefined;
2014
+ right?: string | undefined;
2015
+ bottom?: string | undefined;
2016
+ width?: string | undefined;
2017
+ height?: string | undefined;
2018
+ maxHeight?: string | undefined;
2019
+ backgroundColor?: string | undefined;
2020
+ marginAll?: string | undefined;
2021
+ marginTop?: string | undefined;
2022
+ marginRight?: string | undefined;
2023
+ marginBottom?: string | undefined;
2024
+ marginLeft?: string | undefined;
2025
+ paddingAll?: string | undefined;
2026
+ paddingTop?: string | undefined;
2027
+ paddingRight?: string | undefined;
2028
+ paddingBottom?: string | undefined;
2029
+ paddingLeft?: string | undefined;
2030
+ labelFont?: {
2031
+ fontSize: string;
2032
+ bold: boolean;
2033
+ italic: boolean;
2034
+ textDecoration: import('@gct-paas/core').TextDecoration;
2035
+ color: string;
2036
+ align: "left" | "right" | "justify";
2037
+ } | undefined;
2038
+ contentFont?: {
2039
+ fontSize: string;
2040
+ bold: boolean;
2041
+ italic: boolean;
2042
+ textDecoration: import('@gct-paas/core').TextDecoration;
2043
+ color: string;
2044
+ align: "left" | "right" | "justify";
2045
+ } | undefined;
2046
+ tagStyle?: {
2047
+ color?: string | undefined;
2048
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
2049
+ } | undefined;
2050
+ tagStyleOpen?: boolean | undefined;
2051
+ borderAll?: {
2052
+ borderWidth?: string | undefined;
2053
+ borderStyle?: string | undefined;
2054
+ borderColor?: string | undefined;
2055
+ } | undefined;
2056
+ borderLeft?: {
2057
+ borderWidth?: string | undefined;
2058
+ borderStyle?: string | undefined;
2059
+ borderColor?: string | undefined;
2060
+ } | undefined;
2061
+ borderRight?: {
2062
+ borderWidth?: string | undefined;
2063
+ borderStyle?: string | undefined;
2064
+ borderColor?: string | undefined;
2065
+ } | undefined;
2066
+ borderBottom?: {
2067
+ borderWidth?: string | undefined;
2068
+ borderStyle?: string | undefined;
2069
+ borderColor?: string | undefined;
2070
+ } | undefined;
2071
+ borderTop?: {
2072
+ borderWidth?: string | undefined;
2073
+ borderStyle?: string | undefined;
2074
+ borderColor?: string | undefined;
2075
+ } | undefined;
2076
+ borderTopRightRadius?: string | undefined;
2077
+ borderTopLeftRadius?: string | undefined;
2078
+ borderBottomRightRadius?: string | undefined;
2079
+ borderBottomLeftRadius?: string | undefined;
2080
+ borderAllRadius?: string | undefined;
2081
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
2082
+ columnwidth?: number | undefined;
2083
+ columnFontStyleByRule?: {
2084
+ displayRule: string;
2085
+ contentFont: {
2086
+ fontSize: string;
2087
+ bold: boolean;
2088
+ italic: boolean;
2089
+ textDecoration: import('@gct-paas/core').TextDecoration;
2090
+ color: string;
2091
+ align: "left" | "right" | "justify";
2092
+ };
2093
+ tagStyle: {
2094
+ color?: string | undefined;
2095
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
2096
+ };
2097
+ progressStyle: {
2098
+ color: string;
2099
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
2100
+ };
2101
+ tagType: import('@gct-paas/core').tagEnum;
2102
+ tagStyleOpen: boolean;
2103
+ }[] | undefined;
2104
+ columnBackgroundByRule?: {
2105
+ displayRule: string;
2106
+ backgroundColor?: string | undefined;
2107
+ }[] | undefined;
2108
+ tableheight?: number | undefined;
2109
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
2110
+ enableHeaderBGColor?: boolean | undefined;
2111
+ enableBGColor?: boolean | undefined;
2112
+ };
2113
+ props: {
2114
+ [x: string]: any;
2115
+ hidden: boolean;
2116
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
2117
+ displayRule?: string | undefined;
2118
+ modeldata?: {
2119
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
2120
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
2121
+ subModel?: 0 | 1 | undefined;
2122
+ supportProcess?: 0 | 1 | undefined;
2123
+ } | undefined;
2124
+ componentDependency: {
2125
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
2126
+ configDependency: {
2127
+ hidden?: {
2128
+ expressionStr?: string | undefined;
2129
+ expression?: string | undefined;
2130
+ value?: boolean | undefined;
2131
+ fieldValue?: boolean | undefined;
2132
+ strategy?: string | undefined;
2133
+ } | undefined;
2134
+ readonly?: {
2135
+ expressionStr?: string | undefined;
2136
+ expression?: string | undefined;
2137
+ value?: boolean | undefined;
2138
+ fieldValue?: boolean | undefined;
2139
+ strategy?: string | undefined;
2140
+ } | undefined;
2141
+ disabled?: {
2142
+ expressionStr?: string | undefined;
2143
+ expression?: string | undefined;
2144
+ value?: boolean | undefined;
2145
+ fieldValue?: boolean | undefined;
2146
+ strategy?: string | undefined;
2147
+ } | undefined;
2148
+ required?: {
2149
+ expressionStr?: string | undefined;
2150
+ expression?: string | undefined;
2151
+ value?: boolean | undefined;
2152
+ fieldValue?: boolean | undefined;
2153
+ strategy?: string | undefined;
2154
+ } | undefined;
2155
+ assignment?: {
2156
+ expressionStr?: string | undefined;
2157
+ expression?: string | undefined;
2158
+ value?: boolean | undefined;
2159
+ fieldValue?: boolean | undefined;
2160
+ strategy?: string | undefined;
2161
+ } | undefined;
2162
+ };
2163
+ };
2164
+ deviceConnectivity: boolean;
2165
+ };
2166
+ events: import('@gct-paas/schema').IBasicEvents;
2167
+ formItem?: boolean | undefined;
2168
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
2169
+ displayName?: string | undefined;
2170
+ i18n?: Record<string, string> | undefined;
2171
+ isField?: boolean | undefined;
2172
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
2173
+ preLocation?: string | undefined;
2174
+ ignoringStyle?: string[] | undefined;
2175
+ isReadonlyWidget?: boolean | undefined;
2176
+ parentComponent?: import('@gct-paas/core').FormComponents | undefined;
2177
+ dropPlaceholder?: string | undefined;
2178
+ _plugin?: {
2179
+ key: string;
2180
+ version: string;
2181
+ url: string;
2182
+ } | undefined;
2183
+ }[];
2184
+ } | {
2185
+ id: string;
2186
+ type: BuiltinType.MODAL_FOOTER;
2187
+ children: {
2188
+ [x: string]: any;
2189
+ id: string;
2190
+ platform: import('@gct-paas/core').Platform;
2191
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
2192
+ alias: string;
2193
+ name: string;
2194
+ compName?: string | undefined;
2195
+ compKey?: string | undefined;
2196
+ type: string | import('@gct-paas/core').FormComponents;
2197
+ icon: string;
2198
+ children?: any[] | undefined;
2199
+ internal?: boolean | undefined;
2200
+ description?: string | undefined;
2201
+ style: {
2202
+ position?: string | undefined;
2203
+ top?: string | undefined;
2204
+ left?: string | undefined;
2205
+ right?: string | undefined;
2206
+ bottom?: string | undefined;
2207
+ width?: string | undefined;
2208
+ height?: string | undefined;
2209
+ maxHeight?: string | undefined;
2210
+ backgroundColor?: string | undefined;
2211
+ marginAll?: string | undefined;
2212
+ marginTop?: string | undefined;
2213
+ marginRight?: string | undefined;
2214
+ marginBottom?: string | undefined;
2215
+ marginLeft?: string | undefined;
2216
+ paddingAll?: string | undefined;
2217
+ paddingTop?: string | undefined;
2218
+ paddingRight?: string | undefined;
2219
+ paddingBottom?: string | undefined;
2220
+ paddingLeft?: string | undefined;
2221
+ labelFont?: {
2222
+ fontSize: string;
2223
+ bold: boolean;
2224
+ italic: boolean;
2225
+ textDecoration: import('@gct-paas/core').TextDecoration;
2226
+ color: string;
2227
+ align: "left" | "right" | "justify";
2228
+ } | undefined;
2229
+ contentFont?: {
2230
+ fontSize: string;
2231
+ bold: boolean;
2232
+ italic: boolean;
2233
+ textDecoration: import('@gct-paas/core').TextDecoration;
2234
+ color: string;
2235
+ align: "left" | "right" | "justify";
2236
+ } | undefined;
2237
+ tagStyle?: {
2238
+ color?: string | undefined;
2239
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
2240
+ } | undefined;
2241
+ tagStyleOpen?: boolean | undefined;
2242
+ borderAll?: {
2243
+ borderWidth?: string | undefined;
2244
+ borderStyle?: string | undefined;
2245
+ borderColor?: string | undefined;
2246
+ } | undefined;
2247
+ borderLeft?: {
2248
+ borderWidth?: string | undefined;
2249
+ borderStyle?: string | undefined;
2250
+ borderColor?: string | undefined;
2251
+ } | undefined;
2252
+ borderRight?: {
2253
+ borderWidth?: string | undefined;
2254
+ borderStyle?: string | undefined;
2255
+ borderColor?: string | undefined;
2256
+ } | undefined;
2257
+ borderBottom?: {
2258
+ borderWidth?: string | undefined;
2259
+ borderStyle?: string | undefined;
2260
+ borderColor?: string | undefined;
2261
+ } | undefined;
2262
+ borderTop?: {
2263
+ borderWidth?: string | undefined;
2264
+ borderStyle?: string | undefined;
2265
+ borderColor?: string | undefined;
2266
+ } | undefined;
2267
+ borderTopRightRadius?: string | undefined;
2268
+ borderTopLeftRadius?: string | undefined;
2269
+ borderBottomRightRadius?: string | undefined;
2270
+ borderBottomLeftRadius?: string | undefined;
2271
+ borderAllRadius?: string | undefined;
2272
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
2273
+ columnwidth?: number | undefined;
2274
+ columnFontStyleByRule?: {
2275
+ displayRule: string;
2276
+ contentFont: {
2277
+ fontSize: string;
2278
+ bold: boolean;
2279
+ italic: boolean;
2280
+ textDecoration: import('@gct-paas/core').TextDecoration;
2281
+ color: string;
2282
+ align: "left" | "right" | "justify";
2283
+ };
2284
+ tagStyle: {
2285
+ color?: string | undefined;
2286
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
2287
+ };
2288
+ progressStyle: {
2289
+ color: string;
2290
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
2291
+ };
2292
+ tagType: import('@gct-paas/core').tagEnum;
2293
+ tagStyleOpen: boolean;
2294
+ }[] | undefined;
2295
+ columnBackgroundByRule?: {
2296
+ displayRule: string;
2297
+ backgroundColor?: string | undefined;
2298
+ }[] | undefined;
2299
+ tableheight?: number | undefined;
2300
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
2301
+ enableHeaderBGColor?: boolean | undefined;
2302
+ enableBGColor?: boolean | undefined;
2303
+ };
2304
+ props: {
2305
+ [x: string]: any;
2306
+ hidden: boolean;
2307
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
2308
+ displayRule?: string | undefined;
2309
+ modeldata?: {
2310
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
2311
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
2312
+ subModel?: 0 | 1 | undefined;
2313
+ supportProcess?: 0 | 1 | undefined;
2314
+ } | undefined;
2315
+ componentDependency: {
2316
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
2317
+ configDependency: {
2318
+ hidden?: {
2319
+ expressionStr?: string | undefined;
2320
+ expression?: string | undefined;
2321
+ value?: boolean | undefined;
2322
+ fieldValue?: boolean | undefined;
2323
+ strategy?: string | undefined;
2324
+ } | undefined;
2325
+ readonly?: {
2326
+ expressionStr?: string | undefined;
2327
+ expression?: string | undefined;
2328
+ value?: boolean | undefined;
2329
+ fieldValue?: boolean | undefined;
2330
+ strategy?: string | undefined;
2331
+ } | undefined;
2332
+ disabled?: {
2333
+ expressionStr?: string | undefined;
2334
+ expression?: string | undefined;
2335
+ value?: boolean | undefined;
2336
+ fieldValue?: boolean | undefined;
2337
+ strategy?: string | undefined;
2338
+ } | undefined;
2339
+ required?: {
2340
+ expressionStr?: string | undefined;
2341
+ expression?: string | undefined;
2342
+ value?: boolean | undefined;
2343
+ fieldValue?: boolean | undefined;
2344
+ strategy?: string | undefined;
2345
+ } | undefined;
2346
+ assignment?: {
2347
+ expressionStr?: string | undefined;
2348
+ expression?: string | undefined;
2349
+ value?: boolean | undefined;
2350
+ fieldValue?: boolean | undefined;
2351
+ strategy?: string | undefined;
2352
+ } | undefined;
2353
+ };
2354
+ };
2355
+ deviceConnectivity: boolean;
2356
+ };
2357
+ events: import('@gct-paas/schema').IBasicEvents;
2358
+ formItem?: boolean | undefined;
2359
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
2360
+ displayName?: string | undefined;
2361
+ i18n?: Record<string, string> | undefined;
2362
+ isField?: boolean | undefined;
2363
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
2364
+ preLocation?: string | undefined;
2365
+ ignoringStyle?: string[] | undefined;
2366
+ isReadonlyWidget?: boolean | undefined;
2367
+ parentComponent?: import('@gct-paas/core').FormComponents | undefined;
2368
+ dropPlaceholder?: string | undefined;
2369
+ _plugin?: {
2370
+ key: string;
2371
+ version: string;
2372
+ url: string;
2373
+ } | undefined;
2374
+ }[];
2375
+ } | {
2376
+ id: string;
2377
+ type: BuiltinType.BottomButtonContainer;
2378
+ children: {
2379
+ [x: string]: any;
2380
+ id: string;
2381
+ platform: import('@gct-paas/core').Platform;
2382
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
2383
+ alias: string;
2384
+ name: string;
2385
+ compName?: string | undefined;
2386
+ compKey?: string | undefined;
2387
+ type: string | import('@gct-paas/core').FormComponents;
2388
+ icon: string;
2389
+ children?: any[] | undefined;
2390
+ internal?: boolean | undefined;
2391
+ description?: string | undefined;
2392
+ style: {
2393
+ position?: string | undefined;
2394
+ top?: string | undefined;
2395
+ left?: string | undefined;
2396
+ right?: string | undefined;
2397
+ bottom?: string | undefined;
2398
+ width?: string | undefined;
2399
+ height?: string | undefined;
2400
+ maxHeight?: string | undefined;
2401
+ backgroundColor?: string | undefined;
2402
+ marginAll?: string | undefined;
2403
+ marginTop?: string | undefined;
2404
+ marginRight?: string | undefined;
2405
+ marginBottom?: string | undefined;
2406
+ marginLeft?: string | undefined;
2407
+ paddingAll?: string | undefined;
2408
+ paddingTop?: string | undefined;
2409
+ paddingRight?: string | undefined;
2410
+ paddingBottom?: string | undefined;
2411
+ paddingLeft?: string | undefined;
2412
+ labelFont?: {
2413
+ fontSize: string;
2414
+ bold: boolean;
2415
+ italic: boolean;
2416
+ textDecoration: import('@gct-paas/core').TextDecoration;
2417
+ color: string;
2418
+ align: "left" | "right" | "justify";
2419
+ } | undefined;
2420
+ contentFont?: {
2421
+ fontSize: string;
2422
+ bold: boolean;
2423
+ italic: boolean;
2424
+ textDecoration: import('@gct-paas/core').TextDecoration;
2425
+ color: string;
2426
+ align: "left" | "right" | "justify";
2427
+ } | undefined;
2428
+ tagStyle?: {
2429
+ color?: string | undefined;
2430
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
2431
+ } | undefined;
2432
+ tagStyleOpen?: boolean | undefined;
2433
+ borderAll?: {
2434
+ borderWidth?: string | undefined;
2435
+ borderStyle?: string | undefined;
2436
+ borderColor?: string | undefined;
2437
+ } | undefined;
2438
+ borderLeft?: {
2439
+ borderWidth?: string | undefined;
2440
+ borderStyle?: string | undefined;
2441
+ borderColor?: string | undefined;
2442
+ } | undefined;
2443
+ borderRight?: {
2444
+ borderWidth?: string | undefined;
2445
+ borderStyle?: string | undefined;
2446
+ borderColor?: string | undefined;
2447
+ } | undefined;
2448
+ borderBottom?: {
2449
+ borderWidth?: string | undefined;
2450
+ borderStyle?: string | undefined;
2451
+ borderColor?: string | undefined;
2452
+ } | undefined;
2453
+ borderTop?: {
2454
+ borderWidth?: string | undefined;
2455
+ borderStyle?: string | undefined;
2456
+ borderColor?: string | undefined;
2457
+ } | undefined;
2458
+ borderTopRightRadius?: string | undefined;
2459
+ borderTopLeftRadius?: string | undefined;
2460
+ borderBottomRightRadius?: string | undefined;
2461
+ borderBottomLeftRadius?: string | undefined;
2462
+ borderAllRadius?: string | undefined;
2463
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
2464
+ columnwidth?: number | undefined;
2465
+ columnFontStyleByRule?: {
2466
+ displayRule: string;
2467
+ contentFont: {
2468
+ fontSize: string;
2469
+ bold: boolean;
2470
+ italic: boolean;
2471
+ textDecoration: import('@gct-paas/core').TextDecoration;
2472
+ color: string;
2473
+ align: "left" | "right" | "justify";
2474
+ };
2475
+ tagStyle: {
2476
+ color?: string | undefined;
2477
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
2478
+ };
2479
+ progressStyle: {
2480
+ color: string;
2481
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
2482
+ };
2483
+ tagType: import('@gct-paas/core').tagEnum;
2484
+ tagStyleOpen: boolean;
2485
+ }[] | undefined;
2486
+ columnBackgroundByRule?: {
2487
+ displayRule: string;
2488
+ backgroundColor?: string | undefined;
2489
+ }[] | undefined;
2490
+ tableheight?: number | undefined;
2491
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
2492
+ enableHeaderBGColor?: boolean | undefined;
2493
+ enableBGColor?: boolean | undefined;
2494
+ };
2495
+ props: {
2496
+ [x: string]: any;
2497
+ hidden: boolean;
2498
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
2499
+ displayRule?: string | undefined;
2500
+ modeldata?: {
2501
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
2502
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
2503
+ subModel?: 0 | 1 | undefined;
2504
+ supportProcess?: 0 | 1 | undefined;
2505
+ } | undefined;
2506
+ componentDependency: {
2507
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
2508
+ configDependency: {
2509
+ hidden?: {
2510
+ expressionStr?: string | undefined;
2511
+ expression?: string | undefined;
2512
+ value?: boolean | undefined;
2513
+ fieldValue?: boolean | undefined;
2514
+ strategy?: string | undefined;
2515
+ } | undefined;
2516
+ readonly?: {
2517
+ expressionStr?: string | undefined;
2518
+ expression?: string | undefined;
2519
+ value?: boolean | undefined;
2520
+ fieldValue?: boolean | undefined;
2521
+ strategy?: string | undefined;
2522
+ } | undefined;
2523
+ disabled?: {
2524
+ expressionStr?: string | undefined;
2525
+ expression?: string | undefined;
2526
+ value?: boolean | undefined;
2527
+ fieldValue?: boolean | undefined;
2528
+ strategy?: string | undefined;
2529
+ } | undefined;
2530
+ required?: {
2531
+ expressionStr?: string | undefined;
2532
+ expression?: string | undefined;
2533
+ value?: boolean | undefined;
2534
+ fieldValue?: boolean | undefined;
2535
+ strategy?: string | undefined;
2536
+ } | undefined;
2537
+ assignment?: {
2538
+ expressionStr?: string | undefined;
2539
+ expression?: string | undefined;
2540
+ value?: boolean | undefined;
2541
+ fieldValue?: boolean | undefined;
2542
+ strategy?: string | undefined;
2543
+ } | undefined;
2544
+ };
2545
+ };
2546
+ deviceConnectivity: boolean;
2547
+ };
2548
+ events: import('@gct-paas/schema').IBasicEvents;
2549
+ formItem?: boolean | undefined;
2550
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
2551
+ displayName?: string | undefined;
2552
+ i18n?: Record<string, string> | undefined;
2553
+ isField?: boolean | undefined;
2554
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
2555
+ preLocation?: string | undefined;
2556
+ ignoringStyle?: string[] | undefined;
2557
+ isReadonlyWidget?: boolean | undefined;
2558
+ parentComponent?: import('@gct-paas/core').FormComponents | undefined;
2559
+ dropPlaceholder?: string | undefined;
2560
+ _plugin?: {
2561
+ key: string;
2562
+ version: string;
2563
+ url: string;
2564
+ } | undefined;
2565
+ }[];
2566
+ }>;
2567
+ modalBottomBtn: import('vue').ComputedRef<{
2568
+ id: string;
2569
+ type: BuiltinType.MODAL_BODY | string;
2570
+ children: {
2571
+ [x: string]: any;
2572
+ id: string;
2573
+ platform: import('@gct-paas/core').Platform;
2574
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
2575
+ alias: string;
2576
+ name: string;
2577
+ compName?: string | undefined;
2578
+ compKey?: string | undefined;
2579
+ type: string | import('@gct-paas/core').FormComponents;
2580
+ icon: string;
2581
+ children?: any[] | undefined;
2582
+ internal?: boolean | undefined;
2583
+ description?: string | undefined;
2584
+ style: {
2585
+ position?: string | undefined;
2586
+ top?: string | undefined;
2587
+ left?: string | undefined;
2588
+ right?: string | undefined;
2589
+ bottom?: string | undefined;
2590
+ width?: string | undefined;
2591
+ height?: string | undefined;
2592
+ maxHeight?: string | undefined;
2593
+ backgroundColor?: string | undefined;
2594
+ marginAll?: string | undefined;
2595
+ marginTop?: string | undefined;
2596
+ marginRight?: string | undefined;
2597
+ marginBottom?: string | undefined;
2598
+ marginLeft?: string | undefined;
2599
+ paddingAll?: string | undefined;
2600
+ paddingTop?: string | undefined;
2601
+ paddingRight?: string | undefined;
2602
+ paddingBottom?: string | undefined;
2603
+ paddingLeft?: string | undefined;
2604
+ labelFont?: {
2605
+ fontSize: string;
2606
+ bold: boolean;
2607
+ italic: boolean;
2608
+ textDecoration: import('@gct-paas/core').TextDecoration;
2609
+ color: string;
2610
+ align: "left" | "right" | "justify";
2611
+ } | undefined;
2612
+ contentFont?: {
2613
+ fontSize: string;
2614
+ bold: boolean;
2615
+ italic: boolean;
2616
+ textDecoration: import('@gct-paas/core').TextDecoration;
2617
+ color: string;
2618
+ align: "left" | "right" | "justify";
2619
+ } | undefined;
2620
+ tagStyle?: {
2621
+ color?: string | undefined;
2622
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
2623
+ } | undefined;
2624
+ tagStyleOpen?: boolean | undefined;
2625
+ borderAll?: {
2626
+ borderWidth?: string | undefined;
2627
+ borderStyle?: string | undefined;
2628
+ borderColor?: string | undefined;
2629
+ } | undefined;
2630
+ borderLeft?: {
2631
+ borderWidth?: string | undefined;
2632
+ borderStyle?: string | undefined;
2633
+ borderColor?: string | undefined;
2634
+ } | undefined;
2635
+ borderRight?: {
2636
+ borderWidth?: string | undefined;
2637
+ borderStyle?: string | undefined;
2638
+ borderColor?: string | undefined;
2639
+ } | undefined;
2640
+ borderBottom?: {
2641
+ borderWidth?: string | undefined;
2642
+ borderStyle?: string | undefined;
2643
+ borderColor?: string | undefined;
2644
+ } | undefined;
2645
+ borderTop?: {
2646
+ borderWidth?: string | undefined;
2647
+ borderStyle?: string | undefined;
2648
+ borderColor?: string | undefined;
2649
+ } | undefined;
2650
+ borderTopRightRadius?: string | undefined;
2651
+ borderTopLeftRadius?: string | undefined;
2652
+ borderBottomRightRadius?: string | undefined;
2653
+ borderBottomLeftRadius?: string | undefined;
2654
+ borderAllRadius?: string | undefined;
2655
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
2656
+ columnwidth?: number | undefined;
2657
+ columnFontStyleByRule?: {
2658
+ displayRule: string;
2659
+ contentFont: {
2660
+ fontSize: string;
2661
+ bold: boolean;
2662
+ italic: boolean;
2663
+ textDecoration: import('@gct-paas/core').TextDecoration;
2664
+ color: string;
2665
+ align: "left" | "right" | "justify";
2666
+ };
2667
+ tagStyle: {
2668
+ color?: string | undefined;
2669
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
2670
+ };
2671
+ progressStyle: {
2672
+ color: string;
2673
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
2674
+ };
2675
+ tagType: import('@gct-paas/core').tagEnum;
2676
+ tagStyleOpen: boolean;
2677
+ }[] | undefined;
2678
+ columnBackgroundByRule?: {
2679
+ displayRule: string;
2680
+ backgroundColor?: string | undefined;
2681
+ }[] | undefined;
2682
+ tableheight?: number | undefined;
2683
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
2684
+ enableHeaderBGColor?: boolean | undefined;
2685
+ enableBGColor?: boolean | undefined;
2686
+ };
2687
+ props: {
2688
+ [x: string]: any;
2689
+ hidden: boolean;
2690
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
2691
+ displayRule?: string | undefined;
2692
+ modeldata?: {
2693
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
2694
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
2695
+ subModel?: 0 | 1 | undefined;
2696
+ supportProcess?: 0 | 1 | undefined;
2697
+ } | undefined;
2698
+ componentDependency: {
2699
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
2700
+ configDependency: {
2701
+ hidden?: {
2702
+ expressionStr?: string | undefined;
2703
+ expression?: string | undefined;
2704
+ value?: boolean | undefined;
2705
+ fieldValue?: boolean | undefined;
2706
+ strategy?: string | undefined;
2707
+ } | undefined;
2708
+ readonly?: {
2709
+ expressionStr?: string | undefined;
2710
+ expression?: string | undefined;
2711
+ value?: boolean | undefined;
2712
+ fieldValue?: boolean | undefined;
2713
+ strategy?: string | undefined;
2714
+ } | undefined;
2715
+ disabled?: {
2716
+ expressionStr?: string | undefined;
2717
+ expression?: string | undefined;
2718
+ value?: boolean | undefined;
2719
+ fieldValue?: boolean | undefined;
2720
+ strategy?: string | undefined;
2721
+ } | undefined;
2722
+ required?: {
2723
+ expressionStr?: string | undefined;
2724
+ expression?: string | undefined;
2725
+ value?: boolean | undefined;
2726
+ fieldValue?: boolean | undefined;
2727
+ strategy?: string | undefined;
2728
+ } | undefined;
2729
+ assignment?: {
2730
+ expressionStr?: string | undefined;
2731
+ expression?: string | undefined;
2732
+ value?: boolean | undefined;
2733
+ fieldValue?: boolean | undefined;
2734
+ strategy?: string | undefined;
2735
+ } | undefined;
2736
+ };
2737
+ };
2738
+ deviceConnectivity: boolean;
2739
+ };
2740
+ events: import('@gct-paas/schema').IBasicEvents;
2741
+ formItem?: boolean | undefined;
2742
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
2743
+ displayName?: string | undefined;
2744
+ i18n?: Record<string, string> | undefined;
2745
+ isField?: boolean | undefined;
2746
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
2747
+ preLocation?: string | undefined;
2748
+ ignoringStyle?: string[] | undefined;
2749
+ isReadonlyWidget?: boolean | undefined;
2750
+ parentComponent?: import('@gct-paas/core').FormComponents | undefined;
2751
+ dropPlaceholder?: string | undefined;
2752
+ _plugin?: {
2753
+ key: string;
2754
+ version: string;
2755
+ url: string;
2756
+ } | undefined;
2757
+ }[];
2758
+ } | {
2759
+ id: string;
2760
+ type: BuiltinType.MODAL_FOOTER;
2761
+ children: {
2762
+ [x: string]: any;
2763
+ id: string;
2764
+ platform: import('@gct-paas/core').Platform;
2765
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
2766
+ alias: string;
2767
+ name: string;
2768
+ compName?: string | undefined;
2769
+ compKey?: string | undefined;
2770
+ type: string | import('@gct-paas/core').FormComponents;
2771
+ icon: string;
2772
+ children?: any[] | undefined;
2773
+ internal?: boolean | undefined;
2774
+ description?: string | undefined;
2775
+ style: {
2776
+ position?: string | undefined;
2777
+ top?: string | undefined;
2778
+ left?: string | undefined;
2779
+ right?: string | undefined;
2780
+ bottom?: string | undefined;
2781
+ width?: string | undefined;
2782
+ height?: string | undefined;
2783
+ maxHeight?: string | undefined;
2784
+ backgroundColor?: string | undefined;
2785
+ marginAll?: string | undefined;
2786
+ marginTop?: string | undefined;
2787
+ marginRight?: string | undefined;
2788
+ marginBottom?: string | undefined;
2789
+ marginLeft?: string | undefined;
2790
+ paddingAll?: string | undefined;
2791
+ paddingTop?: string | undefined;
2792
+ paddingRight?: string | undefined;
2793
+ paddingBottom?: string | undefined;
2794
+ paddingLeft?: string | undefined;
2795
+ labelFont?: {
2796
+ fontSize: string;
2797
+ bold: boolean;
2798
+ italic: boolean;
2799
+ textDecoration: import('@gct-paas/core').TextDecoration;
2800
+ color: string;
2801
+ align: "left" | "right" | "justify";
2802
+ } | undefined;
2803
+ contentFont?: {
2804
+ fontSize: string;
2805
+ bold: boolean;
2806
+ italic: boolean;
2807
+ textDecoration: import('@gct-paas/core').TextDecoration;
2808
+ color: string;
2809
+ align: "left" | "right" | "justify";
2810
+ } | undefined;
2811
+ tagStyle?: {
2812
+ color?: string | undefined;
2813
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
2814
+ } | undefined;
2815
+ tagStyleOpen?: boolean | undefined;
2816
+ borderAll?: {
2817
+ borderWidth?: string | undefined;
2818
+ borderStyle?: string | undefined;
2819
+ borderColor?: string | undefined;
2820
+ } | undefined;
2821
+ borderLeft?: {
2822
+ borderWidth?: string | undefined;
2823
+ borderStyle?: string | undefined;
2824
+ borderColor?: string | undefined;
2825
+ } | undefined;
2826
+ borderRight?: {
2827
+ borderWidth?: string | undefined;
2828
+ borderStyle?: string | undefined;
2829
+ borderColor?: string | undefined;
2830
+ } | undefined;
2831
+ borderBottom?: {
2832
+ borderWidth?: string | undefined;
2833
+ borderStyle?: string | undefined;
2834
+ borderColor?: string | undefined;
2835
+ } | undefined;
2836
+ borderTop?: {
2837
+ borderWidth?: string | undefined;
2838
+ borderStyle?: string | undefined;
2839
+ borderColor?: string | undefined;
2840
+ } | undefined;
2841
+ borderTopRightRadius?: string | undefined;
2842
+ borderTopLeftRadius?: string | undefined;
2843
+ borderBottomRightRadius?: string | undefined;
2844
+ borderBottomLeftRadius?: string | undefined;
2845
+ borderAllRadius?: string | undefined;
2846
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
2847
+ columnwidth?: number | undefined;
2848
+ columnFontStyleByRule?: {
2849
+ displayRule: string;
2850
+ contentFont: {
2851
+ fontSize: string;
2852
+ bold: boolean;
2853
+ italic: boolean;
2854
+ textDecoration: import('@gct-paas/core').TextDecoration;
2855
+ color: string;
2856
+ align: "left" | "right" | "justify";
2857
+ };
2858
+ tagStyle: {
2859
+ color?: string | undefined;
2860
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
2861
+ };
2862
+ progressStyle: {
2863
+ color: string;
2864
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
2865
+ };
2866
+ tagType: import('@gct-paas/core').tagEnum;
2867
+ tagStyleOpen: boolean;
2868
+ }[] | undefined;
2869
+ columnBackgroundByRule?: {
2870
+ displayRule: string;
2871
+ backgroundColor?: string | undefined;
2872
+ }[] | undefined;
2873
+ tableheight?: number | undefined;
2874
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
2875
+ enableHeaderBGColor?: boolean | undefined;
2876
+ enableBGColor?: boolean | undefined;
2877
+ };
2878
+ props: {
2879
+ [x: string]: any;
2880
+ hidden: boolean;
2881
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
2882
+ displayRule?: string | undefined;
2883
+ modeldata?: {
2884
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
2885
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
2886
+ subModel?: 0 | 1 | undefined;
2887
+ supportProcess?: 0 | 1 | undefined;
2888
+ } | undefined;
2889
+ componentDependency: {
2890
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
2891
+ configDependency: {
2892
+ hidden?: {
2893
+ expressionStr?: string | undefined;
2894
+ expression?: string | undefined;
2895
+ value?: boolean | undefined;
2896
+ fieldValue?: boolean | undefined;
2897
+ strategy?: string | undefined;
2898
+ } | undefined;
2899
+ readonly?: {
2900
+ expressionStr?: string | undefined;
2901
+ expression?: string | undefined;
2902
+ value?: boolean | undefined;
2903
+ fieldValue?: boolean | undefined;
2904
+ strategy?: string | undefined;
2905
+ } | undefined;
2906
+ disabled?: {
2907
+ expressionStr?: string | undefined;
2908
+ expression?: string | undefined;
2909
+ value?: boolean | undefined;
2910
+ fieldValue?: boolean | undefined;
2911
+ strategy?: string | undefined;
2912
+ } | undefined;
2913
+ required?: {
2914
+ expressionStr?: string | undefined;
2915
+ expression?: string | undefined;
2916
+ value?: boolean | undefined;
2917
+ fieldValue?: boolean | undefined;
2918
+ strategy?: string | undefined;
2919
+ } | undefined;
2920
+ assignment?: {
2921
+ expressionStr?: string | undefined;
2922
+ expression?: string | undefined;
2923
+ value?: boolean | undefined;
2924
+ fieldValue?: boolean | undefined;
2925
+ strategy?: string | undefined;
2926
+ } | undefined;
2927
+ };
2928
+ };
2929
+ deviceConnectivity: boolean;
2930
+ };
2931
+ events: import('@gct-paas/schema').IBasicEvents;
2932
+ formItem?: boolean | undefined;
2933
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
2934
+ displayName?: string | undefined;
2935
+ i18n?: Record<string, string> | undefined;
2936
+ isField?: boolean | undefined;
2937
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
2938
+ preLocation?: string | undefined;
2939
+ ignoringStyle?: string[] | undefined;
2940
+ isReadonlyWidget?: boolean | undefined;
2941
+ parentComponent?: import('@gct-paas/core').FormComponents | undefined;
2942
+ dropPlaceholder?: string | undefined;
2943
+ _plugin?: {
2944
+ key: string;
2945
+ version: string;
2946
+ url: string;
2947
+ } | undefined;
2948
+ }[];
2949
+ } | {
2950
+ id: string;
2951
+ type: BuiltinType.BottomButtonContainer;
2952
+ children: {
2953
+ [x: string]: any;
2954
+ id: string;
2955
+ platform: import('@gct-paas/core').Platform;
2956
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
2957
+ alias: string;
2958
+ name: string;
2959
+ compName?: string | undefined;
2960
+ compKey?: string | undefined;
2961
+ type: string | import('@gct-paas/core').FormComponents;
2962
+ icon: string;
2963
+ children?: any[] | undefined;
2964
+ internal?: boolean | undefined;
2965
+ description?: string | undefined;
2966
+ style: {
2967
+ position?: string | undefined;
2968
+ top?: string | undefined;
2969
+ left?: string | undefined;
2970
+ right?: string | undefined;
2971
+ bottom?: string | undefined;
2972
+ width?: string | undefined;
2973
+ height?: string | undefined;
2974
+ maxHeight?: string | undefined;
2975
+ backgroundColor?: string | undefined;
2976
+ marginAll?: string | undefined;
2977
+ marginTop?: string | undefined;
2978
+ marginRight?: string | undefined;
2979
+ marginBottom?: string | undefined;
2980
+ marginLeft?: string | undefined;
2981
+ paddingAll?: string | undefined;
2982
+ paddingTop?: string | undefined;
2983
+ paddingRight?: string | undefined;
2984
+ paddingBottom?: string | undefined;
2985
+ paddingLeft?: string | undefined;
2986
+ labelFont?: {
2987
+ fontSize: string;
2988
+ bold: boolean;
2989
+ italic: boolean;
2990
+ textDecoration: import('@gct-paas/core').TextDecoration;
2991
+ color: string;
2992
+ align: "left" | "right" | "justify";
2993
+ } | undefined;
2994
+ contentFont?: {
2995
+ fontSize: string;
2996
+ bold: boolean;
2997
+ italic: boolean;
2998
+ textDecoration: import('@gct-paas/core').TextDecoration;
2999
+ color: string;
3000
+ align: "left" | "right" | "justify";
3001
+ } | undefined;
3002
+ tagStyle?: {
3003
+ color?: string | undefined;
3004
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
3005
+ } | undefined;
3006
+ tagStyleOpen?: boolean | undefined;
3007
+ borderAll?: {
3008
+ borderWidth?: string | undefined;
3009
+ borderStyle?: string | undefined;
3010
+ borderColor?: string | undefined;
3011
+ } | undefined;
3012
+ borderLeft?: {
3013
+ borderWidth?: string | undefined;
3014
+ borderStyle?: string | undefined;
3015
+ borderColor?: string | undefined;
3016
+ } | undefined;
3017
+ borderRight?: {
3018
+ borderWidth?: string | undefined;
3019
+ borderStyle?: string | undefined;
3020
+ borderColor?: string | undefined;
3021
+ } | undefined;
3022
+ borderBottom?: {
3023
+ borderWidth?: string | undefined;
3024
+ borderStyle?: string | undefined;
3025
+ borderColor?: string | undefined;
3026
+ } | undefined;
3027
+ borderTop?: {
3028
+ borderWidth?: string | undefined;
3029
+ borderStyle?: string | undefined;
3030
+ borderColor?: string | undefined;
3031
+ } | undefined;
3032
+ borderTopRightRadius?: string | undefined;
3033
+ borderTopLeftRadius?: string | undefined;
3034
+ borderBottomRightRadius?: string | undefined;
3035
+ borderBottomLeftRadius?: string | undefined;
3036
+ borderAllRadius?: string | undefined;
3037
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
3038
+ columnwidth?: number | undefined;
3039
+ columnFontStyleByRule?: {
3040
+ displayRule: string;
3041
+ contentFont: {
3042
+ fontSize: string;
3043
+ bold: boolean;
3044
+ italic: boolean;
3045
+ textDecoration: import('@gct-paas/core').TextDecoration;
3046
+ color: string;
3047
+ align: "left" | "right" | "justify";
3048
+ };
3049
+ tagStyle: {
3050
+ color?: string | undefined;
3051
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
3052
+ };
3053
+ progressStyle: {
3054
+ color: string;
3055
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
3056
+ };
3057
+ tagType: import('@gct-paas/core').tagEnum;
3058
+ tagStyleOpen: boolean;
3059
+ }[] | undefined;
3060
+ columnBackgroundByRule?: {
3061
+ displayRule: string;
3062
+ backgroundColor?: string | undefined;
3063
+ }[] | undefined;
3064
+ tableheight?: number | undefined;
3065
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
3066
+ enableHeaderBGColor?: boolean | undefined;
3067
+ enableBGColor?: boolean | undefined;
3068
+ };
3069
+ props: {
3070
+ [x: string]: any;
3071
+ hidden: boolean;
3072
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
3073
+ displayRule?: string | undefined;
3074
+ modeldata?: {
3075
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
3076
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
3077
+ subModel?: 0 | 1 | undefined;
3078
+ supportProcess?: 0 | 1 | undefined;
3079
+ } | undefined;
3080
+ componentDependency: {
3081
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
3082
+ configDependency: {
3083
+ hidden?: {
3084
+ expressionStr?: string | undefined;
3085
+ expression?: string | undefined;
3086
+ value?: boolean | undefined;
3087
+ fieldValue?: boolean | undefined;
3088
+ strategy?: string | undefined;
3089
+ } | undefined;
3090
+ readonly?: {
3091
+ expressionStr?: string | undefined;
3092
+ expression?: string | undefined;
3093
+ value?: boolean | undefined;
3094
+ fieldValue?: boolean | undefined;
3095
+ strategy?: string | undefined;
3096
+ } | undefined;
3097
+ disabled?: {
3098
+ expressionStr?: string | undefined;
3099
+ expression?: string | undefined;
3100
+ value?: boolean | undefined;
3101
+ fieldValue?: boolean | undefined;
3102
+ strategy?: string | undefined;
3103
+ } | undefined;
3104
+ required?: {
3105
+ expressionStr?: string | undefined;
3106
+ expression?: string | undefined;
3107
+ value?: boolean | undefined;
3108
+ fieldValue?: boolean | undefined;
3109
+ strategy?: string | undefined;
3110
+ } | undefined;
3111
+ assignment?: {
3112
+ expressionStr?: string | undefined;
3113
+ expression?: string | undefined;
3114
+ value?: boolean | undefined;
3115
+ fieldValue?: boolean | undefined;
3116
+ strategy?: string | undefined;
3117
+ } | undefined;
3118
+ };
3119
+ };
3120
+ deviceConnectivity: boolean;
3121
+ };
3122
+ events: import('@gct-paas/schema').IBasicEvents;
3123
+ formItem?: boolean | undefined;
3124
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
3125
+ displayName?: string | undefined;
3126
+ i18n?: Record<string, string> | undefined;
3127
+ isField?: boolean | undefined;
3128
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
3129
+ preLocation?: string | undefined;
3130
+ ignoringStyle?: string[] | undefined;
3131
+ isReadonlyWidget?: boolean | undefined;
3132
+ parentComponent?: import('@gct-paas/core').FormComponents | undefined;
3133
+ dropPlaceholder?: string | undefined;
3134
+ _plugin?: {
3135
+ key: string;
3136
+ version: string;
3137
+ url: string;
3138
+ } | undefined;
3139
+ }[];
3140
+ }>;
3141
+ isGlobalModal: import('vue').ComputedRef<boolean>;
3142
+ subTableInfo: import('vue').ComputedRef<import('@gct-paas/schema').IBasicSchema | null>;
3143
+ setModalDesignState: (flag: boolean, modalId?: string, isGlobal?: boolean) => Promise<void>;
3144
+ setModalInfo: (modal: LowCodeModal.Modal) => void;
3145
+ setSubTableModalDesignState: (flag: boolean, needId?: string) => void;
3146
+ setWfNodesModalDesignState: (flag: boolean, needId?: string) => void;
3147
+ setWorkflowNodesModalDesignState: (flag: boolean, needId?: string) => void;
3148
+ subTableModalState: import('vue').Ref<boolean, boolean>;
3149
+ subTableModalId: import('vue').Ref<string, string>;
3150
+ };