@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
@@ -1,11 +1,6 @@
1
- import { BuiltinType, FormComponents, pageLayoutModeEnum, Platform, SCOPE } from '@gct-paas/core';
2
- import { ComTypeMap, ExportMethod, LowCodeModal, LowCodeWidget, PageJson } from '@gct-paas/schema';
3
- import { ComputedRef } from 'vue';
4
- import { PageDesignerLogResponse } from '@gct-paas/api/apaas';
1
+ import { FormComponents, Platform, SCOPE } from '@gct-paas/core';
2
+ import { LowCodeWidget, PageJson } from '@gct-paas/schema';
5
3
  import { IDesignerController } from '../../interface';
6
- /** 界面数据是否修改过,通过对比快照和当前数据判断 */
7
- export declare const isModified: () => boolean;
8
- export declare const isNewDesigner: import('vue').WritableComputedRef<boolean | undefined, boolean | undefined>;
9
4
  export declare function useDesigner(): {
10
5
  pageJson: {
11
6
  id: string;
@@ -22,6 +17,7 @@ export declare function useDesigner(): {
22
17
  key: string;
23
18
  refId?: string | undefined;
24
19
  scopeId?: string | undefined;
20
+ modalTitle?: string | undefined;
25
21
  }[] | undefined;
26
22
  pageMounted?: {
27
23
  type?: import("@gct-paas/core").EventCategory.JS | undefined;
@@ -33,6 +29,7 @@ export declare function useDesigner(): {
33
29
  key: string;
34
30
  refId?: string | undefined;
35
31
  scopeId?: string | undefined;
32
+ modalTitle?: string | undefined;
36
33
  }[] | undefined;
37
34
  pageDestroyed?: {
38
35
  type?: import("@gct-paas/core").EventCategory.JS | undefined;
@@ -44,9 +41,23 @@ export declare function useDesigner(): {
44
41
  key: string;
45
42
  refId?: string | undefined;
46
43
  scopeId?: string | undefined;
44
+ modalTitle?: string | undefined;
45
+ }[] | undefined;
46
+ pageActivated?: {
47
+ type?: import("@gct-paas/core").EventCategory.JS | undefined;
48
+ name: string;
49
+ extraParams: Record<string, any> | string | number | boolean;
50
+ } | {
51
+ name: import('@gct-paas/core').INNER_EVENT;
52
+ title: string;
53
+ key: string;
54
+ refId?: string | undefined;
55
+ scopeId?: string | undefined;
56
+ modalTitle?: string | undefined;
47
57
  }[] | undefined;
48
58
  };
49
59
  widgets: {
60
+ [x: string]: any;
50
61
  id: string;
51
62
  platform: Platform;
52
63
  categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
@@ -54,7 +65,7 @@ export declare function useDesigner(): {
54
65
  name: string;
55
66
  compName?: string | undefined;
56
67
  compKey?: string | undefined;
57
- type: FormComponents | string;
68
+ type: string | FormComponents;
58
69
  icon: string;
59
70
  children?: any[] | undefined;
60
71
  internal?: boolean | undefined;
@@ -85,7 +96,7 @@ export declare function useDesigner(): {
85
96
  italic: boolean;
86
97
  textDecoration: import('@gct-paas/core').TextDecoration;
87
98
  color: string;
88
- align: "left" | "right";
99
+ align: "left" | "right" | "justify";
89
100
  } | undefined;
90
101
  contentFont?: {
91
102
  fontSize: string;
@@ -93,7 +104,7 @@ export declare function useDesigner(): {
93
104
  italic: boolean;
94
105
  textDecoration: import('@gct-paas/core').TextDecoration;
95
106
  color: string;
96
- align: "left" | "right";
107
+ align: "left" | "right" | "justify";
97
108
  } | undefined;
98
109
  tagStyle?: {
99
110
  color?: string | undefined;
@@ -140,7 +151,7 @@ export declare function useDesigner(): {
140
151
  italic: boolean;
141
152
  textDecoration: import('@gct-paas/core').TextDecoration;
142
153
  color: string;
143
- align: "left" | "right";
154
+ align: "left" | "right" | "justify";
144
155
  };
145
156
  tagStyle: {
146
157
  color?: string | undefined;
@@ -160,6 +171,7 @@ export declare function useDesigner(): {
160
171
  tableheight?: number | undefined;
161
172
  tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
162
173
  enableHeaderBGColor?: boolean | undefined;
174
+ enableBGColor?: boolean | undefined;
163
175
  };
164
176
  props: {
165
177
  [x: string]: any;
@@ -175,33 +187,46 @@ export declare function useDesigner(): {
175
187
  componentDependency: {
176
188
  sortDependency: import('@gct-paas/core').Dependency_ENUM[];
177
189
  configDependency: {
178
- hidden: {
190
+ hidden?: {
191
+ expressionStr?: string | undefined;
179
192
  expression?: string | undefined;
180
193
  value?: boolean | undefined;
181
- };
182
- readonly: {
194
+ fieldValue?: boolean | undefined;
195
+ strategy?: string | undefined;
196
+ } | undefined;
197
+ readonly?: {
198
+ expressionStr?: string | undefined;
183
199
  expression?: string | undefined;
184
200
  value?: boolean | undefined;
185
201
  fieldValue?: boolean | undefined;
186
- };
187
- disabled: {
202
+ strategy?: string | undefined;
203
+ } | undefined;
204
+ disabled?: {
205
+ expressionStr?: string | undefined;
188
206
  expression?: string | undefined;
189
207
  value?: boolean | undefined;
190
- };
191
- required: {
208
+ fieldValue?: boolean | undefined;
209
+ strategy?: string | undefined;
210
+ } | undefined;
211
+ required?: {
212
+ expressionStr?: string | undefined;
192
213
  expression?: string | undefined;
193
214
  value?: boolean | undefined;
194
215
  fieldValue?: boolean | undefined;
195
- };
196
- assignment: {
216
+ strategy?: string | undefined;
217
+ } | undefined;
218
+ assignment?: {
219
+ expressionStr?: string | undefined;
197
220
  expression?: string | undefined;
198
- strategy?: import('@gct-paas/core').ASSIGNMENTSTRATEGY_ENUM | undefined;
199
221
  value?: boolean | undefined;
200
- };
222
+ fieldValue?: boolean | undefined;
223
+ strategy?: string | undefined;
224
+ } | undefined;
201
225
  };
202
226
  };
227
+ deviceConnectivity: boolean;
203
228
  };
204
- events: import('node_modules/@gct-paas/schema/es/interface/widget/i-events').IBasicEvents;
229
+ events: import('@gct-paas/schema').IBasicEvents;
205
230
  formItem?: boolean | undefined;
206
231
  display?: import('@gct-paas/core').DisplayEnums | undefined;
207
232
  displayName?: string | undefined;
@@ -229,13 +254,14 @@ export declare function useDesigner(): {
229
254
  modalName: string;
230
255
  compName?: string | undefined;
231
256
  compKey?: string | undefined;
232
- type: BuiltinType.MODAL;
257
+ type: import("@gct-paas/core").BuiltinType.MODAL;
233
258
  js: string;
234
259
  css: string;
235
260
  children: [{
236
261
  id: string;
237
- type: BuiltinType.MODAL_BODY;
262
+ type: import("@gct-paas/core").BuiltinType.MODAL_BODY | string;
238
263
  children: {
264
+ [x: string]: any;
239
265
  id: string;
240
266
  platform: Platform;
241
267
  categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
@@ -243,7 +269,7 @@ export declare function useDesigner(): {
243
269
  name: string;
244
270
  compName?: string | undefined;
245
271
  compKey?: string | undefined;
246
- type: FormComponents | string;
272
+ type: string | FormComponents;
247
273
  icon: string;
248
274
  children?: any[] | undefined;
249
275
  internal?: boolean | undefined;
@@ -274,7 +300,7 @@ export declare function useDesigner(): {
274
300
  italic: boolean;
275
301
  textDecoration: import('@gct-paas/core').TextDecoration;
276
302
  color: string;
277
- align: "left" | "right";
303
+ align: "left" | "right" | "justify";
278
304
  } | undefined;
279
305
  contentFont?: {
280
306
  fontSize: string;
@@ -282,7 +308,7 @@ export declare function useDesigner(): {
282
308
  italic: boolean;
283
309
  textDecoration: import('@gct-paas/core').TextDecoration;
284
310
  color: string;
285
- align: "left" | "right";
311
+ align: "left" | "right" | "justify";
286
312
  } | undefined;
287
313
  tagStyle?: {
288
314
  color?: string | undefined;
@@ -329,7 +355,7 @@ export declare function useDesigner(): {
329
355
  italic: boolean;
330
356
  textDecoration: import('@gct-paas/core').TextDecoration;
331
357
  color: string;
332
- align: "left" | "right";
358
+ align: "left" | "right" | "justify";
333
359
  };
334
360
  tagStyle: {
335
361
  color?: string | undefined;
@@ -349,6 +375,7 @@ export declare function useDesigner(): {
349
375
  tableheight?: number | undefined;
350
376
  tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
351
377
  enableHeaderBGColor?: boolean | undefined;
378
+ enableBGColor?: boolean | undefined;
352
379
  };
353
380
  props: {
354
381
  [x: string]: any;
@@ -364,33 +391,46 @@ export declare function useDesigner(): {
364
391
  componentDependency: {
365
392
  sortDependency: import('@gct-paas/core').Dependency_ENUM[];
366
393
  configDependency: {
367
- hidden: {
394
+ hidden?: {
395
+ expressionStr?: string | undefined;
368
396
  expression?: string | undefined;
369
397
  value?: boolean | undefined;
370
- };
371
- readonly: {
398
+ fieldValue?: boolean | undefined;
399
+ strategy?: string | undefined;
400
+ } | undefined;
401
+ readonly?: {
402
+ expressionStr?: string | undefined;
372
403
  expression?: string | undefined;
373
404
  value?: boolean | undefined;
374
405
  fieldValue?: boolean | undefined;
375
- };
376
- disabled: {
406
+ strategy?: string | undefined;
407
+ } | undefined;
408
+ disabled?: {
409
+ expressionStr?: string | undefined;
377
410
  expression?: string | undefined;
378
411
  value?: boolean | undefined;
379
- };
380
- required: {
412
+ fieldValue?: boolean | undefined;
413
+ strategy?: string | undefined;
414
+ } | undefined;
415
+ required?: {
416
+ expressionStr?: string | undefined;
381
417
  expression?: string | undefined;
382
418
  value?: boolean | undefined;
383
419
  fieldValue?: boolean | undefined;
384
- };
385
- assignment: {
420
+ strategy?: string | undefined;
421
+ } | undefined;
422
+ assignment?: {
423
+ expressionStr?: string | undefined;
386
424
  expression?: string | undefined;
387
- strategy?: import('@gct-paas/core').ASSIGNMENTSTRATEGY_ENUM | undefined;
388
425
  value?: boolean | undefined;
389
- };
426
+ fieldValue?: boolean | undefined;
427
+ strategy?: string | undefined;
428
+ } | undefined;
390
429
  };
391
430
  };
431
+ deviceConnectivity: boolean;
392
432
  };
393
- events: import('node_modules/@gct-paas/schema/es/interface/widget/i-events').IBasicEvents;
433
+ events: import('@gct-paas/schema').IBasicEvents;
394
434
  formItem?: boolean | undefined;
395
435
  display?: import('@gct-paas/core').DisplayEnums | undefined;
396
436
  displayName?: string | undefined;
@@ -410,8 +450,9 @@ export declare function useDesigner(): {
410
450
  }[];
411
451
  }, {
412
452
  id: string;
413
- type: BuiltinType.MODAL_FOOTER;
453
+ type: import("@gct-paas/core").BuiltinType.MODAL_FOOTER;
414
454
  children: {
455
+ [x: string]: any;
415
456
  id: string;
416
457
  platform: Platform;
417
458
  categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
@@ -419,7 +460,7 @@ export declare function useDesigner(): {
419
460
  name: string;
420
461
  compName?: string | undefined;
421
462
  compKey?: string | undefined;
422
- type: FormComponents | string;
463
+ type: string | FormComponents;
423
464
  icon: string;
424
465
  children?: any[] | undefined;
425
466
  internal?: boolean | undefined;
@@ -450,7 +491,7 @@ export declare function useDesigner(): {
450
491
  italic: boolean;
451
492
  textDecoration: import('@gct-paas/core').TextDecoration;
452
493
  color: string;
453
- align: "left" | "right";
494
+ align: "left" | "right" | "justify";
454
495
  } | undefined;
455
496
  contentFont?: {
456
497
  fontSize: string;
@@ -458,7 +499,7 @@ export declare function useDesigner(): {
458
499
  italic: boolean;
459
500
  textDecoration: import('@gct-paas/core').TextDecoration;
460
501
  color: string;
461
- align: "left" | "right";
502
+ align: "left" | "right" | "justify";
462
503
  } | undefined;
463
504
  tagStyle?: {
464
505
  color?: string | undefined;
@@ -505,7 +546,7 @@ export declare function useDesigner(): {
505
546
  italic: boolean;
506
547
  textDecoration: import('@gct-paas/core').TextDecoration;
507
548
  color: string;
508
- align: "left" | "right";
549
+ align: "left" | "right" | "justify";
509
550
  };
510
551
  tagStyle: {
511
552
  color?: string | undefined;
@@ -525,6 +566,7 @@ export declare function useDesigner(): {
525
566
  tableheight?: number | undefined;
526
567
  tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
527
568
  enableHeaderBGColor?: boolean | undefined;
569
+ enableBGColor?: boolean | undefined;
528
570
  };
529
571
  props: {
530
572
  [x: string]: any;
@@ -540,33 +582,46 @@ export declare function useDesigner(): {
540
582
  componentDependency: {
541
583
  sortDependency: import('@gct-paas/core').Dependency_ENUM[];
542
584
  configDependency: {
543
- hidden: {
585
+ hidden?: {
586
+ expressionStr?: string | undefined;
544
587
  expression?: string | undefined;
545
588
  value?: boolean | undefined;
546
- };
547
- readonly: {
589
+ fieldValue?: boolean | undefined;
590
+ strategy?: string | undefined;
591
+ } | undefined;
592
+ readonly?: {
593
+ expressionStr?: string | undefined;
548
594
  expression?: string | undefined;
549
595
  value?: boolean | undefined;
550
596
  fieldValue?: boolean | undefined;
551
- };
552
- disabled: {
597
+ strategy?: string | undefined;
598
+ } | undefined;
599
+ disabled?: {
600
+ expressionStr?: string | undefined;
553
601
  expression?: string | undefined;
554
602
  value?: boolean | undefined;
555
- };
556
- required: {
603
+ fieldValue?: boolean | undefined;
604
+ strategy?: string | undefined;
605
+ } | undefined;
606
+ required?: {
607
+ expressionStr?: string | undefined;
557
608
  expression?: string | undefined;
558
609
  value?: boolean | undefined;
559
610
  fieldValue?: boolean | undefined;
560
- };
561
- assignment: {
611
+ strategy?: string | undefined;
612
+ } | undefined;
613
+ assignment?: {
614
+ expressionStr?: string | undefined;
562
615
  expression?: string | undefined;
563
- strategy?: import('@gct-paas/core').ASSIGNMENTSTRATEGY_ENUM | undefined;
564
616
  value?: boolean | undefined;
565
- };
617
+ fieldValue?: boolean | undefined;
618
+ strategy?: string | undefined;
619
+ } | undefined;
566
620
  };
567
621
  };
622
+ deviceConnectivity: boolean;
568
623
  };
569
- events: import('node_modules/@gct-paas/schema/es/interface/widget/i-events').IBasicEvents;
624
+ events: import('@gct-paas/schema').IBasicEvents;
570
625
  formItem?: boolean | undefined;
571
626
  display?: import('@gct-paas/core').DisplayEnums | undefined;
572
627
  displayName?: string | undefined;
@@ -584,10 +639,11 @@ export declare function useDesigner(): {
584
639
  url: string;
585
640
  } | undefined;
586
641
  }[];
587
- }, {
642
+ }, ({
588
643
  id: string;
589
- type: BuiltinType.BottomButtonContainer;
644
+ type: import("@gct-paas/core").BuiltinType.BottomButtonContainer;
590
645
  children: {
646
+ [x: string]: any;
591
647
  id: string;
592
648
  platform: Platform;
593
649
  categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
@@ -595,7 +651,7 @@ export declare function useDesigner(): {
595
651
  name: string;
596
652
  compName?: string | undefined;
597
653
  compKey?: string | undefined;
598
- type: FormComponents | string;
654
+ type: string | FormComponents;
599
655
  icon: string;
600
656
  children?: any[] | undefined;
601
657
  internal?: boolean | undefined;
@@ -626,7 +682,7 @@ export declare function useDesigner(): {
626
682
  italic: boolean;
627
683
  textDecoration: import('@gct-paas/core').TextDecoration;
628
684
  color: string;
629
- align: "left" | "right";
685
+ align: "left" | "right" | "justify";
630
686
  } | undefined;
631
687
  contentFont?: {
632
688
  fontSize: string;
@@ -634,7 +690,7 @@ export declare function useDesigner(): {
634
690
  italic: boolean;
635
691
  textDecoration: import('@gct-paas/core').TextDecoration;
636
692
  color: string;
637
- align: "left" | "right";
693
+ align: "left" | "right" | "justify";
638
694
  } | undefined;
639
695
  tagStyle?: {
640
696
  color?: string | undefined;
@@ -681,7 +737,7 @@ export declare function useDesigner(): {
681
737
  italic: boolean;
682
738
  textDecoration: import('@gct-paas/core').TextDecoration;
683
739
  color: string;
684
- align: "left" | "right";
740
+ align: "left" | "right" | "justify";
685
741
  };
686
742
  tagStyle: {
687
743
  color?: string | undefined;
@@ -701,6 +757,7 @@ export declare function useDesigner(): {
701
757
  tableheight?: number | undefined;
702
758
  tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
703
759
  enableHeaderBGColor?: boolean | undefined;
760
+ enableBGColor?: boolean | undefined;
704
761
  };
705
762
  props: {
706
763
  [x: string]: any;
@@ -716,33 +773,46 @@ export declare function useDesigner(): {
716
773
  componentDependency: {
717
774
  sortDependency: import('@gct-paas/core').Dependency_ENUM[];
718
775
  configDependency: {
719
- hidden: {
776
+ hidden?: {
777
+ expressionStr?: string | undefined;
720
778
  expression?: string | undefined;
721
779
  value?: boolean | undefined;
722
- };
723
- readonly: {
780
+ fieldValue?: boolean | undefined;
781
+ strategy?: string | undefined;
782
+ } | undefined;
783
+ readonly?: {
784
+ expressionStr?: string | undefined;
724
785
  expression?: string | undefined;
725
786
  value?: boolean | undefined;
726
787
  fieldValue?: boolean | undefined;
727
- };
728
- disabled: {
788
+ strategy?: string | undefined;
789
+ } | undefined;
790
+ disabled?: {
791
+ expressionStr?: string | undefined;
729
792
  expression?: string | undefined;
730
793
  value?: boolean | undefined;
731
- };
732
- required: {
794
+ fieldValue?: boolean | undefined;
795
+ strategy?: string | undefined;
796
+ } | undefined;
797
+ required?: {
798
+ expressionStr?: string | undefined;
733
799
  expression?: string | undefined;
734
800
  value?: boolean | undefined;
735
801
  fieldValue?: boolean | undefined;
736
- };
737
- assignment: {
802
+ strategy?: string | undefined;
803
+ } | undefined;
804
+ assignment?: {
805
+ expressionStr?: string | undefined;
738
806
  expression?: string | undefined;
739
- strategy?: import('@gct-paas/core').ASSIGNMENTSTRATEGY_ENUM | undefined;
740
807
  value?: boolean | undefined;
741
- };
808
+ fieldValue?: boolean | undefined;
809
+ strategy?: string | undefined;
810
+ } | undefined;
742
811
  };
743
812
  };
813
+ deviceConnectivity: boolean;
744
814
  };
745
- events: import('node_modules/@gct-paas/schema/es/interface/widget/i-events').IBasicEvents;
815
+ events: import('@gct-paas/schema').IBasicEvents;
746
816
  formItem?: boolean | undefined;
747
817
  display?: import('@gct-paas/core').DisplayEnums | undefined;
748
818
  displayName?: string | undefined;
@@ -760,7 +830,7 @@ export declare function useDesigner(): {
760
830
  url: string;
761
831
  } | undefined;
762
832
  }[];
763
- }];
833
+ } | undefined)?];
764
834
  props: {
765
835
  [x: string]: any;
766
836
  modalTitle?: string | undefined;
@@ -801,7 +871,7 @@ export declare function useDesigner(): {
801
871
  italic: boolean;
802
872
  textDecoration: import('@gct-paas/core').TextDecoration;
803
873
  color: string;
804
- align: "left" | "right";
874
+ align: "left" | "right" | "justify";
805
875
  } | undefined;
806
876
  contentFont?: {
807
877
  fontSize: string;
@@ -809,7 +879,7 @@ export declare function useDesigner(): {
809
879
  italic: boolean;
810
880
  textDecoration: import('@gct-paas/core').TextDecoration;
811
881
  color: string;
812
- align: "left" | "right";
882
+ align: "left" | "right" | "justify";
813
883
  } | undefined;
814
884
  tagStyle?: {
815
885
  color?: string | undefined;
@@ -856,7 +926,7 @@ export declare function useDesigner(): {
856
926
  italic: boolean;
857
927
  textDecoration: import('@gct-paas/core').TextDecoration;
858
928
  color: string;
859
- align: "left" | "right";
929
+ align: "left" | "right" | "justify";
860
930
  };
861
931
  tagStyle: {
862
932
  color?: string | undefined;
@@ -876,6 +946,7 @@ export declare function useDesigner(): {
876
946
  tableheight?: number | undefined;
877
947
  tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
878
948
  enableHeaderBGColor?: boolean | undefined;
949
+ enableBGColor?: boolean | undefined;
879
950
  };
880
951
  runJs?: string | undefined;
881
952
  los?: Record<string, IData> | undefined;
@@ -883,7 +954,6 @@ export declare function useDesigner(): {
883
954
  isField: boolean;
884
955
  }[];
885
956
  timestamp?: number | undefined;
886
- newDesigner?: boolean | undefined;
887
957
  globalEvents: {
888
958
  pageMounted?: string | undefined;
889
959
  pageDestroyed?: string | undefined;
@@ -915,7 +985,7 @@ export declare function useDesigner(): {
915
985
  italic: boolean;
916
986
  textDecoration: import('@gct-paas/core').TextDecoration;
917
987
  color: string;
918
- align: "left" | "right";
988
+ align: "left" | "right" | "justify";
919
989
  } | undefined;
920
990
  contentFont?: {
921
991
  fontSize: string;
@@ -923,7 +993,7 @@ export declare function useDesigner(): {
923
993
  italic: boolean;
924
994
  textDecoration: import('@gct-paas/core').TextDecoration;
925
995
  color: string;
926
- align: "left" | "right";
996
+ align: "left" | "right" | "justify";
927
997
  } | undefined;
928
998
  tagStyle?: {
929
999
  color?: string | undefined;
@@ -970,7 +1040,7 @@ export declare function useDesigner(): {
970
1040
  italic: boolean;
971
1041
  textDecoration: import('@gct-paas/core').TextDecoration;
972
1042
  color: string;
973
- align: "left" | "right";
1043
+ align: "left" | "right" | "justify";
974
1044
  };
975
1045
  tagStyle: {
976
1046
  color?: string | undefined;
@@ -990,6 +1060,7 @@ export declare function useDesigner(): {
990
1060
  tableheight?: number | undefined;
991
1061
  tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
992
1062
  enableHeaderBGColor?: boolean | undefined;
1063
+ enableBGColor?: boolean | undefined;
993
1064
  };
994
1065
  pageConfig: {
995
1066
  title?: string | undefined;
@@ -1002,6 +1073,7 @@ export declare function useDesigner(): {
1002
1073
  pageVars: {
1003
1074
  id: string;
1004
1075
  key: string;
1076
+ type?: string | undefined;
1005
1077
  varInfo: {
1006
1078
  key: string;
1007
1079
  type: import('@gct-paas/core').GLOBAL_VAR_TYPE;
@@ -1009,75 +1081,44 @@ export declare function useDesigner(): {
1009
1081
  description: string;
1010
1082
  };
1011
1083
  }[];
1012
- pageLayoutMode?: pageLayoutModeEnum | undefined;
1084
+ pageLayoutMode?: import('@gct-paas/core').pageLayoutModeEnum | undefined;
1013
1085
  plugins: {
1014
1086
  key: string;
1015
1087
  version: string;
1016
1088
  url: string;
1017
1089
  }[];
1018
1090
  };
1091
+ methodMap: import('vue').Ref<import('@gct-paas/schema').ExportMethod, import('@gct-paas/schema').ExportMethod>;
1019
1092
  checkWidgetMove: () => boolean;
1020
1093
  handleAddDrag: (newIndex: number, childrenList: LowCodeWidget.BasicSchema[], scope: SCOPE, formID?: string) => void;
1021
- pageDesignHistoryList: import('vue').Ref<{
1022
- createTime?: string | undefined;
1023
- createUserId?: string | undefined;
1024
- createUserName?: string | undefined;
1025
- designerJson?: string | undefined;
1026
- id?: string | undefined;
1027
- modifyTime?: string | undefined;
1028
- modifyUserId?: string | undefined;
1029
- modifyUserName?: string | undefined;
1030
- name?: string | undefined;
1031
- operatorInfo?: string | undefined;
1032
- relationId?: string | undefined;
1033
- relationType?: number | undefined;
1034
- runtimeJson?: string | undefined;
1035
- }[], PageDesignerLogResponse[] | {
1036
- createTime?: string | undefined;
1037
- createUserId?: string | undefined;
1038
- createUserName?: string | undefined;
1039
- designerJson?: string | undefined;
1040
- id?: string | undefined;
1041
- modifyTime?: string | undefined;
1042
- modifyUserId?: string | undefined;
1043
- modifyUserName?: string | undefined;
1044
- name?: string | undefined;
1045
- operatorInfo?: string | undefined;
1046
- relationId?: string | undefined;
1047
- relationType?: number | undefined;
1048
- runtimeJson?: string | undefined;
1049
- }[]>;
1050
- loadPageDesignHistoryList: () => Promise<void>;
1051
- loadPageDesignHistoryInfo: (id: string) => Promise<PageDesignerLogResponse>;
1094
+ setPageJson: (json: PageJson) => Promise<void>;
1095
+ save: (flag?: boolean, showSuccess?: boolean) => Promise<boolean>;
1096
+ savePageJsonSnapshot: (json?: PageJson) => void;
1097
+ emitCache: () => void;
1098
+ undoOrRestore: (content: string) => void;
1099
+ preview: import('@vueuse/core').UseDebounceFnReturn<() => void>;
1100
+ previewSandbox: import('@vueuse/core').UseDebounceFnReturn<() => void>;
1101
+ sandboxList: import('vue').Ref<any, any>;
1102
+ getDataList: () => Promise<void>;
1052
1103
  historyPreview: (hid: string) => {
1053
1104
  url: string;
1054
- platform: Platform.MOBILE;
1055
- } | {
1056
- url: string;
1057
- platform: Platform.PAD;
1058
- } | {
1059
- url: string;
1060
- platform: Platform.WEB;
1105
+ platform: Platform;
1061
1106
  };
1107
+ pageDesignHistoryList: import('vue').Ref<import('@gct-paas/api/apaas').PageDesignerLogResponse[], import('@gct-paas/api/apaas').PageDesignerLogResponse[]>;
1108
+ loadPageDesignHistoryList: () => Promise<void>;
1109
+ loadPageDesignHistoryInfo: (id: string) => Promise<import('@gct-paas/api/apaas').PageDesignerLogResponse | undefined | null>;
1062
1110
  recover: (hid: string) => Promise<void>;
1063
- setPageJson: (json: PageJson) => void;
1064
- save: (_flag?: boolean, showSuccess?: boolean) => Promise<boolean>;
1065
- preview: import('@vueuse/core').UseDebounceFnReturn<() => void>;
1066
- previewSandbox: import('@vueuse/core').UseDebounceFnReturn<() => void>;
1067
- getDataList: () => Promise<void>;
1068
- sandboxList: import('vue').Ref<any, any>;
1069
- methodMap: import('vue').Ref<ExportMethod, ExportMethod>;
1070
- emitCache: () => void;
1071
- undoOrRestore: (content: string) => void;
1072
- allWidget: ComputedRef<import('node_modules/@gct-paas/schema/es/interface/widget/i-schemas').IBasicSchema[]>;
1073
- allFormWidget: ComputedRef<import('node_modules/@gct-paas/schema/es/interface/widget/i-schemas').IBasicSchema[]>;
1074
- excludeSubTableFormWidget: ComputedRef<import('node_modules/@gct-paas/schema/es/interface/widget/i-schemas').IBasicSchema[]>;
1075
- allSubTableWidget: ComputedRef<import('node_modules/@gct-paas/schema/es/interface/widget/i-schemas').IBasicSchema[]>;
1076
- allListWidget: ComputedRef<import('node_modules/@gct-paas/schema/es/interface/widget/i-schemas').IBasicSchema[]>;
1077
- allTableWidget: ComputedRef<import('node_modules/@gct-paas/schema/es/interface/widget/i-schemas').IBasicSchema[]>;
1078
- allDeptWidget: ComputedRef<import('node_modules/@gct-paas/schema/es/interface/widget/i-schemas').IBasicSchema[]>;
1079
- allRefSelectWidget: ComputedRef<import('node_modules/@gct-paas/schema/es/interface/widget/i-schemas').IBasicSchema[]>;
1080
- getWidgetByScope: <K extends keyof ComTypeMap>(type: K) => ComTypeMap[K][];
1111
+ deleteHistory: (hid: string) => void;
1112
+ loading: import('vue').Ref<boolean, boolean>;
1113
+ allWidget: import('vue').ComputedRef<import('@gct-paas/schema').IBasicSchema[]>;
1114
+ allFormWidget: import('vue').ComputedRef<import('@gct-paas/schema').IBasicSchema[]>;
1115
+ excludeSubTableFormWidget: import('vue').ComputedRef<import('@gct-paas/schema').IBasicSchema[]>;
1116
+ allSubTableWidget: import('vue').ComputedRef<import('@gct-paas/schema').IBasicSchema[]>;
1117
+ allListWidget: import('vue').ComputedRef<import('@gct-paas/schema').IBasicSchema[]>;
1118
+ allTableWidget: import('vue').ComputedRef<import('@gct-paas/schema').IBasicSchema[]>;
1119
+ allDeptWidget: import('vue').ComputedRef<import('@gct-paas/schema').IBasicSchema[]>;
1120
+ allRefSelectWidget: import('vue').ComputedRef<import('@gct-paas/schema').IBasicSchema[]>;
1121
+ getWidgetByScope: <K extends keyof import('@gct-paas/schema').ComTypeMap>(type: K) => import('@gct-paas/schema').ComTypeMap[K][];
1081
1122
  modalInfo: import('vue').Ref<{
1082
1123
  id: string;
1083
1124
  alias: string;
@@ -1086,13 +1127,14 @@ export declare function useDesigner(): {
1086
1127
  modalName: string;
1087
1128
  compName?: string | undefined;
1088
1129
  compKey?: string | undefined;
1089
- type: BuiltinType.MODAL;
1130
+ type: import("@gct-paas/core").BuiltinType.MODAL;
1090
1131
  js: string;
1091
1132
  css: string;
1092
1133
  children: [{
1093
1134
  id: string;
1094
- type: BuiltinType.MODAL_BODY;
1135
+ type: import("@gct-paas/core").BuiltinType.MODAL_BODY | string;
1095
1136
  children: {
1137
+ [x: string]: any;
1096
1138
  id: string;
1097
1139
  platform: Platform;
1098
1140
  categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
@@ -1100,7 +1142,7 @@ export declare function useDesigner(): {
1100
1142
  name: string;
1101
1143
  compName?: string | undefined;
1102
1144
  compKey?: string | undefined;
1103
- type: FormComponents | string;
1145
+ type: string | FormComponents;
1104
1146
  icon: string;
1105
1147
  children?: any[] | undefined;
1106
1148
  internal?: boolean | undefined;
@@ -1131,7 +1173,7 @@ export declare function useDesigner(): {
1131
1173
  italic: boolean;
1132
1174
  textDecoration: import('@gct-paas/core').TextDecoration;
1133
1175
  color: string;
1134
- align: "left" | "right";
1176
+ align: "left" | "right" | "justify";
1135
1177
  } | undefined;
1136
1178
  contentFont?: {
1137
1179
  fontSize: string;
@@ -1139,7 +1181,7 @@ export declare function useDesigner(): {
1139
1181
  italic: boolean;
1140
1182
  textDecoration: import('@gct-paas/core').TextDecoration;
1141
1183
  color: string;
1142
- align: "left" | "right";
1184
+ align: "left" | "right" | "justify";
1143
1185
  } | undefined;
1144
1186
  tagStyle?: {
1145
1187
  color?: string | undefined;
@@ -1186,7 +1228,7 @@ export declare function useDesigner(): {
1186
1228
  italic: boolean;
1187
1229
  textDecoration: import('@gct-paas/core').TextDecoration;
1188
1230
  color: string;
1189
- align: "left" | "right";
1231
+ align: "left" | "right" | "justify";
1190
1232
  };
1191
1233
  tagStyle: {
1192
1234
  color?: string | undefined;
@@ -1206,6 +1248,7 @@ export declare function useDesigner(): {
1206
1248
  tableheight?: number | undefined;
1207
1249
  tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
1208
1250
  enableHeaderBGColor?: boolean | undefined;
1251
+ enableBGColor?: boolean | undefined;
1209
1252
  };
1210
1253
  props: {
1211
1254
  [x: string]: any;
@@ -1221,33 +1264,46 @@ export declare function useDesigner(): {
1221
1264
  componentDependency: {
1222
1265
  sortDependency: import('@gct-paas/core').Dependency_ENUM[];
1223
1266
  configDependency: {
1224
- hidden: {
1267
+ hidden?: {
1268
+ expressionStr?: string | undefined;
1225
1269
  expression?: string | undefined;
1226
1270
  value?: boolean | undefined;
1227
- };
1228
- readonly: {
1271
+ fieldValue?: boolean | undefined;
1272
+ strategy?: string | undefined;
1273
+ } | undefined;
1274
+ readonly?: {
1275
+ expressionStr?: string | undefined;
1229
1276
  expression?: string | undefined;
1230
1277
  value?: boolean | undefined;
1231
1278
  fieldValue?: boolean | undefined;
1232
- };
1233
- disabled: {
1279
+ strategy?: string | undefined;
1280
+ } | undefined;
1281
+ disabled?: {
1282
+ expressionStr?: string | undefined;
1234
1283
  expression?: string | undefined;
1235
1284
  value?: boolean | undefined;
1236
- };
1237
- required: {
1285
+ fieldValue?: boolean | undefined;
1286
+ strategy?: string | undefined;
1287
+ } | undefined;
1288
+ required?: {
1289
+ expressionStr?: string | undefined;
1238
1290
  expression?: string | undefined;
1239
1291
  value?: boolean | undefined;
1240
1292
  fieldValue?: boolean | undefined;
1241
- };
1242
- assignment: {
1293
+ strategy?: string | undefined;
1294
+ } | undefined;
1295
+ assignment?: {
1296
+ expressionStr?: string | undefined;
1243
1297
  expression?: string | undefined;
1244
- strategy?: import('@gct-paas/core').ASSIGNMENTSTRATEGY_ENUM | undefined;
1245
1298
  value?: boolean | undefined;
1246
- };
1299
+ fieldValue?: boolean | undefined;
1300
+ strategy?: string | undefined;
1301
+ } | undefined;
1247
1302
  };
1248
1303
  };
1304
+ deviceConnectivity: boolean;
1249
1305
  };
1250
- events: import('node_modules/@gct-paas/schema/es/interface/widget/i-events').IBasicEvents;
1306
+ events: import('@gct-paas/schema').IBasicEvents;
1251
1307
  formItem?: boolean | undefined;
1252
1308
  display?: import('@gct-paas/core').DisplayEnums | undefined;
1253
1309
  displayName?: string | undefined;
@@ -1267,8 +1323,9 @@ export declare function useDesigner(): {
1267
1323
  }[];
1268
1324
  }, {
1269
1325
  id: string;
1270
- type: BuiltinType.MODAL_FOOTER;
1326
+ type: import("@gct-paas/core").BuiltinType.MODAL_FOOTER;
1271
1327
  children: {
1328
+ [x: string]: any;
1272
1329
  id: string;
1273
1330
  platform: Platform;
1274
1331
  categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
@@ -1276,7 +1333,7 @@ export declare function useDesigner(): {
1276
1333
  name: string;
1277
1334
  compName?: string | undefined;
1278
1335
  compKey?: string | undefined;
1279
- type: FormComponents | string;
1336
+ type: string | FormComponents;
1280
1337
  icon: string;
1281
1338
  children?: any[] | undefined;
1282
1339
  internal?: boolean | undefined;
@@ -1307,7 +1364,7 @@ export declare function useDesigner(): {
1307
1364
  italic: boolean;
1308
1365
  textDecoration: import('@gct-paas/core').TextDecoration;
1309
1366
  color: string;
1310
- align: "left" | "right";
1367
+ align: "left" | "right" | "justify";
1311
1368
  } | undefined;
1312
1369
  contentFont?: {
1313
1370
  fontSize: string;
@@ -1315,7 +1372,7 @@ export declare function useDesigner(): {
1315
1372
  italic: boolean;
1316
1373
  textDecoration: import('@gct-paas/core').TextDecoration;
1317
1374
  color: string;
1318
- align: "left" | "right";
1375
+ align: "left" | "right" | "justify";
1319
1376
  } | undefined;
1320
1377
  tagStyle?: {
1321
1378
  color?: string | undefined;
@@ -1362,7 +1419,7 @@ export declare function useDesigner(): {
1362
1419
  italic: boolean;
1363
1420
  textDecoration: import('@gct-paas/core').TextDecoration;
1364
1421
  color: string;
1365
- align: "left" | "right";
1422
+ align: "left" | "right" | "justify";
1366
1423
  };
1367
1424
  tagStyle: {
1368
1425
  color?: string | undefined;
@@ -1382,6 +1439,7 @@ export declare function useDesigner(): {
1382
1439
  tableheight?: number | undefined;
1383
1440
  tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
1384
1441
  enableHeaderBGColor?: boolean | undefined;
1442
+ enableBGColor?: boolean | undefined;
1385
1443
  };
1386
1444
  props: {
1387
1445
  [x: string]: any;
@@ -1397,33 +1455,46 @@ export declare function useDesigner(): {
1397
1455
  componentDependency: {
1398
1456
  sortDependency: import('@gct-paas/core').Dependency_ENUM[];
1399
1457
  configDependency: {
1400
- hidden: {
1458
+ hidden?: {
1459
+ expressionStr?: string | undefined;
1401
1460
  expression?: string | undefined;
1402
1461
  value?: boolean | undefined;
1403
- };
1404
- readonly: {
1462
+ fieldValue?: boolean | undefined;
1463
+ strategy?: string | undefined;
1464
+ } | undefined;
1465
+ readonly?: {
1466
+ expressionStr?: string | undefined;
1405
1467
  expression?: string | undefined;
1406
1468
  value?: boolean | undefined;
1407
1469
  fieldValue?: boolean | undefined;
1408
- };
1409
- disabled: {
1470
+ strategy?: string | undefined;
1471
+ } | undefined;
1472
+ disabled?: {
1473
+ expressionStr?: string | undefined;
1410
1474
  expression?: string | undefined;
1411
1475
  value?: boolean | undefined;
1412
- };
1413
- required: {
1476
+ fieldValue?: boolean | undefined;
1477
+ strategy?: string | undefined;
1478
+ } | undefined;
1479
+ required?: {
1480
+ expressionStr?: string | undefined;
1414
1481
  expression?: string | undefined;
1415
1482
  value?: boolean | undefined;
1416
1483
  fieldValue?: boolean | undefined;
1417
- };
1418
- assignment: {
1484
+ strategy?: string | undefined;
1485
+ } | undefined;
1486
+ assignment?: {
1487
+ expressionStr?: string | undefined;
1419
1488
  expression?: string | undefined;
1420
- strategy?: import('@gct-paas/core').ASSIGNMENTSTRATEGY_ENUM | undefined;
1421
1489
  value?: boolean | undefined;
1422
- };
1490
+ fieldValue?: boolean | undefined;
1491
+ strategy?: string | undefined;
1492
+ } | undefined;
1423
1493
  };
1424
1494
  };
1495
+ deviceConnectivity: boolean;
1425
1496
  };
1426
- events: import('node_modules/@gct-paas/schema/es/interface/widget/i-events').IBasicEvents;
1497
+ events: import('@gct-paas/schema').IBasicEvents;
1427
1498
  formItem?: boolean | undefined;
1428
1499
  display?: import('@gct-paas/core').DisplayEnums | undefined;
1429
1500
  displayName?: string | undefined;
@@ -1441,10 +1512,11 @@ export declare function useDesigner(): {
1441
1512
  url: string;
1442
1513
  } | undefined;
1443
1514
  }[];
1444
- }, {
1515
+ }, ({
1445
1516
  id: string;
1446
- type: BuiltinType.BottomButtonContainer;
1517
+ type: import("@gct-paas/core").BuiltinType.BottomButtonContainer;
1447
1518
  children: {
1519
+ [x: string]: any;
1448
1520
  id: string;
1449
1521
  platform: Platform;
1450
1522
  categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
@@ -1452,7 +1524,7 @@ export declare function useDesigner(): {
1452
1524
  name: string;
1453
1525
  compName?: string | undefined;
1454
1526
  compKey?: string | undefined;
1455
- type: FormComponents | string;
1527
+ type: string | FormComponents;
1456
1528
  icon: string;
1457
1529
  children?: any[] | undefined;
1458
1530
  internal?: boolean | undefined;
@@ -1483,7 +1555,7 @@ export declare function useDesigner(): {
1483
1555
  italic: boolean;
1484
1556
  textDecoration: import('@gct-paas/core').TextDecoration;
1485
1557
  color: string;
1486
- align: "left" | "right";
1558
+ align: "left" | "right" | "justify";
1487
1559
  } | undefined;
1488
1560
  contentFont?: {
1489
1561
  fontSize: string;
@@ -1491,7 +1563,7 @@ export declare function useDesigner(): {
1491
1563
  italic: boolean;
1492
1564
  textDecoration: import('@gct-paas/core').TextDecoration;
1493
1565
  color: string;
1494
- align: "left" | "right";
1566
+ align: "left" | "right" | "justify";
1495
1567
  } | undefined;
1496
1568
  tagStyle?: {
1497
1569
  color?: string | undefined;
@@ -1538,7 +1610,7 @@ export declare function useDesigner(): {
1538
1610
  italic: boolean;
1539
1611
  textDecoration: import('@gct-paas/core').TextDecoration;
1540
1612
  color: string;
1541
- align: "left" | "right";
1613
+ align: "left" | "right" | "justify";
1542
1614
  };
1543
1615
  tagStyle: {
1544
1616
  color?: string | undefined;
@@ -1558,6 +1630,7 @@ export declare function useDesigner(): {
1558
1630
  tableheight?: number | undefined;
1559
1631
  tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
1560
1632
  enableHeaderBGColor?: boolean | undefined;
1633
+ enableBGColor?: boolean | undefined;
1561
1634
  };
1562
1635
  props: {
1563
1636
  [x: string]: any;
@@ -1573,33 +1646,46 @@ export declare function useDesigner(): {
1573
1646
  componentDependency: {
1574
1647
  sortDependency: import('@gct-paas/core').Dependency_ENUM[];
1575
1648
  configDependency: {
1576
- hidden: {
1649
+ hidden?: {
1650
+ expressionStr?: string | undefined;
1577
1651
  expression?: string | undefined;
1578
1652
  value?: boolean | undefined;
1579
- };
1580
- readonly: {
1653
+ fieldValue?: boolean | undefined;
1654
+ strategy?: string | undefined;
1655
+ } | undefined;
1656
+ readonly?: {
1657
+ expressionStr?: string | undefined;
1581
1658
  expression?: string | undefined;
1582
1659
  value?: boolean | undefined;
1583
1660
  fieldValue?: boolean | undefined;
1584
- };
1585
- disabled: {
1661
+ strategy?: string | undefined;
1662
+ } | undefined;
1663
+ disabled?: {
1664
+ expressionStr?: string | undefined;
1586
1665
  expression?: string | undefined;
1587
1666
  value?: boolean | undefined;
1588
- };
1589
- required: {
1667
+ fieldValue?: boolean | undefined;
1668
+ strategy?: string | undefined;
1669
+ } | undefined;
1670
+ required?: {
1671
+ expressionStr?: string | undefined;
1590
1672
  expression?: string | undefined;
1591
1673
  value?: boolean | undefined;
1592
1674
  fieldValue?: boolean | undefined;
1593
- };
1594
- assignment: {
1675
+ strategy?: string | undefined;
1676
+ } | undefined;
1677
+ assignment?: {
1678
+ expressionStr?: string | undefined;
1595
1679
  expression?: string | undefined;
1596
- strategy?: import('@gct-paas/core').ASSIGNMENTSTRATEGY_ENUM | undefined;
1597
1680
  value?: boolean | undefined;
1598
- };
1681
+ fieldValue?: boolean | undefined;
1682
+ strategy?: string | undefined;
1683
+ } | undefined;
1599
1684
  };
1600
1685
  };
1686
+ deviceConnectivity: boolean;
1601
1687
  };
1602
- events: import('node_modules/@gct-paas/schema/es/interface/widget/i-events').IBasicEvents;
1688
+ events: import('@gct-paas/schema').IBasicEvents;
1603
1689
  formItem?: boolean | undefined;
1604
1690
  display?: import('@gct-paas/core').DisplayEnums | undefined;
1605
1691
  displayName?: string | undefined;
@@ -1617,7 +1703,7 @@ export declare function useDesigner(): {
1617
1703
  url: string;
1618
1704
  } | undefined;
1619
1705
  }[];
1620
- }];
1706
+ } | undefined)?];
1621
1707
  props: {
1622
1708
  [x: string]: any;
1623
1709
  modalTitle?: string | undefined;
@@ -1658,7 +1744,7 @@ export declare function useDesigner(): {
1658
1744
  italic: boolean;
1659
1745
  textDecoration: import('@gct-paas/core').TextDecoration;
1660
1746
  color: string;
1661
- align: "left" | "right";
1747
+ align: "left" | "right" | "justify";
1662
1748
  } | undefined;
1663
1749
  contentFont?: {
1664
1750
  fontSize: string;
@@ -1666,7 +1752,7 @@ export declare function useDesigner(): {
1666
1752
  italic: boolean;
1667
1753
  textDecoration: import('@gct-paas/core').TextDecoration;
1668
1754
  color: string;
1669
- align: "left" | "right";
1755
+ align: "left" | "right" | "justify";
1670
1756
  } | undefined;
1671
1757
  tagStyle?: {
1672
1758
  color?: string | undefined;
@@ -1713,7 +1799,7 @@ export declare function useDesigner(): {
1713
1799
  italic: boolean;
1714
1800
  textDecoration: import('@gct-paas/core').TextDecoration;
1715
1801
  color: string;
1716
- align: "left" | "right";
1802
+ align: "left" | "right" | "justify";
1717
1803
  };
1718
1804
  tagStyle: {
1719
1805
  color?: string | undefined;
@@ -1733,6 +1819,7 @@ export declare function useDesigner(): {
1733
1819
  tableheight?: number | undefined;
1734
1820
  tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
1735
1821
  enableHeaderBGColor?: boolean | undefined;
1822
+ enableBGColor?: boolean | undefined;
1736
1823
  };
1737
1824
  runJs?: string | undefined;
1738
1825
  los?: Record<string, IData> | undefined;
@@ -1746,13 +1833,14 @@ export declare function useDesigner(): {
1746
1833
  modalName: string;
1747
1834
  compName?: string | undefined;
1748
1835
  compKey?: string | undefined;
1749
- type: BuiltinType.MODAL;
1836
+ type: import("@gct-paas/core").BuiltinType.MODAL;
1750
1837
  js: string;
1751
1838
  css: string;
1752
1839
  children: [{
1753
1840
  id: string;
1754
- type: BuiltinType.MODAL_BODY;
1841
+ type: import("@gct-paas/core").BuiltinType.MODAL_BODY | string;
1755
1842
  children: {
1843
+ [x: string]: any;
1756
1844
  id: string;
1757
1845
  platform: Platform;
1758
1846
  categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
@@ -1760,7 +1848,7 @@ export declare function useDesigner(): {
1760
1848
  name: string;
1761
1849
  compName?: string | undefined;
1762
1850
  compKey?: string | undefined;
1763
- type: FormComponents | string;
1851
+ type: string | FormComponents;
1764
1852
  icon: string;
1765
1853
  children?: any[] | undefined;
1766
1854
  internal?: boolean | undefined;
@@ -1791,7 +1879,7 @@ export declare function useDesigner(): {
1791
1879
  italic: boolean;
1792
1880
  textDecoration: import('@gct-paas/core').TextDecoration;
1793
1881
  color: string;
1794
- align: "left" | "right";
1882
+ align: "left" | "right" | "justify";
1795
1883
  } | undefined;
1796
1884
  contentFont?: {
1797
1885
  fontSize: string;
@@ -1799,7 +1887,7 @@ export declare function useDesigner(): {
1799
1887
  italic: boolean;
1800
1888
  textDecoration: import('@gct-paas/core').TextDecoration;
1801
1889
  color: string;
1802
- align: "left" | "right";
1890
+ align: "left" | "right" | "justify";
1803
1891
  } | undefined;
1804
1892
  tagStyle?: {
1805
1893
  color?: string | undefined;
@@ -1846,7 +1934,7 @@ export declare function useDesigner(): {
1846
1934
  italic: boolean;
1847
1935
  textDecoration: import('@gct-paas/core').TextDecoration;
1848
1936
  color: string;
1849
- align: "left" | "right";
1937
+ align: "left" | "right" | "justify";
1850
1938
  };
1851
1939
  tagStyle: {
1852
1940
  color?: string | undefined;
@@ -1866,6 +1954,7 @@ export declare function useDesigner(): {
1866
1954
  tableheight?: number | undefined;
1867
1955
  tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
1868
1956
  enableHeaderBGColor?: boolean | undefined;
1957
+ enableBGColor?: boolean | undefined;
1869
1958
  };
1870
1959
  props: {
1871
1960
  [x: string]: any;
@@ -1881,33 +1970,46 @@ export declare function useDesigner(): {
1881
1970
  componentDependency: {
1882
1971
  sortDependency: import('@gct-paas/core').Dependency_ENUM[];
1883
1972
  configDependency: {
1884
- hidden: {
1973
+ hidden?: {
1974
+ expressionStr?: string | undefined;
1885
1975
  expression?: string | undefined;
1886
1976
  value?: boolean | undefined;
1887
- };
1888
- readonly: {
1977
+ fieldValue?: boolean | undefined;
1978
+ strategy?: string | undefined;
1979
+ } | undefined;
1980
+ readonly?: {
1981
+ expressionStr?: string | undefined;
1889
1982
  expression?: string | undefined;
1890
1983
  value?: boolean | undefined;
1891
1984
  fieldValue?: boolean | undefined;
1892
- };
1893
- disabled: {
1985
+ strategy?: string | undefined;
1986
+ } | undefined;
1987
+ disabled?: {
1988
+ expressionStr?: string | undefined;
1894
1989
  expression?: string | undefined;
1895
1990
  value?: boolean | undefined;
1896
- };
1897
- required: {
1991
+ fieldValue?: boolean | undefined;
1992
+ strategy?: string | undefined;
1993
+ } | undefined;
1994
+ required?: {
1995
+ expressionStr?: string | undefined;
1898
1996
  expression?: string | undefined;
1899
1997
  value?: boolean | undefined;
1900
1998
  fieldValue?: boolean | undefined;
1901
- };
1902
- assignment: {
1999
+ strategy?: string | undefined;
2000
+ } | undefined;
2001
+ assignment?: {
2002
+ expressionStr?: string | undefined;
1903
2003
  expression?: string | undefined;
1904
- strategy?: import('@gct-paas/core').ASSIGNMENTSTRATEGY_ENUM | undefined;
1905
2004
  value?: boolean | undefined;
1906
- };
2005
+ fieldValue?: boolean | undefined;
2006
+ strategy?: string | undefined;
2007
+ } | undefined;
1907
2008
  };
1908
2009
  };
2010
+ deviceConnectivity: boolean;
1909
2011
  };
1910
- events: import('node_modules/@gct-paas/schema/es/interface/widget/i-events').IBasicEvents;
2012
+ events: import('@gct-paas/schema').IBasicEvents;
1911
2013
  formItem?: boolean | undefined;
1912
2014
  display?: import('@gct-paas/core').DisplayEnums | undefined;
1913
2015
  displayName?: string | undefined;
@@ -1927,8 +2029,9 @@ export declare function useDesigner(): {
1927
2029
  }[];
1928
2030
  }, {
1929
2031
  id: string;
1930
- type: BuiltinType.MODAL_FOOTER;
2032
+ type: import("@gct-paas/core").BuiltinType.MODAL_FOOTER;
1931
2033
  children: {
2034
+ [x: string]: any;
1932
2035
  id: string;
1933
2036
  platform: Platform;
1934
2037
  categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
@@ -1936,7 +2039,7 @@ export declare function useDesigner(): {
1936
2039
  name: string;
1937
2040
  compName?: string | undefined;
1938
2041
  compKey?: string | undefined;
1939
- type: FormComponents | string;
2042
+ type: string | FormComponents;
1940
2043
  icon: string;
1941
2044
  children?: any[] | undefined;
1942
2045
  internal?: boolean | undefined;
@@ -1967,7 +2070,7 @@ export declare function useDesigner(): {
1967
2070
  italic: boolean;
1968
2071
  textDecoration: import('@gct-paas/core').TextDecoration;
1969
2072
  color: string;
1970
- align: "left" | "right";
2073
+ align: "left" | "right" | "justify";
1971
2074
  } | undefined;
1972
2075
  contentFont?: {
1973
2076
  fontSize: string;
@@ -1975,7 +2078,7 @@ export declare function useDesigner(): {
1975
2078
  italic: boolean;
1976
2079
  textDecoration: import('@gct-paas/core').TextDecoration;
1977
2080
  color: string;
1978
- align: "left" | "right";
2081
+ align: "left" | "right" | "justify";
1979
2082
  } | undefined;
1980
2083
  tagStyle?: {
1981
2084
  color?: string | undefined;
@@ -2022,7 +2125,7 @@ export declare function useDesigner(): {
2022
2125
  italic: boolean;
2023
2126
  textDecoration: import('@gct-paas/core').TextDecoration;
2024
2127
  color: string;
2025
- align: "left" | "right";
2128
+ align: "left" | "right" | "justify";
2026
2129
  };
2027
2130
  tagStyle: {
2028
2131
  color?: string | undefined;
@@ -2042,6 +2145,7 @@ export declare function useDesigner(): {
2042
2145
  tableheight?: number | undefined;
2043
2146
  tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
2044
2147
  enableHeaderBGColor?: boolean | undefined;
2148
+ enableBGColor?: boolean | undefined;
2045
2149
  };
2046
2150
  props: {
2047
2151
  [x: string]: any;
@@ -2057,33 +2161,46 @@ export declare function useDesigner(): {
2057
2161
  componentDependency: {
2058
2162
  sortDependency: import('@gct-paas/core').Dependency_ENUM[];
2059
2163
  configDependency: {
2060
- hidden: {
2164
+ hidden?: {
2165
+ expressionStr?: string | undefined;
2061
2166
  expression?: string | undefined;
2062
2167
  value?: boolean | undefined;
2063
- };
2064
- readonly: {
2168
+ fieldValue?: boolean | undefined;
2169
+ strategy?: string | undefined;
2170
+ } | undefined;
2171
+ readonly?: {
2172
+ expressionStr?: string | undefined;
2065
2173
  expression?: string | undefined;
2066
2174
  value?: boolean | undefined;
2067
2175
  fieldValue?: boolean | undefined;
2068
- };
2069
- disabled: {
2176
+ strategy?: string | undefined;
2177
+ } | undefined;
2178
+ disabled?: {
2179
+ expressionStr?: string | undefined;
2070
2180
  expression?: string | undefined;
2071
2181
  value?: boolean | undefined;
2072
- };
2073
- required: {
2182
+ fieldValue?: boolean | undefined;
2183
+ strategy?: string | undefined;
2184
+ } | undefined;
2185
+ required?: {
2186
+ expressionStr?: string | undefined;
2074
2187
  expression?: string | undefined;
2075
2188
  value?: boolean | undefined;
2076
2189
  fieldValue?: boolean | undefined;
2077
- };
2078
- assignment: {
2190
+ strategy?: string | undefined;
2191
+ } | undefined;
2192
+ assignment?: {
2193
+ expressionStr?: string | undefined;
2079
2194
  expression?: string | undefined;
2080
- strategy?: import('@gct-paas/core').ASSIGNMENTSTRATEGY_ENUM | undefined;
2081
2195
  value?: boolean | undefined;
2082
- };
2196
+ fieldValue?: boolean | undefined;
2197
+ strategy?: string | undefined;
2198
+ } | undefined;
2083
2199
  };
2084
2200
  };
2201
+ deviceConnectivity: boolean;
2085
2202
  };
2086
- events: import('node_modules/@gct-paas/schema/es/interface/widget/i-events').IBasicEvents;
2203
+ events: import('@gct-paas/schema').IBasicEvents;
2087
2204
  formItem?: boolean | undefined;
2088
2205
  display?: import('@gct-paas/core').DisplayEnums | undefined;
2089
2206
  displayName?: string | undefined;
@@ -2101,10 +2218,11 @@ export declare function useDesigner(): {
2101
2218
  url: string;
2102
2219
  } | undefined;
2103
2220
  }[];
2104
- }, {
2221
+ }, ({
2105
2222
  id: string;
2106
- type: BuiltinType.BottomButtonContainer;
2223
+ type: import("@gct-paas/core").BuiltinType.BottomButtonContainer;
2107
2224
  children: {
2225
+ [x: string]: any;
2108
2226
  id: string;
2109
2227
  platform: Platform;
2110
2228
  categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
@@ -2112,7 +2230,7 @@ export declare function useDesigner(): {
2112
2230
  name: string;
2113
2231
  compName?: string | undefined;
2114
2232
  compKey?: string | undefined;
2115
- type: FormComponents | string;
2233
+ type: string | FormComponents;
2116
2234
  icon: string;
2117
2235
  children?: any[] | undefined;
2118
2236
  internal?: boolean | undefined;
@@ -2143,7 +2261,7 @@ export declare function useDesigner(): {
2143
2261
  italic: boolean;
2144
2262
  textDecoration: import('@gct-paas/core').TextDecoration;
2145
2263
  color: string;
2146
- align: "left" | "right";
2264
+ align: "left" | "right" | "justify";
2147
2265
  } | undefined;
2148
2266
  contentFont?: {
2149
2267
  fontSize: string;
@@ -2151,7 +2269,7 @@ export declare function useDesigner(): {
2151
2269
  italic: boolean;
2152
2270
  textDecoration: import('@gct-paas/core').TextDecoration;
2153
2271
  color: string;
2154
- align: "left" | "right";
2272
+ align: "left" | "right" | "justify";
2155
2273
  } | undefined;
2156
2274
  tagStyle?: {
2157
2275
  color?: string | undefined;
@@ -2198,7 +2316,7 @@ export declare function useDesigner(): {
2198
2316
  italic: boolean;
2199
2317
  textDecoration: import('@gct-paas/core').TextDecoration;
2200
2318
  color: string;
2201
- align: "left" | "right";
2319
+ align: "left" | "right" | "justify";
2202
2320
  };
2203
2321
  tagStyle: {
2204
2322
  color?: string | undefined;
@@ -2218,6 +2336,7 @@ export declare function useDesigner(): {
2218
2336
  tableheight?: number | undefined;
2219
2337
  tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
2220
2338
  enableHeaderBGColor?: boolean | undefined;
2339
+ enableBGColor?: boolean | undefined;
2221
2340
  };
2222
2341
  props: {
2223
2342
  [x: string]: any;
@@ -2233,33 +2352,46 @@ export declare function useDesigner(): {
2233
2352
  componentDependency: {
2234
2353
  sortDependency: import('@gct-paas/core').Dependency_ENUM[];
2235
2354
  configDependency: {
2236
- hidden: {
2355
+ hidden?: {
2356
+ expressionStr?: string | undefined;
2237
2357
  expression?: string | undefined;
2238
2358
  value?: boolean | undefined;
2239
- };
2240
- readonly: {
2359
+ fieldValue?: boolean | undefined;
2360
+ strategy?: string | undefined;
2361
+ } | undefined;
2362
+ readonly?: {
2363
+ expressionStr?: string | undefined;
2241
2364
  expression?: string | undefined;
2242
2365
  value?: boolean | undefined;
2243
2366
  fieldValue?: boolean | undefined;
2244
- };
2245
- disabled: {
2367
+ strategy?: string | undefined;
2368
+ } | undefined;
2369
+ disabled?: {
2370
+ expressionStr?: string | undefined;
2246
2371
  expression?: string | undefined;
2247
2372
  value?: boolean | undefined;
2248
- };
2249
- required: {
2373
+ fieldValue?: boolean | undefined;
2374
+ strategy?: string | undefined;
2375
+ } | undefined;
2376
+ required?: {
2377
+ expressionStr?: string | undefined;
2250
2378
  expression?: string | undefined;
2251
2379
  value?: boolean | undefined;
2252
2380
  fieldValue?: boolean | undefined;
2253
- };
2254
- assignment: {
2381
+ strategy?: string | undefined;
2382
+ } | undefined;
2383
+ assignment?: {
2384
+ expressionStr?: string | undefined;
2255
2385
  expression?: string | undefined;
2256
- strategy?: import('@gct-paas/core').ASSIGNMENTSTRATEGY_ENUM | undefined;
2257
2386
  value?: boolean | undefined;
2258
- };
2387
+ fieldValue?: boolean | undefined;
2388
+ strategy?: string | undefined;
2389
+ } | undefined;
2259
2390
  };
2260
2391
  };
2392
+ deviceConnectivity: boolean;
2261
2393
  };
2262
- events: import('node_modules/@gct-paas/schema/es/interface/widget/i-events').IBasicEvents;
2394
+ events: import('@gct-paas/schema').IBasicEvents;
2263
2395
  formItem?: boolean | undefined;
2264
2396
  display?: import('@gct-paas/core').DisplayEnums | undefined;
2265
2397
  displayName?: string | undefined;
@@ -2277,7 +2409,7 @@ export declare function useDesigner(): {
2277
2409
  url: string;
2278
2410
  } | undefined;
2279
2411
  }[];
2280
- }];
2412
+ } | undefined)?];
2281
2413
  props: {
2282
2414
  [x: string]: any;
2283
2415
  modalTitle?: string | undefined;
@@ -2318,7 +2450,7 @@ export declare function useDesigner(): {
2318
2450
  italic: boolean;
2319
2451
  textDecoration: import('@gct-paas/core').TextDecoration;
2320
2452
  color: string;
2321
- align: "left" | "right";
2453
+ align: "left" | "right" | "justify";
2322
2454
  } | undefined;
2323
2455
  contentFont?: {
2324
2456
  fontSize: string;
@@ -2326,7 +2458,7 @@ export declare function useDesigner(): {
2326
2458
  italic: boolean;
2327
2459
  textDecoration: import('@gct-paas/core').TextDecoration;
2328
2460
  color: string;
2329
- align: "left" | "right";
2461
+ align: "left" | "right" | "justify";
2330
2462
  } | undefined;
2331
2463
  tagStyle?: {
2332
2464
  color?: string | undefined;
@@ -2373,7 +2505,7 @@ export declare function useDesigner(): {
2373
2505
  italic: boolean;
2374
2506
  textDecoration: import('@gct-paas/core').TextDecoration;
2375
2507
  color: string;
2376
- align: "left" | "right";
2508
+ align: "left" | "right" | "justify";
2377
2509
  };
2378
2510
  tagStyle: {
2379
2511
  color?: string | undefined;
@@ -2393,6 +2525,7 @@ export declare function useDesigner(): {
2393
2525
  tableheight?: number | undefined;
2394
2526
  tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
2395
2527
  enableHeaderBGColor?: boolean | undefined;
2528
+ enableBGColor?: boolean | undefined;
2396
2529
  };
2397
2530
  runJs?: string | undefined;
2398
2531
  los?: Record<string, IData> | undefined;
@@ -2401,10 +2534,11 @@ export declare function useDesigner(): {
2401
2534
  }>;
2402
2535
  modalDesignState: import('vue').Ref<boolean, boolean>;
2403
2536
  modalDesignId: import('vue').Ref<string, string>;
2404
- modalBody: ComputedRef<{
2537
+ modalBody: import('vue').ComputedRef<{
2405
2538
  id: string;
2406
- type: BuiltinType.MODAL_BODY;
2539
+ type: import("@gct-paas/core").BuiltinType.MODAL_BODY | string;
2407
2540
  children: {
2541
+ [x: string]: any;
2408
2542
  id: string;
2409
2543
  platform: Platform;
2410
2544
  categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
@@ -2412,7 +2546,7 @@ export declare function useDesigner(): {
2412
2546
  name: string;
2413
2547
  compName?: string | undefined;
2414
2548
  compKey?: string | undefined;
2415
- type: FormComponents | string;
2549
+ type: string | FormComponents;
2416
2550
  icon: string;
2417
2551
  children?: any[] | undefined;
2418
2552
  internal?: boolean | undefined;
@@ -2443,7 +2577,7 @@ export declare function useDesigner(): {
2443
2577
  italic: boolean;
2444
2578
  textDecoration: import('@gct-paas/core').TextDecoration;
2445
2579
  color: string;
2446
- align: "left" | "right";
2580
+ align: "left" | "right" | "justify";
2447
2581
  } | undefined;
2448
2582
  contentFont?: {
2449
2583
  fontSize: string;
@@ -2451,7 +2585,7 @@ export declare function useDesigner(): {
2451
2585
  italic: boolean;
2452
2586
  textDecoration: import('@gct-paas/core').TextDecoration;
2453
2587
  color: string;
2454
- align: "left" | "right";
2588
+ align: "left" | "right" | "justify";
2455
2589
  } | undefined;
2456
2590
  tagStyle?: {
2457
2591
  color?: string | undefined;
@@ -2498,7 +2632,7 @@ export declare function useDesigner(): {
2498
2632
  italic: boolean;
2499
2633
  textDecoration: import('@gct-paas/core').TextDecoration;
2500
2634
  color: string;
2501
- align: "left" | "right";
2635
+ align: "left" | "right" | "justify";
2502
2636
  };
2503
2637
  tagStyle: {
2504
2638
  color?: string | undefined;
@@ -2518,6 +2652,7 @@ export declare function useDesigner(): {
2518
2652
  tableheight?: number | undefined;
2519
2653
  tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
2520
2654
  enableHeaderBGColor?: boolean | undefined;
2655
+ enableBGColor?: boolean | undefined;
2521
2656
  };
2522
2657
  props: {
2523
2658
  [x: string]: any;
@@ -2533,33 +2668,46 @@ export declare function useDesigner(): {
2533
2668
  componentDependency: {
2534
2669
  sortDependency: import('@gct-paas/core').Dependency_ENUM[];
2535
2670
  configDependency: {
2536
- hidden: {
2671
+ hidden?: {
2672
+ expressionStr?: string | undefined;
2537
2673
  expression?: string | undefined;
2538
2674
  value?: boolean | undefined;
2539
- };
2540
- readonly: {
2675
+ fieldValue?: boolean | undefined;
2676
+ strategy?: string | undefined;
2677
+ } | undefined;
2678
+ readonly?: {
2679
+ expressionStr?: string | undefined;
2541
2680
  expression?: string | undefined;
2542
2681
  value?: boolean | undefined;
2543
2682
  fieldValue?: boolean | undefined;
2544
- };
2545
- disabled: {
2683
+ strategy?: string | undefined;
2684
+ } | undefined;
2685
+ disabled?: {
2686
+ expressionStr?: string | undefined;
2546
2687
  expression?: string | undefined;
2547
2688
  value?: boolean | undefined;
2548
- };
2549
- required: {
2689
+ fieldValue?: boolean | undefined;
2690
+ strategy?: string | undefined;
2691
+ } | undefined;
2692
+ required?: {
2693
+ expressionStr?: string | undefined;
2550
2694
  expression?: string | undefined;
2551
2695
  value?: boolean | undefined;
2552
2696
  fieldValue?: boolean | undefined;
2553
- };
2554
- assignment: {
2697
+ strategy?: string | undefined;
2698
+ } | undefined;
2699
+ assignment?: {
2700
+ expressionStr?: string | undefined;
2555
2701
  expression?: string | undefined;
2556
- strategy?: import('@gct-paas/core').ASSIGNMENTSTRATEGY_ENUM | undefined;
2557
2702
  value?: boolean | undefined;
2558
- };
2703
+ fieldValue?: boolean | undefined;
2704
+ strategy?: string | undefined;
2705
+ } | undefined;
2559
2706
  };
2560
2707
  };
2708
+ deviceConnectivity: boolean;
2561
2709
  };
2562
- events: import('node_modules/@gct-paas/schema/es/interface/widget/i-events').IBasicEvents;
2710
+ events: import('@gct-paas/schema').IBasicEvents;
2563
2711
  formItem?: boolean | undefined;
2564
2712
  display?: import('@gct-paas/core').DisplayEnums | undefined;
2565
2713
  displayName?: string | undefined;
@@ -2577,11 +2725,11 @@ export declare function useDesigner(): {
2577
2725
  url: string;
2578
2726
  } | undefined;
2579
2727
  }[];
2580
- }>;
2581
- modalFooter: ComputedRef<{
2728
+ } | {
2582
2729
  id: string;
2583
- type: BuiltinType.MODAL_FOOTER;
2730
+ type: import("@gct-paas/core").BuiltinType.MODAL_FOOTER;
2584
2731
  children: {
2732
+ [x: string]: any;
2585
2733
  id: string;
2586
2734
  platform: Platform;
2587
2735
  categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
@@ -2589,7 +2737,7 @@ export declare function useDesigner(): {
2589
2737
  name: string;
2590
2738
  compName?: string | undefined;
2591
2739
  compKey?: string | undefined;
2592
- type: FormComponents | string;
2740
+ type: string | FormComponents;
2593
2741
  icon: string;
2594
2742
  children?: any[] | undefined;
2595
2743
  internal?: boolean | undefined;
@@ -2620,7 +2768,7 @@ export declare function useDesigner(): {
2620
2768
  italic: boolean;
2621
2769
  textDecoration: import('@gct-paas/core').TextDecoration;
2622
2770
  color: string;
2623
- align: "left" | "right";
2771
+ align: "left" | "right" | "justify";
2624
2772
  } | undefined;
2625
2773
  contentFont?: {
2626
2774
  fontSize: string;
@@ -2628,7 +2776,7 @@ export declare function useDesigner(): {
2628
2776
  italic: boolean;
2629
2777
  textDecoration: import('@gct-paas/core').TextDecoration;
2630
2778
  color: string;
2631
- align: "left" | "right";
2779
+ align: "left" | "right" | "justify";
2632
2780
  } | undefined;
2633
2781
  tagStyle?: {
2634
2782
  color?: string | undefined;
@@ -2675,7 +2823,7 @@ export declare function useDesigner(): {
2675
2823
  italic: boolean;
2676
2824
  textDecoration: import('@gct-paas/core').TextDecoration;
2677
2825
  color: string;
2678
- align: "left" | "right";
2826
+ align: "left" | "right" | "justify";
2679
2827
  };
2680
2828
  tagStyle: {
2681
2829
  color?: string | undefined;
@@ -2695,6 +2843,7 @@ export declare function useDesigner(): {
2695
2843
  tableheight?: number | undefined;
2696
2844
  tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
2697
2845
  enableHeaderBGColor?: boolean | undefined;
2846
+ enableBGColor?: boolean | undefined;
2698
2847
  };
2699
2848
  props: {
2700
2849
  [x: string]: any;
@@ -2710,33 +2859,46 @@ export declare function useDesigner(): {
2710
2859
  componentDependency: {
2711
2860
  sortDependency: import('@gct-paas/core').Dependency_ENUM[];
2712
2861
  configDependency: {
2713
- hidden: {
2862
+ hidden?: {
2863
+ expressionStr?: string | undefined;
2714
2864
  expression?: string | undefined;
2715
2865
  value?: boolean | undefined;
2716
- };
2717
- readonly: {
2866
+ fieldValue?: boolean | undefined;
2867
+ strategy?: string | undefined;
2868
+ } | undefined;
2869
+ readonly?: {
2870
+ expressionStr?: string | undefined;
2718
2871
  expression?: string | undefined;
2719
2872
  value?: boolean | undefined;
2720
2873
  fieldValue?: boolean | undefined;
2721
- };
2722
- disabled: {
2874
+ strategy?: string | undefined;
2875
+ } | undefined;
2876
+ disabled?: {
2877
+ expressionStr?: string | undefined;
2723
2878
  expression?: string | undefined;
2724
2879
  value?: boolean | undefined;
2725
- };
2726
- required: {
2880
+ fieldValue?: boolean | undefined;
2881
+ strategy?: string | undefined;
2882
+ } | undefined;
2883
+ required?: {
2884
+ expressionStr?: string | undefined;
2727
2885
  expression?: string | undefined;
2728
2886
  value?: boolean | undefined;
2729
2887
  fieldValue?: boolean | undefined;
2730
- };
2731
- assignment: {
2888
+ strategy?: string | undefined;
2889
+ } | undefined;
2890
+ assignment?: {
2891
+ expressionStr?: string | undefined;
2732
2892
  expression?: string | undefined;
2733
- strategy?: import('@gct-paas/core').ASSIGNMENTSTRATEGY_ENUM | undefined;
2734
2893
  value?: boolean | undefined;
2735
- };
2894
+ fieldValue?: boolean | undefined;
2895
+ strategy?: string | undefined;
2896
+ } | undefined;
2736
2897
  };
2737
2898
  };
2899
+ deviceConnectivity: boolean;
2738
2900
  };
2739
- events: import('node_modules/@gct-paas/schema/es/interface/widget/i-events').IBasicEvents;
2901
+ events: import('@gct-paas/schema').IBasicEvents;
2740
2902
  formItem?: boolean | undefined;
2741
2903
  display?: import('@gct-paas/core').DisplayEnums | undefined;
2742
2904
  displayName?: string | undefined;
@@ -2754,11 +2916,11 @@ export declare function useDesigner(): {
2754
2916
  url: string;
2755
2917
  } | undefined;
2756
2918
  }[];
2757
- }>;
2758
- modalBottomBtn: ComputedRef<{
2919
+ } | {
2759
2920
  id: string;
2760
- type: BuiltinType.BottomButtonContainer;
2921
+ type: import("@gct-paas/core").BuiltinType.BottomButtonContainer;
2761
2922
  children: {
2923
+ [x: string]: any;
2762
2924
  id: string;
2763
2925
  platform: Platform;
2764
2926
  categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
@@ -2766,7 +2928,7 @@ export declare function useDesigner(): {
2766
2928
  name: string;
2767
2929
  compName?: string | undefined;
2768
2930
  compKey?: string | undefined;
2769
- type: FormComponents | string;
2931
+ type: string | FormComponents;
2770
2932
  icon: string;
2771
2933
  children?: any[] | undefined;
2772
2934
  internal?: boolean | undefined;
@@ -2797,7 +2959,7 @@ export declare function useDesigner(): {
2797
2959
  italic: boolean;
2798
2960
  textDecoration: import('@gct-paas/core').TextDecoration;
2799
2961
  color: string;
2800
- align: "left" | "right";
2962
+ align: "left" | "right" | "justify";
2801
2963
  } | undefined;
2802
2964
  contentFont?: {
2803
2965
  fontSize: string;
@@ -2805,7 +2967,7 @@ export declare function useDesigner(): {
2805
2967
  italic: boolean;
2806
2968
  textDecoration: import('@gct-paas/core').TextDecoration;
2807
2969
  color: string;
2808
- align: "left" | "right";
2970
+ align: "left" | "right" | "justify";
2809
2971
  } | undefined;
2810
2972
  tagStyle?: {
2811
2973
  color?: string | undefined;
@@ -2852,7 +3014,7 @@ export declare function useDesigner(): {
2852
3014
  italic: boolean;
2853
3015
  textDecoration: import('@gct-paas/core').TextDecoration;
2854
3016
  color: string;
2855
- align: "left" | "right";
3017
+ align: "left" | "right" | "justify";
2856
3018
  };
2857
3019
  tagStyle: {
2858
3020
  color?: string | undefined;
@@ -2872,6 +3034,7 @@ export declare function useDesigner(): {
2872
3034
  tableheight?: number | undefined;
2873
3035
  tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
2874
3036
  enableHeaderBGColor?: boolean | undefined;
3037
+ enableBGColor?: boolean | undefined;
2875
3038
  };
2876
3039
  props: {
2877
3040
  [x: string]: any;
@@ -2887,33 +3050,46 @@ export declare function useDesigner(): {
2887
3050
  componentDependency: {
2888
3051
  sortDependency: import('@gct-paas/core').Dependency_ENUM[];
2889
3052
  configDependency: {
2890
- hidden: {
3053
+ hidden?: {
3054
+ expressionStr?: string | undefined;
2891
3055
  expression?: string | undefined;
2892
3056
  value?: boolean | undefined;
2893
- };
2894
- readonly: {
3057
+ fieldValue?: boolean | undefined;
3058
+ strategy?: string | undefined;
3059
+ } | undefined;
3060
+ readonly?: {
3061
+ expressionStr?: string | undefined;
2895
3062
  expression?: string | undefined;
2896
3063
  value?: boolean | undefined;
2897
3064
  fieldValue?: boolean | undefined;
2898
- };
2899
- disabled: {
3065
+ strategy?: string | undefined;
3066
+ } | undefined;
3067
+ disabled?: {
3068
+ expressionStr?: string | undefined;
2900
3069
  expression?: string | undefined;
2901
3070
  value?: boolean | undefined;
2902
- };
2903
- required: {
3071
+ fieldValue?: boolean | undefined;
3072
+ strategy?: string | undefined;
3073
+ } | undefined;
3074
+ required?: {
3075
+ expressionStr?: string | undefined;
2904
3076
  expression?: string | undefined;
2905
3077
  value?: boolean | undefined;
2906
3078
  fieldValue?: boolean | undefined;
2907
- };
2908
- assignment: {
3079
+ strategy?: string | undefined;
3080
+ } | undefined;
3081
+ assignment?: {
3082
+ expressionStr?: string | undefined;
2909
3083
  expression?: string | undefined;
2910
- strategy?: import('@gct-paas/core').ASSIGNMENTSTRATEGY_ENUM | undefined;
2911
3084
  value?: boolean | undefined;
2912
- };
3085
+ fieldValue?: boolean | undefined;
3086
+ strategy?: string | undefined;
3087
+ } | undefined;
2913
3088
  };
2914
3089
  };
3090
+ deviceConnectivity: boolean;
2915
3091
  };
2916
- events: import('node_modules/@gct-paas/schema/es/interface/widget/i-events').IBasicEvents;
3092
+ events: import('@gct-paas/schema').IBasicEvents;
2917
3093
  formItem?: boolean | undefined;
2918
3094
  display?: import('@gct-paas/core').DisplayEnums | undefined;
2919
3095
  displayName?: string | undefined;
@@ -2932,32 +3108,1170 @@ export declare function useDesigner(): {
2932
3108
  } | undefined;
2933
3109
  }[];
2934
3110
  }>;
2935
- isGlobalModal: ComputedRef<boolean>;
2936
- subTableInfo: ComputedRef<import('node_modules/@gct-paas/schema/es/interface/widget/i-schemas').IBasicSchema | null>;
2937
- wfNodesInfo: ComputedRef<any>;
2938
- wfNodesModalBody: ComputedRef<any>;
2939
- workflowInfo: ComputedRef<any>;
2940
- workflowModalBody: ComputedRef<any>;
2941
- setModalDesignState: (flag: boolean, modalId?: string, isGlobal?: boolean) => Promise<void>;
2942
- setModalInfo: (modal: LowCodeModal.Modal) => void;
2943
- setSubTableModalDesignState: (flag: boolean, needId?: string) => void;
2944
- subTableModalState: import('vue').Ref<boolean, boolean>;
2945
- subTableModalId: import('vue').Ref<string, string>;
2946
- setWfNodesModalDesignState: (flag: boolean, needId?: string) => void;
2947
- wfNodesModalState: import('vue').Ref<boolean, boolean>;
2948
- isNewDesigner: import('vue').WritableComputedRef<boolean | undefined, boolean | undefined>;
2949
- setWorkflowNodesModalDesignState: (flag: boolean, needId?: string) => void;
2950
- workflowModalState: import('vue').Ref<boolean, boolean>;
2951
- getAsyncWidget: (widget: string | LowCodeWidget.BasicSchema) => any;
2952
- getWidgetHooks: (type: string) => any;
2953
- widgetEntry: ComputedRef<"widget-mobile-entry" | "widget-pad-entry" | "widget-entry">;
2954
- pluginConfigs: ComputedRef<IObject[]>;
2955
- deleteHistory: (hid: string) => void;
2956
- getWhiteList: (type: string) => (string | RegExp)[];
2957
- getBlackList: (type: string) => (string | RegExp)[];
2958
- setPluginConfigs: (configs: IObject[]) => void;
2959
- savePageJsonSnapshot: (json?: PageJson) => void;
2960
- loading: import('vue').Ref<boolean, boolean>;
3111
+ modalFooter: import('vue').ComputedRef<{
3112
+ id: string;
3113
+ type: import("@gct-paas/core").BuiltinType.MODAL_BODY | string;
3114
+ children: {
3115
+ [x: string]: any;
3116
+ id: string;
3117
+ platform: Platform;
3118
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
3119
+ alias: string;
3120
+ name: string;
3121
+ compName?: string | undefined;
3122
+ compKey?: string | undefined;
3123
+ type: string | FormComponents;
3124
+ icon: string;
3125
+ children?: any[] | undefined;
3126
+ internal?: boolean | undefined;
3127
+ description?: string | undefined;
3128
+ style: {
3129
+ position?: string | undefined;
3130
+ top?: string | undefined;
3131
+ left?: string | undefined;
3132
+ right?: string | undefined;
3133
+ bottom?: string | undefined;
3134
+ width?: string | undefined;
3135
+ height?: string | undefined;
3136
+ maxHeight?: string | undefined;
3137
+ backgroundColor?: string | undefined;
3138
+ marginAll?: string | undefined;
3139
+ marginTop?: string | undefined;
3140
+ marginRight?: string | undefined;
3141
+ marginBottom?: string | undefined;
3142
+ marginLeft?: string | undefined;
3143
+ paddingAll?: string | undefined;
3144
+ paddingTop?: string | undefined;
3145
+ paddingRight?: string | undefined;
3146
+ paddingBottom?: string | undefined;
3147
+ paddingLeft?: string | undefined;
3148
+ labelFont?: {
3149
+ fontSize: string;
3150
+ bold: boolean;
3151
+ italic: boolean;
3152
+ textDecoration: import('@gct-paas/core').TextDecoration;
3153
+ color: string;
3154
+ align: "left" | "right" | "justify";
3155
+ } | undefined;
3156
+ contentFont?: {
3157
+ fontSize: string;
3158
+ bold: boolean;
3159
+ italic: boolean;
3160
+ textDecoration: import('@gct-paas/core').TextDecoration;
3161
+ color: string;
3162
+ align: "left" | "right" | "justify";
3163
+ } | undefined;
3164
+ tagStyle?: {
3165
+ color?: string | undefined;
3166
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
3167
+ } | undefined;
3168
+ tagStyleOpen?: boolean | undefined;
3169
+ borderAll?: {
3170
+ borderWidth?: string | undefined;
3171
+ borderStyle?: string | undefined;
3172
+ borderColor?: string | undefined;
3173
+ } | undefined;
3174
+ borderLeft?: {
3175
+ borderWidth?: string | undefined;
3176
+ borderStyle?: string | undefined;
3177
+ borderColor?: string | undefined;
3178
+ } | undefined;
3179
+ borderRight?: {
3180
+ borderWidth?: string | undefined;
3181
+ borderStyle?: string | undefined;
3182
+ borderColor?: string | undefined;
3183
+ } | undefined;
3184
+ borderBottom?: {
3185
+ borderWidth?: string | undefined;
3186
+ borderStyle?: string | undefined;
3187
+ borderColor?: string | undefined;
3188
+ } | undefined;
3189
+ borderTop?: {
3190
+ borderWidth?: string | undefined;
3191
+ borderStyle?: string | undefined;
3192
+ borderColor?: string | undefined;
3193
+ } | undefined;
3194
+ borderTopRightRadius?: string | undefined;
3195
+ borderTopLeftRadius?: string | undefined;
3196
+ borderBottomRightRadius?: string | undefined;
3197
+ borderBottomLeftRadius?: string | undefined;
3198
+ borderAllRadius?: string | undefined;
3199
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
3200
+ columnwidth?: number | undefined;
3201
+ columnFontStyleByRule?: {
3202
+ displayRule: string;
3203
+ contentFont: {
3204
+ fontSize: string;
3205
+ bold: boolean;
3206
+ italic: boolean;
3207
+ textDecoration: import('@gct-paas/core').TextDecoration;
3208
+ color: string;
3209
+ align: "left" | "right" | "justify";
3210
+ };
3211
+ tagStyle: {
3212
+ color?: string | undefined;
3213
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
3214
+ };
3215
+ progressStyle: {
3216
+ color: string;
3217
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
3218
+ };
3219
+ tagType: import('@gct-paas/core').tagEnum;
3220
+ tagStyleOpen: boolean;
3221
+ }[] | undefined;
3222
+ columnBackgroundByRule?: {
3223
+ displayRule: string;
3224
+ backgroundColor?: string | undefined;
3225
+ }[] | undefined;
3226
+ tableheight?: number | undefined;
3227
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
3228
+ enableHeaderBGColor?: boolean | undefined;
3229
+ enableBGColor?: boolean | undefined;
3230
+ };
3231
+ props: {
3232
+ [x: string]: any;
3233
+ hidden: boolean;
3234
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
3235
+ displayRule?: string | undefined;
3236
+ modeldata?: {
3237
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
3238
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
3239
+ subModel?: 0 | 1 | undefined;
3240
+ supportProcess?: 0 | 1 | undefined;
3241
+ } | undefined;
3242
+ componentDependency: {
3243
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
3244
+ configDependency: {
3245
+ hidden?: {
3246
+ expressionStr?: string | undefined;
3247
+ expression?: string | undefined;
3248
+ value?: boolean | undefined;
3249
+ fieldValue?: boolean | undefined;
3250
+ strategy?: string | undefined;
3251
+ } | undefined;
3252
+ readonly?: {
3253
+ expressionStr?: string | undefined;
3254
+ expression?: string | undefined;
3255
+ value?: boolean | undefined;
3256
+ fieldValue?: boolean | undefined;
3257
+ strategy?: string | undefined;
3258
+ } | undefined;
3259
+ disabled?: {
3260
+ expressionStr?: string | undefined;
3261
+ expression?: string | undefined;
3262
+ value?: boolean | undefined;
3263
+ fieldValue?: boolean | undefined;
3264
+ strategy?: string | undefined;
3265
+ } | undefined;
3266
+ required?: {
3267
+ expressionStr?: string | undefined;
3268
+ expression?: string | undefined;
3269
+ value?: boolean | undefined;
3270
+ fieldValue?: boolean | undefined;
3271
+ strategy?: string | undefined;
3272
+ } | undefined;
3273
+ assignment?: {
3274
+ expressionStr?: string | undefined;
3275
+ expression?: string | undefined;
3276
+ value?: boolean | undefined;
3277
+ fieldValue?: boolean | undefined;
3278
+ strategy?: string | undefined;
3279
+ } | undefined;
3280
+ };
3281
+ };
3282
+ deviceConnectivity: boolean;
3283
+ };
3284
+ events: import('@gct-paas/schema').IBasicEvents;
3285
+ formItem?: boolean | undefined;
3286
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
3287
+ displayName?: string | undefined;
3288
+ i18n?: Record<string, string> | undefined;
3289
+ isField?: boolean | undefined;
3290
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
3291
+ preLocation?: string | undefined;
3292
+ ignoringStyle?: string[] | undefined;
3293
+ isReadonlyWidget?: boolean | undefined;
3294
+ parentComponent?: FormComponents | undefined;
3295
+ dropPlaceholder?: string | undefined;
3296
+ _plugin?: {
3297
+ key: string;
3298
+ version: string;
3299
+ url: string;
3300
+ } | undefined;
3301
+ }[];
3302
+ } | {
3303
+ id: string;
3304
+ type: import("@gct-paas/core").BuiltinType.MODAL_FOOTER;
3305
+ children: {
3306
+ [x: string]: any;
3307
+ id: string;
3308
+ platform: Platform;
3309
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
3310
+ alias: string;
3311
+ name: string;
3312
+ compName?: string | undefined;
3313
+ compKey?: string | undefined;
3314
+ type: string | FormComponents;
3315
+ icon: string;
3316
+ children?: any[] | undefined;
3317
+ internal?: boolean | undefined;
3318
+ description?: string | undefined;
3319
+ style: {
3320
+ position?: string | undefined;
3321
+ top?: string | undefined;
3322
+ left?: string | undefined;
3323
+ right?: string | undefined;
3324
+ bottom?: string | undefined;
3325
+ width?: string | undefined;
3326
+ height?: string | undefined;
3327
+ maxHeight?: string | undefined;
3328
+ backgroundColor?: string | undefined;
3329
+ marginAll?: string | undefined;
3330
+ marginTop?: string | undefined;
3331
+ marginRight?: string | undefined;
3332
+ marginBottom?: string | undefined;
3333
+ marginLeft?: string | undefined;
3334
+ paddingAll?: string | undefined;
3335
+ paddingTop?: string | undefined;
3336
+ paddingRight?: string | undefined;
3337
+ paddingBottom?: string | undefined;
3338
+ paddingLeft?: string | undefined;
3339
+ labelFont?: {
3340
+ fontSize: string;
3341
+ bold: boolean;
3342
+ italic: boolean;
3343
+ textDecoration: import('@gct-paas/core').TextDecoration;
3344
+ color: string;
3345
+ align: "left" | "right" | "justify";
3346
+ } | undefined;
3347
+ contentFont?: {
3348
+ fontSize: string;
3349
+ bold: boolean;
3350
+ italic: boolean;
3351
+ textDecoration: import('@gct-paas/core').TextDecoration;
3352
+ color: string;
3353
+ align: "left" | "right" | "justify";
3354
+ } | undefined;
3355
+ tagStyle?: {
3356
+ color?: string | undefined;
3357
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
3358
+ } | undefined;
3359
+ tagStyleOpen?: boolean | undefined;
3360
+ borderAll?: {
3361
+ borderWidth?: string | undefined;
3362
+ borderStyle?: string | undefined;
3363
+ borderColor?: string | undefined;
3364
+ } | undefined;
3365
+ borderLeft?: {
3366
+ borderWidth?: string | undefined;
3367
+ borderStyle?: string | undefined;
3368
+ borderColor?: string | undefined;
3369
+ } | undefined;
3370
+ borderRight?: {
3371
+ borderWidth?: string | undefined;
3372
+ borderStyle?: string | undefined;
3373
+ borderColor?: string | undefined;
3374
+ } | undefined;
3375
+ borderBottom?: {
3376
+ borderWidth?: string | undefined;
3377
+ borderStyle?: string | undefined;
3378
+ borderColor?: string | undefined;
3379
+ } | undefined;
3380
+ borderTop?: {
3381
+ borderWidth?: string | undefined;
3382
+ borderStyle?: string | undefined;
3383
+ borderColor?: string | undefined;
3384
+ } | undefined;
3385
+ borderTopRightRadius?: string | undefined;
3386
+ borderTopLeftRadius?: string | undefined;
3387
+ borderBottomRightRadius?: string | undefined;
3388
+ borderBottomLeftRadius?: string | undefined;
3389
+ borderAllRadius?: string | undefined;
3390
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
3391
+ columnwidth?: number | undefined;
3392
+ columnFontStyleByRule?: {
3393
+ displayRule: string;
3394
+ contentFont: {
3395
+ fontSize: string;
3396
+ bold: boolean;
3397
+ italic: boolean;
3398
+ textDecoration: import('@gct-paas/core').TextDecoration;
3399
+ color: string;
3400
+ align: "left" | "right" | "justify";
3401
+ };
3402
+ tagStyle: {
3403
+ color?: string | undefined;
3404
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
3405
+ };
3406
+ progressStyle: {
3407
+ color: string;
3408
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
3409
+ };
3410
+ tagType: import('@gct-paas/core').tagEnum;
3411
+ tagStyleOpen: boolean;
3412
+ }[] | undefined;
3413
+ columnBackgroundByRule?: {
3414
+ displayRule: string;
3415
+ backgroundColor?: string | undefined;
3416
+ }[] | undefined;
3417
+ tableheight?: number | undefined;
3418
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
3419
+ enableHeaderBGColor?: boolean | undefined;
3420
+ enableBGColor?: boolean | undefined;
3421
+ };
3422
+ props: {
3423
+ [x: string]: any;
3424
+ hidden: boolean;
3425
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
3426
+ displayRule?: string | undefined;
3427
+ modeldata?: {
3428
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
3429
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
3430
+ subModel?: 0 | 1 | undefined;
3431
+ supportProcess?: 0 | 1 | undefined;
3432
+ } | undefined;
3433
+ componentDependency: {
3434
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
3435
+ configDependency: {
3436
+ hidden?: {
3437
+ expressionStr?: string | undefined;
3438
+ expression?: string | undefined;
3439
+ value?: boolean | undefined;
3440
+ fieldValue?: boolean | undefined;
3441
+ strategy?: string | undefined;
3442
+ } | undefined;
3443
+ readonly?: {
3444
+ expressionStr?: string | undefined;
3445
+ expression?: string | undefined;
3446
+ value?: boolean | undefined;
3447
+ fieldValue?: boolean | undefined;
3448
+ strategy?: string | undefined;
3449
+ } | undefined;
3450
+ disabled?: {
3451
+ expressionStr?: string | undefined;
3452
+ expression?: string | undefined;
3453
+ value?: boolean | undefined;
3454
+ fieldValue?: boolean | undefined;
3455
+ strategy?: string | undefined;
3456
+ } | undefined;
3457
+ required?: {
3458
+ expressionStr?: string | undefined;
3459
+ expression?: string | undefined;
3460
+ value?: boolean | undefined;
3461
+ fieldValue?: boolean | undefined;
3462
+ strategy?: string | undefined;
3463
+ } | undefined;
3464
+ assignment?: {
3465
+ expressionStr?: string | undefined;
3466
+ expression?: string | undefined;
3467
+ value?: boolean | undefined;
3468
+ fieldValue?: boolean | undefined;
3469
+ strategy?: string | undefined;
3470
+ } | undefined;
3471
+ };
3472
+ };
3473
+ deviceConnectivity: boolean;
3474
+ };
3475
+ events: import('@gct-paas/schema').IBasicEvents;
3476
+ formItem?: boolean | undefined;
3477
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
3478
+ displayName?: string | undefined;
3479
+ i18n?: Record<string, string> | undefined;
3480
+ isField?: boolean | undefined;
3481
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
3482
+ preLocation?: string | undefined;
3483
+ ignoringStyle?: string[] | undefined;
3484
+ isReadonlyWidget?: boolean | undefined;
3485
+ parentComponent?: FormComponents | undefined;
3486
+ dropPlaceholder?: string | undefined;
3487
+ _plugin?: {
3488
+ key: string;
3489
+ version: string;
3490
+ url: string;
3491
+ } | undefined;
3492
+ }[];
3493
+ } | {
3494
+ id: string;
3495
+ type: import("@gct-paas/core").BuiltinType.BottomButtonContainer;
3496
+ children: {
3497
+ [x: string]: any;
3498
+ id: string;
3499
+ platform: Platform;
3500
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
3501
+ alias: string;
3502
+ name: string;
3503
+ compName?: string | undefined;
3504
+ compKey?: string | undefined;
3505
+ type: string | FormComponents;
3506
+ icon: string;
3507
+ children?: any[] | undefined;
3508
+ internal?: boolean | undefined;
3509
+ description?: string | undefined;
3510
+ style: {
3511
+ position?: string | undefined;
3512
+ top?: string | undefined;
3513
+ left?: string | undefined;
3514
+ right?: string | undefined;
3515
+ bottom?: string | undefined;
3516
+ width?: string | undefined;
3517
+ height?: string | undefined;
3518
+ maxHeight?: string | undefined;
3519
+ backgroundColor?: string | undefined;
3520
+ marginAll?: string | undefined;
3521
+ marginTop?: string | undefined;
3522
+ marginRight?: string | undefined;
3523
+ marginBottom?: string | undefined;
3524
+ marginLeft?: string | undefined;
3525
+ paddingAll?: string | undefined;
3526
+ paddingTop?: string | undefined;
3527
+ paddingRight?: string | undefined;
3528
+ paddingBottom?: string | undefined;
3529
+ paddingLeft?: string | undefined;
3530
+ labelFont?: {
3531
+ fontSize: string;
3532
+ bold: boolean;
3533
+ italic: boolean;
3534
+ textDecoration: import('@gct-paas/core').TextDecoration;
3535
+ color: string;
3536
+ align: "left" | "right" | "justify";
3537
+ } | undefined;
3538
+ contentFont?: {
3539
+ fontSize: string;
3540
+ bold: boolean;
3541
+ italic: boolean;
3542
+ textDecoration: import('@gct-paas/core').TextDecoration;
3543
+ color: string;
3544
+ align: "left" | "right" | "justify";
3545
+ } | undefined;
3546
+ tagStyle?: {
3547
+ color?: string | undefined;
3548
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
3549
+ } | undefined;
3550
+ tagStyleOpen?: boolean | undefined;
3551
+ borderAll?: {
3552
+ borderWidth?: string | undefined;
3553
+ borderStyle?: string | undefined;
3554
+ borderColor?: string | undefined;
3555
+ } | undefined;
3556
+ borderLeft?: {
3557
+ borderWidth?: string | undefined;
3558
+ borderStyle?: string | undefined;
3559
+ borderColor?: string | undefined;
3560
+ } | undefined;
3561
+ borderRight?: {
3562
+ borderWidth?: string | undefined;
3563
+ borderStyle?: string | undefined;
3564
+ borderColor?: string | undefined;
3565
+ } | undefined;
3566
+ borderBottom?: {
3567
+ borderWidth?: string | undefined;
3568
+ borderStyle?: string | undefined;
3569
+ borderColor?: string | undefined;
3570
+ } | undefined;
3571
+ borderTop?: {
3572
+ borderWidth?: string | undefined;
3573
+ borderStyle?: string | undefined;
3574
+ borderColor?: string | undefined;
3575
+ } | undefined;
3576
+ borderTopRightRadius?: string | undefined;
3577
+ borderTopLeftRadius?: string | undefined;
3578
+ borderBottomRightRadius?: string | undefined;
3579
+ borderBottomLeftRadius?: string | undefined;
3580
+ borderAllRadius?: string | undefined;
3581
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
3582
+ columnwidth?: number | undefined;
3583
+ columnFontStyleByRule?: {
3584
+ displayRule: string;
3585
+ contentFont: {
3586
+ fontSize: string;
3587
+ bold: boolean;
3588
+ italic: boolean;
3589
+ textDecoration: import('@gct-paas/core').TextDecoration;
3590
+ color: string;
3591
+ align: "left" | "right" | "justify";
3592
+ };
3593
+ tagStyle: {
3594
+ color?: string | undefined;
3595
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
3596
+ };
3597
+ progressStyle: {
3598
+ color: string;
3599
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
3600
+ };
3601
+ tagType: import('@gct-paas/core').tagEnum;
3602
+ tagStyleOpen: boolean;
3603
+ }[] | undefined;
3604
+ columnBackgroundByRule?: {
3605
+ displayRule: string;
3606
+ backgroundColor?: string | undefined;
3607
+ }[] | undefined;
3608
+ tableheight?: number | undefined;
3609
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
3610
+ enableHeaderBGColor?: boolean | undefined;
3611
+ enableBGColor?: boolean | undefined;
3612
+ };
3613
+ props: {
3614
+ [x: string]: any;
3615
+ hidden: boolean;
3616
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
3617
+ displayRule?: string | undefined;
3618
+ modeldata?: {
3619
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
3620
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
3621
+ subModel?: 0 | 1 | undefined;
3622
+ supportProcess?: 0 | 1 | undefined;
3623
+ } | undefined;
3624
+ componentDependency: {
3625
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
3626
+ configDependency: {
3627
+ hidden?: {
3628
+ expressionStr?: string | undefined;
3629
+ expression?: string | undefined;
3630
+ value?: boolean | undefined;
3631
+ fieldValue?: boolean | undefined;
3632
+ strategy?: string | undefined;
3633
+ } | undefined;
3634
+ readonly?: {
3635
+ expressionStr?: string | undefined;
3636
+ expression?: string | undefined;
3637
+ value?: boolean | undefined;
3638
+ fieldValue?: boolean | undefined;
3639
+ strategy?: string | undefined;
3640
+ } | undefined;
3641
+ disabled?: {
3642
+ expressionStr?: string | undefined;
3643
+ expression?: string | undefined;
3644
+ value?: boolean | undefined;
3645
+ fieldValue?: boolean | undefined;
3646
+ strategy?: string | undefined;
3647
+ } | undefined;
3648
+ required?: {
3649
+ expressionStr?: string | undefined;
3650
+ expression?: string | undefined;
3651
+ value?: boolean | undefined;
3652
+ fieldValue?: boolean | undefined;
3653
+ strategy?: string | undefined;
3654
+ } | undefined;
3655
+ assignment?: {
3656
+ expressionStr?: string | undefined;
3657
+ expression?: string | undefined;
3658
+ value?: boolean | undefined;
3659
+ fieldValue?: boolean | undefined;
3660
+ strategy?: string | undefined;
3661
+ } | undefined;
3662
+ };
3663
+ };
3664
+ deviceConnectivity: boolean;
3665
+ };
3666
+ events: import('@gct-paas/schema').IBasicEvents;
3667
+ formItem?: boolean | undefined;
3668
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
3669
+ displayName?: string | undefined;
3670
+ i18n?: Record<string, string> | undefined;
3671
+ isField?: boolean | undefined;
3672
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
3673
+ preLocation?: string | undefined;
3674
+ ignoringStyle?: string[] | undefined;
3675
+ isReadonlyWidget?: boolean | undefined;
3676
+ parentComponent?: FormComponents | undefined;
3677
+ dropPlaceholder?: string | undefined;
3678
+ _plugin?: {
3679
+ key: string;
3680
+ version: string;
3681
+ url: string;
3682
+ } | undefined;
3683
+ }[];
3684
+ }>;
3685
+ modalBottomBtn: import('vue').ComputedRef<{
3686
+ id: string;
3687
+ type: import("@gct-paas/core").BuiltinType.MODAL_BODY | string;
3688
+ children: {
3689
+ [x: string]: any;
3690
+ id: string;
3691
+ platform: Platform;
3692
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
3693
+ alias: string;
3694
+ name: string;
3695
+ compName?: string | undefined;
3696
+ compKey?: string | undefined;
3697
+ type: string | FormComponents;
3698
+ icon: string;
3699
+ children?: any[] | undefined;
3700
+ internal?: boolean | undefined;
3701
+ description?: string | undefined;
3702
+ style: {
3703
+ position?: string | undefined;
3704
+ top?: string | undefined;
3705
+ left?: string | undefined;
3706
+ right?: string | undefined;
3707
+ bottom?: string | undefined;
3708
+ width?: string | undefined;
3709
+ height?: string | undefined;
3710
+ maxHeight?: string | undefined;
3711
+ backgroundColor?: string | undefined;
3712
+ marginAll?: string | undefined;
3713
+ marginTop?: string | undefined;
3714
+ marginRight?: string | undefined;
3715
+ marginBottom?: string | undefined;
3716
+ marginLeft?: string | undefined;
3717
+ paddingAll?: string | undefined;
3718
+ paddingTop?: string | undefined;
3719
+ paddingRight?: string | undefined;
3720
+ paddingBottom?: string | undefined;
3721
+ paddingLeft?: string | undefined;
3722
+ labelFont?: {
3723
+ fontSize: string;
3724
+ bold: boolean;
3725
+ italic: boolean;
3726
+ textDecoration: import('@gct-paas/core').TextDecoration;
3727
+ color: string;
3728
+ align: "left" | "right" | "justify";
3729
+ } | undefined;
3730
+ contentFont?: {
3731
+ fontSize: string;
3732
+ bold: boolean;
3733
+ italic: boolean;
3734
+ textDecoration: import('@gct-paas/core').TextDecoration;
3735
+ color: string;
3736
+ align: "left" | "right" | "justify";
3737
+ } | undefined;
3738
+ tagStyle?: {
3739
+ color?: string | undefined;
3740
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
3741
+ } | undefined;
3742
+ tagStyleOpen?: boolean | undefined;
3743
+ borderAll?: {
3744
+ borderWidth?: string | undefined;
3745
+ borderStyle?: string | undefined;
3746
+ borderColor?: string | undefined;
3747
+ } | undefined;
3748
+ borderLeft?: {
3749
+ borderWidth?: string | undefined;
3750
+ borderStyle?: string | undefined;
3751
+ borderColor?: string | undefined;
3752
+ } | undefined;
3753
+ borderRight?: {
3754
+ borderWidth?: string | undefined;
3755
+ borderStyle?: string | undefined;
3756
+ borderColor?: string | undefined;
3757
+ } | undefined;
3758
+ borderBottom?: {
3759
+ borderWidth?: string | undefined;
3760
+ borderStyle?: string | undefined;
3761
+ borderColor?: string | undefined;
3762
+ } | undefined;
3763
+ borderTop?: {
3764
+ borderWidth?: string | undefined;
3765
+ borderStyle?: string | undefined;
3766
+ borderColor?: string | undefined;
3767
+ } | undefined;
3768
+ borderTopRightRadius?: string | undefined;
3769
+ borderTopLeftRadius?: string | undefined;
3770
+ borderBottomRightRadius?: string | undefined;
3771
+ borderBottomLeftRadius?: string | undefined;
3772
+ borderAllRadius?: string | undefined;
3773
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
3774
+ columnwidth?: number | undefined;
3775
+ columnFontStyleByRule?: {
3776
+ displayRule: string;
3777
+ contentFont: {
3778
+ fontSize: string;
3779
+ bold: boolean;
3780
+ italic: boolean;
3781
+ textDecoration: import('@gct-paas/core').TextDecoration;
3782
+ color: string;
3783
+ align: "left" | "right" | "justify";
3784
+ };
3785
+ tagStyle: {
3786
+ color?: string | undefined;
3787
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
3788
+ };
3789
+ progressStyle: {
3790
+ color: string;
3791
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
3792
+ };
3793
+ tagType: import('@gct-paas/core').tagEnum;
3794
+ tagStyleOpen: boolean;
3795
+ }[] | undefined;
3796
+ columnBackgroundByRule?: {
3797
+ displayRule: string;
3798
+ backgroundColor?: string | undefined;
3799
+ }[] | undefined;
3800
+ tableheight?: number | undefined;
3801
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
3802
+ enableHeaderBGColor?: boolean | undefined;
3803
+ enableBGColor?: boolean | undefined;
3804
+ };
3805
+ props: {
3806
+ [x: string]: any;
3807
+ hidden: boolean;
3808
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
3809
+ displayRule?: string | undefined;
3810
+ modeldata?: {
3811
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
3812
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
3813
+ subModel?: 0 | 1 | undefined;
3814
+ supportProcess?: 0 | 1 | undefined;
3815
+ } | undefined;
3816
+ componentDependency: {
3817
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
3818
+ configDependency: {
3819
+ hidden?: {
3820
+ expressionStr?: string | undefined;
3821
+ expression?: string | undefined;
3822
+ value?: boolean | undefined;
3823
+ fieldValue?: boolean | undefined;
3824
+ strategy?: string | undefined;
3825
+ } | undefined;
3826
+ readonly?: {
3827
+ expressionStr?: string | undefined;
3828
+ expression?: string | undefined;
3829
+ value?: boolean | undefined;
3830
+ fieldValue?: boolean | undefined;
3831
+ strategy?: string | undefined;
3832
+ } | undefined;
3833
+ disabled?: {
3834
+ expressionStr?: string | undefined;
3835
+ expression?: string | undefined;
3836
+ value?: boolean | undefined;
3837
+ fieldValue?: boolean | undefined;
3838
+ strategy?: string | undefined;
3839
+ } | undefined;
3840
+ required?: {
3841
+ expressionStr?: string | undefined;
3842
+ expression?: string | undefined;
3843
+ value?: boolean | undefined;
3844
+ fieldValue?: boolean | undefined;
3845
+ strategy?: string | undefined;
3846
+ } | undefined;
3847
+ assignment?: {
3848
+ expressionStr?: string | undefined;
3849
+ expression?: string | undefined;
3850
+ value?: boolean | undefined;
3851
+ fieldValue?: boolean | undefined;
3852
+ strategy?: string | undefined;
3853
+ } | undefined;
3854
+ };
3855
+ };
3856
+ deviceConnectivity: boolean;
3857
+ };
3858
+ events: import('@gct-paas/schema').IBasicEvents;
3859
+ formItem?: boolean | undefined;
3860
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
3861
+ displayName?: string | undefined;
3862
+ i18n?: Record<string, string> | undefined;
3863
+ isField?: boolean | undefined;
3864
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
3865
+ preLocation?: string | undefined;
3866
+ ignoringStyle?: string[] | undefined;
3867
+ isReadonlyWidget?: boolean | undefined;
3868
+ parentComponent?: FormComponents | undefined;
3869
+ dropPlaceholder?: string | undefined;
3870
+ _plugin?: {
3871
+ key: string;
3872
+ version: string;
3873
+ url: string;
3874
+ } | undefined;
3875
+ }[];
3876
+ } | {
3877
+ id: string;
3878
+ type: import("@gct-paas/core").BuiltinType.MODAL_FOOTER;
3879
+ children: {
3880
+ [x: string]: any;
3881
+ id: string;
3882
+ platform: Platform;
3883
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
3884
+ alias: string;
3885
+ name: string;
3886
+ compName?: string | undefined;
3887
+ compKey?: string | undefined;
3888
+ type: string | FormComponents;
3889
+ icon: string;
3890
+ children?: any[] | undefined;
3891
+ internal?: boolean | undefined;
3892
+ description?: string | undefined;
3893
+ style: {
3894
+ position?: string | undefined;
3895
+ top?: string | undefined;
3896
+ left?: string | undefined;
3897
+ right?: string | undefined;
3898
+ bottom?: string | undefined;
3899
+ width?: string | undefined;
3900
+ height?: string | undefined;
3901
+ maxHeight?: string | undefined;
3902
+ backgroundColor?: string | undefined;
3903
+ marginAll?: string | undefined;
3904
+ marginTop?: string | undefined;
3905
+ marginRight?: string | undefined;
3906
+ marginBottom?: string | undefined;
3907
+ marginLeft?: string | undefined;
3908
+ paddingAll?: string | undefined;
3909
+ paddingTop?: string | undefined;
3910
+ paddingRight?: string | undefined;
3911
+ paddingBottom?: string | undefined;
3912
+ paddingLeft?: string | undefined;
3913
+ labelFont?: {
3914
+ fontSize: string;
3915
+ bold: boolean;
3916
+ italic: boolean;
3917
+ textDecoration: import('@gct-paas/core').TextDecoration;
3918
+ color: string;
3919
+ align: "left" | "right" | "justify";
3920
+ } | undefined;
3921
+ contentFont?: {
3922
+ fontSize: string;
3923
+ bold: boolean;
3924
+ italic: boolean;
3925
+ textDecoration: import('@gct-paas/core').TextDecoration;
3926
+ color: string;
3927
+ align: "left" | "right" | "justify";
3928
+ } | undefined;
3929
+ tagStyle?: {
3930
+ color?: string | undefined;
3931
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
3932
+ } | undefined;
3933
+ tagStyleOpen?: boolean | undefined;
3934
+ borderAll?: {
3935
+ borderWidth?: string | undefined;
3936
+ borderStyle?: string | undefined;
3937
+ borderColor?: string | undefined;
3938
+ } | undefined;
3939
+ borderLeft?: {
3940
+ borderWidth?: string | undefined;
3941
+ borderStyle?: string | undefined;
3942
+ borderColor?: string | undefined;
3943
+ } | undefined;
3944
+ borderRight?: {
3945
+ borderWidth?: string | undefined;
3946
+ borderStyle?: string | undefined;
3947
+ borderColor?: string | undefined;
3948
+ } | undefined;
3949
+ borderBottom?: {
3950
+ borderWidth?: string | undefined;
3951
+ borderStyle?: string | undefined;
3952
+ borderColor?: string | undefined;
3953
+ } | undefined;
3954
+ borderTop?: {
3955
+ borderWidth?: string | undefined;
3956
+ borderStyle?: string | undefined;
3957
+ borderColor?: string | undefined;
3958
+ } | undefined;
3959
+ borderTopRightRadius?: string | undefined;
3960
+ borderTopLeftRadius?: string | undefined;
3961
+ borderBottomRightRadius?: string | undefined;
3962
+ borderBottomLeftRadius?: string | undefined;
3963
+ borderAllRadius?: string | undefined;
3964
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
3965
+ columnwidth?: number | undefined;
3966
+ columnFontStyleByRule?: {
3967
+ displayRule: string;
3968
+ contentFont: {
3969
+ fontSize: string;
3970
+ bold: boolean;
3971
+ italic: boolean;
3972
+ textDecoration: import('@gct-paas/core').TextDecoration;
3973
+ color: string;
3974
+ align: "left" | "right" | "justify";
3975
+ };
3976
+ tagStyle: {
3977
+ color?: string | undefined;
3978
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
3979
+ };
3980
+ progressStyle: {
3981
+ color: string;
3982
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
3983
+ };
3984
+ tagType: import('@gct-paas/core').tagEnum;
3985
+ tagStyleOpen: boolean;
3986
+ }[] | undefined;
3987
+ columnBackgroundByRule?: {
3988
+ displayRule: string;
3989
+ backgroundColor?: string | undefined;
3990
+ }[] | undefined;
3991
+ tableheight?: number | undefined;
3992
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
3993
+ enableHeaderBGColor?: boolean | undefined;
3994
+ enableBGColor?: boolean | undefined;
3995
+ };
3996
+ props: {
3997
+ [x: string]: any;
3998
+ hidden: boolean;
3999
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
4000
+ displayRule?: string | undefined;
4001
+ modeldata?: {
4002
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
4003
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
4004
+ subModel?: 0 | 1 | undefined;
4005
+ supportProcess?: 0 | 1 | undefined;
4006
+ } | undefined;
4007
+ componentDependency: {
4008
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
4009
+ configDependency: {
4010
+ hidden?: {
4011
+ expressionStr?: string | undefined;
4012
+ expression?: string | undefined;
4013
+ value?: boolean | undefined;
4014
+ fieldValue?: boolean | undefined;
4015
+ strategy?: string | undefined;
4016
+ } | undefined;
4017
+ readonly?: {
4018
+ expressionStr?: string | undefined;
4019
+ expression?: string | undefined;
4020
+ value?: boolean | undefined;
4021
+ fieldValue?: boolean | undefined;
4022
+ strategy?: string | undefined;
4023
+ } | undefined;
4024
+ disabled?: {
4025
+ expressionStr?: string | undefined;
4026
+ expression?: string | undefined;
4027
+ value?: boolean | undefined;
4028
+ fieldValue?: boolean | undefined;
4029
+ strategy?: string | undefined;
4030
+ } | undefined;
4031
+ required?: {
4032
+ expressionStr?: string | undefined;
4033
+ expression?: string | undefined;
4034
+ value?: boolean | undefined;
4035
+ fieldValue?: boolean | undefined;
4036
+ strategy?: string | undefined;
4037
+ } | undefined;
4038
+ assignment?: {
4039
+ expressionStr?: string | undefined;
4040
+ expression?: string | undefined;
4041
+ value?: boolean | undefined;
4042
+ fieldValue?: boolean | undefined;
4043
+ strategy?: string | undefined;
4044
+ } | undefined;
4045
+ };
4046
+ };
4047
+ deviceConnectivity: boolean;
4048
+ };
4049
+ events: import('@gct-paas/schema').IBasicEvents;
4050
+ formItem?: boolean | undefined;
4051
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
4052
+ displayName?: string | undefined;
4053
+ i18n?: Record<string, string> | undefined;
4054
+ isField?: boolean | undefined;
4055
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
4056
+ preLocation?: string | undefined;
4057
+ ignoringStyle?: string[] | undefined;
4058
+ isReadonlyWidget?: boolean | undefined;
4059
+ parentComponent?: FormComponents | undefined;
4060
+ dropPlaceholder?: string | undefined;
4061
+ _plugin?: {
4062
+ key: string;
4063
+ version: string;
4064
+ url: string;
4065
+ } | undefined;
4066
+ }[];
4067
+ } | {
4068
+ id: string;
4069
+ type: import("@gct-paas/core").BuiltinType.BottomButtonContainer;
4070
+ children: {
4071
+ [x: string]: any;
4072
+ id: string;
4073
+ platform: Platform;
4074
+ categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
4075
+ alias: string;
4076
+ name: string;
4077
+ compName?: string | undefined;
4078
+ compKey?: string | undefined;
4079
+ type: string | FormComponents;
4080
+ icon: string;
4081
+ children?: any[] | undefined;
4082
+ internal?: boolean | undefined;
4083
+ description?: string | undefined;
4084
+ style: {
4085
+ position?: string | undefined;
4086
+ top?: string | undefined;
4087
+ left?: string | undefined;
4088
+ right?: string | undefined;
4089
+ bottom?: string | undefined;
4090
+ width?: string | undefined;
4091
+ height?: string | undefined;
4092
+ maxHeight?: string | undefined;
4093
+ backgroundColor?: string | undefined;
4094
+ marginAll?: string | undefined;
4095
+ marginTop?: string | undefined;
4096
+ marginRight?: string | undefined;
4097
+ marginBottom?: string | undefined;
4098
+ marginLeft?: string | undefined;
4099
+ paddingAll?: string | undefined;
4100
+ paddingTop?: string | undefined;
4101
+ paddingRight?: string | undefined;
4102
+ paddingBottom?: string | undefined;
4103
+ paddingLeft?: string | undefined;
4104
+ labelFont?: {
4105
+ fontSize: string;
4106
+ bold: boolean;
4107
+ italic: boolean;
4108
+ textDecoration: import('@gct-paas/core').TextDecoration;
4109
+ color: string;
4110
+ align: "left" | "right" | "justify";
4111
+ } | undefined;
4112
+ contentFont?: {
4113
+ fontSize: string;
4114
+ bold: boolean;
4115
+ italic: boolean;
4116
+ textDecoration: import('@gct-paas/core').TextDecoration;
4117
+ color: string;
4118
+ align: "left" | "right" | "justify";
4119
+ } | undefined;
4120
+ tagStyle?: {
4121
+ color?: string | undefined;
4122
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
4123
+ } | undefined;
4124
+ tagStyleOpen?: boolean | undefined;
4125
+ borderAll?: {
4126
+ borderWidth?: string | undefined;
4127
+ borderStyle?: string | undefined;
4128
+ borderColor?: string | undefined;
4129
+ } | undefined;
4130
+ borderLeft?: {
4131
+ borderWidth?: string | undefined;
4132
+ borderStyle?: string | undefined;
4133
+ borderColor?: string | undefined;
4134
+ } | undefined;
4135
+ borderRight?: {
4136
+ borderWidth?: string | undefined;
4137
+ borderStyle?: string | undefined;
4138
+ borderColor?: string | undefined;
4139
+ } | undefined;
4140
+ borderBottom?: {
4141
+ borderWidth?: string | undefined;
4142
+ borderStyle?: string | undefined;
4143
+ borderColor?: string | undefined;
4144
+ } | undefined;
4145
+ borderTop?: {
4146
+ borderWidth?: string | undefined;
4147
+ borderStyle?: string | undefined;
4148
+ borderColor?: string | undefined;
4149
+ } | undefined;
4150
+ borderTopRightRadius?: string | undefined;
4151
+ borderTopLeftRadius?: string | undefined;
4152
+ borderBottomRightRadius?: string | undefined;
4153
+ borderBottomLeftRadius?: string | undefined;
4154
+ borderAllRadius?: string | undefined;
4155
+ columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
4156
+ columnwidth?: number | undefined;
4157
+ columnFontStyleByRule?: {
4158
+ displayRule: string;
4159
+ contentFont: {
4160
+ fontSize: string;
4161
+ bold: boolean;
4162
+ italic: boolean;
4163
+ textDecoration: import('@gct-paas/core').TextDecoration;
4164
+ color: string;
4165
+ align: "left" | "right" | "justify";
4166
+ };
4167
+ tagStyle: {
4168
+ color?: string | undefined;
4169
+ tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
4170
+ };
4171
+ progressStyle: {
4172
+ color: string;
4173
+ tagType: import('@gct-paas/core').ProgressTypeEnum;
4174
+ };
4175
+ tagType: import('@gct-paas/core').tagEnum;
4176
+ tagStyleOpen: boolean;
4177
+ }[] | undefined;
4178
+ columnBackgroundByRule?: {
4179
+ displayRule: string;
4180
+ backgroundColor?: string | undefined;
4181
+ }[] | undefined;
4182
+ tableheight?: number | undefined;
4183
+ tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
4184
+ enableHeaderBGColor?: boolean | undefined;
4185
+ enableBGColor?: boolean | undefined;
4186
+ };
4187
+ props: {
4188
+ [x: string]: any;
4189
+ hidden: boolean;
4190
+ displayType?: import('@gct-paas/core').DisplayType | undefined;
4191
+ displayRule?: string | undefined;
4192
+ modeldata?: {
4193
+ modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
4194
+ modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
4195
+ subModel?: 0 | 1 | undefined;
4196
+ supportProcess?: 0 | 1 | undefined;
4197
+ } | undefined;
4198
+ componentDependency: {
4199
+ sortDependency: import('@gct-paas/core').Dependency_ENUM[];
4200
+ configDependency: {
4201
+ hidden?: {
4202
+ expressionStr?: string | undefined;
4203
+ expression?: string | undefined;
4204
+ value?: boolean | undefined;
4205
+ fieldValue?: boolean | undefined;
4206
+ strategy?: string | undefined;
4207
+ } | undefined;
4208
+ readonly?: {
4209
+ expressionStr?: string | undefined;
4210
+ expression?: string | undefined;
4211
+ value?: boolean | undefined;
4212
+ fieldValue?: boolean | undefined;
4213
+ strategy?: string | undefined;
4214
+ } | undefined;
4215
+ disabled?: {
4216
+ expressionStr?: string | undefined;
4217
+ expression?: string | undefined;
4218
+ value?: boolean | undefined;
4219
+ fieldValue?: boolean | undefined;
4220
+ strategy?: string | undefined;
4221
+ } | undefined;
4222
+ required?: {
4223
+ expressionStr?: string | undefined;
4224
+ expression?: string | undefined;
4225
+ value?: boolean | undefined;
4226
+ fieldValue?: boolean | undefined;
4227
+ strategy?: string | undefined;
4228
+ } | undefined;
4229
+ assignment?: {
4230
+ expressionStr?: string | undefined;
4231
+ expression?: string | undefined;
4232
+ value?: boolean | undefined;
4233
+ fieldValue?: boolean | undefined;
4234
+ strategy?: string | undefined;
4235
+ } | undefined;
4236
+ };
4237
+ };
4238
+ deviceConnectivity: boolean;
4239
+ };
4240
+ events: import('@gct-paas/schema').IBasicEvents;
4241
+ formItem?: boolean | undefined;
4242
+ display?: import('@gct-paas/core').DisplayEnums | undefined;
4243
+ displayName?: string | undefined;
4244
+ i18n?: Record<string, string> | undefined;
4245
+ isField?: boolean | undefined;
4246
+ materialType?: import('@gct-paas/core').MaterialEnum | undefined;
4247
+ preLocation?: string | undefined;
4248
+ ignoringStyle?: string[] | undefined;
4249
+ isReadonlyWidget?: boolean | undefined;
4250
+ parentComponent?: FormComponents | undefined;
4251
+ dropPlaceholder?: string | undefined;
4252
+ _plugin?: {
4253
+ key: string;
4254
+ version: string;
4255
+ url: string;
4256
+ } | undefined;
4257
+ }[];
4258
+ }>;
4259
+ isGlobalModal: import('vue').ComputedRef<boolean>;
4260
+ subTableInfo: import('vue').ComputedRef<import('@gct-paas/schema').IBasicSchema | null>;
4261
+ setModalDesignState: (flag: boolean, modalId?: string, isGlobal?: boolean) => Promise<void>;
4262
+ setModalInfo: (modal: import("@gct-paas/schema").LowCodeModal.Modal) => void;
4263
+ setSubTableModalDesignState: (flag: boolean, needId?: string) => void;
4264
+ setWfNodesModalDesignState: (flag: boolean, needId?: string) => void;
4265
+ setWorkflowNodesModalDesignState: (flag: boolean, needId?: string) => void;
4266
+ subTableModalState: import('vue').Ref<boolean, boolean>;
4267
+ subTableModalId: import('vue').Ref<string, string>;
4268
+ getAsyncWidget: (widget: string | LowCodeWidget.BasicSchema) => import('vue').Component | undefined;
4269
+ getWidgetHooks: (type: string) => import('@gct-paas/schema').IDesignerItemHooks;
4270
+ widgetEntry: import('vue').ComputedRef<string>;
4271
+ pluginConfigs: import('vue').ComputedRef<IObject[]>;
4272
+ getWhiteList: (type: string) => (string | RegExp)[];
4273
+ getBlackList: (type: string) => (string | RegExp)[];
4274
+ setPluginConfigs: (configs: IObject[]) => void;
2961
4275
  };
2962
4276
  /**
2963
4277
  * 获取设计器控制器实例