@gct-paas/design 0.1.4-dev.10 → 0.1.4-dev.11
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.
- package/dist/index.esm.min.mjs +16508 -24248
- package/dist/index.min.cjs +3 -70
- package/dist/index.min.css +1 -1
- package/dist/index.system.min.js +3 -70
- package/es/components/design-icon-button/design-icon-button.d.ts +2 -2
- package/es/components/field-cascader/index.d.ts +2 -0
- package/es/components/field-cascader/src/FieldCascader.css +69 -0
- package/es/components/field-cascader/src/FieldCascader.vue.d.ts +87 -0
- package/es/components/field-cascader/src/FieldCascader.vue.mjs +129 -0
- package/es/components/field-cascader/src/FieldCascader.vue3.mjs +6 -0
- package/es/components/field-cascader/src/SearchInput.css +9 -0
- package/es/components/field-cascader/src/SearchInput.vue.d.ts +11 -0
- package/es/components/field-cascader/src/SearchInput.vue.mjs +7 -0
- package/es/components/field-cascader/src/SearchInput.vue2.mjs +48 -0
- package/es/components/field-cascader/src/hooks.d.ts +129 -0
- package/es/components/field-cascader/src/hooks.mjs +205 -0
- package/es/components/field-transfer/components/Cascader/FieldCascader.d.ts +25 -0
- package/es/components/field-transfer/components/Cascader/FieldCascader.mjs +250 -0
- package/es/components/field-transfer/components/Transfer/AdvancedColumnSetting.d.ts +46 -0
- package/es/components/field-transfer/components/Transfer/AdvancedColumnSetting.mjs +56 -0
- package/es/components/field-transfer/components/Transfer/AdvancedTransfer.d.ts +39 -0
- package/es/components/field-transfer/components/Transfer/AdvancedTransfer.mjs +160 -0
- package/es/components/field-transfer/components/Transfer/FieldTransfer.d.ts +83 -0
- package/es/components/field-transfer/components/Transfer/FieldTransfer.mjs +211 -0
- package/es/components/field-transfer/components/Transfer/TransferTree.d.ts +62 -0
- package/es/components/field-transfer/components/Transfer/TransferTree.mjs +117 -0
- package/es/components/field-transfer/components/Transfer/TreeItem.d.ts +17 -0
- package/es/components/field-transfer/components/Transfer/TreeItem.mjs +41 -0
- package/es/components/field-transfer/components/field-transfer-modal.css +5 -0
- package/es/components/field-transfer/components/field-transfer-modal.vue.d.ts +43 -0
- package/es/components/field-transfer/components/field-transfer-modal.vue2.mjs +7 -0
- package/es/components/field-transfer/components/field-transfer-modal.vue3.mjs +230 -0
- package/es/components/field-transfer/components/modal-wrapper.vue.d.ts +19 -0
- package/es/components/field-transfer/components/modal-wrapper.vue.mjs +29 -0
- package/es/components/field-transfer/components/modal-wrapper.vue2.mjs +5 -0
- package/es/components/field-transfer/hooks/useTreeData.d.ts +139 -0
- package/es/components/field-transfer/hooks/useTreeData.mjs +165 -0
- package/es/components/field-transfer/index.d.ts +21 -0
- package/es/components/field-transfer/less/AdvancedTransfer.css +60 -0
- package/es/components/field-transfer/less/FieldCascader.css +57 -0
- package/es/components/field-transfer/less/TransferTree.css +86 -0
- package/es/components/field-transfer/less/TreeItem.css +29 -0
- package/es/components/field-transfer/useFieldTransfer.d.ts +47 -0
- package/es/components/field-transfer/useFieldTransfer.mjs +51 -0
- package/es/components/field-transfer/utils/tree-tool.d.ts +6 -0
- package/es/components/field-transfer/utils/tree-tool.mjs +73 -0
- package/es/components/index.d.ts +3 -0
- package/es/components/index.mjs +40 -7
- package/es/components/modal-name-editor/modal-name-editor.d.ts +2 -2
- package/es/components/user-occupy/index.d.ts +4 -0
- package/es/components/user-occupy/occupy.const.d.ts +4 -0
- package/es/components/user-occupy/occupy.const.mjs +3 -0
- package/es/components/user-occupy/useUserOccupy.d.ts +38 -0
- package/es/components/user-occupy/useUserOccupy.mjs +218 -0
- package/es/components/user-occupy/user-lock.css +29 -0
- package/es/components/user-occupy/user-lock.vue.d.ts +2 -0
- package/es/components/user-occupy/user-lock.vue.mjs +7 -0
- package/es/components/user-occupy/user-lock.vue3.mjs +35 -0
- package/es/components/user-occupy/user-occupy.css +25 -0
- package/es/components/user-occupy/user-occupy.vue.d.ts +2 -0
- package/es/components/user-occupy/user-occupy.vue.mjs +7 -0
- package/es/components/user-occupy/user-occupy.vue3.mjs +36 -0
- package/es/create-app-vue.mjs +0 -4
- package/es/hooks/design-view/design-state.d.ts +125 -122
- package/es/hooks/design-view/design-state.mjs +68 -27
- package/es/hooks/design-view/designer/useDesignCache.mjs +64 -1
- package/es/hooks/design-view/designer/useDesignModal.d.ts +1238 -96
- package/es/hooks/design-view/designer/useDesignModal.mjs +21 -3
- package/es/hooks/design-view/designer/useDesignPreview.mjs +59 -1
- package/es/hooks/design-view/designer/useDesignSave.d.ts +3 -3
- package/es/hooks/design-view/designer/useDesignSave.mjs +74 -11
- package/es/hooks/design-view/global/useGlobal.d.ts +62 -62
- package/es/hooks/design-view/layout/useScope.d.ts +3 -3
- package/es/hooks/design-view/layout/useToolkit.d.ts +20 -20
- package/es/hooks/design-view/layout/useToolkit.mjs +46 -5
- package/es/hooks/design-view/page/usePage.mjs +76 -3
- package/es/hooks/design-view/useDesigner.d.ts +1281 -141
- package/es/hooks/design-view/useDesigner.mjs +21 -5
- package/es/hooks/design-view/widget/useSelectedWidget.mjs +9 -1
- package/es/hooks/design-view/widget/useWidget.d.ts +0 -5
- package/es/hooks/design-view/widget/useWidget.mjs +1 -6
- package/es/hooks/design-view/widget/useWidgetRegistry.mjs +60 -1
- package/es/hooks/index.d.ts +3 -2
- package/es/hooks/widgets/useAsyncFields.d.ts +17 -0
- package/es/hooks/widgets/useAsyncFields.mjs +177 -0
- package/es/hooks/widgets/useFileAttrsHooks.d.ts +28 -0
- package/es/hooks/widgets/useFileAttrsHooks.mjs +39 -0
- package/es/index.d.ts +1 -3
- package/es/index.mjs +53 -60
- package/es/interface/index.d.ts +0 -2
- package/es/register/index.d.ts +0 -1
- package/es/schema/common-config/base-button-config.d.ts +3 -0
- package/es/schema/common-config/base-button-config.mjs +84 -0
- package/es/schema/common-config/button-editor-config.d.ts +4 -0
- package/es/schema/common-config/button-editor-config.mjs +206 -0
- package/es/schema/common-config/button-props-func.d.ts +5 -0
- package/es/schema/common-config/button-props-func.mjs +11 -0
- package/es/schema/common-config/common-event-config.d.ts +6 -0
- package/es/schema/common-config/common-event-config.mjs +14 -0
- package/es/schema/common-config/common-field-editor-config.d.ts +17 -0
- package/es/schema/common-config/common-field-editor-config.mjs +213 -0
- package/es/schema/common-config/common-style.d.ts +3 -0
- package/es/schema/common-config/common-style.mjs +85 -0
- package/es/schema/common-config/display-editor-config.d.ts +3 -0
- package/es/schema/common-config/display-editor-config.mjs +89 -0
- package/es/schema/common-config/formItem-editor-config.d.ts +2 -0
- package/es/schema/common-config/formItem-editor-config.mjs +20 -0
- package/es/schema/common-config/permission-editor-config.d.ts +2 -0
- package/es/schema/common-config/permission-editor-config.mjs +23 -0
- package/es/schema/index.d.ts +13 -0
- package/es/schema/modal/modal-body.d.ts +2 -0
- package/es/schema/modal/modal-body.mjs +9 -0
- package/es/schema/modal/modal-footer.d.ts +2 -0
- package/es/schema/modal/modal-footer.mjs +9 -0
- package/es/schema/modal/modal.d.ts +8 -0
- package/es/schema/modal/modal.mjs +182 -0
- package/es/schema/search/BaseDate.d.ts +143 -0
- package/es/schema/search/BaseDate.mjs +123 -0
- package/es/schema/search/BaseSearch.d.ts +141 -0
- package/es/schema/search/BaseSearch.mjs +160 -0
- package/es/setup-app.mjs +45 -10
- package/es/utils/begin-drag/begin-drag.d.ts +13 -0
- package/es/utils/begin-drag/begin-drag.mjs +206 -0
- package/es/utils/design-view/index.d.ts +9 -0
- package/es/utils/design-view/index.mjs +17 -0
- package/es/utils/flatten.d.ts +12 -0
- package/es/utils/flatten.mjs +27 -0
- package/es/utils/formula-editor-design/formula-editor-design.mjs +48 -8
- package/es/utils/index.d.ts +4 -2
- package/es/utils/schema/index.d.ts +10 -0
- package/es/utils/schema/index.mjs +12 -0
- package/package.json +8 -8
- package/es/components/design/design-content/design-content.css +0 -76
- package/es/components/design/design-content/design-content.d.ts +0 -191
- package/es/components/design/design-content/design-content.mjs +0 -363
- package/es/components/design/design-drag-item/design-drag-item.css +0 -179
- package/es/components/design/design-drag-item/design-drag-item.d.ts +0 -55
- package/es/components/design/design-drag-item/design-drag-item.mjs +0 -297
- package/es/components/design/design-drop-container/design-drop-container.css +0 -103
- package/es/components/design/design-drop-container/design-drop-container.d.ts +0 -91
- package/es/components/design/design-drop-container/design-drop-container.mjs +0 -221
- package/es/components/design/design-drop-line/design-drop-line.css +0 -165
- package/es/components/design/design-drop-line/design-drop-line.d.ts +0 -72
- package/es/components/design/design-drop-line/design-drop-line.mjs +0 -179
- package/es/components/design/design-item-actions/design-item-actions.css +0 -97
- package/es/components/design/design-item-actions/design-item-actions.d.ts +0 -42
- package/es/components/design/design-item-actions/design-item-actions.mjs +0 -196
- package/es/components/design/design-item-highlighter/design-item-highlighter.css +0 -70
- package/es/components/design/design-item-highlighter/design-item-highlighter.d.ts +0 -168
- package/es/components/design/design-item-highlighter/design-item-highlighter.mjs +0 -167
- package/es/components/design/design-item-highlighter-container/design-item-highlighter-container.css +0 -85
- package/es/components/design/design-item-highlighter-container/design-item-highlighter-container.d.ts +0 -53
- package/es/components/design/design-item-highlighter-container/design-item-highlighter-container.mjs +0 -224
- package/es/components/design/design-item-hover-title/design-item-hover-title.css +0 -12
- package/es/components/design/design-item-hover-title/design-item-hover-title.d.ts +0 -60
- package/es/components/design/design-item-hover-title/design-item-hover-title.mjs +0 -74
- package/es/components/design/design-item-preview/design-item-preview.css +0 -91
- package/es/components/design/design-item-preview/design-item-preview.d.ts +0 -1
- package/es/components/design/design-item-preview/design-item-preview.mjs +0 -50
- package/es/components/design/design-not-drag-item/design-not-drag-item.css +0 -67
- package/es/components/design/design-not-drag-item/design-not-drag-item.d.ts +0 -49
- package/es/components/design/design-not-drag-item/design-not-drag-item.mjs +0 -87
- package/es/components/design/design-not-found/design-not-found.css +0 -68
- package/es/components/design/design-not-found/design-not-found.d.ts +0 -14
- package/es/components/design/design-not-found/design-not-found.mjs +0 -26
- package/es/components/design/index.d.ts +0 -6
- package/es/components/design/index.mjs +0 -22
- package/es/components/material/index.d.ts +0 -5
- package/es/components/material/index.mjs +0 -9
- package/es/components/material/material-content/material-content.css +0 -86
- package/es/components/material/material-content/material-content.d.ts +0 -187
- package/es/components/material/material-content/material-content.mjs +0 -59
- package/es/components/material/material-module/material-module.css +0 -104
- package/es/components/material/material-module/material-module.d.ts +0 -72
- package/es/components/material/material-module/material-module.mjs +0 -111
- package/es/components/material/material-module-drag-container/material-module-drag-container.css +0 -69
- package/es/components/material/material-module-drag-container/material-module-drag-container.d.ts +0 -62
- package/es/components/material/material-module-drag-container/material-module-drag-container.mjs +0 -32
- package/es/components/material/material-module-drag-item/material-module-drag-item.css +0 -83
- package/es/components/material/material-module-drag-item/material-module-drag-item.d.ts +0 -17
- package/es/components/material/material-module-drag-item/material-module-drag-item.mjs +0 -103
- package/es/components/material/material-outline-tree/material-outline-tree.css +0 -81
- package/es/components/material/material-outline-tree/material-outline-tree.d.ts +0 -1
- package/es/components/material/material-outline-tree/material-outline-tree.mjs +0 -90
- package/es/components/material/material-tab-pane/material-tab-pane.css +0 -68
- package/es/components/material/material-tab-pane/material-tab-pane.d.ts +0 -13
- package/es/components/material/material-tab-pane/material-tab-pane.mjs +0 -26
- package/es/components/material/material-tabs/material-tabs.css +0 -105
- package/es/components/material/material-tabs/material-tabs.d.ts +0 -103
- package/es/components/material/material-tabs/material-tabs.mjs +0 -69
- package/es/components/panel/index.d.ts +0 -5
- package/es/components/panel/index.mjs +0 -9
- package/es/components/panel/panel-content/panel-content.css +0 -183
- package/es/components/panel/panel-content/panel-content.d.ts +0 -19
- package/es/components/panel/panel-content/panel-content.mjs +0 -73
- package/es/components/panel/panel-form/panel-form.css +0 -67
- package/es/components/panel/panel-form/panel-form.d.ts +0 -62
- package/es/components/panel/panel-form/panel-form.mjs +0 -76
- package/es/components/panel/panel-path/panel-path.css +0 -89
- package/es/components/panel/panel-path/panel-path.d.ts +0 -35
- package/es/components/panel/panel-path/panel-path.mjs +0 -75
- package/es/controller/index.d.ts +0 -1
- package/es/controller/view/design-view.controller.d.ts +0 -47
- package/es/controller/view/design-view.controller.mjs +0 -183
- package/es/dictionary/tab-type/tab-type.mjs +0 -24
- package/es/editor/child-list-editor/child-list-editor.css +0 -76
- package/es/editor/child-list-editor/child-list-editor.d.ts +0 -163
- package/es/editor/child-list-editor/child-list-editor.mjs +0 -145
- package/es/editor/child-list-editor/child-list-editor.provider.d.ts +0 -13
- package/es/editor/child-list-editor/child-list-editor.provider.mjs +0 -5
- package/es/editor/child-list-editor/components/child-list-item-editor.css +0 -112
- package/es/editor/child-list-editor/components/child-list-item-editor.d.ts +0 -133
- package/es/editor/child-list-editor/components/child-list-item-editor.mjs +0 -238
- package/es/editor/child-list-editor/index.d.ts +0 -4
- package/es/editor/child-list-editor/index.mjs +0 -13
- package/es/editor/content-tag-style/content-tag-style.css +0 -164
- package/es/editor/content-tag-style/content-tag-style.d.ts +0 -112
- package/es/editor/content-tag-style/content-tag-style.mjs +0 -103
- package/es/editor/content-tag-style/index.d.ts +0 -8
- package/es/editor/content-tag-style/index.mjs +0 -15
- package/es/editor/custom-exp-menu-editor/components/custom-exp-menu-item.css +0 -156
- package/es/editor/custom-exp-menu-editor/components/custom-exp-menu-item.d.ts +0 -29
- package/es/editor/custom-exp-menu-editor/components/custom-exp-menu-item.mjs +0 -134
- package/es/editor/custom-exp-menu-editor/custom-exp-menu-editor.css +0 -76
- package/es/editor/custom-exp-menu-editor/custom-exp-menu-editor.d.ts +0 -38
- package/es/editor/custom-exp-menu-editor/custom-exp-menu-editor.mjs +0 -163
- package/es/editor/custom-exp-menu-editor/custom-exp-menu-editor.provider.d.ts +0 -13
- package/es/editor/custom-exp-menu-editor/custom-exp-menu-editor.provider.mjs +0 -5
- package/es/editor/custom-exp-menu-editor/i-custom-exp-menu-model.d.ts +0 -23
- package/es/editor/custom-exp-menu-editor/index.d.ts +0 -5
- package/es/editor/custom-exp-menu-editor/index.mjs +0 -13
- package/es/editor/custom-exp-menu-editor/modal/exp-menu.modal.d.ts +0 -37
- package/es/editor/field-info-editor/field-info-editor.css +0 -125
- package/es/editor/field-info-editor/field-info-editor.d.ts +0 -111
- package/es/editor/field-info-editor/field-info-editor.mjs +0 -60
- package/es/editor/field-info-editor/index.d.ts +0 -8
- package/es/editor/field-info-editor/index.mjs +0 -13
- package/es/editor/index.d.ts +0 -5
- package/es/editor/index.mjs +0 -27
- package/es/editor/model-field-select/index.d.ts +0 -8
- package/es/editor/model-field-select/index.mjs +0 -13
- package/es/editor/model-field-select/model-field-select.css +0 -141
- package/es/editor/model-field-select/model-field-select.d.ts +0 -42
- package/es/editor/model-field-select/model-field-select.mjs +0 -314
- package/es/editor/style-border/index.d.ts +0 -8
- package/es/editor/style-border/index.mjs +0 -15
- package/es/editor/style-border/style-border.d.ts +0 -38
- package/es/editor/style-border/style-border.mjs +0 -45
- package/es/editor/style-font/index.d.ts +0 -8
- package/es/editor/style-font/index.mjs +0 -15
- package/es/editor/style-font/style-font.css +0 -86
- package/es/editor/style-font/style-font.d.ts +0 -38
- package/es/editor/style-font/style-font.mjs +0 -45
- package/es/editor/style-position/index.d.ts +0 -8
- package/es/editor/style-position/index.mjs +0 -15
- package/es/editor/style-position/style-position.d.ts +0 -38
- package/es/editor/style-position/style-position.mjs +0 -44
- package/es/editor/style-spacing/index.d.ts +0 -8
- package/es/editor/style-spacing/index.mjs +0 -15
- package/es/editor/style-spacing/style-spacing.d.ts +0 -40
- package/es/editor/style-spacing/style-spacing.mjs +0 -69
- package/es/editor/system-page-select/i-system-page-select.d.ts +0 -23
- package/es/editor/system-page-select/index.d.ts +0 -9
- package/es/editor/system-page-select/index.mjs +0 -15
- package/es/editor/system-page-select/system-page-select.css +0 -119
- package/es/editor/system-page-select/system-page-select.d.ts +0 -38
- package/es/editor/system-page-select/system-page-select.mjs +0 -82
- package/es/hooks/use-design-view-controller/use-design-view-controller.d.ts +0 -11
- package/es/hooks/use-design-view-controller/use-design-view-controller.mjs +0 -26
- package/es/interface/editor/child-list-editor/child-list-editor.d.ts +0 -114
- package/es/interface/editor/index.d.ts +0 -9
- package/es/interface/editor/style-border/i-style-border.controller.d.ts +0 -11
- package/es/interface/editor/style-border/i-style-border.d.ts +0 -22
- package/es/interface/editor/style-font/i-style-font.controller.d.ts +0 -11
- package/es/interface/editor/style-font/i-style-font.d.ts +0 -13
- package/es/interface/editor/style-position/i-style-position.controller.d.ts +0 -11
- package/es/interface/editor/style-position/i-style-position.d.ts +0 -13
- package/es/interface/editor/style-spacing/i-style-spacing.controller.d.ts +0 -11
- package/es/interface/editor/style-spacing/i-style-spacing.d.ts +0 -22
- package/es/interface/provider/i-node-provider.d.ts +0 -142
- package/es/plugins/design-custom-exp-menu/components/design-custom-exp-menu-component.css +0 -87
- package/es/plugins/design-custom-exp-menu/components/design-custom-exp-menu.component.d.ts +0 -9
- package/es/plugins/design-custom-exp-menu/components/design-custom-exp-menu.component.mjs +0 -109
- package/es/plugins/design-custom-exp-menu/design-custom-exp-menu.data.d.ts +0 -51
- package/es/plugins/design-custom-exp-menu/design-custom-exp-menu.data.mjs +0 -89
- package/es/plugins/design-custom-exp-menu/design-custom-exp-menu.provider.d.ts +0 -23
- package/es/plugins/design-custom-exp-menu/design-custom-exp-menu.provider.mjs +0 -159
- package/es/plugins/design-editor/index.d.ts +0 -5
- package/es/plugins/design-editor/index.mjs +0 -13
- package/es/plugins/design-editor/upload-file/index.d.ts +0 -4
- package/es/plugins/design-editor/upload-file/index.mjs +0 -32
- package/es/plugins/design-editor/upload-file/upload-file.css +0 -124
- package/es/plugins/design-editor/upload-file/upload-file.d.ts +0 -46
- package/es/plugins/design-editor/upload-file/upload-file.mjs +0 -51
- package/es/plugins/design-editor/upload-image/index.d.ts +0 -4
- package/es/plugins/design-editor/upload-image/index.mjs +0 -32
- package/es/plugins/design-editor/upload-image/upload-image.css +0 -79
- package/es/plugins/design-editor/upload-image/upload-image.d.ts +0 -46
- package/es/plugins/design-editor/upload-image/upload-image.mjs +0 -23
- package/es/plugins/design-editor/user-signature/index.d.ts +0 -4
- package/es/plugins/design-editor/user-signature/index.mjs +0 -32
- package/es/plugins/design-editor/user-signature/user-signature.css +0 -79
- package/es/plugins/design-editor/user-signature/user-signature.d.ts +0 -46
- package/es/plugins/design-editor/user-signature/user-signature.mjs +0 -23
- package/es/plugins/design-grid/components/design-grid.component.css +0 -68
- package/es/plugins/design-grid/components/design-grid.component.d.ts +0 -39
- package/es/plugins/design-grid/components/design-grid.component.mjs +0 -60
- package/es/plugins/design-grid/design-grid.data.d.ts +0 -34
- package/es/plugins/design-grid/design-grid.data.mjs +0 -17
- package/es/plugins/design-grid/design-grid.provider.d.ts +0 -26
- package/es/plugins/design-grid/design-grid.provider.mjs +0 -273
- package/es/plugins/design-grid-item/components/design-grid-item.component.d.ts +0 -38
- package/es/plugins/design-grid-item/components/design-grid-item.component.mjs +0 -39
- package/es/plugins/design-grid-item/design-grid-item.data.d.ts +0 -26
- package/es/plugins/design-grid-item/design-grid-item.data.mjs +0 -17
- package/es/plugins/design-grid-item/design-grid-item.provider.d.ts +0 -25
- package/es/plugins/design-grid-item/design-grid-item.provider.mjs +0 -172
- package/es/plugins/design-menu-list/components/design-menu-list.component.css +0 -131
- package/es/plugins/design-menu-list/components/design-menu-list.component.d.ts +0 -18
- package/es/plugins/design-menu-list/components/design-menu-list.component.mjs +0 -110
- package/es/plugins/design-menu-list/design-menu-list.data.d.ts +0 -62
- package/es/plugins/design-menu-list/design-menu-list.data.mjs +0 -21
- package/es/plugins/design-menu-list/design-menu-list.provider.d.ts +0 -23
- package/es/plugins/design-menu-list/design-menu-list.provider.mjs +0 -265
- package/es/plugins/design-page/design-page.data.d.ts +0 -15
- package/es/plugins/design-page/design-page.data.mjs +0 -17
- package/es/plugins/design-page/design-page.provider.d.ts +0 -23
- package/es/plugins/design-page/design-page.provider.mjs +0 -109
- package/es/plugins/design-panel/components/design-panel-component.css +0 -108
- package/es/plugins/design-panel/components/design-panel.component.d.ts +0 -39
- package/es/plugins/design-panel/components/design-panel.component.mjs +0 -49
- package/es/plugins/design-panel/design-panel.data.d.ts +0 -64
- package/es/plugins/design-panel/design-panel.data.mjs +0 -27
- package/es/plugins/design-panel/design-panel.provider.d.ts +0 -23
- package/es/plugins/design-panel/design-panel.provider.mjs +0 -298
- package/es/plugins/design-personal-center/components/design-personal-center.component.css +0 -48
- package/es/plugins/design-personal-center/components/design-personal-center.component.vue.d.ts +0 -36
- package/es/plugins/design-personal-center/components/design-personal-center.component.vue.mjs +0 -7
- package/es/plugins/design-personal-center/components/design-personal-center.component.vue2.mjs +0 -97
- package/es/plugins/design-personal-center/design-personal-center.data.d.ts +0 -27
- package/es/plugins/design-personal-center/design-personal-center.data.mjs +0 -21
- package/es/plugins/design-personal-center/design-personal-center.provider.d.ts +0 -13
- package/es/plugins/design-personal-center/design-personal-center.provider.mjs +0 -144
- package/es/plugins/design-select-component/components/design-select-component.component.css +0 -107
- package/es/plugins/design-select-component/components/design-select-component.component.d.ts +0 -41
- package/es/plugins/design-select-component/components/design-select-component.component.mjs +0 -57
- package/es/plugins/design-select-component/design-select-component.data.d.ts +0 -57
- package/es/plugins/design-select-component/design-select-component.data.mjs +0 -18
- package/es/plugins/design-select-component/design-select-component.provider.d.ts +0 -23
- package/es/plugins/design-select-component/design-select-component.provider.mjs +0 -207
- package/es/plugins/design-tab-item/components/design-tab-item.component.d.ts +0 -38
- package/es/plugins/design-tab-item/components/design-tab-item.component.mjs +0 -39
- package/es/plugins/design-tab-item/design-tab-item.data.d.ts +0 -35
- package/es/plugins/design-tab-item/design-tab-item.data.mjs +0 -22
- package/es/plugins/design-tab-item/design-tab-item.provider.d.ts +0 -25
- package/es/plugins/design-tab-item/design-tab-item.provider.mjs +0 -185
- package/es/plugins/design-tabs/components/design-tabs.component.css +0 -105
- package/es/plugins/design-tabs/components/design-tabs.component.d.ts +0 -40
- package/es/plugins/design-tabs/components/design-tabs.component.mjs +0 -85
- package/es/plugins/design-tabs/design-tabs.data.d.ts +0 -66
- package/es/plugins/design-tabs/design-tabs.data.mjs +0 -19
- package/es/plugins/design-tabs/design-tabs.provider.d.ts +0 -26
- package/es/plugins/design-tabs/design-tabs.provider.mjs +0 -261
- package/es/plugins/index.d.ts +0 -5
- package/es/plugins/index.mjs +0 -116
- package/es/plugins/install-material.d.ts +0 -8
- package/es/plugins/install-material.mjs +0 -55
- package/es/provider/design-editor-node/design-editor-node.provider.d.ts +0 -40
- package/es/provider/design-editor-node/design-editor-node.provider.mjs +0 -44
- package/es/provider/index.d.ts +0 -2
- package/es/provider/node-base/node-base.provider.d.ts +0 -25
- package/es/provider/node-base/node-base.provider.mjs +0 -26
- package/es/register/node/node.register.d.ts +0 -113
- package/es/register/node/node.register.mjs +0 -134
- package/es/store/index.d.ts +0 -1
- package/es/store/view/design-view.store.d.ts +0 -5
- package/es/store/view/design-view.store.mjs +0 -412
- package/es/utils/can-drop/can-drop.d.ts +0 -12
- package/es/utils/can-drop/can-drop.mjs +0 -56
- package/es/utils/design-install/design-install.d.ts +0 -16
- package/es/utils/design-install/design-install.mjs +0 -22
- package/es/views/design-view.css +0 -218
- package/es/views/design-view.d.ts +0 -87
- package/es/views/design-view.mjs +0 -346
- package/es/views/index.d.ts +0 -1
|
@@ -186,41 +186,41 @@ export declare function useDesigner(): {
|
|
|
186
186
|
componentDependency: {
|
|
187
187
|
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
188
188
|
configDependency: {
|
|
189
|
-
hidden
|
|
189
|
+
hidden?: {
|
|
190
190
|
expressionStr?: string | undefined;
|
|
191
191
|
expression?: string | undefined;
|
|
192
192
|
value?: boolean | undefined;
|
|
193
193
|
fieldValue?: boolean | undefined;
|
|
194
194
|
strategy?: string | undefined;
|
|
195
|
-
};
|
|
196
|
-
readonly
|
|
195
|
+
} | undefined;
|
|
196
|
+
readonly?: {
|
|
197
197
|
expressionStr?: string | undefined;
|
|
198
198
|
expression?: string | undefined;
|
|
199
199
|
value?: boolean | undefined;
|
|
200
200
|
fieldValue?: boolean | undefined;
|
|
201
201
|
strategy?: string | undefined;
|
|
202
|
-
};
|
|
203
|
-
disabled
|
|
202
|
+
} | undefined;
|
|
203
|
+
disabled?: {
|
|
204
204
|
expressionStr?: string | undefined;
|
|
205
205
|
expression?: string | undefined;
|
|
206
206
|
value?: boolean | undefined;
|
|
207
207
|
fieldValue?: boolean | undefined;
|
|
208
208
|
strategy?: string | undefined;
|
|
209
|
-
};
|
|
210
|
-
required
|
|
209
|
+
} | undefined;
|
|
210
|
+
required?: {
|
|
211
211
|
expressionStr?: string | undefined;
|
|
212
212
|
expression?: string | undefined;
|
|
213
213
|
value?: boolean | undefined;
|
|
214
214
|
fieldValue?: boolean | undefined;
|
|
215
215
|
strategy?: string | undefined;
|
|
216
|
-
};
|
|
217
|
-
assignment
|
|
216
|
+
} | undefined;
|
|
217
|
+
assignment?: {
|
|
218
218
|
expressionStr?: string | undefined;
|
|
219
219
|
expression?: string | undefined;
|
|
220
220
|
value?: boolean | undefined;
|
|
221
221
|
fieldValue?: boolean | undefined;
|
|
222
222
|
strategy?: string | undefined;
|
|
223
|
-
};
|
|
223
|
+
} | undefined;
|
|
224
224
|
};
|
|
225
225
|
};
|
|
226
226
|
deviceConnectivity: boolean;
|
|
@@ -258,7 +258,7 @@ export declare function useDesigner(): {
|
|
|
258
258
|
css: string;
|
|
259
259
|
children: [{
|
|
260
260
|
id: string;
|
|
261
|
-
type: import("@gct-paas/core").BuiltinType.MODAL_BODY;
|
|
261
|
+
type: import("@gct-paas/core").BuiltinType.MODAL_BODY | string;
|
|
262
262
|
children: {
|
|
263
263
|
[x: string]: any;
|
|
264
264
|
id: string;
|
|
@@ -389,41 +389,41 @@ export declare function useDesigner(): {
|
|
|
389
389
|
componentDependency: {
|
|
390
390
|
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
391
391
|
configDependency: {
|
|
392
|
-
hidden
|
|
392
|
+
hidden?: {
|
|
393
393
|
expressionStr?: string | undefined;
|
|
394
394
|
expression?: string | undefined;
|
|
395
395
|
value?: boolean | undefined;
|
|
396
396
|
fieldValue?: boolean | undefined;
|
|
397
397
|
strategy?: string | undefined;
|
|
398
|
-
};
|
|
399
|
-
readonly
|
|
398
|
+
} | undefined;
|
|
399
|
+
readonly?: {
|
|
400
400
|
expressionStr?: string | undefined;
|
|
401
401
|
expression?: string | undefined;
|
|
402
402
|
value?: boolean | undefined;
|
|
403
403
|
fieldValue?: boolean | undefined;
|
|
404
404
|
strategy?: string | undefined;
|
|
405
|
-
};
|
|
406
|
-
disabled
|
|
405
|
+
} | undefined;
|
|
406
|
+
disabled?: {
|
|
407
407
|
expressionStr?: string | undefined;
|
|
408
408
|
expression?: string | undefined;
|
|
409
409
|
value?: boolean | undefined;
|
|
410
410
|
fieldValue?: boolean | undefined;
|
|
411
411
|
strategy?: string | undefined;
|
|
412
|
-
};
|
|
413
|
-
required
|
|
412
|
+
} | undefined;
|
|
413
|
+
required?: {
|
|
414
414
|
expressionStr?: string | undefined;
|
|
415
415
|
expression?: string | undefined;
|
|
416
416
|
value?: boolean | undefined;
|
|
417
417
|
fieldValue?: boolean | undefined;
|
|
418
418
|
strategy?: string | undefined;
|
|
419
|
-
};
|
|
420
|
-
assignment
|
|
419
|
+
} | undefined;
|
|
420
|
+
assignment?: {
|
|
421
421
|
expressionStr?: string | undefined;
|
|
422
422
|
expression?: string | undefined;
|
|
423
423
|
value?: boolean | undefined;
|
|
424
424
|
fieldValue?: boolean | undefined;
|
|
425
425
|
strategy?: string | undefined;
|
|
426
|
-
};
|
|
426
|
+
} | undefined;
|
|
427
427
|
};
|
|
428
428
|
};
|
|
429
429
|
deviceConnectivity: boolean;
|
|
@@ -579,41 +579,41 @@ export declare function useDesigner(): {
|
|
|
579
579
|
componentDependency: {
|
|
580
580
|
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
581
581
|
configDependency: {
|
|
582
|
-
hidden
|
|
582
|
+
hidden?: {
|
|
583
583
|
expressionStr?: string | undefined;
|
|
584
584
|
expression?: string | undefined;
|
|
585
585
|
value?: boolean | undefined;
|
|
586
586
|
fieldValue?: boolean | undefined;
|
|
587
587
|
strategy?: string | undefined;
|
|
588
|
-
};
|
|
589
|
-
readonly
|
|
588
|
+
} | undefined;
|
|
589
|
+
readonly?: {
|
|
590
590
|
expressionStr?: string | undefined;
|
|
591
591
|
expression?: string | undefined;
|
|
592
592
|
value?: boolean | undefined;
|
|
593
593
|
fieldValue?: boolean | undefined;
|
|
594
594
|
strategy?: string | undefined;
|
|
595
|
-
};
|
|
596
|
-
disabled
|
|
595
|
+
} | undefined;
|
|
596
|
+
disabled?: {
|
|
597
597
|
expressionStr?: string | undefined;
|
|
598
598
|
expression?: string | undefined;
|
|
599
599
|
value?: boolean | undefined;
|
|
600
600
|
fieldValue?: boolean | undefined;
|
|
601
601
|
strategy?: string | undefined;
|
|
602
|
-
};
|
|
603
|
-
required
|
|
602
|
+
} | undefined;
|
|
603
|
+
required?: {
|
|
604
604
|
expressionStr?: string | undefined;
|
|
605
605
|
expression?: string | undefined;
|
|
606
606
|
value?: boolean | undefined;
|
|
607
607
|
fieldValue?: boolean | undefined;
|
|
608
608
|
strategy?: string | undefined;
|
|
609
|
-
};
|
|
610
|
-
assignment
|
|
609
|
+
} | undefined;
|
|
610
|
+
assignment?: {
|
|
611
611
|
expressionStr?: string | undefined;
|
|
612
612
|
expression?: string | undefined;
|
|
613
613
|
value?: boolean | undefined;
|
|
614
614
|
fieldValue?: boolean | undefined;
|
|
615
615
|
strategy?: string | undefined;
|
|
616
|
-
};
|
|
616
|
+
} | undefined;
|
|
617
617
|
};
|
|
618
618
|
};
|
|
619
619
|
deviceConnectivity: boolean;
|
|
@@ -769,41 +769,41 @@ export declare function useDesigner(): {
|
|
|
769
769
|
componentDependency: {
|
|
770
770
|
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
771
771
|
configDependency: {
|
|
772
|
-
hidden
|
|
772
|
+
hidden?: {
|
|
773
773
|
expressionStr?: string | undefined;
|
|
774
774
|
expression?: string | undefined;
|
|
775
775
|
value?: boolean | undefined;
|
|
776
776
|
fieldValue?: boolean | undefined;
|
|
777
777
|
strategy?: string | undefined;
|
|
778
|
-
};
|
|
779
|
-
readonly
|
|
778
|
+
} | undefined;
|
|
779
|
+
readonly?: {
|
|
780
780
|
expressionStr?: string | undefined;
|
|
781
781
|
expression?: string | undefined;
|
|
782
782
|
value?: boolean | undefined;
|
|
783
783
|
fieldValue?: boolean | undefined;
|
|
784
784
|
strategy?: string | undefined;
|
|
785
|
-
};
|
|
786
|
-
disabled
|
|
785
|
+
} | undefined;
|
|
786
|
+
disabled?: {
|
|
787
787
|
expressionStr?: string | undefined;
|
|
788
788
|
expression?: string | undefined;
|
|
789
789
|
value?: boolean | undefined;
|
|
790
790
|
fieldValue?: boolean | undefined;
|
|
791
791
|
strategy?: string | undefined;
|
|
792
|
-
};
|
|
793
|
-
required
|
|
792
|
+
} | undefined;
|
|
793
|
+
required?: {
|
|
794
794
|
expressionStr?: string | undefined;
|
|
795
795
|
expression?: string | undefined;
|
|
796
796
|
value?: boolean | undefined;
|
|
797
797
|
fieldValue?: boolean | undefined;
|
|
798
798
|
strategy?: string | undefined;
|
|
799
|
-
};
|
|
800
|
-
assignment
|
|
799
|
+
} | undefined;
|
|
800
|
+
assignment?: {
|
|
801
801
|
expressionStr?: string | undefined;
|
|
802
802
|
expression?: string | undefined;
|
|
803
803
|
value?: boolean | undefined;
|
|
804
804
|
fieldValue?: boolean | undefined;
|
|
805
805
|
strategy?: string | undefined;
|
|
806
|
-
};
|
|
806
|
+
} | undefined;
|
|
807
807
|
};
|
|
808
808
|
};
|
|
809
809
|
deviceConnectivity: boolean;
|
|
@@ -949,7 +949,6 @@ export declare function useDesigner(): {
|
|
|
949
949
|
isField: boolean;
|
|
950
950
|
}[];
|
|
951
951
|
timestamp?: number | undefined;
|
|
952
|
-
newDesigner?: boolean | undefined;
|
|
953
952
|
globalEvents: {
|
|
954
953
|
pageMounted?: string | undefined;
|
|
955
954
|
pageDestroyed?: string | undefined;
|
|
@@ -1084,11 +1083,10 @@ export declare function useDesigner(): {
|
|
|
1084
1083
|
}[];
|
|
1085
1084
|
};
|
|
1086
1085
|
methodMap: import('vue').Ref<import('@gct-paas/schema').ExportMethod, import('@gct-paas/schema').ExportMethod>;
|
|
1087
|
-
isNewDesigner: import('vue').WritableComputedRef<boolean | undefined, boolean | undefined>;
|
|
1088
1086
|
checkWidgetMove: () => boolean;
|
|
1089
1087
|
handleAddDrag: (newIndex: number, childrenList: LowCodeWidget.BasicSchema[], scope: SCOPE, formID?: string) => void;
|
|
1090
1088
|
setPageJson: (json: PageJson) => void;
|
|
1091
|
-
save: (
|
|
1089
|
+
save: (flag?: boolean, showSuccess?: boolean) => Promise<boolean>;
|
|
1092
1090
|
savePageJsonSnapshot: (json?: PageJson) => void;
|
|
1093
1091
|
emitCache: () => void;
|
|
1094
1092
|
undoOrRestore: (content: string) => void;
|
|
@@ -1128,7 +1126,7 @@ export declare function useDesigner(): {
|
|
|
1128
1126
|
css: string;
|
|
1129
1127
|
children: [{
|
|
1130
1128
|
id: string;
|
|
1131
|
-
type: import("@gct-paas/core").BuiltinType.MODAL_BODY;
|
|
1129
|
+
type: import("@gct-paas/core").BuiltinType.MODAL_BODY | string;
|
|
1132
1130
|
children: {
|
|
1133
1131
|
[x: string]: any;
|
|
1134
1132
|
id: string;
|
|
@@ -1259,41 +1257,41 @@ export declare function useDesigner(): {
|
|
|
1259
1257
|
componentDependency: {
|
|
1260
1258
|
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
1261
1259
|
configDependency: {
|
|
1262
|
-
hidden
|
|
1260
|
+
hidden?: {
|
|
1263
1261
|
expressionStr?: string | undefined;
|
|
1264
1262
|
expression?: string | undefined;
|
|
1265
1263
|
value?: boolean | undefined;
|
|
1266
1264
|
fieldValue?: boolean | undefined;
|
|
1267
1265
|
strategy?: string | undefined;
|
|
1268
|
-
};
|
|
1269
|
-
readonly
|
|
1266
|
+
} | undefined;
|
|
1267
|
+
readonly?: {
|
|
1270
1268
|
expressionStr?: string | undefined;
|
|
1271
1269
|
expression?: string | undefined;
|
|
1272
1270
|
value?: boolean | undefined;
|
|
1273
1271
|
fieldValue?: boolean | undefined;
|
|
1274
1272
|
strategy?: string | undefined;
|
|
1275
|
-
};
|
|
1276
|
-
disabled
|
|
1273
|
+
} | undefined;
|
|
1274
|
+
disabled?: {
|
|
1277
1275
|
expressionStr?: string | undefined;
|
|
1278
1276
|
expression?: string | undefined;
|
|
1279
1277
|
value?: boolean | undefined;
|
|
1280
1278
|
fieldValue?: boolean | undefined;
|
|
1281
1279
|
strategy?: string | undefined;
|
|
1282
|
-
};
|
|
1283
|
-
required
|
|
1280
|
+
} | undefined;
|
|
1281
|
+
required?: {
|
|
1284
1282
|
expressionStr?: string | undefined;
|
|
1285
1283
|
expression?: string | undefined;
|
|
1286
1284
|
value?: boolean | undefined;
|
|
1287
1285
|
fieldValue?: boolean | undefined;
|
|
1288
1286
|
strategy?: string | undefined;
|
|
1289
|
-
};
|
|
1290
|
-
assignment
|
|
1287
|
+
} | undefined;
|
|
1288
|
+
assignment?: {
|
|
1291
1289
|
expressionStr?: string | undefined;
|
|
1292
1290
|
expression?: string | undefined;
|
|
1293
1291
|
value?: boolean | undefined;
|
|
1294
1292
|
fieldValue?: boolean | undefined;
|
|
1295
1293
|
strategy?: string | undefined;
|
|
1296
|
-
};
|
|
1294
|
+
} | undefined;
|
|
1297
1295
|
};
|
|
1298
1296
|
};
|
|
1299
1297
|
deviceConnectivity: boolean;
|
|
@@ -1449,41 +1447,41 @@ export declare function useDesigner(): {
|
|
|
1449
1447
|
componentDependency: {
|
|
1450
1448
|
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
1451
1449
|
configDependency: {
|
|
1452
|
-
hidden
|
|
1450
|
+
hidden?: {
|
|
1453
1451
|
expressionStr?: string | undefined;
|
|
1454
1452
|
expression?: string | undefined;
|
|
1455
1453
|
value?: boolean | undefined;
|
|
1456
1454
|
fieldValue?: boolean | undefined;
|
|
1457
1455
|
strategy?: string | undefined;
|
|
1458
|
-
};
|
|
1459
|
-
readonly
|
|
1456
|
+
} | undefined;
|
|
1457
|
+
readonly?: {
|
|
1460
1458
|
expressionStr?: string | undefined;
|
|
1461
1459
|
expression?: string | undefined;
|
|
1462
1460
|
value?: boolean | undefined;
|
|
1463
1461
|
fieldValue?: boolean | undefined;
|
|
1464
1462
|
strategy?: string | undefined;
|
|
1465
|
-
};
|
|
1466
|
-
disabled
|
|
1463
|
+
} | undefined;
|
|
1464
|
+
disabled?: {
|
|
1467
1465
|
expressionStr?: string | undefined;
|
|
1468
1466
|
expression?: string | undefined;
|
|
1469
1467
|
value?: boolean | undefined;
|
|
1470
1468
|
fieldValue?: boolean | undefined;
|
|
1471
1469
|
strategy?: string | undefined;
|
|
1472
|
-
};
|
|
1473
|
-
required
|
|
1470
|
+
} | undefined;
|
|
1471
|
+
required?: {
|
|
1474
1472
|
expressionStr?: string | undefined;
|
|
1475
1473
|
expression?: string | undefined;
|
|
1476
1474
|
value?: boolean | undefined;
|
|
1477
1475
|
fieldValue?: boolean | undefined;
|
|
1478
1476
|
strategy?: string | undefined;
|
|
1479
|
-
};
|
|
1480
|
-
assignment
|
|
1477
|
+
} | undefined;
|
|
1478
|
+
assignment?: {
|
|
1481
1479
|
expressionStr?: string | undefined;
|
|
1482
1480
|
expression?: string | undefined;
|
|
1483
1481
|
value?: boolean | undefined;
|
|
1484
1482
|
fieldValue?: boolean | undefined;
|
|
1485
1483
|
strategy?: string | undefined;
|
|
1486
|
-
};
|
|
1484
|
+
} | undefined;
|
|
1487
1485
|
};
|
|
1488
1486
|
};
|
|
1489
1487
|
deviceConnectivity: boolean;
|
|
@@ -1639,41 +1637,41 @@ export declare function useDesigner(): {
|
|
|
1639
1637
|
componentDependency: {
|
|
1640
1638
|
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
1641
1639
|
configDependency: {
|
|
1642
|
-
hidden
|
|
1640
|
+
hidden?: {
|
|
1643
1641
|
expressionStr?: string | undefined;
|
|
1644
1642
|
expression?: string | undefined;
|
|
1645
1643
|
value?: boolean | undefined;
|
|
1646
1644
|
fieldValue?: boolean | undefined;
|
|
1647
1645
|
strategy?: string | undefined;
|
|
1648
|
-
};
|
|
1649
|
-
readonly
|
|
1646
|
+
} | undefined;
|
|
1647
|
+
readonly?: {
|
|
1650
1648
|
expressionStr?: string | undefined;
|
|
1651
1649
|
expression?: string | undefined;
|
|
1652
1650
|
value?: boolean | undefined;
|
|
1653
1651
|
fieldValue?: boolean | undefined;
|
|
1654
1652
|
strategy?: string | undefined;
|
|
1655
|
-
};
|
|
1656
|
-
disabled
|
|
1653
|
+
} | undefined;
|
|
1654
|
+
disabled?: {
|
|
1657
1655
|
expressionStr?: string | undefined;
|
|
1658
1656
|
expression?: string | undefined;
|
|
1659
1657
|
value?: boolean | undefined;
|
|
1660
1658
|
fieldValue?: boolean | undefined;
|
|
1661
1659
|
strategy?: string | undefined;
|
|
1662
|
-
};
|
|
1663
|
-
required
|
|
1660
|
+
} | undefined;
|
|
1661
|
+
required?: {
|
|
1664
1662
|
expressionStr?: string | undefined;
|
|
1665
1663
|
expression?: string | undefined;
|
|
1666
1664
|
value?: boolean | undefined;
|
|
1667
1665
|
fieldValue?: boolean | undefined;
|
|
1668
1666
|
strategy?: string | undefined;
|
|
1669
|
-
};
|
|
1670
|
-
assignment
|
|
1667
|
+
} | undefined;
|
|
1668
|
+
assignment?: {
|
|
1671
1669
|
expressionStr?: string | undefined;
|
|
1672
1670
|
expression?: string | undefined;
|
|
1673
1671
|
value?: boolean | undefined;
|
|
1674
1672
|
fieldValue?: boolean | undefined;
|
|
1675
1673
|
strategy?: string | undefined;
|
|
1676
|
-
};
|
|
1674
|
+
} | undefined;
|
|
1677
1675
|
};
|
|
1678
1676
|
};
|
|
1679
1677
|
deviceConnectivity: boolean;
|
|
@@ -1830,7 +1828,7 @@ export declare function useDesigner(): {
|
|
|
1830
1828
|
css: string;
|
|
1831
1829
|
children: [{
|
|
1832
1830
|
id: string;
|
|
1833
|
-
type: import("@gct-paas/core").BuiltinType.MODAL_BODY;
|
|
1831
|
+
type: import("@gct-paas/core").BuiltinType.MODAL_BODY | string;
|
|
1834
1832
|
children: {
|
|
1835
1833
|
[x: string]: any;
|
|
1836
1834
|
id: string;
|
|
@@ -1961,41 +1959,41 @@ export declare function useDesigner(): {
|
|
|
1961
1959
|
componentDependency: {
|
|
1962
1960
|
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
1963
1961
|
configDependency: {
|
|
1964
|
-
hidden
|
|
1962
|
+
hidden?: {
|
|
1965
1963
|
expressionStr?: string | undefined;
|
|
1966
1964
|
expression?: string | undefined;
|
|
1967
1965
|
value?: boolean | undefined;
|
|
1968
1966
|
fieldValue?: boolean | undefined;
|
|
1969
1967
|
strategy?: string | undefined;
|
|
1970
|
-
};
|
|
1971
|
-
readonly
|
|
1968
|
+
} | undefined;
|
|
1969
|
+
readonly?: {
|
|
1972
1970
|
expressionStr?: string | undefined;
|
|
1973
1971
|
expression?: string | undefined;
|
|
1974
1972
|
value?: boolean | undefined;
|
|
1975
1973
|
fieldValue?: boolean | undefined;
|
|
1976
1974
|
strategy?: string | undefined;
|
|
1977
|
-
};
|
|
1978
|
-
disabled
|
|
1975
|
+
} | undefined;
|
|
1976
|
+
disabled?: {
|
|
1979
1977
|
expressionStr?: string | undefined;
|
|
1980
1978
|
expression?: string | undefined;
|
|
1981
1979
|
value?: boolean | undefined;
|
|
1982
1980
|
fieldValue?: boolean | undefined;
|
|
1983
1981
|
strategy?: string | undefined;
|
|
1984
|
-
};
|
|
1985
|
-
required
|
|
1982
|
+
} | undefined;
|
|
1983
|
+
required?: {
|
|
1986
1984
|
expressionStr?: string | undefined;
|
|
1987
1985
|
expression?: string | undefined;
|
|
1988
1986
|
value?: boolean | undefined;
|
|
1989
1987
|
fieldValue?: boolean | undefined;
|
|
1990
1988
|
strategy?: string | undefined;
|
|
1991
|
-
};
|
|
1992
|
-
assignment
|
|
1989
|
+
} | undefined;
|
|
1990
|
+
assignment?: {
|
|
1993
1991
|
expressionStr?: string | undefined;
|
|
1994
1992
|
expression?: string | undefined;
|
|
1995
1993
|
value?: boolean | undefined;
|
|
1996
1994
|
fieldValue?: boolean | undefined;
|
|
1997
1995
|
strategy?: string | undefined;
|
|
1998
|
-
};
|
|
1996
|
+
} | undefined;
|
|
1999
1997
|
};
|
|
2000
1998
|
};
|
|
2001
1999
|
deviceConnectivity: boolean;
|
|
@@ -2151,41 +2149,41 @@ export declare function useDesigner(): {
|
|
|
2151
2149
|
componentDependency: {
|
|
2152
2150
|
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
2153
2151
|
configDependency: {
|
|
2154
|
-
hidden
|
|
2152
|
+
hidden?: {
|
|
2155
2153
|
expressionStr?: string | undefined;
|
|
2156
2154
|
expression?: string | undefined;
|
|
2157
2155
|
value?: boolean | undefined;
|
|
2158
2156
|
fieldValue?: boolean | undefined;
|
|
2159
2157
|
strategy?: string | undefined;
|
|
2160
|
-
};
|
|
2161
|
-
readonly
|
|
2158
|
+
} | undefined;
|
|
2159
|
+
readonly?: {
|
|
2162
2160
|
expressionStr?: string | undefined;
|
|
2163
2161
|
expression?: string | undefined;
|
|
2164
2162
|
value?: boolean | undefined;
|
|
2165
2163
|
fieldValue?: boolean | undefined;
|
|
2166
2164
|
strategy?: string | undefined;
|
|
2167
|
-
};
|
|
2168
|
-
disabled
|
|
2165
|
+
} | undefined;
|
|
2166
|
+
disabled?: {
|
|
2169
2167
|
expressionStr?: string | undefined;
|
|
2170
2168
|
expression?: string | undefined;
|
|
2171
2169
|
value?: boolean | undefined;
|
|
2172
2170
|
fieldValue?: boolean | undefined;
|
|
2173
2171
|
strategy?: string | undefined;
|
|
2174
|
-
};
|
|
2175
|
-
required
|
|
2172
|
+
} | undefined;
|
|
2173
|
+
required?: {
|
|
2176
2174
|
expressionStr?: string | undefined;
|
|
2177
2175
|
expression?: string | undefined;
|
|
2178
2176
|
value?: boolean | undefined;
|
|
2179
2177
|
fieldValue?: boolean | undefined;
|
|
2180
2178
|
strategy?: string | undefined;
|
|
2181
|
-
};
|
|
2182
|
-
assignment
|
|
2179
|
+
} | undefined;
|
|
2180
|
+
assignment?: {
|
|
2183
2181
|
expressionStr?: string | undefined;
|
|
2184
2182
|
expression?: string | undefined;
|
|
2185
2183
|
value?: boolean | undefined;
|
|
2186
2184
|
fieldValue?: boolean | undefined;
|
|
2187
2185
|
strategy?: string | undefined;
|
|
2188
|
-
};
|
|
2186
|
+
} | undefined;
|
|
2189
2187
|
};
|
|
2190
2188
|
};
|
|
2191
2189
|
deviceConnectivity: boolean;
|
|
@@ -2341,41 +2339,41 @@ export declare function useDesigner(): {
|
|
|
2341
2339
|
componentDependency: {
|
|
2342
2340
|
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
2343
2341
|
configDependency: {
|
|
2344
|
-
hidden
|
|
2342
|
+
hidden?: {
|
|
2345
2343
|
expressionStr?: string | undefined;
|
|
2346
2344
|
expression?: string | undefined;
|
|
2347
2345
|
value?: boolean | undefined;
|
|
2348
2346
|
fieldValue?: boolean | undefined;
|
|
2349
2347
|
strategy?: string | undefined;
|
|
2350
|
-
};
|
|
2351
|
-
readonly
|
|
2348
|
+
} | undefined;
|
|
2349
|
+
readonly?: {
|
|
2352
2350
|
expressionStr?: string | undefined;
|
|
2353
2351
|
expression?: string | undefined;
|
|
2354
2352
|
value?: boolean | undefined;
|
|
2355
2353
|
fieldValue?: boolean | undefined;
|
|
2356
2354
|
strategy?: string | undefined;
|
|
2357
|
-
};
|
|
2358
|
-
disabled
|
|
2355
|
+
} | undefined;
|
|
2356
|
+
disabled?: {
|
|
2359
2357
|
expressionStr?: string | undefined;
|
|
2360
2358
|
expression?: string | undefined;
|
|
2361
2359
|
value?: boolean | undefined;
|
|
2362
2360
|
fieldValue?: boolean | undefined;
|
|
2363
2361
|
strategy?: string | undefined;
|
|
2364
|
-
};
|
|
2365
|
-
required
|
|
2362
|
+
} | undefined;
|
|
2363
|
+
required?: {
|
|
2366
2364
|
expressionStr?: string | undefined;
|
|
2367
2365
|
expression?: string | undefined;
|
|
2368
2366
|
value?: boolean | undefined;
|
|
2369
2367
|
fieldValue?: boolean | undefined;
|
|
2370
2368
|
strategy?: string | undefined;
|
|
2371
|
-
};
|
|
2372
|
-
assignment
|
|
2369
|
+
} | undefined;
|
|
2370
|
+
assignment?: {
|
|
2373
2371
|
expressionStr?: string | undefined;
|
|
2374
2372
|
expression?: string | undefined;
|
|
2375
2373
|
value?: boolean | undefined;
|
|
2376
2374
|
fieldValue?: boolean | undefined;
|
|
2377
2375
|
strategy?: string | undefined;
|
|
2378
|
-
};
|
|
2376
|
+
} | undefined;
|
|
2379
2377
|
};
|
|
2380
2378
|
};
|
|
2381
2379
|
deviceConnectivity: boolean;
|
|
@@ -2524,7 +2522,7 @@ export declare function useDesigner(): {
|
|
|
2524
2522
|
modalDesignId: import('vue').Ref<string, string>;
|
|
2525
2523
|
modalBody: import('vue').ComputedRef<{
|
|
2526
2524
|
id: string;
|
|
2527
|
-
type: import("@gct-paas/core").BuiltinType.MODAL_BODY;
|
|
2525
|
+
type: import("@gct-paas/core").BuiltinType.MODAL_BODY | string;
|
|
2528
2526
|
children: {
|
|
2529
2527
|
[x: string]: any;
|
|
2530
2528
|
id: string;
|
|
@@ -2655,41 +2653,41 @@ export declare function useDesigner(): {
|
|
|
2655
2653
|
componentDependency: {
|
|
2656
2654
|
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
2657
2655
|
configDependency: {
|
|
2658
|
-
hidden
|
|
2656
|
+
hidden?: {
|
|
2659
2657
|
expressionStr?: string | undefined;
|
|
2660
2658
|
expression?: string | undefined;
|
|
2661
2659
|
value?: boolean | undefined;
|
|
2662
2660
|
fieldValue?: boolean | undefined;
|
|
2663
2661
|
strategy?: string | undefined;
|
|
2664
|
-
};
|
|
2665
|
-
readonly
|
|
2662
|
+
} | undefined;
|
|
2663
|
+
readonly?: {
|
|
2666
2664
|
expressionStr?: string | undefined;
|
|
2667
2665
|
expression?: string | undefined;
|
|
2668
2666
|
value?: boolean | undefined;
|
|
2669
2667
|
fieldValue?: boolean | undefined;
|
|
2670
2668
|
strategy?: string | undefined;
|
|
2671
|
-
};
|
|
2672
|
-
disabled
|
|
2669
|
+
} | undefined;
|
|
2670
|
+
disabled?: {
|
|
2673
2671
|
expressionStr?: string | undefined;
|
|
2674
2672
|
expression?: string | undefined;
|
|
2675
2673
|
value?: boolean | undefined;
|
|
2676
2674
|
fieldValue?: boolean | undefined;
|
|
2677
2675
|
strategy?: string | undefined;
|
|
2678
|
-
};
|
|
2679
|
-
required
|
|
2676
|
+
} | undefined;
|
|
2677
|
+
required?: {
|
|
2680
2678
|
expressionStr?: string | undefined;
|
|
2681
2679
|
expression?: string | undefined;
|
|
2682
2680
|
value?: boolean | undefined;
|
|
2683
2681
|
fieldValue?: boolean | undefined;
|
|
2684
2682
|
strategy?: string | undefined;
|
|
2685
|
-
};
|
|
2686
|
-
assignment
|
|
2683
|
+
} | undefined;
|
|
2684
|
+
assignment?: {
|
|
2687
2685
|
expressionStr?: string | undefined;
|
|
2688
2686
|
expression?: string | undefined;
|
|
2689
2687
|
value?: boolean | undefined;
|
|
2690
2688
|
fieldValue?: boolean | undefined;
|
|
2691
2689
|
strategy?: string | undefined;
|
|
2692
|
-
};
|
|
2690
|
+
} | undefined;
|
|
2693
2691
|
};
|
|
2694
2692
|
};
|
|
2695
2693
|
deviceConnectivity: boolean;
|
|
@@ -2712,8 +2710,7 @@ export declare function useDesigner(): {
|
|
|
2712
2710
|
url: string;
|
|
2713
2711
|
} | undefined;
|
|
2714
2712
|
}[];
|
|
2715
|
-
}
|
|
2716
|
-
modalFooter: import('vue').ComputedRef<{
|
|
2713
|
+
} | {
|
|
2717
2714
|
id: string;
|
|
2718
2715
|
type: import("@gct-paas/core").BuiltinType.MODAL_FOOTER;
|
|
2719
2716
|
children: {
|
|
@@ -2846,41 +2843,41 @@ export declare function useDesigner(): {
|
|
|
2846
2843
|
componentDependency: {
|
|
2847
2844
|
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
2848
2845
|
configDependency: {
|
|
2849
|
-
hidden
|
|
2846
|
+
hidden?: {
|
|
2850
2847
|
expressionStr?: string | undefined;
|
|
2851
2848
|
expression?: string | undefined;
|
|
2852
2849
|
value?: boolean | undefined;
|
|
2853
2850
|
fieldValue?: boolean | undefined;
|
|
2854
2851
|
strategy?: string | undefined;
|
|
2855
|
-
};
|
|
2856
|
-
readonly
|
|
2852
|
+
} | undefined;
|
|
2853
|
+
readonly?: {
|
|
2857
2854
|
expressionStr?: string | undefined;
|
|
2858
2855
|
expression?: string | undefined;
|
|
2859
2856
|
value?: boolean | undefined;
|
|
2860
2857
|
fieldValue?: boolean | undefined;
|
|
2861
2858
|
strategy?: string | undefined;
|
|
2862
|
-
};
|
|
2863
|
-
disabled
|
|
2859
|
+
} | undefined;
|
|
2860
|
+
disabled?: {
|
|
2864
2861
|
expressionStr?: string | undefined;
|
|
2865
2862
|
expression?: string | undefined;
|
|
2866
2863
|
value?: boolean | undefined;
|
|
2867
2864
|
fieldValue?: boolean | undefined;
|
|
2868
2865
|
strategy?: string | undefined;
|
|
2869
|
-
};
|
|
2870
|
-
required
|
|
2866
|
+
} | undefined;
|
|
2867
|
+
required?: {
|
|
2871
2868
|
expressionStr?: string | undefined;
|
|
2872
2869
|
expression?: string | undefined;
|
|
2873
2870
|
value?: boolean | undefined;
|
|
2874
2871
|
fieldValue?: boolean | undefined;
|
|
2875
2872
|
strategy?: string | undefined;
|
|
2876
|
-
};
|
|
2877
|
-
assignment
|
|
2873
|
+
} | undefined;
|
|
2874
|
+
assignment?: {
|
|
2878
2875
|
expressionStr?: string | undefined;
|
|
2879
2876
|
expression?: string | undefined;
|
|
2880
2877
|
value?: boolean | undefined;
|
|
2881
2878
|
fieldValue?: boolean | undefined;
|
|
2882
2879
|
strategy?: string | undefined;
|
|
2883
|
-
};
|
|
2880
|
+
} | undefined;
|
|
2884
2881
|
};
|
|
2885
2882
|
};
|
|
2886
2883
|
deviceConnectivity: boolean;
|
|
@@ -2903,8 +2900,7 @@ export declare function useDesigner(): {
|
|
|
2903
2900
|
url: string;
|
|
2904
2901
|
} | undefined;
|
|
2905
2902
|
}[];
|
|
2906
|
-
}
|
|
2907
|
-
modalBottomBtn: import('vue').ComputedRef<{
|
|
2903
|
+
} | {
|
|
2908
2904
|
id: string;
|
|
2909
2905
|
type: import("@gct-paas/core").BuiltinType.BottomButtonContainer;
|
|
2910
2906
|
children: {
|
|
@@ -3037,41 +3033,1183 @@ export declare function useDesigner(): {
|
|
|
3037
3033
|
componentDependency: {
|
|
3038
3034
|
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
3039
3035
|
configDependency: {
|
|
3040
|
-
hidden
|
|
3036
|
+
hidden?: {
|
|
3041
3037
|
expressionStr?: string | undefined;
|
|
3042
3038
|
expression?: string | undefined;
|
|
3043
3039
|
value?: boolean | undefined;
|
|
3044
3040
|
fieldValue?: boolean | undefined;
|
|
3045
3041
|
strategy?: string | undefined;
|
|
3046
|
-
};
|
|
3047
|
-
readonly
|
|
3042
|
+
} | undefined;
|
|
3043
|
+
readonly?: {
|
|
3048
3044
|
expressionStr?: string | undefined;
|
|
3049
3045
|
expression?: string | undefined;
|
|
3050
3046
|
value?: boolean | undefined;
|
|
3051
3047
|
fieldValue?: boolean | undefined;
|
|
3052
3048
|
strategy?: string | undefined;
|
|
3053
|
-
};
|
|
3054
|
-
disabled
|
|
3049
|
+
} | undefined;
|
|
3050
|
+
disabled?: {
|
|
3055
3051
|
expressionStr?: string | undefined;
|
|
3056
3052
|
expression?: string | undefined;
|
|
3057
3053
|
value?: boolean | undefined;
|
|
3058
3054
|
fieldValue?: boolean | undefined;
|
|
3059
3055
|
strategy?: string | undefined;
|
|
3060
|
-
};
|
|
3061
|
-
required
|
|
3056
|
+
} | undefined;
|
|
3057
|
+
required?: {
|
|
3062
3058
|
expressionStr?: string | undefined;
|
|
3063
3059
|
expression?: string | undefined;
|
|
3064
3060
|
value?: boolean | undefined;
|
|
3065
3061
|
fieldValue?: boolean | undefined;
|
|
3066
3062
|
strategy?: string | undefined;
|
|
3067
|
-
};
|
|
3068
|
-
assignment
|
|
3063
|
+
} | undefined;
|
|
3064
|
+
assignment?: {
|
|
3069
3065
|
expressionStr?: string | undefined;
|
|
3070
3066
|
expression?: string | undefined;
|
|
3071
3067
|
value?: boolean | undefined;
|
|
3072
3068
|
fieldValue?: boolean | undefined;
|
|
3073
3069
|
strategy?: string | undefined;
|
|
3074
|
-
};
|
|
3070
|
+
} | undefined;
|
|
3071
|
+
};
|
|
3072
|
+
};
|
|
3073
|
+
deviceConnectivity: boolean;
|
|
3074
|
+
};
|
|
3075
|
+
events: import('@gct-paas/schema').IBasicEvents;
|
|
3076
|
+
formItem?: boolean | undefined;
|
|
3077
|
+
display?: import('@gct-paas/core').DisplayEnums | undefined;
|
|
3078
|
+
displayName?: string | undefined;
|
|
3079
|
+
i18n?: Record<string, string> | undefined;
|
|
3080
|
+
isField?: boolean | undefined;
|
|
3081
|
+
materialType?: import('@gct-paas/core').MaterialEnum | undefined;
|
|
3082
|
+
preLocation?: string | undefined;
|
|
3083
|
+
ignoringStyle?: string[] | undefined;
|
|
3084
|
+
isReadonlyWidget?: boolean | undefined;
|
|
3085
|
+
parentComponent?: FormComponents | undefined;
|
|
3086
|
+
dropPlaceholder?: string | undefined;
|
|
3087
|
+
_plugin?: {
|
|
3088
|
+
key: string;
|
|
3089
|
+
version: string;
|
|
3090
|
+
url: string;
|
|
3091
|
+
} | undefined;
|
|
3092
|
+
}[];
|
|
3093
|
+
}>;
|
|
3094
|
+
modalFooter: import('vue').ComputedRef<{
|
|
3095
|
+
id: string;
|
|
3096
|
+
type: import("@gct-paas/core").BuiltinType.MODAL_BODY | string;
|
|
3097
|
+
children: {
|
|
3098
|
+
[x: string]: any;
|
|
3099
|
+
id: string;
|
|
3100
|
+
platform: Platform;
|
|
3101
|
+
categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
|
|
3102
|
+
alias: string;
|
|
3103
|
+
name: string;
|
|
3104
|
+
compName?: string | undefined;
|
|
3105
|
+
compKey?: string | undefined;
|
|
3106
|
+
type: string | FormComponents;
|
|
3107
|
+
icon: string;
|
|
3108
|
+
children?: any[] | undefined;
|
|
3109
|
+
internal?: boolean | undefined;
|
|
3110
|
+
description?: string | undefined;
|
|
3111
|
+
style: {
|
|
3112
|
+
position?: string | undefined;
|
|
3113
|
+
top?: string | undefined;
|
|
3114
|
+
left?: string | undefined;
|
|
3115
|
+
right?: string | undefined;
|
|
3116
|
+
bottom?: string | undefined;
|
|
3117
|
+
width?: string | undefined;
|
|
3118
|
+
height?: string | undefined;
|
|
3119
|
+
maxHeight?: string | undefined;
|
|
3120
|
+
backgroundColor?: string | undefined;
|
|
3121
|
+
marginAll?: string | undefined;
|
|
3122
|
+
marginTop?: string | undefined;
|
|
3123
|
+
marginRight?: string | undefined;
|
|
3124
|
+
marginBottom?: string | undefined;
|
|
3125
|
+
marginLeft?: string | undefined;
|
|
3126
|
+
paddingAll?: string | undefined;
|
|
3127
|
+
paddingTop?: string | undefined;
|
|
3128
|
+
paddingRight?: string | undefined;
|
|
3129
|
+
paddingBottom?: string | undefined;
|
|
3130
|
+
paddingLeft?: string | undefined;
|
|
3131
|
+
labelFont?: {
|
|
3132
|
+
fontSize: string;
|
|
3133
|
+
bold: boolean;
|
|
3134
|
+
italic: boolean;
|
|
3135
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
3136
|
+
color: string;
|
|
3137
|
+
align: "left" | "right" | "justify";
|
|
3138
|
+
} | undefined;
|
|
3139
|
+
contentFont?: {
|
|
3140
|
+
fontSize: string;
|
|
3141
|
+
bold: boolean;
|
|
3142
|
+
italic: boolean;
|
|
3143
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
3144
|
+
color: string;
|
|
3145
|
+
align: "left" | "right" | "justify";
|
|
3146
|
+
} | undefined;
|
|
3147
|
+
tagStyle?: {
|
|
3148
|
+
color?: string | undefined;
|
|
3149
|
+
tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
|
|
3150
|
+
} | undefined;
|
|
3151
|
+
tagStyleOpen?: boolean | undefined;
|
|
3152
|
+
borderAll?: {
|
|
3153
|
+
borderWidth?: string | undefined;
|
|
3154
|
+
borderStyle?: string | undefined;
|
|
3155
|
+
borderColor?: string | undefined;
|
|
3156
|
+
} | undefined;
|
|
3157
|
+
borderLeft?: {
|
|
3158
|
+
borderWidth?: string | undefined;
|
|
3159
|
+
borderStyle?: string | undefined;
|
|
3160
|
+
borderColor?: string | undefined;
|
|
3161
|
+
} | undefined;
|
|
3162
|
+
borderRight?: {
|
|
3163
|
+
borderWidth?: string | undefined;
|
|
3164
|
+
borderStyle?: string | undefined;
|
|
3165
|
+
borderColor?: string | undefined;
|
|
3166
|
+
} | undefined;
|
|
3167
|
+
borderBottom?: {
|
|
3168
|
+
borderWidth?: string | undefined;
|
|
3169
|
+
borderStyle?: string | undefined;
|
|
3170
|
+
borderColor?: string | undefined;
|
|
3171
|
+
} | undefined;
|
|
3172
|
+
borderTop?: {
|
|
3173
|
+
borderWidth?: string | undefined;
|
|
3174
|
+
borderStyle?: string | undefined;
|
|
3175
|
+
borderColor?: string | undefined;
|
|
3176
|
+
} | undefined;
|
|
3177
|
+
borderTopRightRadius?: string | undefined;
|
|
3178
|
+
borderTopLeftRadius?: string | undefined;
|
|
3179
|
+
borderBottomRightRadius?: string | undefined;
|
|
3180
|
+
borderBottomLeftRadius?: string | undefined;
|
|
3181
|
+
borderAllRadius?: string | undefined;
|
|
3182
|
+
columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
|
|
3183
|
+
columnwidth?: number | undefined;
|
|
3184
|
+
columnFontStyleByRule?: {
|
|
3185
|
+
displayRule: string;
|
|
3186
|
+
contentFont: {
|
|
3187
|
+
fontSize: string;
|
|
3188
|
+
bold: boolean;
|
|
3189
|
+
italic: boolean;
|
|
3190
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
3191
|
+
color: string;
|
|
3192
|
+
align: "left" | "right" | "justify";
|
|
3193
|
+
};
|
|
3194
|
+
tagStyle: {
|
|
3195
|
+
color?: string | undefined;
|
|
3196
|
+
tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
|
|
3197
|
+
};
|
|
3198
|
+
progressStyle: {
|
|
3199
|
+
color: string;
|
|
3200
|
+
tagType: import('@gct-paas/core').ProgressTypeEnum;
|
|
3201
|
+
};
|
|
3202
|
+
tagType: import('@gct-paas/core').tagEnum;
|
|
3203
|
+
tagStyleOpen: boolean;
|
|
3204
|
+
}[] | undefined;
|
|
3205
|
+
columnBackgroundByRule?: {
|
|
3206
|
+
displayRule: string;
|
|
3207
|
+
backgroundColor?: string | undefined;
|
|
3208
|
+
}[] | undefined;
|
|
3209
|
+
tableheight?: number | undefined;
|
|
3210
|
+
tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
|
|
3211
|
+
enableHeaderBGColor?: boolean | undefined;
|
|
3212
|
+
};
|
|
3213
|
+
props: {
|
|
3214
|
+
[x: string]: any;
|
|
3215
|
+
hidden: boolean;
|
|
3216
|
+
displayType?: import('@gct-paas/core').DisplayType | undefined;
|
|
3217
|
+
displayRule?: string | undefined;
|
|
3218
|
+
modeldata?: {
|
|
3219
|
+
modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
|
|
3220
|
+
modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
|
|
3221
|
+
subModel?: 0 | 1 | undefined;
|
|
3222
|
+
supportProcess?: 0 | 1 | undefined;
|
|
3223
|
+
} | undefined;
|
|
3224
|
+
componentDependency: {
|
|
3225
|
+
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
3226
|
+
configDependency: {
|
|
3227
|
+
hidden?: {
|
|
3228
|
+
expressionStr?: string | undefined;
|
|
3229
|
+
expression?: string | undefined;
|
|
3230
|
+
value?: boolean | undefined;
|
|
3231
|
+
fieldValue?: boolean | undefined;
|
|
3232
|
+
strategy?: string | undefined;
|
|
3233
|
+
} | undefined;
|
|
3234
|
+
readonly?: {
|
|
3235
|
+
expressionStr?: string | undefined;
|
|
3236
|
+
expression?: string | undefined;
|
|
3237
|
+
value?: boolean | undefined;
|
|
3238
|
+
fieldValue?: boolean | undefined;
|
|
3239
|
+
strategy?: string | undefined;
|
|
3240
|
+
} | undefined;
|
|
3241
|
+
disabled?: {
|
|
3242
|
+
expressionStr?: string | undefined;
|
|
3243
|
+
expression?: string | undefined;
|
|
3244
|
+
value?: boolean | undefined;
|
|
3245
|
+
fieldValue?: boolean | undefined;
|
|
3246
|
+
strategy?: string | undefined;
|
|
3247
|
+
} | undefined;
|
|
3248
|
+
required?: {
|
|
3249
|
+
expressionStr?: string | undefined;
|
|
3250
|
+
expression?: string | undefined;
|
|
3251
|
+
value?: boolean | undefined;
|
|
3252
|
+
fieldValue?: boolean | undefined;
|
|
3253
|
+
strategy?: string | undefined;
|
|
3254
|
+
} | undefined;
|
|
3255
|
+
assignment?: {
|
|
3256
|
+
expressionStr?: string | undefined;
|
|
3257
|
+
expression?: string | undefined;
|
|
3258
|
+
value?: boolean | undefined;
|
|
3259
|
+
fieldValue?: boolean | undefined;
|
|
3260
|
+
strategy?: string | undefined;
|
|
3261
|
+
} | undefined;
|
|
3262
|
+
};
|
|
3263
|
+
};
|
|
3264
|
+
deviceConnectivity: boolean;
|
|
3265
|
+
};
|
|
3266
|
+
events: import('@gct-paas/schema').IBasicEvents;
|
|
3267
|
+
formItem?: boolean | undefined;
|
|
3268
|
+
display?: import('@gct-paas/core').DisplayEnums | undefined;
|
|
3269
|
+
displayName?: string | undefined;
|
|
3270
|
+
i18n?: Record<string, string> | undefined;
|
|
3271
|
+
isField?: boolean | undefined;
|
|
3272
|
+
materialType?: import('@gct-paas/core').MaterialEnum | undefined;
|
|
3273
|
+
preLocation?: string | undefined;
|
|
3274
|
+
ignoringStyle?: string[] | undefined;
|
|
3275
|
+
isReadonlyWidget?: boolean | undefined;
|
|
3276
|
+
parentComponent?: FormComponents | undefined;
|
|
3277
|
+
dropPlaceholder?: string | undefined;
|
|
3278
|
+
_plugin?: {
|
|
3279
|
+
key: string;
|
|
3280
|
+
version: string;
|
|
3281
|
+
url: string;
|
|
3282
|
+
} | undefined;
|
|
3283
|
+
}[];
|
|
3284
|
+
} | {
|
|
3285
|
+
id: string;
|
|
3286
|
+
type: import("@gct-paas/core").BuiltinType.MODAL_FOOTER;
|
|
3287
|
+
children: {
|
|
3288
|
+
[x: string]: any;
|
|
3289
|
+
id: string;
|
|
3290
|
+
platform: Platform;
|
|
3291
|
+
categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
|
|
3292
|
+
alias: string;
|
|
3293
|
+
name: string;
|
|
3294
|
+
compName?: string | undefined;
|
|
3295
|
+
compKey?: string | undefined;
|
|
3296
|
+
type: string | FormComponents;
|
|
3297
|
+
icon: string;
|
|
3298
|
+
children?: any[] | undefined;
|
|
3299
|
+
internal?: boolean | undefined;
|
|
3300
|
+
description?: string | undefined;
|
|
3301
|
+
style: {
|
|
3302
|
+
position?: string | undefined;
|
|
3303
|
+
top?: string | undefined;
|
|
3304
|
+
left?: string | undefined;
|
|
3305
|
+
right?: string | undefined;
|
|
3306
|
+
bottom?: string | undefined;
|
|
3307
|
+
width?: string | undefined;
|
|
3308
|
+
height?: string | undefined;
|
|
3309
|
+
maxHeight?: string | undefined;
|
|
3310
|
+
backgroundColor?: string | undefined;
|
|
3311
|
+
marginAll?: string | undefined;
|
|
3312
|
+
marginTop?: string | undefined;
|
|
3313
|
+
marginRight?: string | undefined;
|
|
3314
|
+
marginBottom?: string | undefined;
|
|
3315
|
+
marginLeft?: string | undefined;
|
|
3316
|
+
paddingAll?: string | undefined;
|
|
3317
|
+
paddingTop?: string | undefined;
|
|
3318
|
+
paddingRight?: string | undefined;
|
|
3319
|
+
paddingBottom?: string | undefined;
|
|
3320
|
+
paddingLeft?: string | undefined;
|
|
3321
|
+
labelFont?: {
|
|
3322
|
+
fontSize: string;
|
|
3323
|
+
bold: boolean;
|
|
3324
|
+
italic: boolean;
|
|
3325
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
3326
|
+
color: string;
|
|
3327
|
+
align: "left" | "right" | "justify";
|
|
3328
|
+
} | undefined;
|
|
3329
|
+
contentFont?: {
|
|
3330
|
+
fontSize: string;
|
|
3331
|
+
bold: boolean;
|
|
3332
|
+
italic: boolean;
|
|
3333
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
3334
|
+
color: string;
|
|
3335
|
+
align: "left" | "right" | "justify";
|
|
3336
|
+
} | undefined;
|
|
3337
|
+
tagStyle?: {
|
|
3338
|
+
color?: string | undefined;
|
|
3339
|
+
tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
|
|
3340
|
+
} | undefined;
|
|
3341
|
+
tagStyleOpen?: boolean | undefined;
|
|
3342
|
+
borderAll?: {
|
|
3343
|
+
borderWidth?: string | undefined;
|
|
3344
|
+
borderStyle?: string | undefined;
|
|
3345
|
+
borderColor?: string | undefined;
|
|
3346
|
+
} | undefined;
|
|
3347
|
+
borderLeft?: {
|
|
3348
|
+
borderWidth?: string | undefined;
|
|
3349
|
+
borderStyle?: string | undefined;
|
|
3350
|
+
borderColor?: string | undefined;
|
|
3351
|
+
} | undefined;
|
|
3352
|
+
borderRight?: {
|
|
3353
|
+
borderWidth?: string | undefined;
|
|
3354
|
+
borderStyle?: string | undefined;
|
|
3355
|
+
borderColor?: string | undefined;
|
|
3356
|
+
} | undefined;
|
|
3357
|
+
borderBottom?: {
|
|
3358
|
+
borderWidth?: string | undefined;
|
|
3359
|
+
borderStyle?: string | undefined;
|
|
3360
|
+
borderColor?: string | undefined;
|
|
3361
|
+
} | undefined;
|
|
3362
|
+
borderTop?: {
|
|
3363
|
+
borderWidth?: string | undefined;
|
|
3364
|
+
borderStyle?: string | undefined;
|
|
3365
|
+
borderColor?: string | undefined;
|
|
3366
|
+
} | undefined;
|
|
3367
|
+
borderTopRightRadius?: string | undefined;
|
|
3368
|
+
borderTopLeftRadius?: string | undefined;
|
|
3369
|
+
borderBottomRightRadius?: string | undefined;
|
|
3370
|
+
borderBottomLeftRadius?: string | undefined;
|
|
3371
|
+
borderAllRadius?: string | undefined;
|
|
3372
|
+
columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
|
|
3373
|
+
columnwidth?: number | undefined;
|
|
3374
|
+
columnFontStyleByRule?: {
|
|
3375
|
+
displayRule: string;
|
|
3376
|
+
contentFont: {
|
|
3377
|
+
fontSize: string;
|
|
3378
|
+
bold: boolean;
|
|
3379
|
+
italic: boolean;
|
|
3380
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
3381
|
+
color: string;
|
|
3382
|
+
align: "left" | "right" | "justify";
|
|
3383
|
+
};
|
|
3384
|
+
tagStyle: {
|
|
3385
|
+
color?: string | undefined;
|
|
3386
|
+
tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
|
|
3387
|
+
};
|
|
3388
|
+
progressStyle: {
|
|
3389
|
+
color: string;
|
|
3390
|
+
tagType: import('@gct-paas/core').ProgressTypeEnum;
|
|
3391
|
+
};
|
|
3392
|
+
tagType: import('@gct-paas/core').tagEnum;
|
|
3393
|
+
tagStyleOpen: boolean;
|
|
3394
|
+
}[] | undefined;
|
|
3395
|
+
columnBackgroundByRule?: {
|
|
3396
|
+
displayRule: string;
|
|
3397
|
+
backgroundColor?: string | undefined;
|
|
3398
|
+
}[] | undefined;
|
|
3399
|
+
tableheight?: number | undefined;
|
|
3400
|
+
tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
|
|
3401
|
+
enableHeaderBGColor?: boolean | undefined;
|
|
3402
|
+
};
|
|
3403
|
+
props: {
|
|
3404
|
+
[x: string]: any;
|
|
3405
|
+
hidden: boolean;
|
|
3406
|
+
displayType?: import('@gct-paas/core').DisplayType | undefined;
|
|
3407
|
+
displayRule?: string | undefined;
|
|
3408
|
+
modeldata?: {
|
|
3409
|
+
modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
|
|
3410
|
+
modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
|
|
3411
|
+
subModel?: 0 | 1 | undefined;
|
|
3412
|
+
supportProcess?: 0 | 1 | undefined;
|
|
3413
|
+
} | undefined;
|
|
3414
|
+
componentDependency: {
|
|
3415
|
+
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
3416
|
+
configDependency: {
|
|
3417
|
+
hidden?: {
|
|
3418
|
+
expressionStr?: string | undefined;
|
|
3419
|
+
expression?: string | undefined;
|
|
3420
|
+
value?: boolean | undefined;
|
|
3421
|
+
fieldValue?: boolean | undefined;
|
|
3422
|
+
strategy?: string | undefined;
|
|
3423
|
+
} | undefined;
|
|
3424
|
+
readonly?: {
|
|
3425
|
+
expressionStr?: string | undefined;
|
|
3426
|
+
expression?: string | undefined;
|
|
3427
|
+
value?: boolean | undefined;
|
|
3428
|
+
fieldValue?: boolean | undefined;
|
|
3429
|
+
strategy?: string | undefined;
|
|
3430
|
+
} | undefined;
|
|
3431
|
+
disabled?: {
|
|
3432
|
+
expressionStr?: string | undefined;
|
|
3433
|
+
expression?: string | undefined;
|
|
3434
|
+
value?: boolean | undefined;
|
|
3435
|
+
fieldValue?: boolean | undefined;
|
|
3436
|
+
strategy?: string | undefined;
|
|
3437
|
+
} | undefined;
|
|
3438
|
+
required?: {
|
|
3439
|
+
expressionStr?: string | undefined;
|
|
3440
|
+
expression?: string | undefined;
|
|
3441
|
+
value?: boolean | undefined;
|
|
3442
|
+
fieldValue?: boolean | undefined;
|
|
3443
|
+
strategy?: string | undefined;
|
|
3444
|
+
} | undefined;
|
|
3445
|
+
assignment?: {
|
|
3446
|
+
expressionStr?: string | undefined;
|
|
3447
|
+
expression?: string | undefined;
|
|
3448
|
+
value?: boolean | undefined;
|
|
3449
|
+
fieldValue?: boolean | undefined;
|
|
3450
|
+
strategy?: string | undefined;
|
|
3451
|
+
} | undefined;
|
|
3452
|
+
};
|
|
3453
|
+
};
|
|
3454
|
+
deviceConnectivity: boolean;
|
|
3455
|
+
};
|
|
3456
|
+
events: import('@gct-paas/schema').IBasicEvents;
|
|
3457
|
+
formItem?: boolean | undefined;
|
|
3458
|
+
display?: import('@gct-paas/core').DisplayEnums | undefined;
|
|
3459
|
+
displayName?: string | undefined;
|
|
3460
|
+
i18n?: Record<string, string> | undefined;
|
|
3461
|
+
isField?: boolean | undefined;
|
|
3462
|
+
materialType?: import('@gct-paas/core').MaterialEnum | undefined;
|
|
3463
|
+
preLocation?: string | undefined;
|
|
3464
|
+
ignoringStyle?: string[] | undefined;
|
|
3465
|
+
isReadonlyWidget?: boolean | undefined;
|
|
3466
|
+
parentComponent?: FormComponents | undefined;
|
|
3467
|
+
dropPlaceholder?: string | undefined;
|
|
3468
|
+
_plugin?: {
|
|
3469
|
+
key: string;
|
|
3470
|
+
version: string;
|
|
3471
|
+
url: string;
|
|
3472
|
+
} | undefined;
|
|
3473
|
+
}[];
|
|
3474
|
+
} | {
|
|
3475
|
+
id: string;
|
|
3476
|
+
type: import("@gct-paas/core").BuiltinType.BottomButtonContainer;
|
|
3477
|
+
children: {
|
|
3478
|
+
[x: string]: any;
|
|
3479
|
+
id: string;
|
|
3480
|
+
platform: Platform;
|
|
3481
|
+
categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
|
|
3482
|
+
alias: string;
|
|
3483
|
+
name: string;
|
|
3484
|
+
compName?: string | undefined;
|
|
3485
|
+
compKey?: string | undefined;
|
|
3486
|
+
type: string | FormComponents;
|
|
3487
|
+
icon: string;
|
|
3488
|
+
children?: any[] | undefined;
|
|
3489
|
+
internal?: boolean | undefined;
|
|
3490
|
+
description?: string | undefined;
|
|
3491
|
+
style: {
|
|
3492
|
+
position?: string | undefined;
|
|
3493
|
+
top?: string | undefined;
|
|
3494
|
+
left?: string | undefined;
|
|
3495
|
+
right?: string | undefined;
|
|
3496
|
+
bottom?: string | undefined;
|
|
3497
|
+
width?: string | undefined;
|
|
3498
|
+
height?: string | undefined;
|
|
3499
|
+
maxHeight?: string | undefined;
|
|
3500
|
+
backgroundColor?: string | undefined;
|
|
3501
|
+
marginAll?: string | undefined;
|
|
3502
|
+
marginTop?: string | undefined;
|
|
3503
|
+
marginRight?: string | undefined;
|
|
3504
|
+
marginBottom?: string | undefined;
|
|
3505
|
+
marginLeft?: string | undefined;
|
|
3506
|
+
paddingAll?: string | undefined;
|
|
3507
|
+
paddingTop?: string | undefined;
|
|
3508
|
+
paddingRight?: string | undefined;
|
|
3509
|
+
paddingBottom?: string | undefined;
|
|
3510
|
+
paddingLeft?: string | undefined;
|
|
3511
|
+
labelFont?: {
|
|
3512
|
+
fontSize: string;
|
|
3513
|
+
bold: boolean;
|
|
3514
|
+
italic: boolean;
|
|
3515
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
3516
|
+
color: string;
|
|
3517
|
+
align: "left" | "right" | "justify";
|
|
3518
|
+
} | undefined;
|
|
3519
|
+
contentFont?: {
|
|
3520
|
+
fontSize: string;
|
|
3521
|
+
bold: boolean;
|
|
3522
|
+
italic: boolean;
|
|
3523
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
3524
|
+
color: string;
|
|
3525
|
+
align: "left" | "right" | "justify";
|
|
3526
|
+
} | undefined;
|
|
3527
|
+
tagStyle?: {
|
|
3528
|
+
color?: string | undefined;
|
|
3529
|
+
tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
|
|
3530
|
+
} | undefined;
|
|
3531
|
+
tagStyleOpen?: boolean | undefined;
|
|
3532
|
+
borderAll?: {
|
|
3533
|
+
borderWidth?: string | undefined;
|
|
3534
|
+
borderStyle?: string | undefined;
|
|
3535
|
+
borderColor?: string | undefined;
|
|
3536
|
+
} | undefined;
|
|
3537
|
+
borderLeft?: {
|
|
3538
|
+
borderWidth?: string | undefined;
|
|
3539
|
+
borderStyle?: string | undefined;
|
|
3540
|
+
borderColor?: string | undefined;
|
|
3541
|
+
} | undefined;
|
|
3542
|
+
borderRight?: {
|
|
3543
|
+
borderWidth?: string | undefined;
|
|
3544
|
+
borderStyle?: string | undefined;
|
|
3545
|
+
borderColor?: string | undefined;
|
|
3546
|
+
} | undefined;
|
|
3547
|
+
borderBottom?: {
|
|
3548
|
+
borderWidth?: string | undefined;
|
|
3549
|
+
borderStyle?: string | undefined;
|
|
3550
|
+
borderColor?: string | undefined;
|
|
3551
|
+
} | undefined;
|
|
3552
|
+
borderTop?: {
|
|
3553
|
+
borderWidth?: string | undefined;
|
|
3554
|
+
borderStyle?: string | undefined;
|
|
3555
|
+
borderColor?: string | undefined;
|
|
3556
|
+
} | undefined;
|
|
3557
|
+
borderTopRightRadius?: string | undefined;
|
|
3558
|
+
borderTopLeftRadius?: string | undefined;
|
|
3559
|
+
borderBottomRightRadius?: string | undefined;
|
|
3560
|
+
borderBottomLeftRadius?: string | undefined;
|
|
3561
|
+
borderAllRadius?: string | undefined;
|
|
3562
|
+
columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
|
|
3563
|
+
columnwidth?: number | undefined;
|
|
3564
|
+
columnFontStyleByRule?: {
|
|
3565
|
+
displayRule: string;
|
|
3566
|
+
contentFont: {
|
|
3567
|
+
fontSize: string;
|
|
3568
|
+
bold: boolean;
|
|
3569
|
+
italic: boolean;
|
|
3570
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
3571
|
+
color: string;
|
|
3572
|
+
align: "left" | "right" | "justify";
|
|
3573
|
+
};
|
|
3574
|
+
tagStyle: {
|
|
3575
|
+
color?: string | undefined;
|
|
3576
|
+
tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
|
|
3577
|
+
};
|
|
3578
|
+
progressStyle: {
|
|
3579
|
+
color: string;
|
|
3580
|
+
tagType: import('@gct-paas/core').ProgressTypeEnum;
|
|
3581
|
+
};
|
|
3582
|
+
tagType: import('@gct-paas/core').tagEnum;
|
|
3583
|
+
tagStyleOpen: boolean;
|
|
3584
|
+
}[] | undefined;
|
|
3585
|
+
columnBackgroundByRule?: {
|
|
3586
|
+
displayRule: string;
|
|
3587
|
+
backgroundColor?: string | undefined;
|
|
3588
|
+
}[] | undefined;
|
|
3589
|
+
tableheight?: number | undefined;
|
|
3590
|
+
tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
|
|
3591
|
+
enableHeaderBGColor?: boolean | undefined;
|
|
3592
|
+
};
|
|
3593
|
+
props: {
|
|
3594
|
+
[x: string]: any;
|
|
3595
|
+
hidden: boolean;
|
|
3596
|
+
displayType?: import('@gct-paas/core').DisplayType | undefined;
|
|
3597
|
+
displayRule?: string | undefined;
|
|
3598
|
+
modeldata?: {
|
|
3599
|
+
modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
|
|
3600
|
+
modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
|
|
3601
|
+
subModel?: 0 | 1 | undefined;
|
|
3602
|
+
supportProcess?: 0 | 1 | undefined;
|
|
3603
|
+
} | undefined;
|
|
3604
|
+
componentDependency: {
|
|
3605
|
+
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
3606
|
+
configDependency: {
|
|
3607
|
+
hidden?: {
|
|
3608
|
+
expressionStr?: string | undefined;
|
|
3609
|
+
expression?: string | undefined;
|
|
3610
|
+
value?: boolean | undefined;
|
|
3611
|
+
fieldValue?: boolean | undefined;
|
|
3612
|
+
strategy?: string | undefined;
|
|
3613
|
+
} | undefined;
|
|
3614
|
+
readonly?: {
|
|
3615
|
+
expressionStr?: string | undefined;
|
|
3616
|
+
expression?: string | undefined;
|
|
3617
|
+
value?: boolean | undefined;
|
|
3618
|
+
fieldValue?: boolean | undefined;
|
|
3619
|
+
strategy?: string | undefined;
|
|
3620
|
+
} | undefined;
|
|
3621
|
+
disabled?: {
|
|
3622
|
+
expressionStr?: string | undefined;
|
|
3623
|
+
expression?: string | undefined;
|
|
3624
|
+
value?: boolean | undefined;
|
|
3625
|
+
fieldValue?: boolean | undefined;
|
|
3626
|
+
strategy?: string | undefined;
|
|
3627
|
+
} | undefined;
|
|
3628
|
+
required?: {
|
|
3629
|
+
expressionStr?: string | undefined;
|
|
3630
|
+
expression?: string | undefined;
|
|
3631
|
+
value?: boolean | undefined;
|
|
3632
|
+
fieldValue?: boolean | undefined;
|
|
3633
|
+
strategy?: string | undefined;
|
|
3634
|
+
} | undefined;
|
|
3635
|
+
assignment?: {
|
|
3636
|
+
expressionStr?: string | undefined;
|
|
3637
|
+
expression?: string | undefined;
|
|
3638
|
+
value?: boolean | undefined;
|
|
3639
|
+
fieldValue?: boolean | undefined;
|
|
3640
|
+
strategy?: string | undefined;
|
|
3641
|
+
} | undefined;
|
|
3642
|
+
};
|
|
3643
|
+
};
|
|
3644
|
+
deviceConnectivity: boolean;
|
|
3645
|
+
};
|
|
3646
|
+
events: import('@gct-paas/schema').IBasicEvents;
|
|
3647
|
+
formItem?: boolean | undefined;
|
|
3648
|
+
display?: import('@gct-paas/core').DisplayEnums | undefined;
|
|
3649
|
+
displayName?: string | undefined;
|
|
3650
|
+
i18n?: Record<string, string> | undefined;
|
|
3651
|
+
isField?: boolean | undefined;
|
|
3652
|
+
materialType?: import('@gct-paas/core').MaterialEnum | undefined;
|
|
3653
|
+
preLocation?: string | undefined;
|
|
3654
|
+
ignoringStyle?: string[] | undefined;
|
|
3655
|
+
isReadonlyWidget?: boolean | undefined;
|
|
3656
|
+
parentComponent?: FormComponents | undefined;
|
|
3657
|
+
dropPlaceholder?: string | undefined;
|
|
3658
|
+
_plugin?: {
|
|
3659
|
+
key: string;
|
|
3660
|
+
version: string;
|
|
3661
|
+
url: string;
|
|
3662
|
+
} | undefined;
|
|
3663
|
+
}[];
|
|
3664
|
+
}>;
|
|
3665
|
+
modalBottomBtn: import('vue').ComputedRef<{
|
|
3666
|
+
id: string;
|
|
3667
|
+
type: import("@gct-paas/core").BuiltinType.MODAL_BODY | string;
|
|
3668
|
+
children: {
|
|
3669
|
+
[x: string]: any;
|
|
3670
|
+
id: string;
|
|
3671
|
+
platform: Platform;
|
|
3672
|
+
categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
|
|
3673
|
+
alias: string;
|
|
3674
|
+
name: string;
|
|
3675
|
+
compName?: string | undefined;
|
|
3676
|
+
compKey?: string | undefined;
|
|
3677
|
+
type: string | FormComponents;
|
|
3678
|
+
icon: string;
|
|
3679
|
+
children?: any[] | undefined;
|
|
3680
|
+
internal?: boolean | undefined;
|
|
3681
|
+
description?: string | undefined;
|
|
3682
|
+
style: {
|
|
3683
|
+
position?: string | undefined;
|
|
3684
|
+
top?: string | undefined;
|
|
3685
|
+
left?: string | undefined;
|
|
3686
|
+
right?: string | undefined;
|
|
3687
|
+
bottom?: string | undefined;
|
|
3688
|
+
width?: string | undefined;
|
|
3689
|
+
height?: string | undefined;
|
|
3690
|
+
maxHeight?: string | undefined;
|
|
3691
|
+
backgroundColor?: string | undefined;
|
|
3692
|
+
marginAll?: string | undefined;
|
|
3693
|
+
marginTop?: string | undefined;
|
|
3694
|
+
marginRight?: string | undefined;
|
|
3695
|
+
marginBottom?: string | undefined;
|
|
3696
|
+
marginLeft?: string | undefined;
|
|
3697
|
+
paddingAll?: string | undefined;
|
|
3698
|
+
paddingTop?: string | undefined;
|
|
3699
|
+
paddingRight?: string | undefined;
|
|
3700
|
+
paddingBottom?: string | undefined;
|
|
3701
|
+
paddingLeft?: string | undefined;
|
|
3702
|
+
labelFont?: {
|
|
3703
|
+
fontSize: string;
|
|
3704
|
+
bold: boolean;
|
|
3705
|
+
italic: boolean;
|
|
3706
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
3707
|
+
color: string;
|
|
3708
|
+
align: "left" | "right" | "justify";
|
|
3709
|
+
} | undefined;
|
|
3710
|
+
contentFont?: {
|
|
3711
|
+
fontSize: string;
|
|
3712
|
+
bold: boolean;
|
|
3713
|
+
italic: boolean;
|
|
3714
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
3715
|
+
color: string;
|
|
3716
|
+
align: "left" | "right" | "justify";
|
|
3717
|
+
} | undefined;
|
|
3718
|
+
tagStyle?: {
|
|
3719
|
+
color?: string | undefined;
|
|
3720
|
+
tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
|
|
3721
|
+
} | undefined;
|
|
3722
|
+
tagStyleOpen?: boolean | undefined;
|
|
3723
|
+
borderAll?: {
|
|
3724
|
+
borderWidth?: string | undefined;
|
|
3725
|
+
borderStyle?: string | undefined;
|
|
3726
|
+
borderColor?: string | undefined;
|
|
3727
|
+
} | undefined;
|
|
3728
|
+
borderLeft?: {
|
|
3729
|
+
borderWidth?: string | undefined;
|
|
3730
|
+
borderStyle?: string | undefined;
|
|
3731
|
+
borderColor?: string | undefined;
|
|
3732
|
+
} | undefined;
|
|
3733
|
+
borderRight?: {
|
|
3734
|
+
borderWidth?: string | undefined;
|
|
3735
|
+
borderStyle?: string | undefined;
|
|
3736
|
+
borderColor?: string | undefined;
|
|
3737
|
+
} | undefined;
|
|
3738
|
+
borderBottom?: {
|
|
3739
|
+
borderWidth?: string | undefined;
|
|
3740
|
+
borderStyle?: string | undefined;
|
|
3741
|
+
borderColor?: string | undefined;
|
|
3742
|
+
} | undefined;
|
|
3743
|
+
borderTop?: {
|
|
3744
|
+
borderWidth?: string | undefined;
|
|
3745
|
+
borderStyle?: string | undefined;
|
|
3746
|
+
borderColor?: string | undefined;
|
|
3747
|
+
} | undefined;
|
|
3748
|
+
borderTopRightRadius?: string | undefined;
|
|
3749
|
+
borderTopLeftRadius?: string | undefined;
|
|
3750
|
+
borderBottomRightRadius?: string | undefined;
|
|
3751
|
+
borderBottomLeftRadius?: string | undefined;
|
|
3752
|
+
borderAllRadius?: string | undefined;
|
|
3753
|
+
columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
|
|
3754
|
+
columnwidth?: number | undefined;
|
|
3755
|
+
columnFontStyleByRule?: {
|
|
3756
|
+
displayRule: string;
|
|
3757
|
+
contentFont: {
|
|
3758
|
+
fontSize: string;
|
|
3759
|
+
bold: boolean;
|
|
3760
|
+
italic: boolean;
|
|
3761
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
3762
|
+
color: string;
|
|
3763
|
+
align: "left" | "right" | "justify";
|
|
3764
|
+
};
|
|
3765
|
+
tagStyle: {
|
|
3766
|
+
color?: string | undefined;
|
|
3767
|
+
tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
|
|
3768
|
+
};
|
|
3769
|
+
progressStyle: {
|
|
3770
|
+
color: string;
|
|
3771
|
+
tagType: import('@gct-paas/core').ProgressTypeEnum;
|
|
3772
|
+
};
|
|
3773
|
+
tagType: import('@gct-paas/core').tagEnum;
|
|
3774
|
+
tagStyleOpen: boolean;
|
|
3775
|
+
}[] | undefined;
|
|
3776
|
+
columnBackgroundByRule?: {
|
|
3777
|
+
displayRule: string;
|
|
3778
|
+
backgroundColor?: string | undefined;
|
|
3779
|
+
}[] | undefined;
|
|
3780
|
+
tableheight?: number | undefined;
|
|
3781
|
+
tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
|
|
3782
|
+
enableHeaderBGColor?: boolean | undefined;
|
|
3783
|
+
};
|
|
3784
|
+
props: {
|
|
3785
|
+
[x: string]: any;
|
|
3786
|
+
hidden: boolean;
|
|
3787
|
+
displayType?: import('@gct-paas/core').DisplayType | undefined;
|
|
3788
|
+
displayRule?: string | undefined;
|
|
3789
|
+
modeldata?: {
|
|
3790
|
+
modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
|
|
3791
|
+
modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
|
|
3792
|
+
subModel?: 0 | 1 | undefined;
|
|
3793
|
+
supportProcess?: 0 | 1 | undefined;
|
|
3794
|
+
} | undefined;
|
|
3795
|
+
componentDependency: {
|
|
3796
|
+
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
3797
|
+
configDependency: {
|
|
3798
|
+
hidden?: {
|
|
3799
|
+
expressionStr?: string | undefined;
|
|
3800
|
+
expression?: string | undefined;
|
|
3801
|
+
value?: boolean | undefined;
|
|
3802
|
+
fieldValue?: boolean | undefined;
|
|
3803
|
+
strategy?: string | undefined;
|
|
3804
|
+
} | undefined;
|
|
3805
|
+
readonly?: {
|
|
3806
|
+
expressionStr?: string | undefined;
|
|
3807
|
+
expression?: string | undefined;
|
|
3808
|
+
value?: boolean | undefined;
|
|
3809
|
+
fieldValue?: boolean | undefined;
|
|
3810
|
+
strategy?: string | undefined;
|
|
3811
|
+
} | undefined;
|
|
3812
|
+
disabled?: {
|
|
3813
|
+
expressionStr?: string | undefined;
|
|
3814
|
+
expression?: string | undefined;
|
|
3815
|
+
value?: boolean | undefined;
|
|
3816
|
+
fieldValue?: boolean | undefined;
|
|
3817
|
+
strategy?: string | undefined;
|
|
3818
|
+
} | undefined;
|
|
3819
|
+
required?: {
|
|
3820
|
+
expressionStr?: string | undefined;
|
|
3821
|
+
expression?: string | undefined;
|
|
3822
|
+
value?: boolean | undefined;
|
|
3823
|
+
fieldValue?: boolean | undefined;
|
|
3824
|
+
strategy?: string | undefined;
|
|
3825
|
+
} | undefined;
|
|
3826
|
+
assignment?: {
|
|
3827
|
+
expressionStr?: string | undefined;
|
|
3828
|
+
expression?: string | undefined;
|
|
3829
|
+
value?: boolean | undefined;
|
|
3830
|
+
fieldValue?: boolean | undefined;
|
|
3831
|
+
strategy?: string | undefined;
|
|
3832
|
+
} | undefined;
|
|
3833
|
+
};
|
|
3834
|
+
};
|
|
3835
|
+
deviceConnectivity: boolean;
|
|
3836
|
+
};
|
|
3837
|
+
events: import('@gct-paas/schema').IBasicEvents;
|
|
3838
|
+
formItem?: boolean | undefined;
|
|
3839
|
+
display?: import('@gct-paas/core').DisplayEnums | undefined;
|
|
3840
|
+
displayName?: string | undefined;
|
|
3841
|
+
i18n?: Record<string, string> | undefined;
|
|
3842
|
+
isField?: boolean | undefined;
|
|
3843
|
+
materialType?: import('@gct-paas/core').MaterialEnum | undefined;
|
|
3844
|
+
preLocation?: string | undefined;
|
|
3845
|
+
ignoringStyle?: string[] | undefined;
|
|
3846
|
+
isReadonlyWidget?: boolean | undefined;
|
|
3847
|
+
parentComponent?: FormComponents | undefined;
|
|
3848
|
+
dropPlaceholder?: string | undefined;
|
|
3849
|
+
_plugin?: {
|
|
3850
|
+
key: string;
|
|
3851
|
+
version: string;
|
|
3852
|
+
url: string;
|
|
3853
|
+
} | undefined;
|
|
3854
|
+
}[];
|
|
3855
|
+
} | {
|
|
3856
|
+
id: string;
|
|
3857
|
+
type: import("@gct-paas/core").BuiltinType.MODAL_FOOTER;
|
|
3858
|
+
children: {
|
|
3859
|
+
[x: string]: any;
|
|
3860
|
+
id: string;
|
|
3861
|
+
platform: Platform;
|
|
3862
|
+
categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
|
|
3863
|
+
alias: string;
|
|
3864
|
+
name: string;
|
|
3865
|
+
compName?: string | undefined;
|
|
3866
|
+
compKey?: string | undefined;
|
|
3867
|
+
type: string | FormComponents;
|
|
3868
|
+
icon: string;
|
|
3869
|
+
children?: any[] | undefined;
|
|
3870
|
+
internal?: boolean | undefined;
|
|
3871
|
+
description?: string | undefined;
|
|
3872
|
+
style: {
|
|
3873
|
+
position?: string | undefined;
|
|
3874
|
+
top?: string | undefined;
|
|
3875
|
+
left?: string | undefined;
|
|
3876
|
+
right?: string | undefined;
|
|
3877
|
+
bottom?: string | undefined;
|
|
3878
|
+
width?: string | undefined;
|
|
3879
|
+
height?: string | undefined;
|
|
3880
|
+
maxHeight?: string | undefined;
|
|
3881
|
+
backgroundColor?: string | undefined;
|
|
3882
|
+
marginAll?: string | undefined;
|
|
3883
|
+
marginTop?: string | undefined;
|
|
3884
|
+
marginRight?: string | undefined;
|
|
3885
|
+
marginBottom?: string | undefined;
|
|
3886
|
+
marginLeft?: string | undefined;
|
|
3887
|
+
paddingAll?: string | undefined;
|
|
3888
|
+
paddingTop?: string | undefined;
|
|
3889
|
+
paddingRight?: string | undefined;
|
|
3890
|
+
paddingBottom?: string | undefined;
|
|
3891
|
+
paddingLeft?: string | undefined;
|
|
3892
|
+
labelFont?: {
|
|
3893
|
+
fontSize: string;
|
|
3894
|
+
bold: boolean;
|
|
3895
|
+
italic: boolean;
|
|
3896
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
3897
|
+
color: string;
|
|
3898
|
+
align: "left" | "right" | "justify";
|
|
3899
|
+
} | undefined;
|
|
3900
|
+
contentFont?: {
|
|
3901
|
+
fontSize: string;
|
|
3902
|
+
bold: boolean;
|
|
3903
|
+
italic: boolean;
|
|
3904
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
3905
|
+
color: string;
|
|
3906
|
+
align: "left" | "right" | "justify";
|
|
3907
|
+
} | undefined;
|
|
3908
|
+
tagStyle?: {
|
|
3909
|
+
color?: string | undefined;
|
|
3910
|
+
tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
|
|
3911
|
+
} | undefined;
|
|
3912
|
+
tagStyleOpen?: boolean | undefined;
|
|
3913
|
+
borderAll?: {
|
|
3914
|
+
borderWidth?: string | undefined;
|
|
3915
|
+
borderStyle?: string | undefined;
|
|
3916
|
+
borderColor?: string | undefined;
|
|
3917
|
+
} | undefined;
|
|
3918
|
+
borderLeft?: {
|
|
3919
|
+
borderWidth?: string | undefined;
|
|
3920
|
+
borderStyle?: string | undefined;
|
|
3921
|
+
borderColor?: string | undefined;
|
|
3922
|
+
} | undefined;
|
|
3923
|
+
borderRight?: {
|
|
3924
|
+
borderWidth?: string | undefined;
|
|
3925
|
+
borderStyle?: string | undefined;
|
|
3926
|
+
borderColor?: string | undefined;
|
|
3927
|
+
} | undefined;
|
|
3928
|
+
borderBottom?: {
|
|
3929
|
+
borderWidth?: string | undefined;
|
|
3930
|
+
borderStyle?: string | undefined;
|
|
3931
|
+
borderColor?: string | undefined;
|
|
3932
|
+
} | undefined;
|
|
3933
|
+
borderTop?: {
|
|
3934
|
+
borderWidth?: string | undefined;
|
|
3935
|
+
borderStyle?: string | undefined;
|
|
3936
|
+
borderColor?: string | undefined;
|
|
3937
|
+
} | undefined;
|
|
3938
|
+
borderTopRightRadius?: string | undefined;
|
|
3939
|
+
borderTopLeftRadius?: string | undefined;
|
|
3940
|
+
borderBottomRightRadius?: string | undefined;
|
|
3941
|
+
borderBottomLeftRadius?: string | undefined;
|
|
3942
|
+
borderAllRadius?: string | undefined;
|
|
3943
|
+
columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
|
|
3944
|
+
columnwidth?: number | undefined;
|
|
3945
|
+
columnFontStyleByRule?: {
|
|
3946
|
+
displayRule: string;
|
|
3947
|
+
contentFont: {
|
|
3948
|
+
fontSize: string;
|
|
3949
|
+
bold: boolean;
|
|
3950
|
+
italic: boolean;
|
|
3951
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
3952
|
+
color: string;
|
|
3953
|
+
align: "left" | "right" | "justify";
|
|
3954
|
+
};
|
|
3955
|
+
tagStyle: {
|
|
3956
|
+
color?: string | undefined;
|
|
3957
|
+
tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
|
|
3958
|
+
};
|
|
3959
|
+
progressStyle: {
|
|
3960
|
+
color: string;
|
|
3961
|
+
tagType: import('@gct-paas/core').ProgressTypeEnum;
|
|
3962
|
+
};
|
|
3963
|
+
tagType: import('@gct-paas/core').tagEnum;
|
|
3964
|
+
tagStyleOpen: boolean;
|
|
3965
|
+
}[] | undefined;
|
|
3966
|
+
columnBackgroundByRule?: {
|
|
3967
|
+
displayRule: string;
|
|
3968
|
+
backgroundColor?: string | undefined;
|
|
3969
|
+
}[] | undefined;
|
|
3970
|
+
tableheight?: number | undefined;
|
|
3971
|
+
tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
|
|
3972
|
+
enableHeaderBGColor?: boolean | undefined;
|
|
3973
|
+
};
|
|
3974
|
+
props: {
|
|
3975
|
+
[x: string]: any;
|
|
3976
|
+
hidden: boolean;
|
|
3977
|
+
displayType?: import('@gct-paas/core').DisplayType | undefined;
|
|
3978
|
+
displayRule?: string | undefined;
|
|
3979
|
+
modeldata?: {
|
|
3980
|
+
modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
|
|
3981
|
+
modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
|
|
3982
|
+
subModel?: 0 | 1 | undefined;
|
|
3983
|
+
supportProcess?: 0 | 1 | undefined;
|
|
3984
|
+
} | undefined;
|
|
3985
|
+
componentDependency: {
|
|
3986
|
+
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
3987
|
+
configDependency: {
|
|
3988
|
+
hidden?: {
|
|
3989
|
+
expressionStr?: string | undefined;
|
|
3990
|
+
expression?: string | undefined;
|
|
3991
|
+
value?: boolean | undefined;
|
|
3992
|
+
fieldValue?: boolean | undefined;
|
|
3993
|
+
strategy?: string | undefined;
|
|
3994
|
+
} | undefined;
|
|
3995
|
+
readonly?: {
|
|
3996
|
+
expressionStr?: string | undefined;
|
|
3997
|
+
expression?: string | undefined;
|
|
3998
|
+
value?: boolean | undefined;
|
|
3999
|
+
fieldValue?: boolean | undefined;
|
|
4000
|
+
strategy?: string | undefined;
|
|
4001
|
+
} | undefined;
|
|
4002
|
+
disabled?: {
|
|
4003
|
+
expressionStr?: string | undefined;
|
|
4004
|
+
expression?: string | undefined;
|
|
4005
|
+
value?: boolean | undefined;
|
|
4006
|
+
fieldValue?: boolean | undefined;
|
|
4007
|
+
strategy?: string | undefined;
|
|
4008
|
+
} | undefined;
|
|
4009
|
+
required?: {
|
|
4010
|
+
expressionStr?: string | undefined;
|
|
4011
|
+
expression?: string | undefined;
|
|
4012
|
+
value?: boolean | undefined;
|
|
4013
|
+
fieldValue?: boolean | undefined;
|
|
4014
|
+
strategy?: string | undefined;
|
|
4015
|
+
} | undefined;
|
|
4016
|
+
assignment?: {
|
|
4017
|
+
expressionStr?: string | undefined;
|
|
4018
|
+
expression?: string | undefined;
|
|
4019
|
+
value?: boolean | undefined;
|
|
4020
|
+
fieldValue?: boolean | undefined;
|
|
4021
|
+
strategy?: string | undefined;
|
|
4022
|
+
} | undefined;
|
|
4023
|
+
};
|
|
4024
|
+
};
|
|
4025
|
+
deviceConnectivity: boolean;
|
|
4026
|
+
};
|
|
4027
|
+
events: import('@gct-paas/schema').IBasicEvents;
|
|
4028
|
+
formItem?: boolean | undefined;
|
|
4029
|
+
display?: import('@gct-paas/core').DisplayEnums | undefined;
|
|
4030
|
+
displayName?: string | undefined;
|
|
4031
|
+
i18n?: Record<string, string> | undefined;
|
|
4032
|
+
isField?: boolean | undefined;
|
|
4033
|
+
materialType?: import('@gct-paas/core').MaterialEnum | undefined;
|
|
4034
|
+
preLocation?: string | undefined;
|
|
4035
|
+
ignoringStyle?: string[] | undefined;
|
|
4036
|
+
isReadonlyWidget?: boolean | undefined;
|
|
4037
|
+
parentComponent?: FormComponents | undefined;
|
|
4038
|
+
dropPlaceholder?: string | undefined;
|
|
4039
|
+
_plugin?: {
|
|
4040
|
+
key: string;
|
|
4041
|
+
version: string;
|
|
4042
|
+
url: string;
|
|
4043
|
+
} | undefined;
|
|
4044
|
+
}[];
|
|
4045
|
+
} | {
|
|
4046
|
+
id: string;
|
|
4047
|
+
type: import("@gct-paas/core").BuiltinType.BottomButtonContainer;
|
|
4048
|
+
children: {
|
|
4049
|
+
[x: string]: any;
|
|
4050
|
+
id: string;
|
|
4051
|
+
platform: Platform;
|
|
4052
|
+
categoryType?: import('@gct-paas/core').CategoryTypeEnum | undefined;
|
|
4053
|
+
alias: string;
|
|
4054
|
+
name: string;
|
|
4055
|
+
compName?: string | undefined;
|
|
4056
|
+
compKey?: string | undefined;
|
|
4057
|
+
type: string | FormComponents;
|
|
4058
|
+
icon: string;
|
|
4059
|
+
children?: any[] | undefined;
|
|
4060
|
+
internal?: boolean | undefined;
|
|
4061
|
+
description?: string | undefined;
|
|
4062
|
+
style: {
|
|
4063
|
+
position?: string | undefined;
|
|
4064
|
+
top?: string | undefined;
|
|
4065
|
+
left?: string | undefined;
|
|
4066
|
+
right?: string | undefined;
|
|
4067
|
+
bottom?: string | undefined;
|
|
4068
|
+
width?: string | undefined;
|
|
4069
|
+
height?: string | undefined;
|
|
4070
|
+
maxHeight?: string | undefined;
|
|
4071
|
+
backgroundColor?: string | undefined;
|
|
4072
|
+
marginAll?: string | undefined;
|
|
4073
|
+
marginTop?: string | undefined;
|
|
4074
|
+
marginRight?: string | undefined;
|
|
4075
|
+
marginBottom?: string | undefined;
|
|
4076
|
+
marginLeft?: string | undefined;
|
|
4077
|
+
paddingAll?: string | undefined;
|
|
4078
|
+
paddingTop?: string | undefined;
|
|
4079
|
+
paddingRight?: string | undefined;
|
|
4080
|
+
paddingBottom?: string | undefined;
|
|
4081
|
+
paddingLeft?: string | undefined;
|
|
4082
|
+
labelFont?: {
|
|
4083
|
+
fontSize: string;
|
|
4084
|
+
bold: boolean;
|
|
4085
|
+
italic: boolean;
|
|
4086
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
4087
|
+
color: string;
|
|
4088
|
+
align: "left" | "right" | "justify";
|
|
4089
|
+
} | undefined;
|
|
4090
|
+
contentFont?: {
|
|
4091
|
+
fontSize: string;
|
|
4092
|
+
bold: boolean;
|
|
4093
|
+
italic: boolean;
|
|
4094
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
4095
|
+
color: string;
|
|
4096
|
+
align: "left" | "right" | "justify";
|
|
4097
|
+
} | undefined;
|
|
4098
|
+
tagStyle?: {
|
|
4099
|
+
color?: string | undefined;
|
|
4100
|
+
tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
|
|
4101
|
+
} | undefined;
|
|
4102
|
+
tagStyleOpen?: boolean | undefined;
|
|
4103
|
+
borderAll?: {
|
|
4104
|
+
borderWidth?: string | undefined;
|
|
4105
|
+
borderStyle?: string | undefined;
|
|
4106
|
+
borderColor?: string | undefined;
|
|
4107
|
+
} | undefined;
|
|
4108
|
+
borderLeft?: {
|
|
4109
|
+
borderWidth?: string | undefined;
|
|
4110
|
+
borderStyle?: string | undefined;
|
|
4111
|
+
borderColor?: string | undefined;
|
|
4112
|
+
} | undefined;
|
|
4113
|
+
borderRight?: {
|
|
4114
|
+
borderWidth?: string | undefined;
|
|
4115
|
+
borderStyle?: string | undefined;
|
|
4116
|
+
borderColor?: string | undefined;
|
|
4117
|
+
} | undefined;
|
|
4118
|
+
borderBottom?: {
|
|
4119
|
+
borderWidth?: string | undefined;
|
|
4120
|
+
borderStyle?: string | undefined;
|
|
4121
|
+
borderColor?: string | undefined;
|
|
4122
|
+
} | undefined;
|
|
4123
|
+
borderTop?: {
|
|
4124
|
+
borderWidth?: string | undefined;
|
|
4125
|
+
borderStyle?: string | undefined;
|
|
4126
|
+
borderColor?: string | undefined;
|
|
4127
|
+
} | undefined;
|
|
4128
|
+
borderTopRightRadius?: string | undefined;
|
|
4129
|
+
borderTopLeftRadius?: string | undefined;
|
|
4130
|
+
borderBottomRightRadius?: string | undefined;
|
|
4131
|
+
borderBottomLeftRadius?: string | undefined;
|
|
4132
|
+
borderAllRadius?: string | undefined;
|
|
4133
|
+
columnwidthConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
|
|
4134
|
+
columnwidth?: number | undefined;
|
|
4135
|
+
columnFontStyleByRule?: {
|
|
4136
|
+
displayRule: string;
|
|
4137
|
+
contentFont: {
|
|
4138
|
+
fontSize: string;
|
|
4139
|
+
bold: boolean;
|
|
4140
|
+
italic: boolean;
|
|
4141
|
+
textDecoration: import('@gct-paas/core').TextDecoration;
|
|
4142
|
+
color: string;
|
|
4143
|
+
align: "left" | "right" | "justify";
|
|
4144
|
+
};
|
|
4145
|
+
tagStyle: {
|
|
4146
|
+
color?: string | undefined;
|
|
4147
|
+
tagType?: import('@gct-paas/core').TagTypeEnum | undefined;
|
|
4148
|
+
};
|
|
4149
|
+
progressStyle: {
|
|
4150
|
+
color: string;
|
|
4151
|
+
tagType: import('@gct-paas/core').ProgressTypeEnum;
|
|
4152
|
+
};
|
|
4153
|
+
tagType: import('@gct-paas/core').tagEnum;
|
|
4154
|
+
tagStyleOpen: boolean;
|
|
4155
|
+
}[] | undefined;
|
|
4156
|
+
columnBackgroundByRule?: {
|
|
4157
|
+
displayRule: string;
|
|
4158
|
+
backgroundColor?: string | undefined;
|
|
4159
|
+
}[] | undefined;
|
|
4160
|
+
tableheight?: number | undefined;
|
|
4161
|
+
tableheightConfigure?: import('@gct-paas/core').tableColumnWidthEnum | undefined;
|
|
4162
|
+
enableHeaderBGColor?: boolean | undefined;
|
|
4163
|
+
};
|
|
4164
|
+
props: {
|
|
4165
|
+
[x: string]: any;
|
|
4166
|
+
hidden: boolean;
|
|
4167
|
+
displayType?: import('@gct-paas/core').DisplayType | undefined;
|
|
4168
|
+
displayRule?: string | undefined;
|
|
4169
|
+
modeldata?: {
|
|
4170
|
+
modelType?: import('@gct-paas/core').EntityModelTypeEnum | undefined;
|
|
4171
|
+
modelCategory?: import('@gct-paas/core').EntityModelCategoryEnum | undefined;
|
|
4172
|
+
subModel?: 0 | 1 | undefined;
|
|
4173
|
+
supportProcess?: 0 | 1 | undefined;
|
|
4174
|
+
} | undefined;
|
|
4175
|
+
componentDependency: {
|
|
4176
|
+
sortDependency: import('@gct-paas/core').Dependency_ENUM[];
|
|
4177
|
+
configDependency: {
|
|
4178
|
+
hidden?: {
|
|
4179
|
+
expressionStr?: string | undefined;
|
|
4180
|
+
expression?: string | undefined;
|
|
4181
|
+
value?: boolean | undefined;
|
|
4182
|
+
fieldValue?: boolean | undefined;
|
|
4183
|
+
strategy?: string | undefined;
|
|
4184
|
+
} | undefined;
|
|
4185
|
+
readonly?: {
|
|
4186
|
+
expressionStr?: string | undefined;
|
|
4187
|
+
expression?: string | undefined;
|
|
4188
|
+
value?: boolean | undefined;
|
|
4189
|
+
fieldValue?: boolean | undefined;
|
|
4190
|
+
strategy?: string | undefined;
|
|
4191
|
+
} | undefined;
|
|
4192
|
+
disabled?: {
|
|
4193
|
+
expressionStr?: string | undefined;
|
|
4194
|
+
expression?: string | undefined;
|
|
4195
|
+
value?: boolean | undefined;
|
|
4196
|
+
fieldValue?: boolean | undefined;
|
|
4197
|
+
strategy?: string | undefined;
|
|
4198
|
+
} | undefined;
|
|
4199
|
+
required?: {
|
|
4200
|
+
expressionStr?: string | undefined;
|
|
4201
|
+
expression?: string | undefined;
|
|
4202
|
+
value?: boolean | undefined;
|
|
4203
|
+
fieldValue?: boolean | undefined;
|
|
4204
|
+
strategy?: string | undefined;
|
|
4205
|
+
} | undefined;
|
|
4206
|
+
assignment?: {
|
|
4207
|
+
expressionStr?: string | undefined;
|
|
4208
|
+
expression?: string | undefined;
|
|
4209
|
+
value?: boolean | undefined;
|
|
4210
|
+
fieldValue?: boolean | undefined;
|
|
4211
|
+
strategy?: string | undefined;
|
|
4212
|
+
} | undefined;
|
|
3075
4213
|
};
|
|
3076
4214
|
};
|
|
3077
4215
|
deviceConnectivity: boolean;
|
|
@@ -3100,6 +4238,8 @@ export declare function useDesigner(): {
|
|
|
3100
4238
|
setModalDesignState: (flag: boolean, modalId?: string, isGlobal?: boolean) => Promise<void>;
|
|
3101
4239
|
setModalInfo: (modal: import("@gct-paas/schema").LowCodeModal.Modal) => void;
|
|
3102
4240
|
setSubTableModalDesignState: (flag: boolean, needId?: string) => void;
|
|
4241
|
+
setWfNodesModalDesignState: (flag: boolean, needId?: string) => void;
|
|
4242
|
+
setWorkflowNodesModalDesignState: (flag: boolean, needId?: string) => void;
|
|
3103
4243
|
subTableModalState: import('vue').Ref<boolean, boolean>;
|
|
3104
4244
|
subTableModalId: import('vue').Ref<string, string>;
|
|
3105
4245
|
getAsyncWidget: (widget: string | LowCodeWidget.BasicSchema) => import('vue').Component | undefined;
|