@gct-paas/core-web 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-B8zoAUhR.cjs +20 -0
- package/dist/index-BH5PTZ_c.js +20 -0
- package/dist/index-Cna4DZog.js +109381 -0
- package/dist/index.esm.min.mjs +89 -39
- package/dist/index.min.cjs +1 -1
- package/dist/index.min.css +1 -1
- package/dist/index.system.min.js +1 -1
- package/dist/monaco-editor-4E2xdOou.cjs +1 -0
- package/dist/monaco-editor-C-wvzgow.js +1 -0
- package/dist/monaco-editor-Cel355Cg.js +350 -0
- package/es/ai-components/code-chat/code-chat.d.ts +53 -0
- package/es/ai-components/index.d.ts +1 -0
- package/es/ai-components/wujie-ai-container/wujie-ai-container.d.ts +21 -0
- package/es/components/base-button/base-button.vue.d.ts +5 -5
- package/es/components/basic-button/basic-button.vue.d.ts +2 -2
- package/es/components/code-editor/code-editor.d.ts +1 -1
- package/es/components/double-input/double-input.vue.mjs +1 -1
- package/es/components/icon-next/data/icons.data.d.ts +5 -0
- package/es/components/icon-next/hooks/useIconAsset.d.ts +16 -0
- package/es/components/icon-next/hooks/useIconAsset.mjs +48 -0
- package/es/components/icon-next/hooks/useIconPark.d.ts +16 -0
- package/es/components/icon-next/hooks/useIconPark.mjs +52 -0
- package/es/components/icon-next/hooks/useIconPlatform.d.ts +8 -0
- package/es/components/icon-next/hooks/useIconPlatform.mjs +48 -0
- package/es/components/icon-next/index.d.ts +3 -0
- package/es/components/icon-next/src/IconNext.css +18 -0
- package/es/components/icon-next/src/IconNext.vue.d.ts +40 -0
- package/es/components/icon-next/src/IconNext.vue2.mjs +7 -0
- package/es/components/icon-next/src/IconNext.vue3.mjs +108 -0
- package/es/components/icon-next/src/IconNextPicker.css +195 -0
- package/es/components/icon-next/src/IconNextPicker.vue.d.ts +75 -0
- package/es/components/icon-next/src/IconNextPicker.vue2.mjs +452 -0
- package/es/components/icon-next/src/IconNextPicker.vue3.mjs +6 -0
- package/es/components/icon-next/types/index.d.ts +17 -0
- package/es/components/icon-next/types/index.mjs +10 -0
- package/es/components/index.d.ts +0 -3
- package/es/components/index.mjs +10 -2
- package/es/components/svg-icon/svg-icon.vue.d.ts +1 -1
- package/es/create-app-vue.mjs +5 -0
- package/es/hooks/index.d.ts +1 -0
- package/es/hooks/useDesign.d.ts +4 -0
- package/es/hooks/useDesign.mjs +11 -0
- package/es/index.d.ts +3 -0
- package/es/index.mjs +102 -5
- package/es/modules/Cropper/hooks/useFile.d.ts +4 -0
- package/es/modules/Cropper/index.d.ts +5 -0
- package/es/modules/Cropper/src/CopperFreeModal.vue.d.ts +100 -0
- package/es/modules/Cropper/src/CopperModal.vue.d.ts +40 -0
- package/es/modules/Cropper/src/Cropper.vue.d.ts +96 -0
- package/es/modules/Cropper/src/CropperAvatar.vue.d.ts +62 -0
- package/es/modules/Cropper/src/CropperFree.vue.d.ts +118 -0
- package/es/modules/Cropper/src/typing.d.ts +11 -0
- package/es/modules/code-editor/index.d.ts +11 -11
- package/es/modules/code-editor/monaco-editor.vue.d.ts +4 -4
- package/es/modules/color-picker/src/ColorPicker.vue.d.ts +1 -1
- package/es/modules/formula-editor/formula-editor.mjs +11 -4
- package/es/modules/gct-dnd/components/gct-dnd-container/gct-dnd-container.d.ts +1 -1
- package/es/modules/gct-form/constants/editor-register/editor-register.d.ts +14 -0
- package/es/modules/gct-form/constants/editor-register/editor-register.mjs +6 -0
- package/es/modules/gct-form/constants/editor-type/editor-type.d.ts +130 -0
- package/es/modules/gct-form/constants/editor-type/editor-type.mjs +35 -0
- package/es/modules/gct-form/constants/index.d.ts +3 -0
- package/es/modules/gct-form/constants/index.mjs +3 -0
- package/es/modules/gct-form/controller/edit-form/edit-form.controller.d.ts +42 -0
- package/es/modules/gct-form/controller/edit-form/edit-form.controller.mjs +72 -0
- package/es/modules/gct-form/controller/editor-item/editor-item.controller.d.ts +15 -0
- package/es/modules/gct-form/controller/editor-item/editor-item.controller.mjs +23 -0
- package/es/modules/gct-form/controller/form/form.controller.d.ts +68 -0
- package/es/modules/gct-form/controller/form-collapse/form-collapse.controller.d.ts +18 -0
- package/es/modules/gct-form/controller/form-collapse/form-collapse.controller.mjs +11 -0
- package/es/modules/gct-form/controller/form-collapse-pane/form-collapse-pane.controller.d.ts +18 -0
- package/es/modules/gct-form/controller/form-collapse-pane/form-collapse-pane.controller.mjs +11 -0
- package/es/modules/gct-form/controller/form-edit-item/form-edit-item.controller.d.ts +27 -0
- package/es/modules/gct-form/controller/form-edit-item/form-edit-item.controller.mjs +94 -0
- package/es/modules/gct-form/controller/form-group/form-group.controller.d.ts +18 -0
- package/es/modules/gct-form/controller/form-group/form-group.controller.mjs +11 -0
- package/es/modules/gct-form/controller/form-item/form-item.controller.d.ts +21 -0
- package/es/modules/gct-form/controller/form-item/form-item.controller.mjs +37 -0
- package/es/modules/gct-form/controller/form-item-basic/form-item-basic.controller.d.ts +57 -0
- package/es/modules/gct-form/controller/form-item-basic/form-item-basic.controller.mjs +45 -0
- package/es/modules/gct-form/controller/form-item-hidden/form-item-hidden.controller.d.ts +17 -0
- package/es/modules/gct-form/controller/form-item-hidden/form-item-hidden.controller.mjs +7 -0
- package/es/modules/gct-form/controller/form-line/form-line.controller.d.ts +18 -0
- package/es/modules/gct-form/controller/form-line/form-line.controller.mjs +11 -0
- package/es/modules/gct-form/controller/form-tab/form-tab.controller.d.ts +18 -0
- package/es/modules/gct-form/controller/form-tab/form-tab.controller.mjs +11 -0
- package/es/modules/gct-form/controller/form-tab-pane/form-tab-pane.controller.d.ts +18 -0
- package/es/modules/gct-form/controller/form-tab-pane/form-tab-pane.controller.mjs +11 -0
- package/es/modules/gct-form/controller/gct-form/gct-form.controller.d.ts +101 -0
- package/es/modules/gct-form/controller/gct-form/gct-form.controller.mjs +224 -0
- package/es/modules/gct-form/controller/index.d.ts +13 -0
- package/es/modules/gct-form/editor/gct-form-action/gct-form-action.d.ts +39 -0
- package/es/modules/gct-form/editor/gct-form-action/gct-form-action.mjs +50 -0
- package/es/modules/gct-form/editor/gct-form-action/index.d.ts +8 -0
- package/es/modules/gct-form/editor/gct-form-action/index.mjs +14 -0
- package/es/modules/gct-form/editor/gct-form-check-switch/gct-form-check-switch.css +86 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-check-switch/gct-form-check-switch.d.ts +7 -2
- package/es/modules/gct-form/editor/gct-form-check-switch/gct-form-check-switch.mjs +59 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-check-switch/gct-form-check-switch.provider.d.ts +1 -1
- package/es/modules/gct-form/editor/gct-form-check-switch/gct-form-check-switch.provider.mjs +5 -0
- package/es/modules/gct-form/editor/gct-form-check-switch/index.mjs +12 -0
- package/es/modules/gct-form/editor/gct-form-checkbox/gct-form-checkbox.css +108 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-checkbox/gct-form-checkbox.d.ts +19 -5
- package/es/modules/gct-form/editor/gct-form-checkbox/gct-form-checkbox.mjs +127 -0
- package/es/{editor/gct-form-icon-select → modules/gct-form/editor/gct-form-checkbox}/index.d.ts +1 -1
- package/es/modules/gct-form/editor/gct-form-checkbox/index.mjs +14 -0
- package/es/{components/layout/flex-container/flex-container.css → modules/gct-form/editor/gct-form-color/gct-form-color.css} +2 -2
- package/es/modules/gct-form/editor/gct-form-color/gct-form-color.d.ts +36 -0
- package/es/modules/gct-form/editor/gct-form-color/gct-form-color.mjs +44 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-color/gct-form-color.provider.d.ts +1 -1
- package/es/modules/gct-form/editor/gct-form-color/gct-form-color.provider.mjs +5 -0
- package/es/modules/gct-form/editor/gct-form-color/index.mjs +12 -0
- package/es/modules/gct-form/editor/gct-form-date/gct-form-date.d.ts +286 -0
- package/es/modules/gct-form/editor/gct-form-date/gct-form-date.mjs +81 -0
- package/es/modules/gct-form/editor/gct-form-date/gct-form-date.provider.d.ts +11 -0
- package/es/modules/gct-form/editor/gct-form-date/gct-form-date.provider.mjs +5 -0
- package/es/modules/gct-form/editor/gct-form-date/index.mjs +12 -0
- package/es/modules/gct-form/editor/gct-form-date-format-select/gct-form-date-format-select.css +77 -0
- package/es/modules/gct-form/editor/gct-form-date-format-select/gct-form-date-format-select.d.ts +111 -0
- package/es/modules/gct-form/editor/gct-form-date-format-select/gct-form-date-format-select.mjs +113 -0
- package/es/{editor/gct-form-info → modules/gct-form/editor/gct-form-date-format-select}/index.d.ts +1 -1
- package/es/modules/gct-form/editor/gct-form-date-format-select/index.mjs +14 -0
- package/es/modules/gct-form/editor/gct-form-empty/gct-form-empty.d.ts +2 -0
- package/es/modules/gct-form/editor/gct-form-empty/gct-form-empty.mjs +16 -0
- package/es/modules/gct-form/editor/gct-form-empty/gct-form-empty.provider.d.ts +4 -0
- package/es/modules/gct-form/editor/gct-form-empty/index.d.ts +8 -0
- package/es/modules/gct-form/editor/gct-form-empty/index.mjs +14 -0
- package/es/modules/gct-form/editor/gct-form-formula/gct-form-formula.css +81 -0
- package/es/modules/gct-form/editor/gct-form-formula/gct-form-formula.d.ts +39 -0
- package/es/modules/gct-form/editor/gct-form-formula/gct-form-formula.mjs +69 -0
- package/es/{editor/gct-form-radio → modules/gct-form/editor/gct-form-formula}/index.d.ts +1 -4
- package/es/modules/gct-form/editor/gct-form-formula/index.mjs +14 -0
- package/es/modules/gct-form/editor/gct-form-group-select/gct-form-group-select.css +120 -0
- package/es/{editor/gct-form-modal-select/gct-form-modal-select.d.ts → modules/gct-form/editor/gct-form-group-select/gct-form-group-select.d.ts} +19 -12
- package/es/modules/gct-form/editor/gct-form-group-select/gct-form-group-select.mjs +231 -0
- package/es/modules/gct-form/editor/gct-form-group-select/index.d.ts +8 -0
- package/es/modules/gct-form/editor/gct-form-group-select/index.mjs +14 -0
- package/es/modules/gct-form/editor/gct-form-i18n/gct-form-i18n.d.ts +121 -0
- package/es/modules/gct-form/editor/gct-form-i18n/gct-form-i18n.mjs +114 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-i18n/gct-form-i18n.provider.d.ts +1 -1
- package/es/modules/gct-form/editor/gct-form-i18n/gct-form-i18n.provider.mjs +5 -0
- package/es/modules/gct-form/editor/gct-form-i18n/index.mjs +12 -0
- package/es/modules/gct-form/editor/gct-form-icon-select/gct-form-icon-select.css +76 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-icon-select/gct-form-icon-select.d.ts +3 -3
- package/es/modules/gct-form/editor/gct-form-icon-select/gct-form-icon-select.mjs +73 -0
- package/es/{editor/gct-form-checkbox → modules/gct-form/editor/gct-form-icon-select}/index.d.ts +1 -4
- package/es/modules/gct-form/editor/gct-form-icon-select/index.mjs +14 -0
- package/es/modules/gct-form/editor/gct-form-info/gct-form-info.css +85 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-info/gct-form-info.d.ts +16 -1
- package/es/modules/gct-form/editor/gct-form-info/gct-form-info.mjs +52 -0
- package/es/modules/gct-form/editor/gct-form-info/index.d.ts +8 -0
- package/es/modules/gct-form/editor/gct-form-info/index.mjs +14 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-length-unit/gct-form-length-unit.d.ts +1 -4
- package/es/modules/gct-form/editor/gct-form-length-unit/gct-form-length-unit.mjs +43 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-length-unit/gct-form-length-unit.provider.d.ts +1 -1
- package/es/modules/gct-form/editor/gct-form-length-unit/gct-form-length-unit.provider.mjs +5 -0
- package/es/modules/gct-form/editor/gct-form-length-unit/index.mjs +12 -0
- package/es/modules/gct-form/editor/gct-form-model-select/gct-form-model-select.css +76 -0
- package/es/modules/gct-form/editor/gct-form-model-select/gct-form-model-select.d.ts +19 -0
- package/es/modules/gct-form/editor/gct-form-model-select/gct-form-model-select.mjs +175 -0
- package/es/modules/gct-form/editor/gct-form-model-select/index.d.ts +8 -0
- package/es/modules/gct-form/editor/gct-form-model-select/index.mjs +14 -0
- package/es/modules/gct-form/editor/gct-form-multiple-choice/gct-form-multiple-choice.d.ts +68 -0
- package/es/modules/gct-form/editor/gct-form-multiple-choice/gct-form-multiple-choice.mjs +68 -0
- package/es/modules/gct-form/editor/gct-form-multiple-choice/index.d.ts +8 -0
- package/es/modules/gct-form/editor/gct-form-multiple-choice/index.mjs +14 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-number/gct-form-number.d.ts +1 -1
- package/es/modules/gct-form/editor/gct-form-number/gct-form-number.mjs +44 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-number/gct-form-number.provider.d.ts +1 -1
- package/es/modules/gct-form/editor/gct-form-number/gct-form-number.provider.mjs +5 -0
- package/es/modules/gct-form/editor/gct-form-number/index.mjs +12 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-picker/gct-form-picker.d.ts +3 -3
- package/es/modules/gct-form/editor/gct-form-picker/gct-form-picker.mjs +113 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-picker/gct-form-picker.provider.d.ts +1 -1
- package/es/modules/gct-form/editor/gct-form-picker/gct-form-picker.provider.mjs +5 -0
- package/es/modules/gct-form/editor/gct-form-picker/index.mjs +12 -0
- package/es/modules/gct-form/editor/gct-form-pixel-config/gct-form-pixel-config.css +103 -0
- package/es/modules/gct-form/editor/gct-form-pixel-config/gct-form-pixel-config.d.ts +29 -0
- package/es/modules/gct-form/editor/gct-form-pixel-config/gct-form-pixel-config.mjs +69 -0
- package/es/modules/gct-form/editor/gct-form-pixel-config/index.d.ts +8 -0
- package/es/modules/gct-form/editor/gct-form-pixel-config/index.mjs +14 -0
- package/es/modules/gct-form/editor/gct-form-radio/gct-form-radio.css +205 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-radio/gct-form-radio.d.ts +7 -1
- package/es/modules/gct-form/editor/gct-form-radio/gct-form-radio.mjs +95 -0
- package/es/modules/gct-form/editor/gct-form-radio/index.d.ts +8 -0
- package/es/modules/gct-form/editor/gct-form-radio/index.mjs +14 -0
- package/es/modules/gct-form/editor/gct-form-select/gct-form-select.css +83 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-select/gct-form-select.d.ts +17 -3
- package/es/modules/gct-form/editor/gct-form-select/gct-form-select.mjs +128 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-select/gct-form-select.provider.d.ts +1 -1
- package/es/modules/gct-form/editor/gct-form-select/gct-form-select.provider.mjs +5 -0
- package/es/modules/gct-form/editor/gct-form-select/index.mjs +12 -0
- package/es/modules/gct-form/editor/gct-form-span/gct-form-span.css +73 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-span/gct-form-span.d.ts +10 -1
- package/es/modules/gct-form/editor/gct-form-span/gct-form-span.mjs +100 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-span/gct-form-span.provider.d.ts +1 -1
- package/es/modules/gct-form/editor/gct-form-span/gct-form-span.provider.mjs +5 -0
- package/es/modules/gct-form/editor/gct-form-span/index.mjs +12 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-switch/gct-form-switch.d.ts +7 -1
- package/es/modules/gct-form/editor/gct-form-switch/gct-form-switch.mjs +39 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-switch/gct-form-switch.provider.d.ts +1 -1
- package/es/modules/gct-form/editor/gct-form-switch/gct-form-switch.provider.mjs +5 -0
- package/es/modules/gct-form/editor/gct-form-switch/index.d.ts +4 -0
- package/es/modules/gct-form/editor/gct-form-switch/index.mjs +12 -0
- package/es/modules/gct-form/editor/gct-form-table/gct-form-table.d.ts +53 -0
- package/es/modules/gct-form/editor/gct-form-table/gct-form-table.mjs +32 -0
- package/es/modules/gct-form/editor/gct-form-table/index.d.ts +8 -0
- package/es/modules/gct-form/editor/gct-form-table/index.mjs +14 -0
- package/es/modules/gct-form/editor/gct-form-text/gct-form-text.css +70 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-text/gct-form-text.d.ts +8 -2
- package/es/modules/gct-form/editor/gct-form-text/gct-form-text.mjs +58 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-text/gct-form-text.provider.d.ts +1 -1
- package/es/modules/gct-form/editor/gct-form-text/gct-form-text.provider.mjs +5 -0
- package/es/modules/gct-form/editor/gct-form-text/index.d.ts +4 -0
- package/es/modules/gct-form/editor/gct-form-text/index.mjs +12 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-textarea/gct-form-textarea.d.ts +2 -1
- package/es/modules/gct-form/editor/gct-form-textarea/gct-form-textarea.mjs +46 -0
- package/es/{editor → modules/gct-form/editor}/gct-form-textarea/gct-form-textarea.provider.d.ts +1 -1
- package/es/modules/gct-form/editor/gct-form-textarea/gct-form-textarea.provider.mjs +5 -0
- package/es/modules/gct-form/editor/gct-form-textarea/index.d.ts +4 -0
- package/es/modules/gct-form/editor/gct-form-textarea/index.mjs +12 -0
- package/es/modules/gct-form/editor/gct-select-form-table/gct-select-form-table.css +94 -0
- package/es/modules/gct-form/editor/gct-select-form-table/gct-select-form-table.d.ts +53 -0
- package/es/modules/gct-form/editor/gct-select-form-table/gct-select-form-table.mjs +79 -0
- package/es/modules/gct-form/editor/gct-select-form-table/index.d.ts +8 -0
- package/es/modules/gct-form/editor/gct-select-form-table/index.mjs +14 -0
- package/es/modules/gct-form/editor/index.mjs +34 -0
- package/es/modules/gct-form/hooks/index.d.ts +2 -0
- package/es/modules/gct-form/hooks/use-form/use-form.d.ts +10 -0
- package/es/modules/gct-form/hooks/use-form/use-form.mjs +8 -0
- package/es/modules/gct-form/hooks/use-gct-form-value/use-gct-form-value.d.ts +22 -0
- package/es/modules/gct-form/hooks/use-gct-form-value/use-gct-form-value.mjs +89 -0
- package/es/modules/gct-form/index.d.ts +12 -0
- package/es/modules/gct-form/index.mjs +16 -0
- package/es/modules/gct-form/interface/i-controller/edit-form/edit-form.controller.d.ts +20 -0
- package/es/modules/gct-form/interface/i-controller/editor-item/editor-item.controller.d.ts +27 -0
- package/es/modules/gct-form/interface/i-controller/form/form.controller.d.ts +121 -0
- package/es/modules/gct-form/interface/i-controller/form-collapse/form-collapse.controller.d.ts +23 -0
- package/es/modules/gct-form/interface/i-controller/form-collapse-pane/form-collapse-pane.controller.d.ts +23 -0
- package/es/modules/gct-form/interface/i-controller/form-edit-item/form-edit-item.controller.d.ts +59 -0
- package/es/modules/gct-form/interface/i-controller/form-group/form-group.controller.d.ts +24 -0
- package/es/modules/gct-form/interface/i-controller/form-hidden-item/form-hidden-item.controller.d.ts +24 -0
- package/es/modules/gct-form/interface/i-controller/form-item/form-item.controller.d.ts +40 -0
- package/es/modules/gct-form/interface/i-controller/form-item-basic/form-item-basic.controller.d.ts +51 -0
- package/es/modules/gct-form/interface/i-controller/form-line/form-line.controller.d.ts +20 -0
- package/es/modules/gct-form/interface/i-controller/form-tab/form-tab.controller.d.ts +23 -0
- package/es/modules/gct-form/interface/i-controller/form-tab-pane/form-tab-pane.controller.d.ts +23 -0
- package/es/modules/gct-form/interface/i-controller/index.d.ts +13 -0
- package/es/modules/gct-form/interface/i-editor/i-action-editor.d.ts +23 -0
- package/es/modules/gct-form/interface/i-editor/i-check-switch.d.ts +29 -0
- package/es/modules/gct-form/interface/i-editor/i-checkbox-editor.d.ts +11 -0
- package/es/modules/gct-form/interface/i-editor/i-color-editor.d.ts +13 -0
- package/es/modules/gct-form/interface/i-editor/i-date-format-select-editor.d.ts +36 -0
- package/es/modules/gct-form/interface/i-editor/i-editor-basic.d.ts +134 -0
- package/es/modules/gct-form/interface/i-editor/i-formula-editor.d.ts +22 -0
- package/es/modules/gct-form/interface/i-editor/i-i18n-editor.d.ts +38 -0
- package/es/modules/gct-form/interface/i-editor/i-icon-select-editor.d.ts +21 -0
- package/es/modules/gct-form/interface/i-editor/i-info-editor.d.ts +21 -0
- package/es/modules/gct-form/interface/i-editor/i-length-unit-editor.d.ts +13 -0
- package/es/modules/gct-form/interface/i-editor/i-model-field-select-editor.d.ts +18 -0
- package/es/modules/gct-form/interface/i-editor/i-mpicker-editor.d.ts +36 -0
- package/es/modules/gct-form/interface/i-editor/i-number-editor.d.ts +21 -0
- package/es/modules/gct-form/interface/i-editor/i-picker-editor.d.ts +37 -0
- package/es/modules/gct-form/interface/i-editor/i-radio-editor.d.ts +32 -0
- package/es/modules/gct-form/interface/i-editor/i-select-editor.d.ts +45 -0
- package/es/modules/gct-form/interface/i-editor/i-select-table-editor.d.ts +44 -0
- package/es/modules/gct-form/interface/i-editor/i-span-editor.d.ts +30 -0
- package/es/modules/gct-form/interface/i-editor/i-switch-editor.d.ts +14 -0
- package/es/modules/gct-form/interface/i-editor/i-table-editor.d.ts +19 -0
- package/es/modules/gct-form/interface/i-editor/i-text-editor.d.ts +46 -0
- package/es/modules/gct-form/interface/i-editor/i-textarea-editor.d.ts +25 -0
- package/es/modules/gct-form/interface/i-editor/index.d.ts +23 -0
- package/es/modules/gct-form/interface/i-events/form/i-form.event.d.ts +14 -0
- package/es/modules/gct-form/interface/i-events/index.d.ts +1 -0
- package/es/modules/gct-form/interface/i-form/i-edit-form.d.ts +48 -0
- package/es/modules/gct-form/interface/i-form/i-form-collapse-pane.d.ts +30 -0
- package/es/modules/gct-form/interface/i-form/i-form-collapse.d.ts +39 -0
- package/es/modules/gct-form/interface/i-form/i-form-container.d.ts +53 -0
- package/es/modules/gct-form/interface/i-form/i-form-edit-item.d.ts +154 -0
- package/es/modules/gct-form/interface/i-form/i-form-group-container.d.ts +24 -0
- package/es/modules/gct-form/interface/i-form/i-form-group.d.ts +35 -0
- package/es/modules/gct-form/interface/i-form/i-form-hidden-item.d.ts +11 -0
- package/es/modules/gct-form/interface/i-form/i-form-item-basic.d.ts +131 -0
- package/es/modules/gct-form/interface/i-form/i-form-item.d.ts +11 -0
- package/es/modules/gct-form/interface/i-form/i-form-line.d.ts +24 -0
- package/es/modules/gct-form/interface/i-form/i-form-tab-pane.d.ts +23 -0
- package/es/modules/gct-form/interface/i-form/i-form-tab.d.ts +25 -0
- package/es/modules/gct-form/interface/i-form/i-form.d.ts +93 -0
- package/es/modules/gct-form/interface/i-form/index.d.ts +14 -0
- package/es/modules/gct-form/interface/i-layout/i-flex-layout/i-flex-container.d.ts +75 -0
- package/es/modules/gct-form/interface/i-layout/i-flex-layout/i-flex-item.d.ts +51 -0
- package/es/modules/gct-form/interface/i-layout/i-grid-layout/i-grid-container.d.ts +29 -0
- package/es/modules/gct-form/interface/i-layout/i-grid-layout/i-grid-item-span.d.ts +54 -0
- package/es/modules/gct-form/interface/i-layout/i-grid-layout/i-grid-item.d.ts +37 -0
- package/es/modules/gct-form/interface/i-layout/i-layout-basis/i-layout-container-basis.d.ts +11 -0
- package/es/modules/gct-form/interface/i-layout/index.d.ts +6 -0
- package/es/modules/gct-form/interface/i-provider/i-editor-provider/i-editor-provider.d.ts +24 -0
- package/es/modules/gct-form/interface/i-provider/i-form-item-provider/i-form-item-provider.d.ts +44 -0
- package/es/modules/gct-form/interface/i-provider/index.d.ts +2 -0
- package/es/modules/gct-form/interface/i-state/form/form.state.d.ts +59 -0
- package/es/modules/gct-form/interface/i-state/form-collapse/form-collapse.state.d.ts +11 -0
- package/es/modules/gct-form/interface/i-state/form-collapse-pane/form-collapse-pane.state.d.ts +11 -0
- package/es/modules/gct-form/interface/i-state/form-edit-item/form-edit-item.state.d.ts +38 -0
- package/es/modules/gct-form/interface/i-state/form-group/form-group.state.d.ts +21 -0
- package/es/modules/gct-form/interface/i-state/form-hidden-item/form-hidden-item.state.d.ts +5 -0
- package/es/modules/gct-form/interface/i-state/form-item/form-item.state.d.ts +20 -0
- package/es/modules/gct-form/interface/i-state/form-item-basic/form-item-basic.state.d.ts +63 -0
- package/es/modules/gct-form/interface/i-state/form-line/form-line.state.d.ts +10 -0
- package/es/modules/gct-form/interface/i-state/form-tab/form-tab.state.d.ts +19 -0
- package/es/modules/gct-form/interface/i-state/form-tab-pane/form-tab-pane.state.d.ts +11 -0
- package/es/modules/gct-form/interface/i-state/index.d.ts +11 -0
- package/es/modules/gct-form/interface/index.d.ts +7 -0
- package/es/modules/gct-form/props/gct-form-item/gct-form-item.props.d.ts +63 -0
- package/es/modules/gct-form/props/gct-form-item/gct-form-item.props.mjs +66 -0
- package/es/modules/gct-form/props/index.d.ts +1 -0
- package/es/modules/gct-form/register/editor-register/editor-register.d.ts +49 -0
- package/es/modules/gct-form/register/editor-register/editor-register.mjs +57 -0
- package/es/modules/gct-form/register/form-item-register/form-item-register.d.ts +36 -0
- package/es/modules/gct-form/register/form-item-register/form-item-register.mjs +42 -0
- package/es/modules/gct-form/register/index.d.ts +2 -0
- package/es/modules/gct-form/state/form/form.state.d.ts +25 -0
- package/es/modules/gct-form/state/form/form.state.mjs +17 -0
- package/es/modules/gct-form/state/form-collapse/form-collapse.state.d.ts +14 -0
- package/es/modules/gct-form/state/form-collapse/form-collapse.state.mjs +6 -0
- package/es/modules/gct-form/state/form-collapse-pane/form-collapse-pane.state.d.ts +14 -0
- package/es/modules/gct-form/state/form-collapse-pane/form-collapse-pane.state.mjs +6 -0
- package/es/modules/gct-form/state/form-edit-item/form-edit-item.state.d.ts +18 -0
- package/es/modules/gct-form/state/form-edit-item/form-edit-item.state.mjs +10 -0
- package/es/modules/gct-form/state/form-group/form-group.state.d.ts +21 -0
- package/es/modules/gct-form/state/form-group/form-group.state.mjs +14 -0
- package/es/modules/gct-form/state/form-item/form-item.state.d.ts +14 -0
- package/es/modules/gct-form/state/form-item/form-item.state.mjs +6 -0
- package/es/modules/gct-form/state/form-item-basic/form-item-basic.state.d.ts +17 -0
- package/es/modules/gct-form/state/form-item-basic/form-item-basic.state.mjs +9 -0
- package/es/modules/gct-form/state/form-line/form-line.state.d.ts +11 -0
- package/es/modules/gct-form/state/form-line/form-line.state.mjs +6 -0
- package/es/modules/gct-form/state/form-tab/form-tab.state.d.ts +15 -0
- package/es/modules/gct-form/state/form-tab/form-tab.state.mjs +7 -0
- package/es/modules/gct-form/state/form-tab-pane/form-tab-pane.state.d.ts +14 -0
- package/es/modules/gct-form/state/form-tab-pane/form-tab-pane.state.mjs +6 -0
- package/es/modules/gct-form/state/index.d.ts +10 -0
- package/es/modules/gct-form/utils/index.d.ts +1 -0
- package/es/modules/gct-form/utils/width-install/width-install.d.ts +17 -0
- package/es/modules/gct-form/utils/width-install/width-install.mjs +19 -0
- package/es/{widgets → modules/gct-form/widgets}/gct-edit-form/gct-edit-form.d.ts +23 -4
- package/es/modules/gct-form/widgets/gct-edit-form/gct-edit-form.mjs +151 -0
- package/es/modules/gct-form/widgets/gct-edit-form/index.mjs +10 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-collapse/gct-form-collapse.css +97 -0
- package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-collapse/gct-form-collapse.d.ts +13 -3
- package/es/modules/gct-form/widgets/gct-form/gct-form-collapse/gct-form-collapse.mjs +79 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-collapse/gct-form-collapse.model.d.ts +19 -0
- package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-collapse/gct-form-collapse.provider.d.ts +1 -1
- package/es/modules/gct-form/widgets/gct-form/gct-form-collapse/gct-form-collapse.provider.mjs +14 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-collapse/index.d.ts +7 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-collapse/index.mjs +15 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-collapse-pane/gct-form-collapse-pane.css +79 -0
- package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-collapse-pane/gct-form-collapse-pane.d.ts +13 -3
- package/es/modules/gct-form/widgets/gct-form/gct-form-collapse-pane/gct-form-collapse-pane.mjs +77 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-collapse-pane/gct-form-collapse-pane.model.d.ts +18 -0
- package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-collapse-pane/gct-form-collapse-pane.provider.d.ts +1 -1
- package/es/modules/gct-form/widgets/gct-form/gct-form-collapse-pane/gct-form-collapse-pane.provider.mjs +16 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-collapse-pane/index.d.ts +7 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-collapse-pane/index.mjs +15 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-group/gct-form-group.css +88 -0
- package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-group/gct-form-group.d.ts +13 -3
- package/es/modules/gct-form/widgets/gct-form/gct-form-group/gct-form-group.mjs +94 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-group/gct-form-group.model.d.ts +19 -0
- package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-group/gct-form-group.provider.d.ts +1 -1
- package/es/modules/gct-form/widgets/gct-form/gct-form-group/gct-form-group.provider.mjs +14 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-group/index.d.ts +7 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-group/index.mjs +15 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-hidden-item/gct-form-hidden-item.model.d.ts +16 -0
- package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-hidden-item/gct-form-hidden-item.provider.d.ts +2 -2
- package/es/modules/gct-form/widgets/gct-form/gct-form-hidden-item/gct-form-hidden-item.provider.mjs +16 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-hidden-item/index.d.ts +6 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-item/gct-form-item.css +171 -0
- package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-item/gct-form-item.d.ts +23 -4
- package/es/modules/gct-form/widgets/gct-form/gct-form-item/gct-form-item.mjs +163 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-item/gct-form-item.model.d.ts +17 -0
- package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-item/gct-form-item.provider.d.ts +1 -1
- package/es/modules/gct-form/widgets/gct-form/gct-form-item/gct-form-item.provider.mjs +14 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-item/index.d.ts +7 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-line/gct-form-line.css +72 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-line/gct-form-line.d.ts +37 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-line/gct-form-line.mjs +48 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-line/gct-form-line.model.d.ts +15 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-line/gct-form-line.provider.d.ts +5 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-line/gct-form-line.provider.mjs +14 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-line/index.d.ts +7 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-line/index.mjs +12 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-tab/gct-form-tab.css +108 -0
- package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-tab/gct-form-tab.d.ts +12 -2
- package/es/modules/gct-form/widgets/gct-form/gct-form-tab/gct-form-tab.mjs +72 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-tab/gct-form-tab.model.d.ts +10 -0
- package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-tab/gct-form-tab.provider.d.ts +1 -1
- package/es/modules/gct-form/widgets/gct-form/gct-form-tab/gct-form-tab.provider.mjs +14 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-tab/index.d.ts +7 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-tab/index.mjs +12 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-tab-pane/gct-form-tab-pane.css +74 -0
- package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-tab-pane/gct-form-tab-pane.d.ts +13 -3
- package/es/modules/gct-form/widgets/gct-form/gct-form-tab-pane/gct-form-tab-pane.mjs +71 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-tab-pane/gct-form-tab-pane.model.d.ts +17 -0
- package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-tab-pane/gct-form-tab-pane.provider.d.ts +1 -1
- package/es/modules/gct-form/widgets/gct-form/gct-form-tab-pane/gct-form-tab-pane.provider.mjs +14 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-tab-pane/index.d.ts +6 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-tab-pane/index.mjs +15 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-title-group/gct-form-title-group.css +82 -0
- package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-title-group/gct-form-title-group.d.ts +2 -2
- package/es/modules/gct-form/widgets/gct-form/gct-form-title-group/gct-form-title-group.mjs +73 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-title-group/gct-form-title-group.model.d.ts +19 -0
- package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form-title-group/gct-form-title-group.provider.d.ts +1 -1
- package/es/modules/gct-form/widgets/gct-form/gct-form-title-group/gct-form-title-group.provider.mjs +14 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-title-group/index.d.ts +7 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form-title-group/index.mjs +16 -0
- package/es/modules/gct-form/widgets/gct-form/gct-form.css +73 -0
- package/es/{widgets → modules/gct-form/widgets}/gct-form/gct-form.d.ts +13 -3
- package/es/modules/gct-form/widgets/gct-form/gct-form.mjs +147 -0
- package/es/modules/gct-form/widgets/gct-form/index.d.ts +14 -0
- package/es/modules/gct-form/widgets/gct-form/index.mjs +33 -0
- package/es/modules/gct-table/controller/gct-table/gct-table.controller.d.ts +54 -0
- package/es/modules/gct-table/controller/gct-table/gct-table.controller.mjs +143 -0
- package/es/modules/gct-table/controller/index.d.ts +5 -0
- package/es/modules/gct-table/controller/table-item/table-action-item.controller.d.ts +15 -0
- package/es/modules/gct-table/controller/table-item/table-action-item.controller.mjs +6 -0
- package/es/modules/gct-table/controller/table-item/table-edit-item.controller.d.ts +19 -0
- package/es/modules/gct-table/controller/table-item/table-edit-item.controller.mjs +16 -0
- package/es/modules/gct-table/controller/table-item/table-item.controller.d.ts +21 -0
- package/es/modules/gct-table/controller/table-item/table-item.controller.mjs +26 -0
- package/es/modules/gct-table/controller/table-row/table-row.controller.d.ts +28 -0
- package/es/modules/gct-table/controller/table-row/table-row.controller.mjs +70 -0
- package/es/{editor/gct-form-i18n/gct-form-i18n.d.ts → modules/gct-table/editor/gct-table-date/gct-table-date.d.ts} +19 -8
- package/es/modules/gct-table/editor/gct-table-date/gct-table-date.mjs +93 -0
- package/es/modules/gct-table/editor/gct-table-date/gct-table-date.provider.d.ts +11 -0
- package/es/modules/gct-table/editor/gct-table-date/gct-table-date.provider.mjs +5 -0
- package/es/modules/gct-table/editor/gct-table-date/index.d.ts +4 -0
- package/es/modules/gct-table/editor/gct-table-date/index.mjs +52 -0
- package/es/modules/gct-table/editor/gct-table-span/gct-table-span.css +86 -0
- package/es/modules/gct-table/editor/gct-table-span/gct-table-span.d.ts +34 -0
- package/es/modules/gct-table/editor/gct-table-span/gct-table-span.mjs +40 -0
- package/es/modules/gct-table/editor/gct-table-span/gct-table-span.provider.d.ts +13 -0
- package/es/modules/gct-table/editor/gct-table-span/gct-table-span.provider.mjs +5 -0
- package/es/modules/gct-table/editor/gct-table-span/index.d.ts +4 -0
- package/es/modules/gct-table/editor/gct-table-span/index.mjs +52 -0
- package/es/modules/gct-table/editor/gct-table-text/gct-table-text.css +80 -0
- package/es/modules/gct-table/editor/gct-table-text/gct-table-text.d.ts +50 -0
- package/es/modules/gct-table/editor/gct-table-text/gct-table-text.mjs +106 -0
- package/es/modules/gct-table/editor/gct-table-text/gct-table-text.provider.d.ts +13 -0
- package/es/modules/gct-table/editor/gct-table-text/gct-table-text.provider.mjs +5 -0
- package/es/modules/gct-table/editor/gct-table-text/index.d.ts +4 -0
- package/es/modules/gct-table/editor/gct-table-text/index.mjs +52 -0
- package/es/modules/gct-table/editor/index.mjs +11 -0
- package/es/modules/gct-table/hooks/index.d.ts +1 -0
- package/es/modules/gct-table/hooks/use-ant-table/use-ant-table.d.ts +10 -0
- package/es/modules/gct-table/hooks/use-ant-table/use-ant-table.mjs +85 -0
- package/es/modules/gct-table/index.d.ts +10 -0
- package/es/modules/gct-table/index.mjs +15 -0
- package/es/modules/gct-table/interface/i-controller/index.d.ts +5 -0
- package/es/modules/gct-table/interface/i-controller/table/i-table.controller.d.ts +133 -0
- package/es/modules/gct-table/interface/i-controller/table-item/i-table-action-item.controller.d.ts +21 -0
- package/es/modules/gct-table/interface/i-controller/table-item/i-table-edit-item.controller.d.ts +44 -0
- package/es/modules/gct-table/interface/i-controller/table-item/i-table-item.controller.d.ts +61 -0
- package/es/modules/gct-table/interface/i-controller/table-row/i-table-row.controller.d.ts +110 -0
- package/es/modules/gct-table/interface/i-events/index.d.ts +1 -0
- package/es/modules/gct-table/interface/i-events/table/i-table.event.d.ts +21 -0
- package/es/modules/gct-table/interface/i-provider/i-table-editor-provider/i-table-editor-provider.d.ts +24 -0
- package/es/modules/gct-table/interface/i-provider/index.d.ts +1 -0
- package/es/modules/gct-table/interface/i-state/index.d.ts +4 -0
- package/es/modules/gct-table/interface/i-state/table/i-table.state.d.ts +50 -0
- package/es/modules/gct-table/interface/i-state/table-item/table-edit-item.state.d.ts +47 -0
- package/es/modules/gct-table/interface/i-state/table-item/table-item.state.d.ts +28 -0
- package/es/modules/gct-table/interface/i-state/table-row/table-row.state.d.ts +35 -0
- package/es/modules/gct-table/interface/i-table/i-pagination.d.ts +29 -0
- package/es/modules/gct-table/interface/i-table/i-table-action-item.d.ts +135 -0
- package/es/modules/gct-table/interface/i-table/i-table-edit-item.d.ts +74 -0
- package/es/modules/gct-table/interface/i-table/i-table-item.d.ts +98 -0
- package/es/modules/gct-table/interface/i-table/i-table.d.ts +76 -0
- package/es/modules/gct-table/interface/i-table/index.d.ts +4 -0
- package/es/modules/gct-table/interface/index.d.ts +5 -0
- package/es/modules/gct-table/register/index.d.ts +1 -0
- package/es/modules/gct-table/register/table-editor-register/table-editor-register.d.ts +53 -0
- package/es/modules/gct-table/register/table-editor-register/table-editor-register.mjs +61 -0
- package/es/modules/gct-table/state/index.d.ts +4 -0
- package/es/modules/gct-table/state/table/table.state.d.ts +45 -0
- package/es/modules/gct-table/state/table/table.state.mjs +37 -0
- package/es/modules/gct-table/state/table-item/table-edit-item.state.d.ts +18 -0
- package/es/modules/gct-table/state/table-item/table-edit-item.state.mjs +10 -0
- package/es/modules/gct-table/state/table-item/table-item.state.d.ts +28 -0
- package/es/modules/gct-table/state/table-item/table-item.state.mjs +20 -0
- package/es/modules/gct-table/state/table-row/table-row.state.d.ts +15 -0
- package/es/modules/gct-table/state/table-row/table-row.state.mjs +7 -0
- package/es/modules/gct-table/utils/count-latch/count-latch.d.ts +70 -0
- package/es/modules/gct-table/utils/count-latch/count-latch.mjs +95 -0
- package/es/modules/gct-table/utils/count-latch/result-awaiter.d.ts +17 -0
- package/es/modules/gct-table/utils/index.d.ts +3 -0
- package/es/modules/gct-table/utils/width-install/width-install.d.ts +16 -0
- package/es/modules/gct-table/utils/width-install/width-install.mjs +19 -0
- package/es/modules/gct-table/widgets/gct-table/gct-table.css +124 -0
- package/es/modules/gct-table/widgets/gct-table/gct-table.d.ts +51 -0
- package/es/modules/gct-table/widgets/gct-table/gct-table.mjs +414 -0
- package/es/modules/gct-table/widgets/gct-table/index.mjs +10 -0
- package/es/modules/gct-table/widgets/index.mjs +9 -0
- package/es/modules/global-modal/index.d.ts +1 -0
- package/es/modules/global-modal/index.mjs +1 -0
- package/es/modules/global-modal/src/BasicModal.vue.d.ts +18 -18
- package/es/modules/global-modal/src/components/GlboalModal.d.ts +10 -10
- package/es/modules/global-modal/src/components/ModalFooter.vue.d.ts +12 -12
- package/es/modules/global-modal/src/components/ModalWrapper.vue.d.ts +1 -1
- package/es/modules/target-loading/src/target-loading.vue.d.ts +1 -1
- package/es/types/index.d.ts +11 -1
- package/package.json +13 -6
- package/dist/index-Bpd2MFJC.js +0 -33732
- package/dist/index-CwxW5OnC.js +0 -98
- package/dist/index-vFQ1naj3.cjs +0 -98
- package/dist/monaco-editor-5rbNTIph.cjs +0 -19
- package/dist/monaco-editor-DHkSqfaq.js +0 -19
- package/dist/monaco-editor-DYUIGpkZ.js +0 -20245
- package/es/components/layout/flex-container/flex-container.d.ts +0 -15
- package/es/components/layout/flex-container/flex-container.mjs +0 -94
- package/es/components/layout/flex-item/flex-item.d.ts +0 -14
- package/es/components/layout/flex-item/flex-item.mjs +0 -55
- package/es/components/layout/grid-container/grid-container.d.ts +0 -13
- package/es/components/layout/grid-container/grid-container.mjs +0 -51
- package/es/editor/gct-form-color/gct-form-color.d.ts +0 -5
- package/es/editor/gct-form-color/index.d.ts +0 -7
- package/es/editor/gct-form-field-select/gct-form-field-select.d.ts +0 -47
- package/es/editor/gct-form-field-select/gct-form-field-select.provider.d.ts +0 -13
- package/es/editor/gct-form-field-select/gct-model-select.vue.d.ts +0 -9
- package/es/editor/gct-form-modal-select/gct-form-modal-select.provider.d.ts +0 -13
- package/es/editor/gct-form-number/index.d.ts +0 -7
- package/es/editor/gct-form-switch/index.d.ts +0 -7
- package/es/editor/gct-form-text/index.d.ts +0 -7
- package/es/widgets/gct-form/gct-form-tab/index.d.ts +0 -5
- package/es/widgets/gct-form/gct-form-tab-pane/index.d.ts +0 -5
- package/es/widgets/gct-form/gct-form-title-group/index.d.ts +0 -5
- package/es/widgets/gct-form/index.d.ts +0 -5
- /package/es/{editor → modules/gct-form/editor}/gct-form-check-switch/index.d.ts +0 -0
- /package/es/{editor/gct-form-field-select → modules/gct-form/editor/gct-form-color}/index.d.ts +0 -0
- /package/es/{editor/gct-form-i18n → modules/gct-form/editor/gct-form-date}/index.d.ts +0 -0
- /package/es/{editor/gct-form-length-unit → modules/gct-form/editor/gct-form-i18n}/index.d.ts +0 -0
- /package/es/{editor/gct-form-modal-select → modules/gct-form/editor/gct-form-length-unit}/index.d.ts +0 -0
- /package/es/{editor/gct-form-picker → modules/gct-form/editor/gct-form-number}/index.d.ts +0 -0
- /package/es/{editor/gct-form-select → modules/gct-form/editor/gct-form-picker}/index.d.ts +0 -0
- /package/es/{editor/gct-form-span → modules/gct-form/editor/gct-form-select}/index.d.ts +0 -0
- /package/es/{editor/gct-form-textarea → modules/gct-form/editor/gct-form-span}/index.d.ts +0 -0
- /package/es/{editor → modules/gct-form/editor}/index.d.ts +0 -0
- /package/es/{widgets → modules/gct-form/widgets}/gct-edit-form/index.d.ts +0 -0
- /package/es/{widgets/gct-form/gct-form-collapse-pane → modules/gct-table/editor}/index.d.ts +0 -0
- /package/es/{widgets/gct-form/gct-form-collapse → modules/gct-table/widgets/gct-table}/index.d.ts +0 -0
- /package/es/{widgets/gct-form/gct-form-group → modules/gct-table/widgets}/index.d.ts +0 -0
package/dist/index.esm.min.mjs
CHANGED
|
@@ -1,41 +1,91 @@
|
|
|
1
|
-
import { A as
|
|
1
|
+
import { A as l, b as n, a as m, B as i, C, c as F, d, e as u, E as T, f as I, g as p, h as c, i as E, F as S, j as b, k as g, l as G, n as M, o as R, p as D, q as L, r as B, s as P, t as y, u as A, v as _, w as O, x as h, y as v, z as N, D as V, G as w, H as U, I as W, J as x, K as J, L as f, M as k, N as H, O as j, P as q, Q as K, R as z, S as Q, U as X, V as Y, W as Z, X as $, Y as aa, Z as ea, $ as oa, a0 as sa, a1 as ta, a2 as ra, a3 as la, a4 as na, T as ma, a5 as ia, a6 as Ca, a7 as Fa, a8 as da, a9 as ua, aa as Ta, ab as Ia, m as pa, ac as ca, ad as Ea, ae as Sa, af as ba, ag as ga, ah as Ga, ai as Ma, aj as Ra, ak as Da, al as La, am as Ba, an as Pa, ao as ya, ap as Aa, aq as _a, ar as Oa, as as ha, at as va, au as Na } from "./index-Cna4DZog.js";
|
|
2
|
+
import "vue";
|
|
3
|
+
import "lodash-es";
|
|
4
|
+
import "@gct-paas/core";
|
|
5
|
+
import "ant-design-vue";
|
|
2
6
|
export {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
7
|
+
l as AssetsSvgIcon,
|
|
8
|
+
n as BaseButton,
|
|
9
|
+
m as BasicButton,
|
|
10
|
+
i as BasicModal,
|
|
11
|
+
C as CodeEditor,
|
|
12
|
+
F as ColorPicker,
|
|
13
|
+
d as CopyModuleKey,
|
|
14
|
+
u as DoubleInput,
|
|
15
|
+
T as EditFormController,
|
|
16
|
+
I as EditorController,
|
|
17
|
+
p as EditorRegister,
|
|
18
|
+
c as EditorRegisterConst,
|
|
19
|
+
E as EditorType,
|
|
20
|
+
S as FORM_CONTROLLER_INJECT_TAG,
|
|
21
|
+
b as FormCollapseController,
|
|
22
|
+
g as FormCollapsePaneController,
|
|
23
|
+
G as FormCollapsePaneState,
|
|
24
|
+
M as FormCollapseState,
|
|
25
|
+
R as FormEditItemController,
|
|
26
|
+
D as FormEditItemState,
|
|
27
|
+
L as FormGroupController,
|
|
28
|
+
B as FormGroupState,
|
|
29
|
+
P as FormHiddenItemController,
|
|
30
|
+
y as FormItemBasicController,
|
|
31
|
+
A as FormItemBasicState,
|
|
32
|
+
_ as FormItemController,
|
|
33
|
+
O as FormItemRegister,
|
|
34
|
+
h as FormItemState,
|
|
35
|
+
v as FormLineController,
|
|
36
|
+
N as FormLineState,
|
|
37
|
+
V as FormState,
|
|
38
|
+
w as FormTabController,
|
|
39
|
+
U as FormTabPaneController,
|
|
40
|
+
W as FormTabPaneState,
|
|
41
|
+
x as FormTabState,
|
|
42
|
+
J as GCT_DND_INSERT_POS,
|
|
43
|
+
f as GctDndContainer,
|
|
44
|
+
k as GctDndDropLine,
|
|
45
|
+
H as GctDndItem,
|
|
46
|
+
j as GctFormController,
|
|
47
|
+
q as GctTableController,
|
|
48
|
+
K as Lang,
|
|
49
|
+
z as MessageUtil,
|
|
50
|
+
Q as MonacoEditor,
|
|
51
|
+
X as OverlayController,
|
|
52
|
+
Y as Prop,
|
|
53
|
+
Z as SvgIcon,
|
|
54
|
+
$ as TableActionItemController,
|
|
55
|
+
aa as TableEditItemController,
|
|
56
|
+
ea as TableEditItemState,
|
|
57
|
+
oa as TableEditorRegister,
|
|
58
|
+
sa as TableITemState,
|
|
59
|
+
ta as TableItemController,
|
|
60
|
+
ra as TableRowController,
|
|
61
|
+
la as TableRowState,
|
|
62
|
+
na as TableState,
|
|
63
|
+
ma as Theme,
|
|
64
|
+
ia as UseDragByLine,
|
|
65
|
+
Ca as ViewContainer,
|
|
66
|
+
Fa as WUJIE_FORMULA_EVENTS,
|
|
67
|
+
da as WuJieContainer,
|
|
68
|
+
ua as coreWebCreateAppVue,
|
|
69
|
+
Ta as coreWebSetupApp,
|
|
70
|
+
Ia as gctFormItemEditorProps,
|
|
71
|
+
pa as monacoLoader,
|
|
72
|
+
ca as openFormulaEditor,
|
|
73
|
+
Ea as overlay,
|
|
74
|
+
Sa as useAntTableScrollHeight,
|
|
75
|
+
ba as useDesign,
|
|
76
|
+
ga as useEditFormController,
|
|
77
|
+
Ga as useEditorConsole,
|
|
78
|
+
Ma as useEditorConsoleInner,
|
|
79
|
+
Ra as useForm,
|
|
80
|
+
Da as useFormItemController,
|
|
81
|
+
La as useGctFormValue,
|
|
82
|
+
Ba as useGctFormValueByText,
|
|
83
|
+
Pa as useLocale,
|
|
84
|
+
ya as useModal,
|
|
85
|
+
Aa as useModalContext,
|
|
86
|
+
_a as useModalDragMove,
|
|
87
|
+
Oa as useModalInner,
|
|
88
|
+
ha as useTableController,
|
|
89
|
+
va as useTheme,
|
|
90
|
+
Na as withInstall
|
|
41
91
|
};
|
package/dist/index.min.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-B8zoAUhR.cjs");require("vue");require("lodash-es");require("@gct-paas/core");require("ant-design-vue");exports.AssetsSvgIcon=e.AssetsSvgIcon;exports.BaseButton=e.baseButton;exports.BasicButton=e.basicButton;exports.BasicModal=e.BasicModal;exports.CodeEditor=e.CodeEditor;exports.ColorPicker=e.ColorPicker;exports.CopyModuleKey=e.copyModuleKey;exports.DoubleInput=e._sfc_main;exports.EditFormController=e.EditFormController;exports.EditorController=e.EditorController;exports.EditorRegister=e.EditorRegister;exports.EditorRegisterConst=e.EditorRegisterConst;exports.EditorType=e.EditorType;exports.FORM_CONTROLLER_INJECT_TAG=e.FORM_CONTROLLER_INJECT_TAG;exports.FormCollapseController=e.FormCollapseController;exports.FormCollapsePaneController=e.FormCollapsePaneController;exports.FormCollapsePaneState=e.FormCollapsePaneState;exports.FormCollapseState=e.FormCollapseState;exports.FormEditItemController=e.FormEditItemController;exports.FormEditItemState=e.FormEditItemState;exports.FormGroupController=e.FormGroupController;exports.FormGroupState=e.FormGroupState;exports.FormHiddenItemController=e.FormHiddenItemController;exports.FormItemBasicController=e.FormItemBasicController;exports.FormItemBasicState=e.FormItemBasicState;exports.FormItemController=e.FormItemController;exports.FormItemRegister=e.FormItemRegister;exports.FormItemState=e.FormItemState;exports.FormLineController=e.FormLineController;exports.FormLineState=e.FormLineState;exports.FormState=e.FormState;exports.FormTabController=e.FormTabController;exports.FormTabPaneController=e.FormTabPaneController;exports.FormTabPaneState=e.FormTabPaneState;exports.FormTabState=e.FormTabState;exports.GCT_DND_INSERT_POS=e.GCT_DND_INSERT_POS;exports.GctDndContainer=e.GctDndContainer;exports.GctDndDropLine=e.GctDndDropLine;exports.GctDndItem=e.GctDndItem;exports.GctFormController=e.GctFormController;exports.GctTableController=e.GctTableController;exports.Lang=e.Lang;exports.MessageUtil=e.MessageUtil;exports.MonacoEditor=e.MonacoEditor;exports.OverlayController=e.OverlayController;exports.Prop=e.Prop;exports.SvgIcon=e._sfc_main$1;exports.TableActionItemController=e.TableActionItemController;exports.TableEditItemController=e.TableEditItemController;exports.TableEditItemState=e.TableEditItemState;exports.TableEditorRegister=e.TableEditorRegister;exports.TableITemState=e.TableITemState;exports.TableItemController=e.TableItemController;exports.TableRowController=e.TableRowController;exports.TableRowState=e.TableRowState;exports.TableState=e.TableState;exports.Theme=e.Theme;exports.UseDragByLine=e.UseDragByLine;exports.ViewContainer=e.ViewContainer;exports.WUJIE_FORMULA_EVENTS=e.WUJIE_FORMULA_EVENTS;exports.WuJieContainer=e.WuJieContainer;exports.coreWebCreateAppVue=e.coreWebCreateAppVue;exports.coreWebSetupApp=e.coreWebSetupApp;exports.gctFormItemEditorProps=e.gctFormItemEditorProps;exports.monacoLoader=e.monacoLoader;exports.openFormulaEditor=e.openFormulaEditor;exports.overlay=e.overlay;exports.useAntTableScrollHeight=e.useAntTableScrollHeight;exports.useDesign=e.useDesign;exports.useEditFormController=e.useEditFormController;exports.useEditorConsole=e.useEditorConsole;exports.useEditorConsoleInner=e.useEditorConsoleInner;exports.useForm=e.useForm;exports.useFormItemController=e.useFormItemController;exports.useGctFormValue=e.useGctFormValue;exports.useGctFormValueByText=e.useGctFormValueByText;exports.useLocale=e.useLocale;exports.useModal=e.useModal;exports.useModalContext=e.useModalContext;exports.useModalDragMove=e.useModalDragMove;exports.useModalInner=e.useModalInner;exports.useTableController=e.useTableController;exports.useTheme=e.useTheme;exports.withInstall=e.withInstall;
|
package/dist/index.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@charset "UTF-8";.gct-modal{--gct-modal-z-index: var(--gct-z-index-modal);--gct-modal-background-color: var(--gct-color-bg-1)}.gct-modal__full-screen{position:absolute;top:0;right:48px;padding:16px 8px;color:#212528;font-size:16px;line-height:1;line-height:22px;cursor:pointer}.gct-modal.is-hidden-footer>.ant-modal-content>.ant-modal-footer{display:none;padding:16px}.gct-modal.is-hidden-close-btn>.ant-modal-content>.ant-modal-close{display:none}.gct-modal.is-hidden-cancel-btn>.ant-modal-content>.ant-modal-footer>button:first-child{display:none}.gct-modal.is-full-screen{top:0;width:100vw!important;height:100vh!important;max-width:100%;max-height:fit-content;margin:0;padding-bottom:0}.gct-modal.is-full-screen .ant-modal-content{display:flex;flex-direction:column;width:100vw;max-width:100vw;height:100vh;max-height:100vh}.gct-modal>.ant-modal-content{display:flex;flex-direction:column;width:100%;height:100%;max-height:85vh}.gct-modal>.ant-modal-content>.ant-modal-close>.ant-modal-close-x{width:auto;height:auto;padding:16px;color:#212528;line-height:1;line-height:22px}.gct-modal>.ant-modal-content>.ant-modal-header{border-bottom:1px solid #e0e3ea}.gct-modal>.ant-modal-content>.ant-modal-footer{border-top:1px solid #e0e3ea}.gct-modal>.ant-modal-content>.ant-modal-header,.gct-modal>.ant-modal-content>.ant-modal-footer{flex-shrink:0;padding:16px}.gct-modal>.ant-modal-content>.ant-modal-header .ant-modal-title{color:#000;font-weight:600;min-height:22px}.gct-modal>.ant-modal-content>.ant-modal-body{flex-grow:1;padding:0;overflow:hidden auto}.gct-svg-icon{display:inline-block;overflow:hidden;fill:currentcolor;vertical-align:-.15em}.gct-svg-icon--spin{animation:loadingCircle 1s infinite linear}.gct-assets-svg-icon{display:inline-block;width:1em;height:1em;contain:strict;fill:currentcolor;box-sizing:content-box!important}.gct-assets-svg-icon .ionicon{stroke:currentcolor}.gct-assets-svg-icon .ionicon-fill-none{fill:none}.gct-assets-svg-icon .ionicon-stroke-width{stroke-width:var(--ionicon-stroke-width, 32px)}.gct-assets-svg-icon .icon-inner,.gct-assets-svg-icon .ionicon,.gct-assets-svg-icon svg{display:block;height:100%;width:100%}@supports (background: -webkit-named-image(i)){.gct-assets-svg-icon.icon-rtl .icon-inner{transform:scaleX(-1)}}.gct-assets-svg-icon.icon-rtl .icon-inner,.gct-assets-svg-icon.flip-rtl[dir=rtl] .icon-inner{transform:scaleX(-1)}@supports selector(:dir(rtl)){.gct-assets-svg-icon.flip-rtl:dir(rtl) .icon-inner{transform:scaleX(-1)}.gct-assets-svg-icon.flip-rtl:dir(ltr) .icon-inner{transform:scaleX(1)}}.gct-assets-svg-icon.icon-small{font-size:1.125rem!important}.gct-assets-svg-icon.icon-large{font-size:2rem!important}.gct-assets-svg-icon.ion-color{color:var(--ion-color-base)!important}.gct-assets-svg-icon.ion-color-primary{--ion-color-base: var(--ion-color-primary, #3880ff) !important}.gct-assets-svg-icon.ion-color-secondary{--ion-color-base: var(--ion-color-secondary, #3dc2ff) !important}.gct-assets-svg-icon.ion-color-tertiary{--ion-color-base: var(--ion-color-tertiary, #5260ff) !important}.gct-assets-svg-icon.ion-color-success{--ion-color-base: var(--ion-color-success, #2dd36f) !important}.gct-assets-svg-icon.ion-color-warning{--ion-color-base: var(--ion-color-warning, #ffc409) !important}.gct-assets-svg-icon.ion-color-danger{--ion-color-base: var(--ion-color-danger, #eb445a) !important}.gct-assets-svg-icon.ion-color-light{--ion-color-base: var(--ion-color-light, #f4f5f8) !important}.gct-assets-svg-icon.ion-color-medium{--ion-color-base: var(--ion-color-medium, #92949c) !important}.gct-assets-svg-icon.ion-color-dark{--ion-color-base: var(--ion-color-dark, #222428) !important}.ant-btn[data-v-5375ec2b]{display:flex;align-items:center;justify-content:center}.ant-btn.btn-font-color[data-v-5375ec2b]{color:var(--v8d035854)!important}.ant-btn.btn-bg-style[data-v-5375ec2b]{border-color:var(--e376d652)!important;background:var(--v4ee5fd6d)!important}.square[data-v-5375ec2b]{display:flex;flex-direction:column;align-items:center;justify-content:center;width:72px;height:72px;padding:0;border-radius:4px}.square .icon-next[data-v-5375ec2b]{margin:0!important}.square .btn-title[data-v-5375ec2b]{width:inherit;padding:0 8px}.square.ant-btn-sm[data-v-5375ec2b]{width:72px;height:64px;font-size:14px}.square.ant-btn-sm .btn-title[data-v-5375ec2b]{padding:0 4px}.square.ant-btn-lg[data-v-5375ec2b]{width:80px;height:88px}.squaref[data-v-5375ec2b]{min-width:72px;height:56px;padding:0}.line[data-v-5375ec2b]{display:flex;align-items:center;justify-content:center}[data-v-5375ec2b] .group .ant-btn{height:100%}[data-v-5375ec2b] .ant-btn-loading-icon{width:0;height:0;line-height:0}[data-v-5375ec2b] .ant-btn-icon-only{vertical-align:-2px}.gct-text-overflow-2[data-v-5375ec2b]{display:-webkit-inline-box;display:-moz-inline-box;display:inline-flexbox;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;-moz-box-orient:vertical;box-orient:2}.square[data-v-1dbcb2fa]{display:flex;flex-direction:column;align-items:center;justify-content:center;min-width:72px;height:72px;padding:0}.squaref[data-v-1dbcb2fa]{min-width:72px;height:72px;padding:0}.line[data-v-1dbcb2fa]{display:flex;align-items:center;justify-content:center}[data-v-1dbcb2fa] .group .ant-btn{height:100%}[data-v-1dbcb2fa] .ant-btn-loading-icon{height:0}.gct-wujie-container{height:100%;width:100%}.gct-wujie-container .__vue-devtools-container__{display:none}.gct-wujie-container iframe{border:0}.copy-wrap[data-v-531b3cd2]{display:inline-block}.iconfont.icon-fuzhi[data-v-531b3cd2]{margin-left:4px;line-height:.8;cursor:pointer;position:relative;top:2px}.copy-wrap-tooltip[data-v-531b3cd2]{display:flex}.copy-wrap-tooltip .copy-key[data-v-531b3cd2]{display:inline-block;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-break:break-all}.gct-code-editor{height:100%}.gct-flex-container{display:flex}.gct-view-container{background-color:#fff;height:100%;display:flex;flex-direction:column}.gct-view-container-header{flex-shrink:0}.gct-view-container-content{flex-grow:1;overflow:hidden auto}.gct-view-container-footer{flex-shrink:0}.gct-dnd-item{background-color:rgb(var(--gct-gray-2))}.gct-dnd-item.is-dragging{background-color:var(--gct-color-bg-3)!important}.gct-dnd-drop-line{background-color:transparent;padding:var(--gct-padding-1) 0}.gct-dnd-drop-line__line{border-top:1px solid transparent}.gct-dnd-drop-line.is-shallow-over .gct-dnd-drop-line__line,.gct-dnd-drop-line.is-active .gct-dnd-drop-line__line{border-color:var(--gct-color-primary)}.gct-dnd-container{border:1px dashed transparent;border-radius:var(--gct-border-radius-s)}.gct-dnd-container.is-over{border-color:var(--gct-color-border-hover);background-color:var(--gct-color-primary-light)}.vben.fullscreen-modal{overflow:hidden}.vben.fullscreen-modal .ant-modal{inset:0!important;width:100%!important;max-width:100vw!important;height:100%}.vben.fullscreen-modal .ant-modal-content{height:100%}.vben .ant-modal{width:520px;padding-bottom:0}.vben .ant-modal .ant-modal-body>.scrollbar{height:100%;padding:14px}.vben .ant-modal .ant-modal-body>.scrollbar .scrollbar__wrap{max-height:calc(88vh - 152px)}.vben .ant-modal-title{font-size:16px;font-weight:700}.vben .ant-modal-title .base-title{cursor:move!important}.vben .ant-modal .ant-modal-body{height:calc(100% - 120px);max-height:calc(88vh - 120px);padding:0}.vben .ant-modal .ant-modal-body>.scrollbar>.scrollbar__bar.is-horizontal{display:none}.vben .ant-modal-large{top:60px}.vben .ant-modal-large--mini{top:16px}.vben .ant-modal-header{padding:16px}.vben .ant-modal-content{box-shadow:0 4px 8px #0003,0 6px 20px #00000030}.vben .ant-modal-footer{padding:16px}.vben .ant-modal-footer button+button{margin-left:16px}.vben .ant-modal-close{outline:none;font-weight:400}.vben .ant-modal-close-x{display:inline-block;width:96px;height:56px;line-height:56px}.vben .ant-modal-confirm-body .ant-modal-confirm-content>*{color:#909399}.vben .ant-modal-confirm-confirm.error .ant-modal-confirm-body>.anticon{color:var(--gct-color-error)}.vben .ant-modal-confirm-btns .ant-btn:last-child{margin-right:0}.vben .ant-modal-confirm-info .ant-modal-confirm-body>.anticon{color:var(--gct-color-warning)}.vben .ant-modal-confirm-confirm.success .ant-modal-confirm-body>.anticon{color:var(--gct-color-success)}.vben .ant-modal-confirm .ant-modal-body{padding:24px!important}@media screen and (max-height:600px){.ant-modal{top:60px}}@media screen and (max-height:540px){.ant-modal{top:30px}}@media screen and (max-height:480px){.ant-modal{top:10px}}.options-field-modal.ant-modal .ant-modal-content .ant-modal-body{padding-bottom:0}.ant-modal-footer .ant-btn+.ant-btn:not(.ant-dropdown-trigger){margin-left:16px}.ant-modal{max-height:88vh}.ant-modal .ant-modal-content{border-radius:4px}.ant-modal.ant-modal-confirm .ant-modal-body{padding:16px}.ant-modal .ant-modal-confirm-body>.anticon{margin-right:8px}.ant-modal .ant-modal-confirm-body>.anticon .iconfont{top:4px!important;font-size:14px}.ant-modal .ant-modal-confirm-body>.anticon>svg{width:14px;height:14px;margin-top:3px}.ant-modal .ant-modal-confirm-body>.ant-modal-confirm-title{color:#1a1d23;font-size:14px;line-height:unset}.ant-modal .ant-modal-confirm-body>.ant-modal-confirm-content{color:#5a5f6b;font-size:12px}.ant-modal .ant-modal-confirm-body .anticon+.ant-modal-confirm-title+.ant-modal-confirm-content{margin-left:22px}.ant-modal .ant-modal-confirm-btns{margin-top:12px}.ant-modal .ant-modal-confirm-btns>.ant-btn{height:24px;padding:2px 10px;color:#384356;line-height:16px}.ant-modal .ant-modal-confirm-btns>.ant-btn.ant-btn-primary{color:#fff}.vben .ant-modal-close{right:16px}.vben .ant-modal-close-x .anticon.anticon-close{margin-left:27px}.gct-basic-modal-close{display:flex;align-items:center;height:95%}.gct-basic-modal-close>span{margin-left:48px;font-size:16px}.gct-basic-modal-close--can-full>span{margin-left:12px}.gct-basic-modal-close:not(.gct-basic-modal-close--can-full)>span:nth-child(1):hover{font-weight:700}.gct-basic-modal-close span:nth-child(1){display:inline-block;padding:10px}.gct-basic-modal-close span:nth-child(1):hover{color:var(--ant-primary-color)}.gct-basic-modal-close span:last-child:hover{color:var(--ant-error-color)}.full-loading[data-v-d448466c]{display:flex;position:fixed;z-index:200;top:0;left:0;align-items:center;justify-content:center;width:100%;height:100%;background-color:#f0f2f566}.full-loading.absolute[data-v-d448466c]{position:absolute;z-index:300;top:0;left:0}.component[data-v-7bfd9ca3]{display:inline-block;position:relative;outline:none;font-size:14px;text-align:left;cursor:pointer}.component .box[data-v-7bfd9ca3]{display:flex;align-items:center;border:1px solid var(--gct-color-text-1);border-radius:4px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAWElEQVRIiWM8fubkfwYygKWJOSM5+mCAhRLNoxaPWjxq8ajFoxbTyeL/DAfJ0Xjs3Cl7Siwmu4Yht1aDgZEYx6MWj1o8avGoxaMWD3qLya5X//4nqx6HAQC7RBGFzolqTAAAAABJRU5ErkJggg==);background-size:10px 10px}.color-picker__popover .ant-popover-inner-content{padding:0}.color-picker__popover .color-picker{z-index:9;width:var(--w);padding:10px;background:#fff;box-shadow:0 0 1px 1px #0000001a;-webkit-user-select:none;user-select:none}.color-picker__popover .color-picker-saturation{position:relative;width:100%;height:200px;margin-bottom:10px;box-shadow:1px 1px 1px #0000001a;cursor:pointer}.color-picker__popover .color-picker-saturation div{position:absolute;top:0;left:0;width:100%;height:100%}.color-picker__popover .color-picker-saturation .point{position:absolute;z-index:9;box-sizing:border-box;width:6px;height:6px;transform:translate(-50%,-50%);border:2px solid #ccc;border-radius:50%;background-color:transparent}.color-picker__popover .color-picker-saturation-t{background:linear-gradient(to right,#fff,#fff0)}.color-picker__popover .color-picker-saturation-h{background:linear-gradient(to top,#000,#fff0)}.color-picker__popover .color-picker-middle{display:flex;width:100%;margin-bottom:10px}.color-picker__popover .color-picker-middle .hue-slider{position:relative;height:10px;margin-bottom:6px;background:linear-gradient(90deg,red 0,#ff0 17%,#0f0 33%,#0ff,#00f 67%,#f0f 83%,red);box-shadow:1px 1px 1px #0000001a}.color-picker__popover .color-picker-middle .alpha-slider{position:relative;height:10px;background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAWElEQVRIiWM8fubkfwYygKWJOSM5+mCAhRLNoxaPWjxq8ajFoxbTyeL/DAfJ0Xjs3Cl7Siwmu4Yht1aDgZEYx6MWj1o8avGoxaMWD3qLya5X//4nqx6HAQC7RBGFzolqTAAAAABJRU5ErkJggg==);background-size:10px 10px;box-shadow:1px 1px 1px #0000001a}.color-picker__popover .color-picker-middle .slider{position:absolute;box-sizing:border-box;width:6px;height:100%;background-color:#fff;box-shadow:0 0 2px #0009;cursor:pointer}.color-picker__popover .color-picker-diamond{position:relative;width:26px;height:26px;margin-left:5px;overflow:hidden;border-radius:3px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAWElEQVRIiWM8fubkfwYygKWJOSM5+mCAhRLNoxaPWjxq8ajFoxbTyeL/DAfJ0Xjs3Cl7Siwmu4Yht1aDgZEYx6MWj1o8avGoxaMWD3qLya5X//4nqx6HAQC7RBGFzolqTAAAAABJRU5ErkJggg==);background-size:10px 10px}.color-picker__popover .color-picker-value{display:flex;justify-content:space-between;width:100%}.color-picker__popover .color-picker-value div{padding:0 3px;text-align:center}.color-picker__popover .color-picker-value input{box-sizing:border-box;width:34px;height:24px;margin:0;padding:0;border:1px solid #ccc;border-radius:3px;outline:none;font-size:12px;text-align:center}.color-picker__popover .color-picker-value p{margin:3px 0 0;font-size:12px}.color-picker__popover .color-picker-value .rgba-a{padding-right:0}.color-picker__popover .color-picker-value .hex{flex:1;padding-left:0}.color-picker__popover .color-picker-value .hex input{width:100%;height:24px}.color-picker__popover .color-picker .presetColor .title{margin-bottom:10px;padding-top:8px;border-top:1px solid #eaeaea;font-size:12px}.color-picker__popover .color-picker .presetColor .preset{display:flex;flex-wrap:wrap;justify-content:flex-start;width:100%;margin:10px 0 0;padding:0;list-style:none}.color-picker__popover .color-picker .presetColor .preset li{width:20px;height:20px;margin-right:6px;margin-bottom:6px;border:1px solid #ccc;border-radius:6px;cursor:pointer}.color-picker__popover .color-value .color-value .color-value .hex input{width:100%;height:24px}.m-e[data-v-254c9227]{width:100%;height:100%}.m-e .m-e-main[data-v-254c9227]{display:flex;flex-direction:column;width:calc(100% - 2px);height:calc(100% - 2px)}.m-e .m-e-main .m-e-main_toolbar[data-v-254c9227]{position:relative;z-index:10;height:40px;box-shadow:0 2px 5px #000}.m-e .m-e-main .m-e-main_toolbar .m-e-main_toolbar_left span[data-v-254c9227]{padding-left:10px;font-size:15px;line-height:40px;-webkit-user-select:none;user-select:none}.m-e .m-e-main .m-e-main_toolbar .m-e-main_toolbar_right[data-v-254c9227]{display:flex;align-items:center}.m-e .m-e-main .m-e-main_toolbar .m-e-main_toolbar_right .icon[data-v-254c9227]{display:inline-block;margin-left:10px;transition:ease all .3s;border-radius:2px;text-align:center;cursor:pointer}.m-e .m-e-main .m-e-main_toolbar .m-e-main_toolbar_right .icon[data-v-254c9227]:hover{background-color:#ffffff1a}.m-e .m-e-main .m-e-main_toolbar .m-e-main_toolbar_right .icon.icon-active[data-v-254c9227]{color:#1890ff;background-color:#1890ff1a;box-shadow:0 0 4px #1890ff80;transform:scale(1.1)}.m-e .m-e-main .m-e-main_container[data-v-254c9227]{flex:1;width:100%;height:100%;min-height:400px}
|
|
1
|
+
@charset "UTF-8";.gct-form-date-format-select{display:flex;align-items:center;gap:4px}.gct-form-date-format-select__first{flex-shrink:0}.gct-form-date-format-select__second{flex-shrink:0;flex-grow:1}.gct-form-color{vertical-align:middle}.gct-svg-icon{display:inline-block;overflow:hidden;fill:currentcolor;vertical-align:-.15em}.gct-svg-icon--spin{animation:loadingCircle 1s infinite linear}.gct-assets-svg-icon{display:inline-block;width:1em;height:1em;contain:strict;fill:currentcolor;box-sizing:content-box!important}.gct-assets-svg-icon .ionicon{stroke:currentcolor}.gct-assets-svg-icon .ionicon-fill-none{fill:none}.gct-assets-svg-icon .ionicon-stroke-width{stroke-width:var(--ionicon-stroke-width, 32px)}.gct-assets-svg-icon .icon-inner,.gct-assets-svg-icon .ionicon,.gct-assets-svg-icon svg{display:block;height:100%;width:100%}@supports (background: -webkit-named-image(i)){.gct-assets-svg-icon.icon-rtl .icon-inner{transform:scaleX(-1)}}.gct-assets-svg-icon.icon-rtl .icon-inner,.gct-assets-svg-icon.flip-rtl[dir=rtl] .icon-inner{transform:scaleX(-1)}@supports selector(:dir(rtl)){.gct-assets-svg-icon.flip-rtl:dir(rtl) .icon-inner{transform:scaleX(-1)}.gct-assets-svg-icon.flip-rtl:dir(ltr) .icon-inner{transform:scaleX(1)}}.gct-assets-svg-icon.icon-small{font-size:1.125rem!important}.gct-assets-svg-icon.icon-large{font-size:2rem!important}.gct-assets-svg-icon.ion-color{color:var(--ion-color-base)!important}.gct-assets-svg-icon.ion-color-primary{--ion-color-base: var(--ion-color-primary, #3880ff) !important}.gct-assets-svg-icon.ion-color-secondary{--ion-color-base: var(--ion-color-secondary, #3dc2ff) !important}.gct-assets-svg-icon.ion-color-tertiary{--ion-color-base: var(--ion-color-tertiary, #5260ff) !important}.gct-assets-svg-icon.ion-color-success{--ion-color-base: var(--ion-color-success, #2dd36f) !important}.gct-assets-svg-icon.ion-color-warning{--ion-color-base: var(--ion-color-warning, #ffc409) !important}.gct-assets-svg-icon.ion-color-danger{--ion-color-base: var(--ion-color-danger, #eb445a) !important}.gct-assets-svg-icon.ion-color-light{--ion-color-base: var(--ion-color-light, #f4f5f8) !important}.gct-assets-svg-icon.ion-color-medium{--ion-color-base: var(--ion-color-medium, #92949c) !important}.gct-assets-svg-icon.ion-color-dark{--ion-color-base: var(--ion-color-dark, #222428) !important}.ant-btn[data-v-5375ec2b]{display:flex;align-items:center;justify-content:center}.ant-btn.btn-font-color[data-v-5375ec2b]{color:var(--v8d035854)!important}.ant-btn.btn-bg-style[data-v-5375ec2b]{border-color:var(--e376d652)!important;background:var(--v4ee5fd6d)!important}.square[data-v-5375ec2b]{display:flex;flex-direction:column;align-items:center;justify-content:center;width:72px;height:72px;padding:0;border-radius:4px}.square .icon-next[data-v-5375ec2b]{margin:0!important}.square .btn-title[data-v-5375ec2b]{width:inherit;padding:0 8px}.square.ant-btn-sm[data-v-5375ec2b]{width:72px;height:64px;font-size:14px}.square.ant-btn-sm .btn-title[data-v-5375ec2b]{padding:0 4px}.square.ant-btn-lg[data-v-5375ec2b]{width:80px;height:88px}.squaref[data-v-5375ec2b]{min-width:72px;height:56px;padding:0}.line[data-v-5375ec2b]{display:flex;align-items:center;justify-content:center}[data-v-5375ec2b] .group .ant-btn{height:100%}[data-v-5375ec2b] .ant-btn-loading-icon{width:0;height:0;line-height:0}[data-v-5375ec2b] .ant-btn-icon-only{vertical-align:-2px}.gct-text-overflow-2[data-v-5375ec2b]{display:-webkit-inline-box;display:-moz-inline-box;display:inline-flexbox;overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;-moz-box-orient:vertical;box-orient:2}.square[data-v-1dbcb2fa]{display:flex;flex-direction:column;align-items:center;justify-content:center;min-width:72px;height:72px;padding:0}.squaref[data-v-1dbcb2fa]{min-width:72px;height:72px;padding:0}.line[data-v-1dbcb2fa]{display:flex;align-items:center;justify-content:center}[data-v-1dbcb2fa] .group .ant-btn{height:100%}[data-v-1dbcb2fa] .ant-btn-loading-icon{height:0}.gct-wujie-container{height:100%;width:100%}.gct-wujie-container .__vue-devtools-container__{display:none}.gct-wujie-container iframe{border:0}.copy-wrap[data-v-531b3cd2]{display:inline-block}.iconfont.icon-fuzhi[data-v-531b3cd2]{margin-left:4px;line-height:.8;cursor:pointer;position:relative;top:2px}.copy-wrap-tooltip[data-v-531b3cd2]{display:flex}.copy-wrap-tooltip .copy-key[data-v-531b3cd2]{display:inline-block;width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-break:break-all}.icon-next[data-v-c5a83130]{display:inline-flex;align-items:center;color:var(--color);background-color:var(--bg-color);transition:all .3s}.icon-next>svg[data-v-c5a83130]{transform:translateY(1px)}i.icon-next[data-v-c5a83130]{height:var(--size);width:var(--size);background-image:var(--bg-image);background-size:contain;background-position:center;background-repeat:no-repeat}.icon-picker-next{width:var(--box-size, 48px);height:var(--box-size, 48px)}.icon-picker-next__popover .ant-popover-inner-content{padding:0}.icon-picker-next__search{border-color:#f5f5f5!important;background:#f5f5f5}.icon-picker-next__search .ant-input{background:transparent}.icon-picker-next__search .ant-input-prefix{color:#999}.icon-picker-next__container{--tree-width: 100px;width:456px;height:300px}.icon-picker-next__cats{width:var(--tree-width);height:100%;background-color:#f5f5f5}.icon-picker-next__cats .ant-tree{--tree-node-sizet: 32px;background:transparent}.icon-picker-next__cats .ant-tree .ant-tree-treenode{padding:0;transition:all .3s}.icon-picker-next__cats .ant-tree .ant-tree-treenode:hover{background-color:#eaeaea}.icon-picker-next__cats .ant-tree .ant-tree-treenode.ant-tree-treenode-selected{background-color:#eaeaea;color:var(--ant-primary-color)}.icon-picker-next__cats .ant-tree .ant-tree-switcher{height:var(--tree-node-sizet);line-height:var(--tree-node-sizet)}.icon-picker-next__cats .ant-tree .ant-tree-node-content-wrapper{width:1px;height:var(--tree-node-sizet);background-color:transparent!important;line-height:var(--tree-node-sizet)}.icon-picker-next__cats .ant-tree .ant-tree-indent{width:0;height:0;overflow:hidden}.icon-picker-next__panel{display:flex;flex-direction:column;width:calc(100% - var(--tree-width));background-color:#fff}.icon-picker-next__icons{flex:1;height:1px}.icon-picker-next__trigger{display:flex;position:relative;align-items:center;justify-content:center;width:100%;height:100%;border-radius:4px;background:#e1e1e1;color:#fff;cursor:pointer}.icon-picker-next__trigger div{display:flex;position:absolute;right:0;bottom:0;align-items:center;justify-content:center;width:16px;height:16px;background:#0000004d;font-size:12px}.icon-picker-next__trigger div .iconfont{transform:scale(.6)}.icon-picker-next--selected{background:var(--background)!important}.color__setting{display:flex;align-items:center;margin-top:10px;padding:0 12px}.color__setting:last-child{padding-bottom:10px}.color__setting .color__title{flex:none;width:56px;overflow:hidden;color:#999;text-overflow:ellipsis;white-space:nowrap}.color__setting .color__list{display:flex;flex:none;column-gap:8px}.color__setting .color__list .color__item{display:inline-block;width:18px;height:18px;border-radius:50%;background-color:transparent;color:#fff;font-size:12px;text-align:center;cursor:pointer}.color__setting .color__list .color__item:nth-child(1){border:1px solid #d9d9d9;color:var(--ant-primary-color)}.color__setting .color__input{display:flex;position:relative;align-items:center;margin-left:8px;padding-left:8px}.color__setting .color__input:before{content:"";position:absolute;top:50%;left:0;width:1px;height:12px;transform:translateY(-50%);background:#eaeaea}.color__setting .color__input .color__preview{display:flex;align-items:center;justify-content:center;width:18px;height:18px;margin-right:4px;border:1px solid #d9d9d9;border-radius:2px;background-color:var(--custom-bg);font-size:12px}.color__setting .color__input input{width:60px;border:none;font-size:12px}.icon__list{display:grid;grid-gap:7px;grid-template-columns:repeat(auto-fill,minmax(40px,1fr));margin:0;padding:0 12px;list-style:none}.icon__list>li{display:flex;align-items:center;justify-content:center;width:40px;height:40px;transition:all .3s;border-radius:4px;background:#e1e1e1;color:#fff;font-size:24px;cursor:pointer}.icon__list>li>span{display:flex}.icon__list>li:hover{background-color:silver}.gct-code-editor{height:100%}.gct-view-container{background-color:#fff;height:100%;display:flex;flex-direction:column}.gct-view-container-header{flex-shrink:0}.gct-view-container-content{flex-grow:1;overflow:hidden auto}.gct-view-container-footer{flex-shrink:0}.gct-form-formula{cursor:pointer!important;height:32px;display:flex;align-items:center}.gct-form-formula__input{border-radius:4px}.gct-form-formula__placeholder{color:var(--gct-form-item-placeholder-color)}.ant-form-item.ant-form-item-has-error .gct-form-formula{border-color:var(--ant-error-color)!important}.gct-gct-form-check-switch--checkbox{height:32px;padding-top:5px}.gct-gct-form-check-switch--checkbox span:last-child{padding-left:4px;padding-right:0}.gct-gct-form-check-switch--small{font-size:12px;line-height:16px}.gct-gct-form-check-switch.is-readonly{pointer-events:none}.gct-gct-form--small .gct-gct-form-check-switch--checkbox{height:24px;padding-top:0}.gct-form-select-group{display:flex;align-items:center}.gct-form-select-group__group-header{display:flex;align-items:center;width:100%;padding:4px 8px}.gct-form-select-group__group-header--clickable{cursor:pointer;transition:background-color .2s}.gct-form-select-group__group-header--clickable:hover{background-color:var(--gct-color-info-light-9)}.gct-form-select-group__arrow{display:inline-flex;align-items:center;justify-content:center;width:16px;height:16px;margin-right:4px;transition:transform .2s}.gct-form-select-group__arrow i{font-size:12px;color:var(--gct-color-regular)}.gct-form-select-group__arrow--collapsed{transform:rotate(-90deg)}.gct-form-select-group__title{flex:1;font-weight:500}.gct-form-select-group-item-option{display:flex;align-items:center}.gct-form-select-group-item-option__item-icon{color:var(--gct-color-primary);flex-shrink:0;margin-right:var(--gct-padding-2)}.gct-form-select-group-item-option__item-label{flex-grow:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.gct-gct-form-icon-select{--box-size: 40px;width:100%;height:100%}.gct-gct-form-icon-select__title{display:inline-block;font-size:14px;color:#474747;width:56px;text-align:center}.gct-form-pixel-config__select.ant-select{width:97px!important;height:28px}.gct-form-pixel-config__select.ant-select .ant-select-selector{height:26px;padding:0 8px}.gct-form-pixel-config__select.ant-select .ant-select-selection-search{height:26px}.gct-form-pixel-config__select.ant-select .ant-select-selection-item{height:26px;display:flex;align-items:center}.gct-form-pixel-config__select.ant-select .ant-select-selection-item:after{height:26px}.gct-form-pixel-config__select.ant-select .ant-select-selection-search-input{height:26px!important}.gct-form-pixel-config__input.ant-input-number-group-wrapper{width:calc(100% - 97px)!important;height:26px}.gct-form-pixel-config__input.ant-input-number-group-wrapper .ant-input-number-group-addon{height:26px;width:30px;padding:0 6px;display:flex;align-items:center;justify-content:center}.gct-form-pixel-config__input.ant-input-number-group-wrapper .ant-input-number{height:26px;width:calc(100% - 30px)!important}.gct-gct-form-select{width:100%;display:flex;align-items:center}.gct-gct-form-select__before-text{flex-shrink:0;padding-right:var(--gct-padding-4)}.gct-gct-form-select__after-text{flex-shrink:0;padding-left:var(--gct-padding-4)}.gct-gct-form-select__content{flex-grow:1;width:100%}.gct-form-span{min-height:var(--gct-form-item-min-height);display:flex;align-items:center}.gct-form-span__copy{cursor:pointer;margin-left:4px}.gct-gct-form-text.ant-input-affix-wrapper .ant-input-suffix{display:none}.gct-gct-form-text.ant-input-affix-wrapper-focused .ant-input-suffix{display:flex}.gct-gct-form-radio{position:relative}.gct-gct-form-radio--radio.ant-radio-group{display:flex;align-items:center}.gct-gct-form-radio--radio .ant-radio-wrapper{--gct-color-primary: #bac5d0}.gct-gct-form-radio--radio .ant-radio-wrapper.ant-radio-wrapper-checked{--gct-color-primary: var(--ant-primary-color);color:color-mix(in srgb,var(--gct-color-primary),30%)!important}.gct-gct-form-radio--radio .ant-radio-wrapper.ant-radio-wrapper-disabled{cursor:default}.gct-gct-form-radio__item span:last-child{display:flex;align-items:center}.gct-gct-form-radio__item.ant-radio-wrapper.ant-radio-wrapper-disabled+span{cursor:default!important}.gct-gct-form-radio__item .ant-radio-disabled+span{cursor:default!important}.gct-gct-form-radio__item .ant-radio-inner{cursor:default!important}.gct-gct-form-radio__item--pos-top{position:relative;margin-right:16px;--color-primary: var(--gct-color-border)}.gct-gct-form-radio__item--pos-top>span:last-child{display:flex;flex-direction:column;align-items:flex-start;padding-left:0!important;padding-right:0!important}.gct-gct-form-radio__item--pos-top .ant-radio{position:absolute;top:unset;left:2px;bottom:0;height:14px;width:14px}.gct-gct-form-radio__item--pos-top .gct-gct-form-radio__item-icon{border:1px solid var(--color-primary);overflow:hidden;font-size:104px;border-radius:var(--gct-border-radius-s);margin-right:0;cursor:default}.gct-gct-form-radio__item--pos-top .gct-gct-form-radio__item-icon:hover{--gct-color-primary: var(--ant-primary-color);border-color:var(--gct-color-primary)}.gct-gct-form-radio__item--pos-top .gct-gct-form-radio__item-label{cursor:default;margin-top:8px;padding-left:22px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.gct-gct-form-radio__item--pos-top.ant-radio-wrapper-checked{--color-primary: var(--gct-color-primary)}.gct-gct-form-radio__item--pos-top.ant-radio-wrapper-checked .gct-gct-form-radio__item-icon{border-color:var(--color-primary)}.gct-gct-form-radio__item-icon{font-size:14px;margin-right:8px;color:var(--color-primary);display:inline-flex;align-items:center;justify-content:center}.gct-gct-form-radio__item-icon .gct-iconfont{font-size:inherit}.gct-gct-form-radio.gct-gct-form-radio--button.ant-radio-group{width:100%;padding:2px;border-radius:4px;background-color:#f2f4f7;display:inline-block;display:flex}.gct-gct-form-radio.gct-gct-form-radio--button.ant-radio-group .ant-radio-button-wrapper{border:0;background-color:transparent;color:#212528;border-radius:2px;padding:0;flex:1;text-align:center}.gct-gct-form-radio.gct-gct-form-radio--button.ant-radio-group .ant-radio-button-wrapper:not(:first-child):before{width:0}.gct-gct-form-radio.gct-gct-form-radio--button.ant-radio-group .ant-radio-button-wrapper span:last-child{padding:4px;border-radius:2px;display:inline-flex;line-height:1;vertical-align:-1px}.gct-gct-form-radio.gct-gct-form-radio--button.ant-radio-group .ant-radio-button-wrapper span:last-child:hover{background-color:#e6e9ef}.gct-gct-form-radio.gct-gct-form-radio--button.ant-radio-group .ant-radio-button-wrapper.ant-radio-button-wrapper-checked{background-color:#fff}.gct-gct-form-radio.gct-gct-form-radio--button.ant-radio-group .ant-radio-button-wrapper.ant-radio-button-wrapper-checked span:last-child:hover{background-color:transparent}.gct-gct-form-radio.gct-gct-form-radio--button.ant-radio-group .ant-radio-button-wrapper.ant-radio-button-wrapper-disabled{cursor:default}.gct-gct-form-radio.gct-gct-form-radio--button.ant-radio-group.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within{box-shadow:0 0}.gct-gct-form-radio.gct-gct-form-radio--button.ant-radio-group.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover{color:#212528;cursor:pointer}.gct-gct-form-radio.gct-gct-form-radio--button.ant-radio-group.ant-radio-group-small .ant-radio-button-wrapper{height:24px;line-height:24px;font-size:12px}.gct-gct-form-info{color:var(--gct-color-text-5);display:flex;align-items:center}.gct-gct-form-info__icon{margin-right:3px;vertical-align:-1px}.gct-gct-form-info__content{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.gct-gct-form-info--small{font-size:12px;line-height:16px}.gct-gct-form-checkbox--checkbox.ant-checkbox-group{height:32px;display:flex;align-items:center}.gct-gct-form-checkbox.ant-checkbox-group{width:100%;padding:2px;border-radius:4px;display:flex;gap:4px 8px;flex-wrap:wrap;height:auto}.gct-gct-form-checkbox.ant-checkbox-group .ant-checkbox+span{padding-left:4px}.gct-gct-form-checkbox.ant-checkbox-group .ant-checkbox-group-item{margin-right:0;display:flex;align-items:flex-start}.gct-gct-form-checkbox.ant-checkbox-group .ant-checkbox-wrapper{display:flex}.gct-gct-form-checkbox.ant-checkbox-group.isColumn{flex-flow:column wrap;align-items:flex-start}.gct-gct-form-checkbox.ant-checkbox-group .drag-wrap{width:100%}.gct-gct-form-checkbox.ant-checkbox-group .drag-wrap .drag-checkbox-item{padding:6px 4px;border-radius:4px;background-color:#f2f4f7}.gct-gct-form-checkbox.ant-checkbox-group .drag-wrap .drag-checkbox-item .icon-drag{line-height:1}.gct-gct-form-checkbox.ant-checkbox-group .drag-wrap .drag-checkbox-item+.drag-checkbox-item{margin-top:4px}.gct-form-model-select{width:100%}.gct-form-model-select .ant-select.ant-select-single.ant-select-show-arrow.gct-form-model-select__class{width:84px}.gct-form-model-select .ant-select.ant-select-single.ant-select-show-arrow.gct-form-model-select__model,.gct-form-model-select .ant-select.gct-form-model-select__model{width:208px}.gct-select-form-table{height:100%}.gct-select-form-table__search{height:48px}.gct-select-form-table__search .ant-input-search{position:relative;width:200px;border-radius:4px;display:flex;flex-direction:row-reverse}.gct-select-form-table__search .ant-input-search .ant-input-group-addon{position:absolute;left:1px;z-index:10}.gct-select-form-table__search .ant-input-search .ant-input-group-addon .ant-btn{border:0;background-color:transparent}.gct-select-form-table__search .ant-input-search .ant-input{padding-left:32px;border-radius:4px}.gct-select-form-table__table{height:calc(100% - 48px)}.gct-gct-form-item{--gct-form-item-min-height: 32px;--gct-form-item-height: auto;--gct-form-item-width: auto;--gct-form-item-label-width: 100px;--gct-form-item-readonly-color: #999;--gct-form-item-placeholder-color: var(--gct-color-text-7);--gct-form-item-label-align: right;--gct-form-item-editor-align: left;--gct-form-item-label-color: #252525;--gct-form-item-label-font-size: 14px;--gct-form-item-checkbox-width: 6px;--gct-form-item-checkbox-height: 9px;width:var(--gct-form-item-width);height:var(--gct-form-item-height);min-height:var(--gct-form-item-min-height)}.gct-gct-form-item.is-hidden-label>.ant-col.ant-form-item-control>.ant-form-item-control-input>.ant-form-item-control-input-content>.gct-gct-form-item__editor{width:100%}.gct-gct-form-item.is-hidden-error{margin-bottom:0}.gct-gct-form-item.is-hidden{display:none}.gct-gct-form-item.is-readonly{margin-bottom:18px!important;--gct-form-item-min-height: 22px}.gct-gct-form-item.is-readonly .ant-form-item-label{padding:0}.gct-gct-form-item.is-readonly .ant-form-item-label label,.gct-gct-form-item.is-readonly .gct-gct-form-item__label{color:var(--gct-form-item-readonly-color)}.gct-gct-form-item.is-required .gct-gct-form-item__label:before{display:inline-block;margin-inline-end:4px;color:#ff4d4f;font-size:14px;font-family:SimSun,sans-serif;line-height:1;content:"*"}.gct-gct-form-item .ant-input{border-radius:4px}.gct-gct-form-item .ant-form-item-label{width:var(--gct-form-item-label-width);text-align:var(--gct-form-item-label-align)}.gct-gct-form-item .ant-form-item-label label{color:var(--gct-form-item-label-color);font-size:var(--gct-form-item-label-font-size)}.gct-gct-form-item .ant-form-item-control-input-content{text-align:var(--gct-form-item-editor-align)}.gct-gct-form-item__label{width:var(--gct-form-item-label-width);line-height:1.5715;font-size:var(--gct-form-item-label-font-size)}.gct-gct-form-item__label--top{width:100%;display:flex;align-items:center}.gct-gct-form-item--label-top .gct-gct-form-item__label{margin-bottom:8px}.gct-gct-form-item__label-tooltip{color:var(--gct-color-text-6)}.gct-gct-form-item__label-tooltip:hover{color:var(--gct-color-text-4)}.gct-gct-form-item .ant-form-item-control-input{flex-grow:1}.gct-gct-form-item .ant-checkbox-group,.gct-gct-form-item .ant-checkbox-group .ant-checkbox-wrapper{font-size:var(--gct-form-item-label-font-size)}.gct-gct-form-item .ant-checkbox-group .ant-form input[type=checkbox],.gct-gct-form-item .ant-checkbox-group .ant-checkbox-inner{width:var(--gct-form-item-label-font-size);height:var(--gct-form-item-label-font-size)}.gct-gct-form-item .ant-checkbox-group .ant-checkbox-inner:after{width:var(--gct-form-item-checkbox-width);height:var(--gct-form-item-checkbox-height)}.gct-gct-form--small label{font-size:12px;line-height:16px;font-size:12px!important}.gct-gct-form.is-info{padding:18px 12px 2px}.gct-form-collapse-pane{--gct-form-collapse-pane-width: auto;--gct-form-collapse-pane-height: auto;--gct-form-collapse-pane-padding: 12px;width:var(--gct-form-collapse-pane-width);height:var(--gct-form-collapse-pane-height);padding:var(--gct-form-collapse-pane-padding)}.gct-form-collapse-pane.is-hidden{display:none}.gct-form-collapse .gct-form-collapse-pane .gct-form-collapse-pane__last-child{margin-bottom:0!important}.gct-form-collapse{--gct-form-collapse-width: auto;--gct-form-collapse-height: auto;width:var(--gct-form-collapse-width);height:var(--gct-form-collapse-height);border:none}.gct-form-collapse.is-hidden{display:none}.gct-form-collapse.ant-collapse>.ant-collapse-item>.ant-collapse-header{background:#f2f4f7;font-size:12px;font-weight:500;color:#212528;padding:8px 12px}.gct-form-collapse>.ant-collapse-item{border-bottom:none}.gct-form-collapse>.ant-collapse-item>.ant-collapse-content{border-top:none}.gct-form-collapse>.ant-collapse-item>.ant-collapse-content>.ant-collapse-content-box{padding:0}.gct-form-collapse--icon-up-down>.ant-collapse-item.ant-collapse-item-active>.ant-collapse-header .ant-collapse-arrow svg{transform:rotate(-90deg)!important}.gct-form-collapse--icon-up-down>.ant-collapse-item>.ant-collapse-header .ant-collapse-arrow svg{transform:rotate(90deg)}.gct-gct-form-group{--gct-form-group-min-height: 32px;--gct-form-group-width: auto;--gct-form-group-height: 100%;width:var(--gct-form-group-width);height:var(--gct-form-group-height);min-height:var(--gct-form-group-min-height)}.gct-gct-form-group.is-hidden-header .gct-gct-form-group__title{display:none}.gct-gct-form-group.is-hidden-header .gct-gct-form-group__content{overflow:auto;height:100%}.gct-gct-form-group__content{height:100%}.gct-gct-form-group.is-hidden{display:none}.gct-gct-form-line{width:100%;padding:8px 0}.gct-gct-form-line__line{width:100%;border-top:1px solid #F3F5F8}.gct-form-tab{--gct-form-tab-tab-spacing: 52px;--gct-form-tab-width: auto;--gct-form-tab-height: auto;width:var(--gct-form-tab-width);height:var(--gct-form-tab-height)}.gct-form-tab.ant-tabs{height:100%}.gct-form-tab.is-hidden{display:none}.gct-form-tab>.ant-tabs-nav{margin-bottom:0!important;background-color:#fff}.gct-form-tab>.ant-tabs-nav>.ant-tabs-nav-wrap{border-bottom:1px solid #E0E3EA}.gct-form-tab>.ant-tabs-nav .ant-tabs-tab+.ant-tabs-tab{margin-left:var(--gct-form-tab-tab-spacing)}.gct-form-tab>.ant-tabs-nav .ant-tabs-tab{padding:7px 0}.gct-form-tab.ant-tabs .ant-tabs-tabpane{overflow:hidden auto}.gct-form-tab>.ant-tabs-content-holder>.ant-tabs-content{height:100%}.gct-form-tab--left>.ant-tabs-nav .ant-tabs-nav-wrap{justify-content:flex-start}.gct-form-tab--right>.ant-tabs-nav .ant-tabs-nav-wrap{justify-content:flex-end}.gct-form-tab--center>.ant-tabs-nav .ant-tabs-nav-wrap{justify-content:center}.gct-form-tab-pane{--gct-form-tab-pane-width: auto;--gct-form-tab-pane-height: auto;width:var(--gct-form-tab-pane-width);height:100%;background-color:#fff}.gct-form-tab-pane.is-hidden{display:none}.gct-gct-form-title-group{--gct-form-title-group-min-height: 32px;--gct-form-title-group-width: auto;--gct-form-title-group-height: auto}.gct-gct-form-title-group.is-hidden{display:none}.gct-gct-form-title-group__title{color:#252525;font-size:12px;padding:8px 0}.gct-gct-form-title-group__content .ant-form-item-label{--gct-form-item-label-color: #797A7D}.gct-table-span{line-height:22px;display:flex;justify-content:flex-start;align-items:center}.gct-table-span__icon{color:var(--ant-primary-color);margin-right:4px;font-size:16px;line-height:1;width:16px;display:inline-block}.gct-table-span__text{flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#212528}.gct-table-text{height:26px;padding:0 8px}.gct-table-text__info{display:flex;align-items:center;border:1px solid transparent}.gct-table-text .ant-input-affix-wrapper-focused,.gct-table-text .ant-input-affix-wrapper:focus{border-color:#3168ec}.gct-table-text .ant-input-prefix,.gct-table-text .ant-input-suffix{color:#c3c3c3}.gct-gct-table__table-header.is-required:before{content:"*";color:var(--gct-color-danger);margin-right:var(--gct-spacing-4);vertical-align:-2px}.gct-gct-table .ant-table-wrapper{height:100%!important}.gct-gct-table .ant-table-wrapper.is-not-edit .ant-table .ant-table-body{padding-bottom:0}.gct-gct-table .ant-form{display:flex;height:100%}.gct-gct-table .ant-form .ant-form-item{margin-bottom:0;height:26px}.gct-gct-table .ant-table .ant-table-row{height:44px}.gct-gct-table .ant-table .ant-table-row:hover{background-color:#f7f9ff!important}.gct-gct-table .ant-table .ant-table-cell{padding:8px}.gct-gct-table .ant-form-item-with-help .ant-form-item-explain{margin-bottom:-18px;height:18px;min-height:18px;font-size:12px}.gct-gct-table .ant-table-tbody>tr:hover:not(.ant-table-expanded-row)>td:not(.ant-table-cell-fix-right,.ant-table-cell-fix-left),.gct-gct-table .ant-table-tbody .ant-table-row-hover,.gct-gct-table .ant-table-tbody .ant-table-row-hover>td{background-color:transparent!important}.gct-gct-table .ant-btn-text.ant-btn{border-color:transparent}.gct-gct-table .ant-spin-nested-loading{height:100%}.gct-gct-table .ant-spin-container{height:100%;display:flex;flex-direction:column}.gct-gct-table .ant-table{height:100%;flex-grow:1}.gct-gct-table .ant-pagination{flex-shrink:0}.gct-modal{--gct-modal-z-index: var(--gct-z-index-modal);--gct-modal-background-color: var(--gct-color-bg-1)}.gct-modal__full-screen{position:absolute;top:0;right:48px;padding:16px 8px;color:#212528;font-size:16px;line-height:1;line-height:22px;cursor:pointer}.gct-modal.is-hidden-footer>.ant-modal-content>.ant-modal-footer{display:none;padding:16px}.gct-modal.is-hidden-close-btn>.ant-modal-content>.ant-modal-close{display:none}.gct-modal.is-hidden-cancel-btn>.ant-modal-content>.ant-modal-footer>button:first-child{display:none}.gct-modal.is-full-screen{top:0;width:100vw!important;height:100vh!important;max-width:100%;max-height:fit-content;margin:0;padding-bottom:0}.gct-modal.is-full-screen .ant-modal-content{display:flex;flex-direction:column;width:100vw;max-width:100vw;height:100vh;max-height:100vh}.gct-modal>.ant-modal-content{display:flex;flex-direction:column;width:100%;height:100%;max-height:85vh}.gct-modal>.ant-modal-content>.ant-modal-close>.ant-modal-close-x{width:auto;height:auto;padding:16px;color:#212528;line-height:1;line-height:22px}.gct-modal>.ant-modal-content>.ant-modal-header{border-bottom:1px solid #e0e3ea}.gct-modal>.ant-modal-content>.ant-modal-footer{border-top:1px solid #e0e3ea}.gct-modal>.ant-modal-content>.ant-modal-header,.gct-modal>.ant-modal-content>.ant-modal-footer{flex-shrink:0;padding:16px}.gct-modal>.ant-modal-content>.ant-modal-header .ant-modal-title{color:#000;font-weight:600;min-height:22px}.gct-modal>.ant-modal-content>.ant-modal-body{flex-grow:1;padding:0;overflow:hidden auto}.component[data-v-7bfd9ca3]{display:inline-block;position:relative;outline:none;font-size:14px;text-align:left;cursor:pointer}.component .box[data-v-7bfd9ca3]{display:flex;align-items:center;border:1px solid var(--gct-color-text-1);border-radius:4px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAWElEQVRIiWM8fubkfwYygKWJOSM5+mCAhRLNoxaPWjxq8ajFoxbTyeL/DAfJ0Xjs3Cl7Siwmu4Yht1aDgZEYx6MWj1o8avGoxaMWD3qLya5X//4nqx6HAQC7RBGFzolqTAAAAABJRU5ErkJggg==);background-size:10px 10px}.color-picker__popover .ant-popover-inner-content{padding:0}.color-picker__popover .color-picker{z-index:9;width:var(--w);padding:10px;background:#fff;box-shadow:0 0 1px 1px #0000001a;-webkit-user-select:none;user-select:none}.color-picker__popover .color-picker-saturation{position:relative;width:100%;height:200px;margin-bottom:10px;box-shadow:1px 1px 1px #0000001a;cursor:pointer}.color-picker__popover .color-picker-saturation div{position:absolute;top:0;left:0;width:100%;height:100%}.color-picker__popover .color-picker-saturation .point{position:absolute;z-index:9;box-sizing:border-box;width:6px;height:6px;transform:translate(-50%,-50%);border:2px solid #ccc;border-radius:50%;background-color:transparent}.color-picker__popover .color-picker-saturation-t{background:linear-gradient(to right,#fff,#fff0)}.color-picker__popover .color-picker-saturation-h{background:linear-gradient(to top,#000,#fff0)}.color-picker__popover .color-picker-middle{display:flex;width:100%;margin-bottom:10px}.color-picker__popover .color-picker-middle .hue-slider{position:relative;height:10px;margin-bottom:6px;background:linear-gradient(90deg,red 0,#ff0 17%,#0f0 33%,#0ff,#00f 67%,#f0f 83%,red);box-shadow:1px 1px 1px #0000001a}.color-picker__popover .color-picker-middle .alpha-slider{position:relative;height:10px;background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAWElEQVRIiWM8fubkfwYygKWJOSM5+mCAhRLNoxaPWjxq8ajFoxbTyeL/DAfJ0Xjs3Cl7Siwmu4Yht1aDgZEYx6MWj1o8avGoxaMWD3qLya5X//4nqx6HAQC7RBGFzolqTAAAAABJRU5ErkJggg==);background-size:10px 10px;box-shadow:1px 1px 1px #0000001a}.color-picker__popover .color-picker-middle .slider{position:absolute;box-sizing:border-box;width:6px;height:100%;background-color:#fff;box-shadow:0 0 2px #0009;cursor:pointer}.color-picker__popover .color-picker-diamond{position:relative;width:26px;height:26px;margin-left:5px;overflow:hidden;border-radius:3px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAWElEQVRIiWM8fubkfwYygKWJOSM5+mCAhRLNoxaPWjxq8ajFoxbTyeL/DAfJ0Xjs3Cl7Siwmu4Yht1aDgZEYx6MWj1o8avGoxaMWD3qLya5X//4nqx6HAQC7RBGFzolqTAAAAABJRU5ErkJggg==);background-size:10px 10px}.color-picker__popover .color-picker-value{display:flex;justify-content:space-between;width:100%}.color-picker__popover .color-picker-value div{padding:0 3px;text-align:center}.color-picker__popover .color-picker-value input{box-sizing:border-box;width:34px;height:24px;margin:0;padding:0;border:1px solid #ccc;border-radius:3px;outline:none;font-size:12px;text-align:center}.color-picker__popover .color-picker-value p{margin:3px 0 0;font-size:12px}.color-picker__popover .color-picker-value .rgba-a{padding-right:0}.color-picker__popover .color-picker-value .hex{flex:1;padding-left:0}.color-picker__popover .color-picker-value .hex input{width:100%;height:24px}.color-picker__popover .color-picker .presetColor .title{margin-bottom:10px;padding-top:8px;border-top:1px solid #eaeaea;font-size:12px}.color-picker__popover .color-picker .presetColor .preset{display:flex;flex-wrap:wrap;justify-content:flex-start;width:100%;margin:10px 0 0;padding:0;list-style:none}.color-picker__popover .color-picker .presetColor .preset li{width:20px;height:20px;margin-right:6px;margin-bottom:6px;border:1px solid #ccc;border-radius:6px;cursor:pointer}.color-picker__popover .color-value .color-value .color-value .hex input{width:100%;height:24px}.gct-dnd-item{background-color:rgb(var(--gct-gray-2))}.gct-dnd-item.is-dragging{background-color:var(--gct-color-bg-3)!important}.gct-dnd-drop-line{background-color:transparent;padding:var(--gct-padding-1) 0}.gct-dnd-drop-line__line{border-top:1px solid transparent}.gct-dnd-drop-line.is-shallow-over .gct-dnd-drop-line__line,.gct-dnd-drop-line.is-active .gct-dnd-drop-line__line{border-color:var(--gct-color-primary)}.gct-dnd-container{border:1px dashed transparent;border-radius:var(--gct-border-radius-s)}.gct-dnd-container.is-over{border-color:var(--gct-color-border-hover);background-color:var(--gct-color-primary-light)}.vben.fullscreen-modal{overflow:hidden}.vben.fullscreen-modal .ant-modal{inset:0!important;width:100%!important;max-width:100vw!important;height:100%}.vben.fullscreen-modal .ant-modal-content{height:100%}.vben .ant-modal{width:520px;padding-bottom:0}.vben .ant-modal .ant-modal-body>.scrollbar{height:100%;padding:14px}.vben .ant-modal .ant-modal-body>.scrollbar .scrollbar__wrap{max-height:calc(88vh - 152px)}.vben .ant-modal-title{font-size:16px;font-weight:700}.vben .ant-modal-title .base-title{cursor:move!important}.vben .ant-modal .ant-modal-body{height:calc(100% - 120px);max-height:calc(88vh - 120px);padding:0}.vben .ant-modal .ant-modal-body>.scrollbar>.scrollbar__bar.is-horizontal{display:none}.vben .ant-modal-large{top:60px}.vben .ant-modal-large--mini{top:16px}.vben .ant-modal-header{padding:16px}.vben .ant-modal-content{box-shadow:0 4px 8px #0003,0 6px 20px #00000030}.vben .ant-modal-footer{padding:16px}.vben .ant-modal-footer button+button{margin-left:16px}.vben .ant-modal-close{outline:none;font-weight:400}.vben .ant-modal-close-x{display:inline-block;width:96px;height:56px;line-height:56px}.vben .ant-modal-confirm-body .ant-modal-confirm-content>*{color:#909399}.vben .ant-modal-confirm-confirm.error .ant-modal-confirm-body>.anticon{color:var(--gct-color-error)}.vben .ant-modal-confirm-btns .ant-btn:last-child{margin-right:0}.vben .ant-modal-confirm-info .ant-modal-confirm-body>.anticon{color:var(--gct-color-warning)}.vben .ant-modal-confirm-confirm.success .ant-modal-confirm-body>.anticon{color:var(--gct-color-success)}.vben .ant-modal-confirm .ant-modal-body{padding:24px!important}@media screen and (max-height:600px){.ant-modal{top:60px}}@media screen and (max-height:540px){.ant-modal{top:30px}}@media screen and (max-height:480px){.ant-modal{top:10px}}.options-field-modal.ant-modal .ant-modal-content .ant-modal-body{padding-bottom:0}.ant-modal-footer .ant-btn+.ant-btn:not(.ant-dropdown-trigger){margin-left:16px}.ant-modal{max-height:88vh}.ant-modal .ant-modal-content{border-radius:4px}.ant-modal.ant-modal-confirm .ant-modal-body{padding:16px}.ant-modal .ant-modal-confirm-body>.anticon{margin-right:8px}.ant-modal .ant-modal-confirm-body>.anticon .iconfont{top:4px!important;font-size:14px}.ant-modal .ant-modal-confirm-body>.anticon>svg{width:14px;height:14px;margin-top:3px}.ant-modal .ant-modal-confirm-body>.ant-modal-confirm-title{color:#1a1d23;font-size:14px;line-height:unset}.ant-modal .ant-modal-confirm-body>.ant-modal-confirm-content{color:#5a5f6b;font-size:12px}.ant-modal .ant-modal-confirm-body .anticon+.ant-modal-confirm-title+.ant-modal-confirm-content{margin-left:22px}.ant-modal .ant-modal-confirm-btns{margin-top:12px}.ant-modal .ant-modal-confirm-btns>.ant-btn{height:24px;padding:2px 10px;color:#384356;line-height:16px}.ant-modal .ant-modal-confirm-btns>.ant-btn.ant-btn-primary{color:#fff}.vben .ant-modal-close{right:16px}.vben .ant-modal-close-x .anticon.anticon-close{margin-left:27px}.gct-basic-modal-close{display:flex;align-items:center;height:95%}.gct-basic-modal-close>span{margin-left:48px;font-size:16px}.gct-basic-modal-close--can-full>span{margin-left:12px}.gct-basic-modal-close:not(.gct-basic-modal-close--can-full)>span:nth-child(1):hover{font-weight:700}.gct-basic-modal-close span:nth-child(1){display:inline-block;padding:10px}.gct-basic-modal-close span:nth-child(1):hover{color:var(--ant-primary-color)}.gct-basic-modal-close span:last-child:hover{color:var(--ant-error-color)}.os-size-observer,.os-size-observer-listener{scroll-behavior:auto!important;direction:inherit;pointer-events:none;overflow:hidden;visibility:hidden;box-sizing:border-box}.os-size-observer,.os-size-observer-listener,.os-size-observer-listener-item,.os-size-observer-listener-item-final{writing-mode:horizontal-tb;position:absolute;left:0;top:0}.os-size-observer{z-index:-1;contain:strict;display:flex;flex-direction:row;flex-wrap:nowrap;padding:inherit;border:inherit;box-sizing:inherit;margin:-133px;inset:0;transform:scale(.1)}.os-size-observer:before{content:"";flex:none;box-sizing:inherit;padding:10px;width:10px;height:10px}.os-size-observer-appear{animation:os-size-observer-appear-animation 1ms forwards}.os-size-observer-listener{box-sizing:border-box;position:relative;flex:auto;padding:inherit;border:inherit;margin:-133px;transform:scale(10)}.os-size-observer-listener.ltr{margin-right:-266px;margin-left:0}.os-size-observer-listener.rtl{margin-left:-266px;margin-right:0}.os-size-observer-listener:empty:before{content:"";width:100%;height:100%}.os-size-observer-listener:empty:before,.os-size-observer-listener>.os-size-observer-listener-item{display:block;position:relative;padding:inherit;border:inherit;box-sizing:content-box;flex:auto}.os-size-observer-listener-scroll{box-sizing:border-box;display:flex}.os-size-observer-listener-item{right:0;bottom:0;overflow:hidden;direction:ltr;flex:none}.os-size-observer-listener-item-final{transition:none}@keyframes os-size-observer-appear-animation{0%{cursor:auto}to{cursor:none}}.os-trinsic-observer{flex:none;box-sizing:border-box;position:relative;max-width:0px;max-height:1px;padding:0;margin:0;border:none;overflow:hidden;z-index:-1;height:0;top:calc(100% + 1px);contain:strict}.os-trinsic-observer:not(:empty){height:calc(100% + 1px);top:-1px}.os-trinsic-observer:not(:empty)>.os-size-observer{width:1000%;height:1000%;min-height:1px;min-width:1px}[data-overlayscrollbars-initialize]:not([data-overlayscrollbars-viewport]),[data-overlayscrollbars-viewport~=scrollbarHidden],html[data-overlayscrollbars-viewport~=scrollbarHidden]>body{scrollbar-width:none!important}[data-overlayscrollbars-initialize]:not([data-overlayscrollbars-viewport])::-webkit-scrollbar,[data-overlayscrollbars-initialize]:not([data-overlayscrollbars-viewport])::-webkit-scrollbar-corner,[data-overlayscrollbars-viewport~=scrollbarHidden]::-webkit-scrollbar,[data-overlayscrollbars-viewport~=scrollbarHidden]::-webkit-scrollbar-corner,html[data-overlayscrollbars-viewport~=scrollbarHidden]>body::-webkit-scrollbar,html[data-overlayscrollbars-viewport~=scrollbarHidden]>body::-webkit-scrollbar-corner{-webkit-appearance:none!important;appearance:none!important;display:none!important;width:0!important;height:0!important}[data-overlayscrollbars-initialize]:not([data-overlayscrollbars]):not(html):not(body){overflow:auto}html[data-overlayscrollbars-body]{overflow:hidden}html[data-overlayscrollbars-body],html[data-overlayscrollbars-body]>body{width:100%;height:100%;margin:0}html[data-overlayscrollbars-body]>body{overflow:visible;margin:0}[data-overlayscrollbars]{position:relative}[data-overlayscrollbars~=host],[data-overlayscrollbars-padding]{display:flex;align-items:stretch!important;flex-direction:row!important;flex-wrap:nowrap!important;scroll-behavior:auto!important}[data-overlayscrollbars-padding],[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]){box-sizing:inherit;position:relative;flex:auto;height:auto;width:100%;min-width:0;padding:0;margin:0;border:none;z-index:0}[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]){--os-vaw: 0;--os-vah: 0;outline:none}[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]):focus{outline:none}[data-overlayscrollbars-viewport][data-overlayscrollbars-viewport~=arrange]:before{content:"";position:absolute;pointer-events:none;z-index:-1;min-width:1px;min-height:1px;width:var(--os-vaw);height:var(--os-vah)}[data-overlayscrollbars~=host],[data-overlayscrollbars-padding]{overflow:hidden!important}[data-overlayscrollbars~=host][data-overlayscrollbars~=noClipping],[data-overlayscrollbars-padding~=noClipping]{overflow:visible!important}[data-overlayscrollbars-viewport]{--os-viewport-overflow-x: hidden;--os-viewport-overflow-y: hidden;overflow-x:var(--os-viewport-overflow-x);overflow-y:var(--os-viewport-overflow-y)}[data-overlayscrollbars-viewport~=overflowXVisible]{--os-viewport-overflow-x: visible}[data-overlayscrollbars-viewport~=overflowXHidden]{--os-viewport-overflow-x: hidden}[data-overlayscrollbars-viewport~=overflowXScroll]{--os-viewport-overflow-x: scroll}[data-overlayscrollbars-viewport~=overflowYVisible]{--os-viewport-overflow-y: visible}[data-overlayscrollbars-viewport~=overflowYHidden]{--os-viewport-overflow-y: hidden}[data-overlayscrollbars-viewport~=overflowYScroll]{--os-viewport-overflow-y: scroll}[data-overlayscrollbars-viewport~=overflowImportant]{overflow-x:var(--os-viewport-overflow-x)!important;overflow-y:var(--os-viewport-overflow-y)!important}[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId){font-size:0!important;line-height:0!important}[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId):before,[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId):after,[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId)>*:not(#osFakeId){display:none!important;position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border-width:0!important}[data-overlayscrollbars-viewport~=measuring],[data-overlayscrollbars-viewport~=scrolling]{scroll-behavior:auto!important;scroll-snap-type:none!important}[data-overlayscrollbars-viewport~=measuring][data-overlayscrollbars-viewport~=overflowXVisible]{overflow-x:hidden!important}[data-overlayscrollbars-viewport~=measuring][data-overlayscrollbars-viewport~=overflowYVisible]{overflow-y:hidden!important}[data-overlayscrollbars-content]{box-sizing:inherit}[data-overlayscrollbars-contents]:not(#osFakeId):not([data-overlayscrollbars-padding]):not([data-overlayscrollbars-viewport]):not([data-overlayscrollbars-content]){display:contents}[data-overlayscrollbars-grid],[data-overlayscrollbars-grid] [data-overlayscrollbars-padding]{display:grid;grid-template:1fr/1fr}[data-overlayscrollbars-grid]>[data-overlayscrollbars-padding],[data-overlayscrollbars-grid]>[data-overlayscrollbars-viewport],[data-overlayscrollbars-grid]>[data-overlayscrollbars-padding]>[data-overlayscrollbars-viewport]{height:auto!important;width:auto!important}@property --os-scroll-percent{syntax: "<number>"; inherits: true; initial-value: 0;}@property --os-viewport-percent{syntax: "<number>"; inherits: true; initial-value: 0;}.os-scrollbar{--os-viewport-percent: 0;--os-scroll-percent: 0;--os-scroll-direction: 0;--os-scroll-percent-directional: calc( var(--os-scroll-percent) - (var(--os-scroll-percent) + (1 - var(--os-scroll-percent)) * -1) * var(--os-scroll-direction) )}.os-scrollbar{contain:size layout;contain:size layout style;transition:opacity .15s,visibility .15s,top .15s,right .15s,bottom .15s,left .15s;pointer-events:none;position:absolute;opacity:0;visibility:hidden}body>.os-scrollbar{position:fixed;z-index:99999}.os-scrollbar-transitionless{transition:none!important}.os-scrollbar-track{position:relative;padding:0!important;border:none!important}.os-scrollbar-handle{position:absolute}.os-scrollbar-track,.os-scrollbar-handle{pointer-events:none;width:100%;height:100%}.os-scrollbar.os-scrollbar-track-interactive .os-scrollbar-track,.os-scrollbar.os-scrollbar-handle-interactive .os-scrollbar-handle{pointer-events:auto;touch-action:none}.os-scrollbar-horizontal{bottom:0;left:0}.os-scrollbar-vertical{top:0;right:0}.os-scrollbar-rtl.os-scrollbar-horizontal{right:0}.os-scrollbar-rtl.os-scrollbar-vertical{right:auto;left:0}.os-scrollbar-visible{opacity:1;visibility:visible}.os-scrollbar-auto-hide.os-scrollbar-auto-hide-hidden{opacity:0;visibility:hidden}.os-scrollbar-interaction.os-scrollbar-visible{opacity:1;visibility:visible}.os-scrollbar-unusable,.os-scrollbar-unusable *,.os-scrollbar-wheel,.os-scrollbar-wheel *{pointer-events:none!important}.os-scrollbar-unusable .os-scrollbar-handle{opacity:0!important;transition:none!important}.os-scrollbar-horizontal .os-scrollbar-handle{bottom:0;left:calc(var(--os-scroll-percent-directional) * 100%);transform:translate(calc(var(--os-scroll-percent-directional) * -100%));width:calc(var(--os-viewport-percent) * 100%)}.os-scrollbar-vertical .os-scrollbar-handle{right:0;top:calc(var(--os-scroll-percent-directional) * 100%);transform:translateY(calc(var(--os-scroll-percent-directional) * -100%));height:calc(var(--os-viewport-percent) * 100%)}@supports (container-type: size){.os-scrollbar-track{container-type:size}.os-scrollbar-horizontal .os-scrollbar-handle{left:auto;transform:translate(calc(var(--os-scroll-percent-directional) * 100cqw + var(--os-scroll-percent-directional) * -100%))}.os-scrollbar-vertical .os-scrollbar-handle{top:auto;transform:translateY(calc(var(--os-scroll-percent-directional) * 100cqh + var(--os-scroll-percent-directional) * -100%))}.os-scrollbar-rtl.os-scrollbar-horizontal .os-scrollbar-handle{right:auto;left:0}}.os-scrollbar-rtl.os-scrollbar-vertical .os-scrollbar-handle{right:auto;left:0}.os-scrollbar.os-scrollbar-horizontal.os-scrollbar-cornerless,.os-scrollbar.os-scrollbar-horizontal.os-scrollbar-cornerless.os-scrollbar-rtl{left:0;right:0}.os-scrollbar.os-scrollbar-vertical.os-scrollbar-cornerless,.os-scrollbar.os-scrollbar-vertical.os-scrollbar-cornerless.os-scrollbar-rtl{top:0;bottom:0}@media print{.os-scrollbar{display:none}}.os-scrollbar{--os-size: 0;--os-padding-perpendicular: 0;--os-padding-axis: 0;--os-track-border-radius: 0;--os-track-bg: none;--os-track-bg-hover: none;--os-track-bg-active: none;--os-track-border: none;--os-track-border-hover: none;--os-track-border-active: none;--os-handle-border-radius: 0;--os-handle-bg: none;--os-handle-bg-hover: none;--os-handle-bg-active: none;--os-handle-border: none;--os-handle-border-hover: none;--os-handle-border-active: none;--os-handle-min-size: 33px;--os-handle-max-size: none;--os-handle-perpendicular-size: 100%;--os-handle-perpendicular-size-hover: 100%;--os-handle-perpendicular-size-active: 100%;--os-handle-interactive-area-offset: 0}.os-scrollbar-track{border:var(--os-track-border);border-radius:var(--os-track-border-radius);background:var(--os-track-bg);transition:opacity .15s,background-color .15s,border-color .15s}.os-scrollbar-track:hover{border:var(--os-track-border-hover);background:var(--os-track-bg-hover)}.os-scrollbar-track:active{border:var(--os-track-border-active);background:var(--os-track-bg-active)}.os-scrollbar-handle{border:var(--os-handle-border);border-radius:var(--os-handle-border-radius);background:var(--os-handle-bg)}.os-scrollbar-handle:hover{border:var(--os-handle-border-hover);background:var(--os-handle-bg-hover)}.os-scrollbar-handle:active{border:var(--os-handle-border-active);background:var(--os-handle-bg-active)}.os-scrollbar-track:before,.os-scrollbar-handle:before{content:"";position:absolute;inset:0;display:block}.os-scrollbar-horizontal{padding:var(--os-padding-perpendicular) var(--os-padding-axis);right:var(--os-size);height:var(--os-size)}.os-scrollbar-horizontal.os-scrollbar-rtl{left:var(--os-size);right:0}.os-scrollbar-horizontal .os-scrollbar-track:before{top:calc(var(--os-padding-perpendicular) * -1);bottom:calc(var(--os-padding-perpendicular) * -1)}.os-scrollbar-horizontal .os-scrollbar-handle{min-width:var(--os-handle-min-size);max-width:var(--os-handle-max-size);height:var(--os-handle-perpendicular-size);transition:opacity .15s,background-color .15s,border-color .15s,height .15s}.os-scrollbar-horizontal .os-scrollbar-handle:before{top:calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);bottom:calc(var(--os-padding-perpendicular) * -1)}.os-scrollbar-horizontal:hover .os-scrollbar-handle{height:var(--os-handle-perpendicular-size-hover)}.os-scrollbar-horizontal:active .os-scrollbar-handle{height:var(--os-handle-perpendicular-size-active)}.os-scrollbar-vertical{padding:var(--os-padding-axis) var(--os-padding-perpendicular);bottom:var(--os-size);width:var(--os-size)}.os-scrollbar-vertical .os-scrollbar-track:before{left:calc(var(--os-padding-perpendicular) * -1);right:calc(var(--os-padding-perpendicular) * -1)}.os-scrollbar-vertical .os-scrollbar-handle{min-height:var(--os-handle-min-size);max-height:var(--os-handle-max-size);width:var(--os-handle-perpendicular-size);transition:opacity .15s,background-color .15s,border-color .15s,width .15s}.os-scrollbar-vertical .os-scrollbar-handle:before{left:calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);right:calc(var(--os-padding-perpendicular) * -1)}.os-scrollbar-vertical.os-scrollbar-rtl .os-scrollbar-handle:before{right:calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);left:calc(var(--os-padding-perpendicular) * -1)}.os-scrollbar-vertical:hover .os-scrollbar-handle{width:var(--os-handle-perpendicular-size-hover)}.os-scrollbar-vertical:active .os-scrollbar-handle{width:var(--os-handle-perpendicular-size-active)}[data-overlayscrollbars-viewport~=measuring]>.os-scrollbar,.os-theme-none.os-scrollbar{display:none!important}.os-theme-dark,.os-theme-light{box-sizing:border-box;--os-size: 10px;--os-padding-perpendicular: 2px;--os-padding-axis: 2px;--os-track-border-radius: 10px;--os-handle-interactive-area-offset: 4px;--os-handle-border-radius: 10px}.os-theme-dark{--os-handle-bg: rgba(0, 0, 0, .44);--os-handle-bg-hover: rgba(0, 0, 0, .55);--os-handle-bg-active: rgba(0, 0, 0, .66)}.os-theme-light{--os-handle-bg: rgba(255, 255, 255, .44);--os-handle-bg-hover: rgba(255, 255, 255, .55);--os-handle-bg-active: rgba(255, 255, 255, .66)}.full-loading[data-v-d448466c]{display:flex;position:fixed;z-index:200;top:0;left:0;align-items:center;justify-content:center;width:100%;height:100%;background-color:#f0f2f566}.full-loading.absolute[data-v-d448466c]{position:absolute;z-index:300;top:0;left:0}.m-e[data-v-254c9227]{width:100%;height:100%}.m-e .m-e-main[data-v-254c9227]{display:flex;flex-direction:column;width:calc(100% - 2px);height:calc(100% - 2px)}.m-e .m-e-main .m-e-main_toolbar[data-v-254c9227]{position:relative;z-index:10;height:40px;box-shadow:0 2px 5px #000}.m-e .m-e-main .m-e-main_toolbar .m-e-main_toolbar_left span[data-v-254c9227]{padding-left:10px;font-size:15px;line-height:40px;-webkit-user-select:none;user-select:none}.m-e .m-e-main .m-e-main_toolbar .m-e-main_toolbar_right[data-v-254c9227]{display:flex;align-items:center}.m-e .m-e-main .m-e-main_toolbar .m-e-main_toolbar_right .icon[data-v-254c9227]{display:inline-block;margin-left:10px;transition:ease all .3s;border-radius:2px;text-align:center;cursor:pointer}.m-e .m-e-main .m-e-main_toolbar .m-e-main_toolbar_right .icon[data-v-254c9227]:hover{background-color:#ffffff1a}.m-e .m-e-main .m-e-main_toolbar .m-e-main_toolbar_right .icon.icon-active[data-v-254c9227]{color:#1890ff;background-color:#1890ff1a;box-shadow:0 0 4px #1890ff80;transform:scale(1.1)}.m-e .m-e-main .m-e-main_container[data-v-254c9227]{flex:1;width:100%;height:100%;min-height:400px}
|
package/dist/index.system.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
System.register(["./index-
|
|
1
|
+
System.register(["./index-BH5PTZ_c.js","vue","lodash-es","@gct-paas/core","ant-design-vue"],(function(r,a){"use strict";return{setters:[t=>{r({AssetsSvgIcon:t.A,BaseButton:t.b,BasicButton:t.a,BasicModal:t.B,CodeEditor:t.C,ColorPicker:t.c,CopyModuleKey:t.d,DoubleInput:t.e,EditFormController:t.E,EditorController:t.f,EditorRegister:t.g,EditorRegisterConst:t.h,EditorType:t.i,FORM_CONTROLLER_INJECT_TAG:t.F,FormCollapseController:t.j,FormCollapsePaneController:t.k,FormCollapsePaneState:t.l,FormCollapseState:t.n,FormEditItemController:t.o,FormEditItemState:t.p,FormGroupController:t.q,FormGroupState:t.r,FormHiddenItemController:t.s,FormItemBasicController:t.t,FormItemBasicState:t.u,FormItemController:t.v,FormItemRegister:t.w,FormItemState:t.x,FormLineController:t.y,FormLineState:t.z,FormState:t.D,FormTabController:t.G,FormTabPaneController:t.H,FormTabPaneState:t.I,FormTabState:t.J,GCT_DND_INSERT_POS:t.K,GctDndContainer:t.L,GctDndDropLine:t.M,GctDndItem:t.N,GctFormController:t.O,GctTableController:t.P,Lang:t.Q,MessageUtil:t.R,MonacoEditor:t.S,OverlayController:t.U,Prop:t.V,SvgIcon:t.W,TableActionItemController:t.X,TableEditItemController:t.Y,TableEditItemState:t.Z,TableEditorRegister:t.$,TableITemState:t.a0,TableItemController:t.a1,TableRowController:t.a2,TableRowState:t.a3,TableState:t.a4,Theme:t.T,UseDragByLine:t.a5,ViewContainer:t.a6,WUJIE_FORMULA_EVENTS:t.a7,WuJieContainer:t.a8,coreWebCreateAppVue:t.a9,coreWebSetupApp:t.aa,gctFormItemEditorProps:t.ab,monacoLoader:t.m,openFormulaEditor:t.ac,overlay:t.ad,useAntTableScrollHeight:t.ae,useDesign:t.af,useEditFormController:t.ag,useEditorConsole:t.ah,useEditorConsoleInner:t.ai,useForm:t.aj,useFormItemController:t.ak,useGctFormValue:t.al,useGctFormValueByText:t.am,useLocale:t.an,useModal:t.ao,useModalContext:t.ap,useModalDragMove:t.aq,useModalInner:t.ar,useTableController:t.as,useTheme:t.at,withInstall:t.au})},null,null,null,null],execute:(function(){})}}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),s=require("@ant-design/icons-vue"),C=require("./index-B8zoAUhR.cjs"),X=require("sql-formatter");require("ant-design-vue");require("lodash-es");require("@gct-paas/core");const Y={class:"hex-monaco-editor m-e w-full h-full overflow-hidden"},Z={class:"m-e-main"},ee=e.defineComponent({__name:"monaco-editor",props:{value:{default:""},title:{default:""},language:{default:"typescript"},theme:{default:C.Theme.DARK},readonly:{type:Boolean,default:!1},direction:{default:"bottom"},gapVal:{default:20}},emits:["update:value","change","editor-mounted","blur","focus","chat-bot-click"],setup(M,{expose:N,emit:S}){const l=M,k=e.ref(!1);let i=null;e.watch(()=>l.language,async o=>{t&&t.getModel()&&i&&i.editor.setModelLanguage(t.getModel(),o)});const n=S,d=e.ref();let t;const g=e.ref(!0),E=e.ref(!1),u=e.ref(!1),p=e.ref(!1),w=e.ref(!1),B=e.computed(()=>({color:u.value?"#000":"#fff",marginRight:l.gapVal+"px"}));l.theme===C.Theme.VS&&(u.value=!0);let O={value:l.value??"",language:l.language,automaticLayout:!0,theme:l.theme,readOnly:l.readonly,wordWrap:g.value?"on":"off",scrollBeyondLastLine:!1,minimap:{enabled:!0},tabSize:2,autoClosingBrackets:"always",autoClosingDelete:"always",autoClosingOvertype:"always",autoClosingQuotes:"always",comments:{ignoreEmptyLines:!0,insertSpace:!0},columnSelection:!1,folding:!0,fixedOverflowWidgets:!0,hover:{sticky:!0,above:!1}};async function R(){i=await C.monacoLoader.loadMonaco(),L(),T(),l.value&&y()}async function q(){await _api.apaas.basicConfig.getAiRagEnabled()==!0?w.value=!0:w.value=!1}function T(){if(!i){console.warn("[MonacoEditor] Monaco editor is not available for initEditor");return}t=i.editor.create(d.value,O),l.direction==="bottom"?b():l.direction==="top"&&h(),t.onDidChangeModelContent(()=>{n("change",a()),n("update:value",a())}),t.onDidBlurEditorText(()=>{n("blur",a()),n("update:value",a())}),t.onDidFocusEditorText(()=>{n("focus")}),k.value=!0,n("editor-mounted",t)}function x(o){t.setValue(o),n("change",a()),n("update:value",a())}function a(){return t.getValue()}function D(){if(!i)return console.warn("[MonacoEditor] Monaco editor is not available for getEditorMarkers"),[];const o=t.getModel();return o?i.editor.getModelMarkers({resource:o.uri}):[]}function F(){if(!i){console.warn("[MonacoEditor] Monaco editor is not available for findByKeyword");return}try{t.focus(),t.setSelection(new i.Range(1,9999,1,1e4)),t.trigger("","actions.find",null)}catch(o){console.error(o)}}function h(){t.setScrollPosition({scrollTop:0})}function b(){t.revealLine(t.getModel().getLineCount())}function W(){g.value=!g.value,g.value?t.updateOptions({wordWrap:"on"}):t.updateOptions({wordWrap:"off"})}function A(){u.value=!u.value,u.value?t.updateOptions({theme:"vs"}):t.updateOptions({theme:"vs-dark"})}function I(){d.value.fullscreenElement?(d.value.exitFullscreen(),E.value=!1):(d.value.requestFullscreen(),E.value=!0)}function V(){z(l.title,t.getValue())}function z(o,c){const r=window.URL||window.webkitURL||window,f=new Blob([c]),v=document.createEvent("MouseEvents");v.initMouseEvent("click",!0,!1,window,0,0,0,0,0,!1,!1,!1,!1,0,null);const m=document.createElementNS("http://www.w3.org/1999/xhtml","a");m.href=r.createObjectURL(f),m.download=o,m.dispatchEvent(v)}function y(){if(l.language=="sql"){const c=a(),r=X.format(c);t.setValue(r)}else t.getAction("editor.action.formatDocument").run();const o=a();n("change",o),n("update:value",o)}function U(){x("")}function _(){p.value=!p.value,n("chat-bot-click")}function L(){t&&t.dispose()}function j(){return t}e.onMounted(()=>{R()}),e.onUnmounted(()=>{L()});function K(o){const c=t.getModel();if(!c)return;const r=c.getFullModelRange();t.executeEdits("setValue",[{range:r,text:o,forceMoveMarkers:!1}]),n("change",a()),n("update:value",a())}function P(){return t.getValue()}function $(){const o=t.getSelection();if(o){const c=t.getModel()?.getValueInRange(o),r=o.startLineNumber,f=o.startColumn,v=o.endLineNumber,m=o.endColumn,Q={startLineNumber:1,startColumn:1,endLineNumber:r,endColumn:f},G=t.getModel().getValueInRange(Q),H={startLineNumber:v,startColumn:m,endLineNumber:t.getModel().getLineCount(),endColumn:t.getModel().getLineMaxColumn(t.getModel().getLineCount())},J=t.getModel().getValueInRange(H);return{text:c,textBefore:G,textAfter:J}}return{}}return q(),N({isMonacoReady:k,reload(o){if(t==null){console.warn("[MonacoEditor] Monaco editor is not available for reload");return}t.setValue(o||"")},getMonacoEditor:j,setEditorContent:x,getEditorContent:a,scrollToTop:h,scrollToBottom:b,setEditorWordWrap:W,setEditorTheme:A,handleFullScreenClick:I,handleDownloadLogClick:V,getEditorMarkers:D,handleFormatCodeClick:y,getValue:P,setValue:K,getSelectCode:$,isChatBotActive:p,handleChatBotClick:_}),(o,c)=>{const r=e.resolveComponent("a-col"),f=e.resolveComponent("a-row");return e.openBlock(),e.createElementBlock("div",Y,[e.renderSlot(o.$slots,"header",{},void 0,!0),e.createElementVNode("div",Z,[e.createVNode(f,{class:"m-e-main_toolbar w-full flex",type:"flex",justify:"space-between",style:e.normalizeStyle(u.value?"background-color: #fff; box-shadow: 0px 2px 5px #ddd;":"background-color: #1e1e1e; box-shadow: 0px 2px 5px #111;")},{default:e.withCtx(()=>[e.createVNode(r,{class:"m-e-main_toolbar_left flex-1",style:e.normalizeStyle(u.value?"color: #000":"color: #fff")},{default:e.withCtx(()=>[e.createElementVNode("span",null,[e.renderSlot(o.$slots,"title",{},()=>[e.createTextVNode(e.toDisplayString(M.title),1)],!0)])]),_:3},8,["style"]),e.createVNode(r,{class:"m-e-main_toolbar_right",style:e.normalizeStyle(B.value)},{default:e.withCtx(()=>[e.createVNode(e.unref(s.SearchOutlined),{class:"icon",onClick:F}),e.createVNode(e.unref(s.UpCircleOutlined),{class:"icon",onClick:h}),e.createVNode(e.unref(s.DownCircleOutlined),{class:"icon",onClick:b}),e.createVNode(e.unref(s.FormatPainterOutlined),{class:"icon",onClick:y}),e.createVNode(e.unref(s.CloudDownloadOutlined),{class:"icon",onClick:V}),e.createVNode(e.unref(s.ClearOutlined),{class:"icon",onClick:U}),w.value?(e.openBlock(),e.createBlock(e.unref(s.RobotOutlined),{key:0,title:"聊天机器人",class:e.normalizeClass(["icon",{"icon-active":p.value}]),onClick:_},null,8,["class"])):e.createCommentVNode("",!0)]),_:1},8,["style"])]),_:3},8,["style"]),e.createElementVNode("div",{ref_key:"Editor",ref:d,class:"m-e-main_container"},null,512)]),e.renderSlot(o.$slots,"footer",{},void 0,!0)])}}}),te=C._export_sfc(ee,[["__scopeId","data-v-254c9227"]]);exports.default=te;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
System.register(["vue","@ant-design/icons-vue","./index-BH5PTZ_c.js","sql-formatter","ant-design-vue","lodash-es","@gct-paas/core"],(function(ae,Oe){"use strict";var S,u,B,R,N,D,k,x,T,v,C,i,w,h,F,U,d,W,A,q,z,I,j,K,P,$,Q,E,G,H,J;return{setters:[t=>{S=t.defineComponent,u=t.ref,B=t.watch,R=t.computed,N=t.onMounted,D=t.onUnmounted,k=t.resolveComponent,x=t.openBlock,T=t.createElementBlock,v=t.renderSlot,C=t.createElementVNode,i=t.createVNode,w=t.normalizeStyle,h=t.withCtx,F=t.createTextVNode,U=t.toDisplayString,d=t.unref,W=t.createBlock,A=t.normalizeClass,q=t.createCommentVNode},t=>{z=t.SearchOutlined,I=t.UpCircleOutlined,j=t.DownCircleOutlined,K=t.FormatPainterOutlined,P=t.CloudDownloadOutlined,$=t.ClearOutlined,Q=t.RobotOutlined},t=>{E=t.T,G=t.m,H=t._},t=>{J=t.format},null,null,null],execute:(function(){const t={class:"hex-monaco-editor m-e w-full h-full overflow-hidden"},le={class:"m-e-main"},ie=S({__name:"monaco-editor",props:{value:{default:""},title:{default:""},language:{default:"typescript"},theme:{default:E.DARK},readonly:{type:Boolean,default:!1},direction:{default:"bottom"},gapVal:{default:20}},emits:["update:value","change","editor-mounted","blur","focus","chat-bot-click"],setup(X,{expose:re,emit:ce}){const a=X,Y=u(!1);let c=null;B(()=>a.language,async o=>{e&&e.getModel()&&c&&c.editor.setModelLanguage(e.getModel(),o)});const n=ce,g=u();let e;const b=u(!0),Z=u(!1),f=u(!1),y=u(!1),_=u(!1),se=R(()=>({color:f.value?"#000":"#fff",marginRight:a.gapVal+"px"}));a.theme===E.VS&&(f.value=!0);let ue={value:a.value??"",language:a.language,automaticLayout:!0,theme:a.theme,readOnly:a.readonly,wordWrap:b.value?"on":"off",scrollBeyondLastLine:!1,minimap:{enabled:!0},tabSize:2,autoClosingBrackets:"always",autoClosingDelete:"always",autoClosingOvertype:"always",autoClosingQuotes:"always",comments:{ignoreEmptyLines:!0,insertSpace:!0},columnSelection:!1,folding:!0,fixedOverflowWidgets:!0,hover:{sticky:!0,above:!1}};async function de(){c=await G.loadMonaco(),ne(),ge(),a.value&&O()}async function fe(){await _api.apaas.basicConfig.getAiRagEnabled()==!0?_.value=!0:_.value=!1}function ge(){if(!c){console.warn("[MonacoEditor] Monaco editor is not available for initEditor");return}e=c.editor.create(g.value,ue),a.direction==="bottom"?V():a.direction==="top"&&L(),e.onDidChangeModelContent(()=>{n("change",l()),n("update:value",l())}),e.onDidBlurEditorText(()=>{n("blur",l()),n("update:value",l())}),e.onDidFocusEditorText(()=>{n("focus")}),Y.value=!0,n("editor-mounted",e)}function ee(o){e.setValue(o),n("change",l()),n("update:value",l())}function l(){return e.getValue()}function me(){if(!c)return console.warn("[MonacoEditor] Monaco editor is not available for getEditorMarkers"),[];const o=e.getModel();return o?c.editor.getModelMarkers({resource:o.uri}):[]}function pe(){if(!c){console.warn("[MonacoEditor] Monaco editor is not available for findByKeyword");return}try{e.focus(),e.setSelection(new c.Range(1,9999,1,1e4)),e.trigger("","actions.find",null)}catch(o){console.error(o)}}function L(){e.setScrollPosition({scrollTop:0})}function V(){e.revealLine(e.getModel().getLineCount())}function ve(){b.value=!b.value,b.value?e.updateOptions({wordWrap:"on"}):e.updateOptions({wordWrap:"off"})}function Ce(){f.value=!f.value,f.value?e.updateOptions({theme:"vs"}):e.updateOptions({theme:"vs-dark"})}function we(){g.value.fullscreenElement?(g.value.exitFullscreen(),Z.value=!1):(g.value.requestFullscreen(),Z.value=!0)}function te(){he(a.title,e.getValue())}function he(o,s){const r=window.URL||window.webkitURL||window,m=new Blob([s]),M=document.createEvent("MouseEvents");M.initMouseEvent("click",!0,!1,window,0,0,0,0,0,!1,!1,!1,!1,0,null);const p=document.createElementNS("http://www.w3.org/1999/xhtml","a");p.href=r.createObjectURL(m),p.download=o,p.dispatchEvent(M)}function O(){if(a.language=="sql"){const s=l(),r=J(s);e.setValue(r)}else e.getAction("editor.action.formatDocument").run();const o=l();n("change",o),n("update:value",o)}function be(){ee("")}function oe(){y.value=!y.value,n("chat-bot-click")}function ne(){e&&e.dispose()}function ye(){return e}N(()=>{de()}),D(()=>{ne()});function Me(o){const s=e.getModel();if(!s)return;const r=s.getFullModelRange();e.executeEdits("setValue",[{range:r,text:o,forceMoveMarkers:!1}]),n("change",l()),n("update:value",l())}function ke(){return e.getValue()}function xe(){const o=e.getSelection();if(o){const s=e.getModel()?.getValueInRange(o),r=o.startLineNumber,m=o.startColumn,M=o.endLineNumber,p=o.endColumn,Ee={startLineNumber:1,startColumn:1,endLineNumber:r,endColumn:m},_e=e.getModel().getValueInRange(Ee),Le={startLineNumber:M,startColumn:p,endLineNumber:e.getModel().getLineCount(),endColumn:e.getModel().getLineMaxColumn(e.getModel().getLineCount())},Ve=e.getModel().getValueInRange(Le);return{text:s,textBefore:_e,textAfter:Ve}}return{}}return fe(),re({isMonacoReady:Y,reload(o){if(e==null){console.warn("[MonacoEditor] Monaco editor is not available for reload");return}e.setValue(o||"")},getMonacoEditor:ye,setEditorContent:ee,getEditorContent:l,scrollToTop:L,scrollToBottom:V,setEditorWordWrap:ve,setEditorTheme:Ce,handleFullScreenClick:we,handleDownloadLogClick:te,getEditorMarkers:me,handleFormatCodeClick:O,getValue:ke,setValue:Me,getSelectCode:xe,isChatBotActive:y,handleChatBotClick:oe}),(o,s)=>{const r=k("a-col"),m=k("a-row");return x(),T("div",t,[v(o.$slots,"header",{},void 0,!0),C("div",le,[i(m,{class:"m-e-main_toolbar w-full flex",type:"flex",justify:"space-between",style:w(f.value?"background-color: #fff; box-shadow: 0px 2px 5px #ddd;":"background-color: #1e1e1e; box-shadow: 0px 2px 5px #111;")},{default:h(()=>[i(r,{class:"m-e-main_toolbar_left flex-1",style:w(f.value?"color: #000":"color: #fff")},{default:h(()=>[C("span",null,[v(o.$slots,"title",{},()=>[F(U(X.title),1)],!0)])]),_:3},8,["style"]),i(r,{class:"m-e-main_toolbar_right",style:w(se.value)},{default:h(()=>[i(d(z),{class:"icon",onClick:pe}),i(d(I),{class:"icon",onClick:L}),i(d(j),{class:"icon",onClick:V}),i(d(K),{class:"icon",onClick:O}),i(d(P),{class:"icon",onClick:te}),i(d($),{class:"icon",onClick:be}),_.value?(x(),W(d(Q),{key:0,title:"聊天机器人",class:A(["icon",{"icon-active":y.value}]),onClick:oe},null,8,["class"])):q("",!0)]),_:1},8,["style"])]),_:3},8,["style"]),C("div",{ref_key:"Editor",ref:g,class:"m-e-main_container"},null,512)]),v(o.$slots,"footer",{},void 0,!0)])}}}),Se=ae("default",H(ie,[["__scopeId","data-v-254c9227"]]))})}}));
|