super-page-runtime 2.3.21 → 2.3.22-tmp2
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/es/components/runtime/utils/ai-chat-util.mjs +16 -0
- package/dist/es/components/runtime/utils/{anchor-util.js → anchor-util.mjs} +5 -5
- package/dist/es/components/runtime/utils/api/api-util.mjs +4 -0
- package/dist/es/components/runtime/utils/api/{page-expose-util.js → page-expose-util.mjs} +26 -27
- package/dist/es/components/runtime/utils/assemblys-config.mjs +20 -0
- package/dist/es/components/runtime/utils/charts/{chart-columnline-util.js → chart-columnline-util.mjs} +4 -4
- package/dist/es/components/runtime/utils/charts/{chart-gauge-util.js → chart-gauge-util.mjs} +9 -9
- package/dist/es/components/runtime/utils/charts/{chart-pie-util.js → chart-pie-util.mjs} +11 -11
- package/dist/es/components/runtime/utils/charts/{chart-radar-util.js → chart-radar-util.mjs} +4 -4
- package/dist/es/components/runtime/utils/charts/{chart-scatter-util.js → chart-scatter-util.mjs} +12 -12
- package/dist/es/components/runtime/utils/charts/{chart-util.js → chart-util.mjs} +13 -13
- package/dist/es/components/runtime/utils/{common-util.js → common-util.mjs} +13 -14
- package/dist/es/components/runtime/utils/events/{event-util.js → event-util.mjs} +94 -95
- package/dist/es/components/runtime/utils/events/{print-label.js → print-label.mjs} +2 -2
- package/dist/es/components/runtime/utils/events/standard-event.mjs +1166 -0
- package/dist/es/components/runtime/utils/events/{validator-util.js → validator-util.mjs} +35 -37
- package/dist/es/components/runtime/utils/form/scan-util.mjs +93 -0
- package/dist/es/components/runtime/utils/i18n-util.mjs +14 -0
- package/dist/es/components/runtime/utils/page-helper-util.mjs +386 -0
- package/dist/es/components/runtime/utils/{page-init-util.js → page-init-util.mjs} +102 -104
- package/dist/es/components/runtime/utils/{page-store.js → page-store.mjs} +7 -7
- package/dist/es/components/runtime/utils/{store-util.js → store-util.mjs} +1 -1
- package/dist/es/components/runtime/utils/{table-utils.js → table-utils.mjs} +16 -16
- package/dist/es/components/runtime/utils/tree-utils.mjs +68 -0
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/button/button/{button-runtime.vue2.js → button-runtime.vue2.mjs} +5 -5
- package/dist/es/components/runtime/views/assemblys/button/button-group/{buttongroup-runtime.vue.js → buttongroup-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/button/button-group/{buttongroup-runtime.vue2.js → buttongroup-runtime.vue2.mjs} +5 -5
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/button/dropdown/{dropdown-runtime.vue2.js → dropdown-runtime.vue2.mjs} +7 -7
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.mjs +6 -0
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.mjs +21 -0
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/column-line/{column-line-runtime.vue2.js → column-line-runtime.vue2.mjs} +6 -6
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/{common-chart-header.vue.js → common-chart-header.vue.mjs} +5 -5
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.mjs +59 -0
- package/dist/es/components/runtime/views/assemblys/chart/gauge/{gauge-runtime.vue.js → gauge-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/chart/gauge/{gauge-runtime.vue2.js → gauge-runtime.vue2.mjs} +6 -6
- package/dist/es/components/runtime/views/assemblys/chart/pie/{pie-runtime.vue.js → pie-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/chart/pie/{pie-runtime.vue2.js → pie-runtime.vue2.mjs} +8 -8
- package/dist/es/components/runtime/views/assemblys/chart/radar/{radar-runtime.vue.js → radar-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/chart/radar/{radar-runtime.vue2.js → radar-runtime.vue2.mjs} +6 -6
- package/dist/es/components/runtime/views/assemblys/chart/scatter/{scatter-runtime.vue.js → scatter-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/chart/scatter/{scatter-runtime.vue2.js → scatter-runtime.vue2.mjs} +6 -6
- package/dist/es/components/runtime/views/assemblys/chart/table/{chart-table-util.js → chart-table-util.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/chart/table/{group-column-item.vue.js → group-column-item.vue.mjs} +1 -1
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/{group-column.vue.js → group-column.vue.mjs} +4 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/{normal-column.vue.js → normal-column.vue.mjs} +13 -17
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/{table-runtime.vue2.js → table-runtime.vue2.mjs} +8 -8
- package/dist/es/components/runtime/views/assemblys/common/{event-call-component.vue.js → event-call-component.vue.mjs} +2 -2
- package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/{export-form-report-dialog.vue.js → export-form-report-dialog.vue.mjs} +2 -2
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/{file-task-notice.vue.js → file-task-notice.vue.mjs} +1 -1
- package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.mjs +27 -0
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/{remove-signer-dialog.vue.js → remove-signer-dialog.vue.mjs} +1 -1
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/{remove-transactor-dialog.vue.js → remove-transactor-dialog.vue.mjs} +1 -1
- package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/{save-chart-condition-dialog.vue.js → save-chart-condition-dialog.vue.mjs} +2 -2
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/card/{card-runtime.vue.js → card-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/container/card/{card-runtime.vue2.js → card-runtime.vue2.mjs} +6 -6
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/collapse/{collapse-runtime.vue2.js → collapse-runtime.vue2.mjs} +8 -8
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/container/{container-runtime.vue2.js → container-runtime.vue2.mjs} +6 -6
- package/dist/es/components/runtime/views/assemblys/container/fixed/{FixedBox.vue.js → FixedBox.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/container/fixed/{YxAffix.vue.js → YxAffix.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/flex/{flex-runtime.vue2.js → flex-runtime.vue2.mjs} +7 -7
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/form/{form-runtime.vue2.js → form-runtime.vue2.mjs} +7 -7
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.mjs +14 -0
- package/dist/es/components/runtime/views/assemblys/container/tabs/{tabs-runtime.vue.js → tabs-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/container/tabs/{tabs-runtime.vue2.js → tabs-runtime.vue2.mjs} +7 -7
- package/dist/es/components/runtime/views/assemblys/container/tools/{tools-runtime.vue.js → tools-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/container/tools/{tools-runtime.vue2.js → tools-runtime.vue2.mjs} +4 -4
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/data/bar-code/{barcode-runtime.vue2.js → barcode-runtime.vue2.mjs} +19 -19
- package/dist/es/components/runtime/views/assemblys/data/table/{main-table-runtime.vue.js → main-table-runtime.vue.mjs} +10 -10
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/{sub-table-runtime.vue.js → sub-table-runtime.vue.mjs} +8 -8
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/{table-runtime.vue2.js → table-runtime.vue2.mjs} +31 -31
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.mjs +7 -0
- package/dist/es/components/runtime/views/assemblys/data/tree/{tree-runtime.vue2.js → tree-runtime.vue2.mjs} +31 -31
- package/dist/es/components/runtime/views/assemblys/error-render.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/checkbox/{checkbox-runtime.vue2.js → checkbox-runtime.vue2.mjs} +9 -9
- package/dist/es/components/runtime/views/assemblys/form/common/{title-suffix-element.vue.js → title-suffix-element.vue.mjs} +4 -4
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/custom/{custom-runtime.vue2.js → custom-runtime.vue2.mjs} +14 -14
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/date-picker/{datepicker-runtime.vue2.js → datepicker-runtime.vue2.mjs} +10 -10
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/{depttree-runtime.vue2.js → depttree-runtime.vue2.mjs} +10 -10
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/divider/{divider-runtime.vue2.js → divider-runtime.vue2.mjs} +5 -5
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/file-upload/{fileupload-runtime.vue2.js → fileupload-runtime.vue2.mjs} +20 -22
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/input-number/{input-number-runtime.vue2.js → input-number-runtime.vue2.mjs} +9 -9
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/input-text/{inputtext-runtime.vue2.js → inputtext-runtime.vue2.mjs} +33 -34
- package/dist/es/components/runtime/views/assemblys/form/label/{label-runtime.vue.js → label-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/form/label/{label-runtime.vue2.js → label-runtime.vue2.mjs} +8 -8
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/link/{link-runtime.vue2.js → link-runtime.vue2.mjs} +8 -8
- package/dist/es/components/runtime/views/assemblys/form/placeholder/{placeholder-runtime.vue.js → placeholder-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/form/placeholder/{placeholder-runtime.vue2.js → placeholder-runtime.vue2.mjs} +1 -1
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/radio/{radio-runtime.vue2.js → radio-runtime.vue2.mjs} +8 -8
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.mjs +8 -0
- package/dist/es/components/runtime/views/assemblys/form/rich-text/{richtext-runtime.vue2.js → richtext-runtime.vue2.mjs} +7 -7
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/select/{select-runtime.vue2.js → select-runtime.vue2.mjs} +10 -10
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/{separatelabel-runtime.vue2.js → separatelabel-runtime.vue2.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/switch/{switch-runtime.vue2.js → switch-runtime.vue2.mjs} +9 -9
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/tag/{tag-runtime.vue2.js → tag-runtime.vue2.mjs} +15 -15
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/form/textarea/{textarea-runtime.vue2.js → textarea-runtime.vue2.mjs} +9 -9
- package/dist/es/components/runtime/views/assemblys/{home-chart-render.vue.js → home-chart-render.vue.mjs} +11 -11
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/{object-render.vue.js → object-render.vue.mjs} +15 -15
- package/dist/es/components/runtime/views/assemblys/object-render.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue.mjs +6 -0
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/component/{workflow-opinion-box.vue.js → workflow-opinion-box.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/workflow/component/{workflow-opinion-box.vue2.js → workflow-opinion-box.vue2.mjs} +7 -7
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/{extract-workflow-runtime-dialog.vue.js → extract-workflow-runtime-dialog.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/{extract-workflow-runtime-dialog.vue2.js → extract-workflow-runtime-dialog.vue2.mjs} +2 -2
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/{extract-workflow-runtime.vue.js → extract-workflow-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/{extract-workflow-runtime.vue2.js → extract-workflow-runtime.vue2.mjs} +6 -6
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/{pictureflow-runtime.vue2.js → pictureflow-runtime.vue2.mjs} +9 -9
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/{textflow-runtime.vue2.js → textflow-runtime.vue2.mjs} +7 -7
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/{workflowbutton-runtime.vue.js → workflowbutton-runtime.vue.mjs} +3 -3
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/{workflowbutton-runtime.vue2.js → workflowbutton-runtime.vue2.mjs} +4 -4
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.mjs +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.mjs +18 -0
- package/dist/es/components/runtime/views/{home-chart.vue.js → home-chart.vue.mjs} +8 -8
- package/dist/es/components/runtime/views/home-chart.vue2.mjs +4 -0
- package/dist/es/components/runtime/views/{super-page-dialog.vue.js → super-page-dialog.vue.mjs} +1 -1
- package/dist/es/components/runtime/views/super-page-dialog.vue3.mjs +5 -0
- package/dist/es/components/runtime/views/super-page.vue.mjs +7 -0
- package/dist/es/components/runtime/views/{super-page.vue2.js → super-page.vue2.mjs} +90 -94
- package/dist/es/{index.js → index.mjs} +12 -12
- package/dist/es/style.css +136 -136
- package/dist/lib/_virtual/_plugin-vue_export-helper.cjs +6 -0
- package/dist/lib/assets/chart-themes/bar-theme.cjs +2 -0
- package/dist/lib/assets/chart-themes/bar-theme.d.ts +6 -0
- package/dist/lib/assets/chart-themes/gauge-theme.cjs +2 -0
- package/dist/lib/assets/chart-themes/gauge-theme.d.ts +6 -0
- package/dist/lib/assets/chart-themes/pie-theme.cjs +2 -0
- package/dist/lib/assets/chart-themes/pie-theme.d.ts +6 -0
- package/dist/lib/assets/chart-themes/radar-theme.cjs +2 -0
- package/dist/lib/assets/chart-themes/radar-theme.d.ts +6 -0
- package/dist/lib/assets/chart-themes/scatter-theme.cjs +2 -0
- package/dist/lib/assets/chart-themes/scatter-theme.d.ts +6 -0
- package/dist/lib/assets/file.png.cjs +2 -0
- package/dist/lib/assets/folder.png.cjs +2 -0
- package/dist/lib/components/runtime/index.d.ts +5 -0
- package/dist/lib/components/runtime/utils/ai-chat-util.cjs +13 -0
- package/dist/lib/components/runtime/utils/anchor-util.cjs +62 -0
- package/dist/lib/components/runtime/utils/anchor-util.d.ts +13 -0
- package/dist/lib/components/runtime/utils/api/api-util.cjs +3 -0
- package/dist/lib/components/runtime/utils/api/api-util.d.ts +1 -0
- package/dist/lib/components/runtime/utils/api/page-expose-util.cjs +169 -0
- package/dist/lib/components/runtime/utils/api/page-expose-util.d.ts +1 -0
- package/dist/lib/components/runtime/utils/assemblys-config.cjs +16 -0
- package/dist/lib/components/runtime/utils/barcode-util.cjs +10 -0
- package/dist/lib/components/runtime/utils/barcode-util.d.ts +8 -0
- package/dist/lib/components/runtime/utils/charts/chart-columnline-util.cjs +137 -0
- package/dist/lib/components/runtime/utils/charts/chart-gauge-util.cjs +34 -0
- package/dist/lib/components/runtime/utils/charts/chart-pie-util.cjs +78 -0
- package/dist/lib/components/runtime/utils/charts/chart-radar-util.cjs +52 -0
- package/dist/lib/components/runtime/utils/charts/chart-scatter-util.cjs +43 -0
- package/dist/lib/components/runtime/utils/charts/chart-util.cjs +244 -0
- package/dist/lib/components/runtime/utils/charts/chart-util.d.ts +115 -0
- package/dist/lib/components/runtime/utils/common-util.cjs +91 -0
- package/dist/lib/components/runtime/utils/common-util.d.ts +33 -0
- package/dist/lib/components/runtime/utils/eventBus.cjs +3 -0
- package/dist/lib/components/runtime/utils/eventBus.d.ts +7 -0
- package/dist/lib/components/runtime/utils/events/event-util.cjs +345 -0
- package/dist/lib/components/runtime/utils/events/event-util.d.ts +92 -0
- package/dist/lib/components/runtime/utils/events/print-label.cjs +97 -0
- package/dist/lib/components/runtime/utils/events/print-label.d.ts +5 -0
- package/dist/lib/components/runtime/utils/events/standard-event.cjs +1101 -0
- package/dist/lib/components/runtime/utils/events/standard-event.d.ts +99 -0
- package/dist/lib/components/runtime/utils/events/validator-util.cjs +296 -0
- package/dist/lib/components/runtime/utils/events/validator-util.d.ts +25 -0
- package/dist/lib/components/runtime/utils/form/date-shortcuts.cjs +34 -0
- package/dist/lib/components/runtime/utils/form/date-shortcuts.d.ts +7 -0
- package/dist/{es/components/runtime/utils/form/scan-util.js → lib/components/runtime/utils/form/scan-util.cjs} +6 -9
- package/dist/lib/components/runtime/utils/global-refs.cjs +42 -0
- package/dist/lib/components/runtime/utils/global-refs.d.ts +65 -0
- package/dist/lib/components/runtime/utils/i18n-util.cjs +11 -0
- package/dist/lib/components/runtime/utils/i18n-util.d.ts +1 -0
- package/dist/lib/components/runtime/utils/interfaces/page-design-types.cjs +4 -0
- package/dist/lib/components/runtime/utils/interfaces/page-design-types.d.ts +247 -0
- package/dist/lib/components/runtime/utils/page-helper-util.cjs +354 -0
- package/dist/lib/components/runtime/utils/page-helper-util.d.ts +174 -0
- package/dist/lib/components/runtime/utils/page-init-util.cjs +244 -0
- package/dist/lib/components/runtime/utils/page-init-util.d.ts +49 -0
- package/dist/lib/components/runtime/utils/page-permission-util.cjs +26 -0
- package/dist/lib/components/runtime/utils/page-permission-util.d.ts +26 -0
- package/dist/lib/components/runtime/utils/page-store.cjs +50 -0
- package/dist/lib/components/runtime/utils/page-store.d.ts +58 -0
- package/dist/lib/components/runtime/utils/store-util.cjs +11 -0
- package/dist/lib/components/runtime/utils/store-util.d.ts +15 -0
- package/dist/lib/components/runtime/utils/store.cjs +3 -0
- package/dist/lib/components/runtime/utils/store.d.ts +2 -0
- package/dist/lib/components/runtime/utils/table-utils.cjs +68 -0
- package/dist/lib/components/runtime/utils/table-utils.d.ts +36 -0
- package/dist/lib/components/runtime/utils/tree-utils.cjs +54 -0
- package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue2.cjs +24 -0
- package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.cjs +17 -0
- package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.cjs +35 -0
- package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.cjs +17 -0
- package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.cjs +41 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.cjs +11 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.cjs +11 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue.cjs +53 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.cjs +48 -0
- package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.cjs +24 -0
- package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.cjs +34 -0
- package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.cjs +24 -0
- package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.cjs +24 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.cjs +402 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.d.ts +121 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue.cjs +6 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue.cjs +36 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue.cjs +13 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue2.cjs +249 -0
- package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.cjs +16 -0
- package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.d.ts +5 -0
- package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.cjs +32 -0
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +28 -0
- package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.cjs +32 -0
- package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.d.ts +27 -0
- package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.cjs +19 -0
- package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.d.ts +59 -0
- package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.cjs +12 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.d.ts +35 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.cjs +21 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.d.ts +26 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.cjs +13 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.d.ts +35 -0
- package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.cjs +30 -0
- package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.d.ts +31 -0
- package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.cjs +15 -0
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.d.ts +26 -0
- package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue2.cjs +21 -0
- package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.cjs +17 -0
- package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue2.cjs +15 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.cjs +27 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.d.ts +94 -0
- package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.cjs +79 -0
- package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.cjs +20 -0
- package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue2.cjs +15 -0
- package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.cjs +12 -0
- package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.cjs +88 -0
- package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.cjs +43 -0
- package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.cjs +59 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue.cjs +382 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.cjs +322 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue2.cjs +81 -0
- package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.cjs +124 -0
- package/dist/lib/components/runtime/views/assemblys/error-render.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/error-render.vue.d.ts +22 -0
- package/dist/lib/components/runtime/views/assemblys/error-render.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.cjs +57 -0
- package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue.cjs +35 -0
- package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.cjs +57 -0
- package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.cjs +91 -0
- package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.cjs +47 -0
- package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.cjs +20 -0
- package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.cjs +65 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.cjs +20 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.cjs +70 -0
- package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue2.cjs +31 -0
- package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue2.cjs +26 -0
- package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.cjs +13 -0
- package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.cjs +75 -0
- package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.cjs +188 -0
- package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue2.cjs +130 -0
- package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.cjs +11 -0
- package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.cjs +29 -0
- package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.cjs +38 -0
- package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.cjs +20 -0
- package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.cjs +73 -0
- package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.d.ts +17 -0
- package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/object-render.vue.cjs +132 -0
- package/dist/lib/components/runtime/views/assemblys/object-render.vue.d.ts +17 -0
- package/dist/lib/components/runtime/views/assemblys/object-render.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.d.ts +14 -0
- package/dist/lib/components/runtime/views/assemblys/page-bottom.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.d.ts +14 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.cjs +23 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.cjs +23 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.cjs +34 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.cjs +17 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.cjs +20 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.cjs +19 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.cjs +3 -0
- package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.cjs +14 -0
- package/dist/lib/components/runtime/views/home-chart.vue.cjs +38 -0
- package/dist/lib/components/runtime/views/home-chart.vue.d.ts +23 -0
- package/dist/lib/components/runtime/views/home-chart.vue2.cjs +3 -0
- package/dist/lib/components/runtime/views/super-page-dialog.vue.cjs +23 -0
- package/dist/lib/components/runtime/views/super-page-dialog.vue.d.ts +40 -0
- package/dist/lib/components/runtime/views/super-page-dialog.vue3.cjs +3 -0
- package/dist/lib/components/runtime/views/super-page.vue.cjs +5 -0
- package/dist/lib/components/runtime/views/super-page.vue.d.ts +135 -0
- package/dist/lib/components/runtime/views/super-page.vue2.cjs +264 -0
- package/dist/lib/favicon.ico +0 -0
- package/dist/lib/i18n/langs/cn.cjs +2 -0
- package/dist/lib/i18n/langs/en.cjs +2 -0
- package/dist/lib/index.cjs +6 -0
- package/dist/lib/index.d.ts +16 -0
- package/dist/lib/style.css +996 -0
- package/dist/umd/favicon.ico +0 -0
- package/dist/umd/index.full.min.js +7429 -0
- package/dist/umd/style.css +996 -0
- package/package.json +5 -4
- package/dist/es/components/runtime/utils/ai-chat-util.js +0 -16
- package/dist/es/components/runtime/utils/api/api-util.js +0 -4
- package/dist/es/components/runtime/utils/assemblys-config.js +0 -20
- package/dist/es/components/runtime/utils/events/standard-event.js +0 -1169
- package/dist/es/components/runtime/utils/i18n-util.js +0 -14
- package/dist/es/components/runtime/utils/page-helper-util.js +0 -387
- package/dist/es/components/runtime/utils/tree-utils.js +0 -73
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.js +0 -6
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.js +0 -21
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.js +0 -64
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.js +0 -32
- package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +0 -14
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +0 -7
- package/dist/es/components/runtime/views/assemblys/error-render.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +0 -8
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/object-render.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue.js +0 -6
- package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.js +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.js +0 -4
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.js +0 -18
- package/dist/es/components/runtime/views/home-chart.vue2.js +0 -4
- package/dist/es/components/runtime/views/super-page-dialog.vue3.js +0 -5
- package/dist/es/components/runtime/views/super-page.vue.js +0 -7
- package/dist/es.zip +0 -0
- /package/dist/es/_virtual/{_plugin-vue_export-helper.js → _plugin-vue_export-helper.mjs} +0 -0
- /package/dist/es/assets/chart-themes/{bar-theme.js → bar-theme.mjs} +0 -0
- /package/dist/es/assets/chart-themes/{gauge-theme.js → gauge-theme.mjs} +0 -0
- /package/dist/es/assets/chart-themes/{pie-theme.js → pie-theme.mjs} +0 -0
- /package/dist/es/assets/chart-themes/{radar-theme.js → radar-theme.mjs} +0 -0
- /package/dist/es/assets/chart-themes/{scatter-theme.js → scatter-theme.mjs} +0 -0
- /package/dist/es/assets/{file.png.js → file.png.mjs} +0 -0
- /package/dist/es/assets/{folder.png.js → folder.png.mjs} +0 -0
- /package/dist/es/components/runtime/utils/{barcode-util.js → barcode-util.mjs} +0 -0
- /package/dist/es/components/runtime/utils/{eventBus.js → eventBus.mjs} +0 -0
- /package/dist/es/components/runtime/utils/form/{date-shortcuts.js → date-shortcuts.mjs} +0 -0
- /package/dist/es/components/runtime/utils/{global-refs.js → global-refs.mjs} +0 -0
- /package/dist/es/components/runtime/utils/interfaces/{page-design-types.js → page-design-types.mjs} +0 -0
- /package/dist/es/components/runtime/utils/{page-permission-util.js → page-permission-util.mjs} +0 -0
- /package/dist/es/components/runtime/utils/{store.js → store.mjs} +0 -0
- /package/dist/es/components/runtime/views/assemblys/chart/common/{common-chart-header-breadcrumb.vue.js → common-chart-header-breadcrumb.vue.mjs} +0 -0
- /package/dist/es/components/runtime/views/assemblys/chart/common/{common-chart-header-group.vue.js → common-chart-header-group.vue.mjs} +0 -0
- /package/dist/es/components/runtime/views/assemblys/chart/table/{table-pageination.vue.js → table-pageination.vue.mjs} +0 -0
- /package/dist/es/components/runtime/views/assemblys/common/{remove-signer-table.vue.js → remove-signer-table.vue.mjs} +0 -0
- /package/dist/es/components/runtime/views/assemblys/common/{task-informition-dialog.vue.js → task-informition-dialog.vue.mjs} +0 -0
- /package/dist/es/components/runtime/views/assemblys/container/fixed/{FixedBox.vue2.js → FixedBox.vue2.mjs} +0 -0
- /package/dist/es/components/runtime/views/assemblys/container/fixed/{YxAffix.vue2.js → YxAffix.vue2.mjs} +0 -0
- /package/dist/es/components/runtime/views/assemblys/{error-render.vue.js → error-render.vue.mjs} +0 -0
- /package/dist/es/i18n/langs/{cn.js → cn.mjs} +0 -0
- /package/dist/es/i18n/langs/{en.js → en.mjs} +0 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
module.exports = { theme1: { color: ["#43C2C0", "#978DEB", "#FFBC5D", "#50ADFC", "#5470c6", "#91cc75", "#fac858", "#ee6666", "#73c0de", "#3ba272", "#fc8452", "#9a60b4", "#ea7ccc"] }, theme2: { color: ["#5FC8FB", "#9DE3CE", "#FFB47B", "#F88D7D", "#5470c6", "#91cc75", "#fac858", "#ee6666", "#73c0de", "#3ba272", "#fc8452", "#9a60b4", "#ea7ccc"] }, theme3: { color: ["#95C0F7", "#D3DE8F", "#61D4EB", "#F0BB50", "#5470c6", "#91cc75", "#fac858", "#ee6666", "#73c0de", "#3ba272", "#fc8452", "#9a60b4", "#ea7ccc"] } };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
module.exports = { theme1: { color: ["red", "#5470c6", "#91cc75", "#fac858", "#ee6666", "#73c0de", "#3ba272", "#fc8452", "#9a60b4", "#ea7ccc"] }, theme2: { color: ["yellow", "#5470c6", "#91cc75", "#fac858", "#ee6666", "#73c0de", "#3ba272", "#fc8452", "#9a60b4", "#ea7ccc"] }, theme3: { color: ["green", "#5470c6", "#91cc75", "#fac858", "#ee6666", "#73c0de", "#3ba272", "#fc8452", "#9a60b4", "#ea7ccc"] } };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
module.exports = { theme1: { color: ["#50ADFC", "#FFBC5D", "#FF8484", "#978DEB", "#43C2C0", "#5470c6", "#91cc75", "#fac858", "#ee6666", "#73c0de", "#3ba272", "#fc8452", "#9a60b4", "#ea7ccc"] }, theme2: { color: ["#5FC8FB", "#FFB47B", "#FFE101", "#F97C6D", "#8CD193", "#5470c6", "#91cc75", "#fac858", "#ee6666", "#73c0de", "#3ba272", "#fc8452", "#9a60b4", "#ea7ccc"] }, theme3: { color: ["#D3DE8F", "#F961B0", "#F0BB50", "#978DEB", "#95C0F7", "#5470c6", "#91cc75", "#fac858", "#ee6666", "#73c0de", "#3ba272", "#fc8452", "#9a60b4", "#ea7ccc"] } };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
module.exports = { theme1: { color: ["#50ADFC", "#978DEB", "#5470c6", "#91cc75", "#fac858", "#ee6666", "#73c0de", "#3ba272", "#fc8452", "#9a60b4", "#ea7ccc"] }, theme2: { color: ["#5FC8FB", "#95A4DF", "#5470c6", "#91cc75", "#fac858", "#ee6666", "#73c0de", "#3ba272", "#fc8452", "#9a60b4", "#ea7ccc"] }, theme3: { color: ["#D3DE8F", "#61D4EB", "#5470c6", "#91cc75", "#fac858", "#ee6666", "#73c0de", "#3ba272", "#fc8452", "#9a60b4", "#ea7ccc"] } };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
module.exports = { theme1: { color: ["red", "#5470c6", "#91cc75", "#fac858", "#ee6666", "#73c0de", "#3ba272", "#fc8452", "#9a60b4", "#ea7ccc"] }, theme2: { color: ["yellow", "#5470c6", "#91cc75", "#fac858", "#ee6666", "#73c0de", "#3ba272", "#fc8452", "#9a60b4", "#ea7ccc"] }, theme3: { color: ["green", "#5470c6", "#91cc75", "#fac858", "#ee6666", "#73c0de", "#3ba272", "#fc8452", "#9a60b4", "#ea7ccc"] } };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
module.exports = "data:image/png;base64,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";
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
module.exports = "data:image/png;base64,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";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
+
const e = require("agilebuilder-ui"), t = require("./api/page-expose-util.cjs");
|
|
4
|
+
function o(e2) {
|
|
5
|
+
const o2 = t.functions.getFormViewData(e2), r2 = e2.propTitleMap, a2 = {};
|
|
6
|
+
for (const e3 in o2) Array.isArray(o2[e3]) || r2 && r2[e3] && (a2[r2[e3]] = o2[e3]);
|
|
7
|
+
return a2;
|
|
8
|
+
}
|
|
9
|
+
function r(t2, o2) {
|
|
10
|
+
t2 && (e.setActiveMenuToChatAiStore({ menuCode: o2.menuCode, menuName: o2.label }), e.setPageInfoToChatStore(o2, { instance: t2, exposeProxy: t2.exposeProxy, pageType: o2.pageType }));
|
|
11
|
+
}
|
|
12
|
+
const a = { getFormFormatDataUtil: o, setPageToChatStore: r };
|
|
13
|
+
exports.default = a, exports.getFormFormatDataUtil = o, exports.setPageToChatStore = r;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const e = require("./page-helper-util.cjs"), t = require("./global-refs.cjs"), o = require("vue");
|
|
4
|
+
function n(e2, t2 = {}) {
|
|
5
|
+
const { checkInterval: n2 = 50, stableCount: i2 = 2, maxWaitTime: c = 3e3 } = t2;
|
|
6
|
+
let l = -1, r = 0, s = 0;
|
|
7
|
+
const u = () => {
|
|
8
|
+
const t3 = document.documentElement.scrollHeight || document.body.scrollHeight;
|
|
9
|
+
if (t3 === l) {
|
|
10
|
+
if (r++, r >= i2) return void o.nextTick(() => {
|
|
11
|
+
e2();
|
|
12
|
+
});
|
|
13
|
+
} else l = t3, r = 0;
|
|
14
|
+
s += n2, s >= c ? o.nextTick(() => {
|
|
15
|
+
e2();
|
|
16
|
+
}) : setTimeout(u, n2);
|
|
17
|
+
};
|
|
18
|
+
o.nextTick(() => {
|
|
19
|
+
u();
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
function i(e2) {
|
|
23
|
+
let t2 = null;
|
|
24
|
+
if (e2 && e2.$el ? t2 = e2.$el : e2 instanceof HTMLElement && (t2 = e2), t2) {
|
|
25
|
+
t2.scrollIntoView({ behavior: "smooth", block: "start", inline: "nearest" });
|
|
26
|
+
const e3 = function(e4) {
|
|
27
|
+
let t3 = e4.parentElement;
|
|
28
|
+
for (; t3; ) {
|
|
29
|
+
const e5 = window.getComputedStyle(t3).overflowY;
|
|
30
|
+
if ("auto" === e5 || "scroll" === e5) return t3;
|
|
31
|
+
t3 = t3.parentElement;
|
|
32
|
+
}
|
|
33
|
+
return document.documentElement || document.body;
|
|
34
|
+
}(t2);
|
|
35
|
+
if (e3) {
|
|
36
|
+
const o2 = t2.offsetTop;
|
|
37
|
+
e3.scrollTo({ top: o2 - 20, behavior: "smooth" });
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
exports.scrollIntoComponentWithCode = function(e2, n2) {
|
|
42
|
+
const c = t.getComponentRefByCode(e2, n2);
|
|
43
|
+
c && o.nextTick(() => {
|
|
44
|
+
i(c);
|
|
45
|
+
});
|
|
46
|
+
}, exports.scrollIntoComponentWithUuid = function(e2, n2) {
|
|
47
|
+
const c = t.getComponentRef(e2, n2);
|
|
48
|
+
c && o.nextTick(() => {
|
|
49
|
+
i(c);
|
|
50
|
+
});
|
|
51
|
+
}, exports.scrollIntoViewWithContainer = function(o2, c) {
|
|
52
|
+
if (o2 && 0 !== o2.length) for (let l = 0; l < o2.length; l++) {
|
|
53
|
+
const { uuid: r, conditions: s } = o2[l];
|
|
54
|
+
if (e.caculateShowCondition(c, s)) {
|
|
55
|
+
n(() => {
|
|
56
|
+
const e2 = t.getComponentRef(c, r);
|
|
57
|
+
e2 && i(e2);
|
|
58
|
+
});
|
|
59
|
+
break;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 滚动到指定 UUID 的组件
|
|
3
|
+
* @param uuid 组件 UUID
|
|
4
|
+
* @param pageContext 页面上下文
|
|
5
|
+
*/
|
|
6
|
+
export declare function scrollIntoComponentWithUuid(pageContext: any, uuid: string): void;
|
|
7
|
+
/**
|
|
8
|
+
* 滚动到指定 code 的组件
|
|
9
|
+
* @param pageContext 页面上下文
|
|
10
|
+
* @param code 组件 code
|
|
11
|
+
*/
|
|
12
|
+
export declare function scrollIntoComponentWithCode(pageContext: any, code: string): void;
|
|
13
|
+
export declare function scrollIntoViewWithContainer(anchorConditions: any[], pageContext: any): void;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const e = require("element-plus"), s = require("./page-expose-util.cjs"), n = require("../events/standard-event.cjs");
|
|
3
|
+
s.functions.standardEvents = n.standardEvents, window.$PageUtil = s.functions, window.$message = e.ElMessage, window.$messageBox = e.ElMessageBox;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const e = require("../page-helper-util.cjs"), t = require("../global-refs.cjs"), o = require("../eventBus.cjs"), n = require("agilebuilder-ui"), a = require("../events/standard-event.cjs"), i = require("../events/validator-util.cjs"), r = require("../common-util.cjs"), s = require("../page-init-util.cjs"), l = require("../events/event-util.cjs"), c = require("../table-utils.cjs"), u = require("../anchor-util.cjs"), d = { showElement: function(e2, o2, n2) {
|
|
4
|
+
n2 ? g(e2, "showElement", o2) : o2.forEach((o3) => {
|
|
5
|
+
const n3 = t.getComponentRefByCode(e2, o3);
|
|
6
|
+
n3 ? n3.show() : console.error(`未找到code为${o3}的组件`);
|
|
7
|
+
});
|
|
8
|
+
}, hideElement: function(e2, o2, n2) {
|
|
9
|
+
n2 ? g(e2, "hideElement", o2) : o2.forEach((o3) => {
|
|
10
|
+
const n3 = t.getComponentRefByCode(e2, o3);
|
|
11
|
+
n3 ? n3.hide() : console.error(`未找到code为${o3}的组件`);
|
|
12
|
+
});
|
|
13
|
+
}, enableElement: function(e2, o2, n2) {
|
|
14
|
+
n2 ? g(e2, "enableElement", o2) : o2.forEach((o3) => {
|
|
15
|
+
const n3 = t.getComponentRefByCode(e2, o3);
|
|
16
|
+
if (n3) {
|
|
17
|
+
const e3 = n3.getConfigure();
|
|
18
|
+
e3 && e3.runtime.props && (e3.runtime.props.state = "enabled");
|
|
19
|
+
} else console.error(`未找到code为${o3}的组件`);
|
|
20
|
+
});
|
|
21
|
+
}, disableElement: function(e2, o2, n2) {
|
|
22
|
+
n2 ? g(e2, "disableElement", o2) : o2.forEach((o3) => {
|
|
23
|
+
const n3 = t.getComponentRefByCode(e2, o3);
|
|
24
|
+
if (n3) {
|
|
25
|
+
const e3 = n3.getConfigure();
|
|
26
|
+
e3 && e3.runtime.props && (e3.runtime.props.state = "disabled");
|
|
27
|
+
} else console.error(`未找到code为${o3}的组件`);
|
|
28
|
+
});
|
|
29
|
+
}, setEntityDataValue: function(t2, o2) {
|
|
30
|
+
Object.keys(o2).forEach((n2) => {
|
|
31
|
+
e.setValueForVariableName(t2.entity, n2.startsWith("${") ? n2 : "${data." + n2 + "}", o2[n2]);
|
|
32
|
+
});
|
|
33
|
+
}, setEntityPageValue: function(t2, o2) {
|
|
34
|
+
Object.keys(o2).forEach((n2) => {
|
|
35
|
+
e.setValueForVariableName(t2.entity, n2.startsWith("${") ? n2 : "${page." + n2 + "}", o2[n2]);
|
|
36
|
+
});
|
|
37
|
+
}, setEntityValueByType: function(t2, o2, n2) {
|
|
38
|
+
Object.keys(n2).forEach((a2) => {
|
|
39
|
+
e.setValueForVariableName(t2.entity, a2.startsWith("${") ? a2 : "${" + o2 + "." + a2 + "}", n2[a2]);
|
|
40
|
+
});
|
|
41
|
+
}, dynamicControlFormEdit: function(e2, t2, o2) {
|
|
42
|
+
o2 ? g(e2, "dynamicControlFormEdit", t2) : i.updateFormItemEditState(e2, t2);
|
|
43
|
+
}, disabledAllFields(e2) {
|
|
44
|
+
i.disabledAllFields(e2);
|
|
45
|
+
}, dynamicControlTableEdit(e2, t2, o2) {
|
|
46
|
+
i.dynamicControlTableEdit(e2, t2, o2);
|
|
47
|
+
}, executeServiceFlow: function(e2, t2, o2) {
|
|
48
|
+
const i2 = e2.code;
|
|
49
|
+
o2 || (o2 = { entity: e2.entity.data, serviceVariables: {}, requestParams: a.getAdditionalParamMap(e2), taskParamMap: e2.entity.task, dynamicDimensionValue: [], dynamicSortValue: "" }), o2.entity || (o2.entity = e2.entity.data), o2.requestParams || (o2.requestParams = a.getAdditionalParamMap(e2)), o2.taskParamMap || (o2.taskParamMap = e2.entity.task);
|
|
50
|
+
const s2 = e2.backendUrl, l2 = r.getBaseUrl(s2, e2.isTest);
|
|
51
|
+
return n.http.post(`${l2}/dsc/service-flow/execute/${i2}/${t2}`, o2);
|
|
52
|
+
}, openPage: function(e2, t2) {
|
|
53
|
+
o.$emit(e2.code + "_open-dialog", { pageContext: e2, eventParams: t2.eventParams, configureObj: { props: { linkPage: t2 } } });
|
|
54
|
+
}, refreshPage: function(e2, t2) {
|
|
55
|
+
a.refreshPage(e2, t2);
|
|
56
|
+
}, refreshSubTableHandle: function(e2, n2) {
|
|
57
|
+
let a2;
|
|
58
|
+
const i2 = t.getComponentRefByCode(e2, n2);
|
|
59
|
+
if (i2) {
|
|
60
|
+
const e3 = i2.getConfigure();
|
|
61
|
+
e3 && e3.uuid && e3.name && "table" === e3.name && (a2 = e3.uuid);
|
|
62
|
+
}
|
|
63
|
+
a2 ? o.$emit("_refreshSubTableHandle_" + a2) : console.error("tableUUid is undefined");
|
|
64
|
+
}, refreshChildData(e2, n2, a2) {
|
|
65
|
+
let i2;
|
|
66
|
+
const r2 = t.getComponentRefByCode(e2, n2);
|
|
67
|
+
if (r2) {
|
|
68
|
+
const e3 = r2.getConfigure();
|
|
69
|
+
e3 && e3.uuid && e3.name && "table" === e3.name && (i2 = e3.uuid);
|
|
70
|
+
}
|
|
71
|
+
i2 ? o.$emit("_refreshChildData_" + i2, a2) : console.error("tableUUid is undefined");
|
|
72
|
+
}, getServerConfigValue: (e2) => window.$vueApp.config.globalProperties[e2], getBackendUrl: (e2) => r.getBaseUrl(e2.backendUrl, false), getPlateBackendUrl: () => window.$vueApp.config.globalProperties.baseAPI, getEntity: (e2) => e2.entity.data, getEntityValue: (e2, t2) => e2.entity.data ? e2.entity.data[t2] : null, getPageData: (e2) => e2.entity.page, getPageDataValue: (e2, t2) => e2.entity.page ? e2.entity.page[t2] : null, getAdditionalParams: (e2) => a.getAdditionalParamMap(e2), getAdditionalParamValue(e2, t2) {
|
|
73
|
+
const o2 = a.getAdditionalParamMap(e2);
|
|
74
|
+
return o2 ? o2[t2] : null;
|
|
75
|
+
}, isMobile: () => n.isMobileBrowser(), getComponentRefByProp: (e2, o2) => t.getComponentRefByCode(e2, o2), getComponentRefByCode: (e2, o2) => t.getComponentRef(e2, o2), getFormViewData(o2) {
|
|
76
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
77
|
+
const n2 = o2.entity ? o2.entity : {}, a2 = r.deepCopy(n2), i2 = e.getOptionDatasSourceMap(o2);
|
|
78
|
+
for (const n3 in i2) {
|
|
79
|
+
const i3 = e.getComponentOptionDatasFromPage(o2, n3), r2 = t.getComponentRef(o2, n3);
|
|
80
|
+
if (r2) {
|
|
81
|
+
const t2 = r2.getConfigure();
|
|
82
|
+
if (t2) if (!((_b = (_a = t2.props) == null ? void 0 : _a.dataOrigin) == null ? void 0 : _b.optionValueSetType) || "static" !== ((_d = (_c = t2.props) == null ? void 0 : _c.dataOrigin) == null ? void 0 : _d.optionValueSetType) && "optionGroup" !== ((_f = (_e = t2.props) == null ? void 0 : _e.dataOrigin) == null ? void 0 : _f.optionValueSetType)) {
|
|
83
|
+
if ("dynamicData" === ((_h = (_g = t2 == null ? void 0 : t2.props) == null ? void 0 : _g.dataOrigin) == null ? void 0 : _h.optionValueSetType) && ("select" === (t2 == null ? void 0 : t2.name) || "checkbox" === (t2 == null ? void 0 : t2.name) || "radio" === (t2 == null ? void 0 : t2.name))) {
|
|
84
|
+
const n4 = s.getFormModelFields(o2, t2), i4 = r2.getSelectItemsTitle(), l3 = i4 && i4.length > 0 ? i4 : e.getVariableValue(a2, n4);
|
|
85
|
+
e.setVariableValue(a2, n4, l3);
|
|
86
|
+
}
|
|
87
|
+
} else if (t2.name && ("select" === t2.name && ((_j = (_i = t2.props) == null ? void 0 : _i.base) == null ? void 0 : _j.multiple) || "checkbox" === t2.name)) {
|
|
88
|
+
const n4 = s.getFormModelFields(o2, t2), r3 = e.getVariableValue(a2, n4);
|
|
89
|
+
if (r3) {
|
|
90
|
+
const t3 = m(r3.split(","), i3);
|
|
91
|
+
e.setVariableValue(a2, n4, t3);
|
|
92
|
+
}
|
|
93
|
+
} else {
|
|
94
|
+
const n4 = s.getFormModelFields(o2, t2), r3 = m(e.getVariableValue(a2, n4), i3);
|
|
95
|
+
e.setVariableValue(a2, n4, r3);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
const l2 = o2.listCodesMap;
|
|
100
|
+
for (const n3 in l2) {
|
|
101
|
+
let i3;
|
|
102
|
+
if (n3.indexOf("__") > 0 && (i3 = n3.substring(n3.lastIndexOf("__") + 2)), i3) {
|
|
103
|
+
const r2 = t.getComponentRef(o2, i3);
|
|
104
|
+
if (r2) {
|
|
105
|
+
const t2 = r2.getConfigure(), o3 = t2.code ? t2.code : n3, i4 = s.getModelFields(t2, o3), l3 = e.getVariableValue(a2, i4), c2 = r2.getTableSelectOptions(n3), u2 = r2.getColumns(), d2 = {}, m2 = {};
|
|
106
|
+
u2 && u2.length > 0 && u2.forEach((e2) => {
|
|
107
|
+
"DATE" !== e2.dataType && "TIME" !== e2.dataType || (m2[e2.prop] = e2);
|
|
108
|
+
}), d2.formatDateColumns = m2, p(c2, l3, d2, r2);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
return a2.data;
|
|
113
|
+
}, getFormData: (e2, t2) => a.getFormData(e2, t2), getCustomFunc: (e2, t2) => l.getCustomFunc(e2, t2), replaceUrlPrefix: (e2) => n.replacePrefix(e2), isHasFieldAuthPermission: (e2) => {
|
|
114
|
+
var _a, _b, _c, _d;
|
|
115
|
+
return !(void 0 !== ((_b = (_a = e2 == null ? void 0 : e2.props) == null ? void 0 : _a.base) == null ? void 0 : _b.isHasFieldAuthPermission) && !((_d = (_c = e2 == null ? void 0 : e2.props) == null ? void 0 : _c.base) == null ? void 0 : _d.isHasFieldAuthPermission));
|
|
116
|
+
}, isHasFieldAuth(e2, t2) {
|
|
117
|
+
c.isHasFieldPermissionAuth(e2, null, t2);
|
|
118
|
+
}, isHasFieldAuthWithTable(e2, t2, o2) {
|
|
119
|
+
c.isHasFieldPermissionAuth(e2, t2, o2);
|
|
120
|
+
}, scrollIntoComponentWithUuid(e2, t2) {
|
|
121
|
+
u.scrollIntoComponentWithUuid(e2, t2);
|
|
122
|
+
}, scrollIntoComponentWithCode(e2, t2) {
|
|
123
|
+
u.scrollIntoComponentWithCode(e2, t2);
|
|
124
|
+
} };
|
|
125
|
+
function p(e2, t2, o2, n2) {
|
|
126
|
+
if (e2 && t2) {
|
|
127
|
+
const a2 = n2.getSuperGridRef();
|
|
128
|
+
t2.forEach((t3) => {
|
|
129
|
+
if (o2 == null ? void 0 : o2.formatDateColumns) {
|
|
130
|
+
const e3 = o2.formatDateColumns;
|
|
131
|
+
Object.keys(e3).forEach((o3) => {
|
|
132
|
+
const n3 = e3[o3];
|
|
133
|
+
t3[o3] && (t3[o3] = a2.rowDoFormat(n3, t3[o3]));
|
|
134
|
+
});
|
|
135
|
+
}
|
|
136
|
+
Object.keys(e2).forEach((o3) => {
|
|
137
|
+
const n3 = t3[o3], a3 = e2[o3], i2 = a3.options, r2 = a3.column;
|
|
138
|
+
let s2;
|
|
139
|
+
if (r2 && r2.componentType && ("multiselect" === r2.componentType || "checkbox" === r2.componentType)) {
|
|
140
|
+
if (n3) {
|
|
141
|
+
s2 = m(n3.split(","), i2);
|
|
142
|
+
}
|
|
143
|
+
} else s2 = m(n3, i2);
|
|
144
|
+
t3[o3] = s2;
|
|
145
|
+
});
|
|
146
|
+
});
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
function m(e2, t2) {
|
|
150
|
+
let o2;
|
|
151
|
+
return null != e2 && t2 && (Array.isArray(e2) ? (o2 = "", e2.forEach((n2) => {
|
|
152
|
+
o2 = o2 + f(e2, t2) + ",";
|
|
153
|
+
}), o2.indexOf(",") > 0 && (o2 = o2.substring(0, o2.lastIndexOf(",")))) : (o2 = e2, o2 = f(e2, t2))), o2;
|
|
154
|
+
}
|
|
155
|
+
function f(e2, t2) {
|
|
156
|
+
let o2 = e2;
|
|
157
|
+
if (null != e2 && t2) for (let n2 = 0; n2 < t2.length; n2++) {
|
|
158
|
+
const a2 = t2[n2].value, i2 = t2[n2].label ? t2[n2].label : t2[n2].name;
|
|
159
|
+
if (e2 + "" == a2 + "" && null != i2) {
|
|
160
|
+
o2 = i2;
|
|
161
|
+
break;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
return o2;
|
|
165
|
+
}
|
|
166
|
+
function g(e2, t2, o2) {
|
|
167
|
+
e2.initInfo || (e2.initInfo = {}), e2.initInfo[t2] = o2;
|
|
168
|
+
}
|
|
169
|
+
exports.functions = d;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const functions: any;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const e = require("vue"), n = require("./page-store.cjs"), o = (e2) => Object.freeze(Object.defineProperty({ __proto__: null, default: e2 }, Symbol.toStringTag, { value: "Module" })), r = [{ name: "container", label: "容器", icon: "assets/images/group-container.png", items: [{ name: "form", label: "表单", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/container/form/form-runtime.vue.cjs")))) }, { name: "card", label: "卡片", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/container/card/card-runtime.vue.cjs")))) }, { name: "collapse", label: "折叠面板", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/container/collapse/collapse-runtime.vue.cjs")))) }, { name: "layout", label: "Flex", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/container/flex/flex-runtime.vue.cjs")))) }, { name: "tabs", label: "Tabs", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/container/tabs/tabs-runtime.vue.cjs")))) }, { name: "tools", label: "工具栏", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/container/tools/tools-runtime.vue.cjs")))) }, { name: "iframe", label: "Iframe", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/container/iframe/iframe-runtime.vue.cjs")))) }, { name: "container", label: "布局", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/container/container/container-runtime.vue.cjs")))) }] }, { name: "form", label: "表单", items: [{ name: "input-text", label: "文本框", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/input-text/inputtext-runtime.vue.cjs")))) }, { name: "select", label: "下拉框", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/select/select-runtime.vue.cjs")))) }, { name: "radio", label: "单选框", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/radio/radio-runtime.vue.cjs")))) }, { name: "checkbox", label: "复选框", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/checkbox/checkbox-runtime.vue.cjs")))) }, { name: "textarea", label: "文本域", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/textarea/textarea-runtime.vue.cjs")))) }, { name: "datePicker", label: "日期/时间", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/date-picker/datepicker-runtime.vue.cjs")))) }, { name: "switch", label: "开关", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/switch/switch-runtime.vue.cjs")))) }, { name: "inputNumber", label: "计数器", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/input-number/input-number-runtime.vue.cjs")))) }, { name: "tag", label: "标签", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/tag/tag-runtime.vue.cjs")))) }, { name: "richText", label: "富文本", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/rich-text/richtext-runtime.vue.cjs")))) }, { name: "divider", label: "分割线", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/divider/divider-runtime.vue.cjs")))) }, { name: "separatelabel", label: "分割标签", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/separatelabel/separatelabel-runtime.vue.cjs")))) }, { name: "placeholder", label: "占位符", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/placeholder/placeholder-runtime.vue.cjs")))) }, { name: "link", label: "链接", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/link/link-runtime.vue.cjs")))) }, { name: "label", label: "Label组件", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/label/label-runtime.vue.cjs")))) }, { name: "dept-tree", label: "组织树", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/dept-tree/depttree-runtime.vue.cjs")))) }, { name: "file-upload", label: "文件上传", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/file-upload/fileupload-runtime.vue.cjs")))) }] }, { name: "button", label: "按钮", items: [{ name: "button-detail", label: "按钮", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/button/button/button-runtime.vue.cjs")))) }, { name: "button-group", label: "按钮组", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/button/button-group/buttongroup-runtime.vue.cjs")))) }, { name: "dropdown", label: "下拉菜单", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/button/dropdown/dropdown-runtime.vue.cjs")))) }, { name: "print-label", label: "打印标签", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/button/print-label/printlabel-runtime.vue.cjs")))) }, { name: "export-pdf", label: "打印标签", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/button/export-pdf/exportpdf-runtime.vue.cjs")))) }] }, { name: "workflow", label: "工作流", items: [{ name: "workflow-button", label: "工作流按钮", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.cjs")))) }, { name: "picture-flow", label: "图形历史", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.cjs")))) }, { name: "text-flow", label: "文本历史", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/workflow/text-history/textflow-runtime.vue.cjs")))) }, { name: "workflow-node", label: "流程环节", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/workflow/workflow-node/workflownode-runtime.vue.cjs")))) }, { name: "extract-workflow", label: "抽单", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.cjs")))) }, { name: "extract-workflow-dialog", label: "抽单Dialog", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.cjs")))) }] }, { name: "chart", label: "统计图", items: [{ name: "chart-column-line", label: "柱/折图", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/chart/column-line/column-line-runtime.vue.cjs")))) }, { name: "chart-pie", label: "饼图", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/chart/pie/pie-runtime.vue.cjs")))) }, { name: "chart-gauge", label: "仪表盘", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/chart/gauge/gauge-runtime.vue.cjs")))) }, { name: "chart-radar", label: "雷达图", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/chart/radar/radar-runtime.vue.cjs")))) }, { name: "chart-scatter", label: "散点图", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/chart/scatter/scatter-runtime.vue.cjs")))) }, { name: "statistical-table", label: "统计表格", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/chart/table/table-runtime.vue.cjs")))) }] }, { name: "data", label: "数据", items: [{ name: "table", label: "表格", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/data/table/table-runtime.vue.cjs")))) }, { name: "tree", label: "树控件", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/data/tree/tree-runtime.vue.cjs")))) }, { name: "bar-code", label: "条码", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/data/bar-code/barcode-runtime.vue.cjs")))) }] }, { name: "other", label: "其他", items: [{ name: "custom", label: "自定义", runtimeComponent: e.defineAsyncComponent(() => Promise.resolve().then(() => o(require("../views/assemblys/form/custom/custom-runtime.vue.cjs")))) }] }];
|
|
4
|
+
exports.assemblyGroups = r, exports.getRuntimeComponentByName = function(e2) {
|
|
5
|
+
if (!e2) return null;
|
|
6
|
+
for (let o2 = 0; o2 < r.length; o2++) {
|
|
7
|
+
let t = r[o2].items;
|
|
8
|
+
for (let o3 = 0; o3 < t.length; o3++) {
|
|
9
|
+
let r2 = t[o3];
|
|
10
|
+
if (r2.name == e2) {
|
|
11
|
+
return n.usePageContextStore().countComponentsTotalNmber(), r2.runtimeComponent;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
return null;
|
|
16
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" }), exports.generateCodeByRule = function(e, t) {
|
|
3
|
+
let r = true, n = "";
|
|
4
|
+
return e.forEach((e2) => {
|
|
5
|
+
if ("-1" !== e2.propDbName && -1 !== e2.propDbName) {
|
|
6
|
+
const a = t[e2.propDbName];
|
|
7
|
+
e2.supplementaryCharacters && e2.length ? a ? a.length > e2.length ? n += a.substring(0, e2.length) : n += a.padEnd(e2.length, e2.supplementaryCharacters) : n += "".padEnd(e2.length, e2.supplementaryCharacters) : a ? n += a : r = false;
|
|
8
|
+
} else n += e2.fixedValue;
|
|
9
|
+
}), r ? n : null;
|
|
10
|
+
};
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const e = require("../page-helper-util.cjs"), t = require("../common-util.cjs"), o = require("./chart-util.cjs"), a = require("../events/event-util.cjs");
|
|
4
|
+
exports.updateChartOption = function(i, s, l, r) {
|
|
5
|
+
if (!r || !r.result) return;
|
|
6
|
+
o.setDefaultGrid(l), l.tooltip || (l.tooltip = {}), a.handleChartEvent(i, s, "beforeUpdateChart", l, { resultData: r });
|
|
7
|
+
const u = r && r.result ? r.result : {};
|
|
8
|
+
let n = r && r.groupValue ? r.groupValue : void 0;
|
|
9
|
+
const c = s.serviceDataField;
|
|
10
|
+
let d = null;
|
|
11
|
+
c ? d = u[c] : u && (d = Array.isArray(u) ? u : [u]), d || (d = []), s.runtime.dataConfig.runtimeData = d;
|
|
12
|
+
let f = s.props ? s.props.groups : null;
|
|
13
|
+
if (f || (f = []), !n || 0 === n.length) {
|
|
14
|
+
n = [];
|
|
15
|
+
for (const e2 of f) n.push(e2.group);
|
|
16
|
+
}
|
|
17
|
+
const m = {}, p = [], h = [];
|
|
18
|
+
for (const e2 of f) m[e2.group] = e2.target, e2.target && !p.includes(e2.target) && (p.push(e2.target), n.includes(e2.group) && h.push(e2.target));
|
|
19
|
+
let y = s.props ? s.props.mulGroupShow : "";
|
|
20
|
+
y = "break" == y ? "\r\n" : " ";
|
|
21
|
+
for (const t2 of d) {
|
|
22
|
+
if (!t2) continue;
|
|
23
|
+
const a2 = [];
|
|
24
|
+
for (const o2 of n) {
|
|
25
|
+
const i3 = m[o2], s2 = e.getValueFromSource(t2, i3, void 0);
|
|
26
|
+
s2 && a2.push(s2);
|
|
27
|
+
}
|
|
28
|
+
const i2 = a2.join(y);
|
|
29
|
+
t2[o.CommonName.X_FIELD_NAME] = i2;
|
|
30
|
+
}
|
|
31
|
+
const g = s.items ? s.items : [], F = [], S = {}, v = [], D = {}, N = [], x = [], C = /* @__PURE__ */ new Set(), E = o.caculateFormulaValue(g, d, C);
|
|
32
|
+
for (const e2 of C) N.push(e2);
|
|
33
|
+
for (const e2 of g) {
|
|
34
|
+
const t2 = e2.props ? e2.props : {}, o2 = t2.yaxisSource, a2 = t2.yaxisField, i2 = t2.isCumulative;
|
|
35
|
+
let s2 = null;
|
|
36
|
+
if (!a2 || o2 && "variable" != o2) if ("formula" == o2) {
|
|
37
|
+
let o3 = t2.formula ? t2.formula : "";
|
|
38
|
+
for (const e3 in E) o3 = o3.replace(new RegExp(e3.replace("$", "\\$"), "g"), E[e3]);
|
|
39
|
+
s2 = { uuid: e2.uuid, type: "formula", formula: o3, data: [], dynamicDatas: [] };
|
|
40
|
+
} else s2 = { uuid: e2.uuid, type: "fixed", field: t2.yaxisFix, data: [], dynamicDatas: [] };
|
|
41
|
+
else s2 = { uuid: e2.uuid, type: "variable", field: a2, isCumulative: i2, data: [], dynamicDatas: [] }, a2 && !N.includes(a2) && N.push(a2), a2 && !x.includes(a2) && x.push(a2), i2 && !C.has(a2) && C.add(a2);
|
|
42
|
+
null != s2 && (F.push(s2), S[e2.uuid] = s2), t2.dynamicSeriesField && !v.includes(t2.dynamicSeriesField) && s2 && (s2.dynamicField = t2.dynamicSeriesField, s2.dynamicSeriesTitle = t2.dynamicSeriesTitle, s2.dynamicShowStack = t2.dynamicShowStack, v.push(t2.dynamicSeriesField), D[t2.dynamicSeriesField] = a2);
|
|
43
|
+
}
|
|
44
|
+
const V = {};
|
|
45
|
+
if (v.length > 0) {
|
|
46
|
+
const t2 = [], a2 = {};
|
|
47
|
+
for (const i2 of d) if (i2) for (const s2 of N) {
|
|
48
|
+
const l2 = i2[o.CommonName.X_FIELD_NAME];
|
|
49
|
+
let r2 = a2[l2];
|
|
50
|
+
if (!r2) {
|
|
51
|
+
r2 = {};
|
|
52
|
+
for (const e2 of p) r2[e2] = i2[e2];
|
|
53
|
+
r2[o.CommonName.X_FIELD_NAME] = i2[o.CommonName.X_FIELD_NAME], a2[l2] = r2, t2.push(r2);
|
|
54
|
+
}
|
|
55
|
+
let u2 = e.getValueFromSource(i2, s2, void 0);
|
|
56
|
+
if (!isNaN(u2)) {
|
|
57
|
+
const e2 = r2[s2];
|
|
58
|
+
isNaN || (u2 += e2), r2[s2] = u2;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
for (const t3 of v) {
|
|
62
|
+
const i2 = [];
|
|
63
|
+
for (const s2 of d) {
|
|
64
|
+
if (!s2) continue;
|
|
65
|
+
const l2 = a2[s2[o.CommonName.X_FIELD_NAME]];
|
|
66
|
+
if (!l2) continue;
|
|
67
|
+
let r2 = e.getValueFromSource(s2, t3, void 0);
|
|
68
|
+
r2 = null == r2 || null == r2 ? "" : r2, i2.includes(r2) || (i2.push(r2), x.push(r2), C.add(r2));
|
|
69
|
+
const u2 = D[t3];
|
|
70
|
+
if (void 0 !== u2) {
|
|
71
|
+
const t4 = e.getValueFromSource(s2, u2, void 0);
|
|
72
|
+
let o2 = l2[r2];
|
|
73
|
+
void 0 === o2 ? o2 = t4 : isNaN(t4) || (o2 += t4), l2[r2] = o2;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
V[t3] = i2;
|
|
77
|
+
}
|
|
78
|
+
d = t2;
|
|
79
|
+
}
|
|
80
|
+
o.sortDatas(i, s, d), d = o.limitDatas(i, s, d, p, x);
|
|
81
|
+
const b = [], A = {};
|
|
82
|
+
for (const t2 of d) if (t2) {
|
|
83
|
+
for (const o2 of C) {
|
|
84
|
+
const a2 = e.getValueFromSource(t2, o2, void 0);
|
|
85
|
+
let i2 = A[o2];
|
|
86
|
+
void 0 === a2 || isNaN(a2) || (void 0 === i2 ? i2 = a2 : i2 += a2), A[o2] = i2;
|
|
87
|
+
}
|
|
88
|
+
b.push(t2[o.CommonName.X_FIELD_NAME]);
|
|
89
|
+
for (const a2 of F) {
|
|
90
|
+
let s2 = a2.data;
|
|
91
|
+
const l2 = a2.dynamicDatas;
|
|
92
|
+
if (a2.dynamicField) {
|
|
93
|
+
let o2 = V[a2.dynamicField];
|
|
94
|
+
o2 = o2 || [];
|
|
95
|
+
for (let i2 = 0; i2 < o2.length; i2++) {
|
|
96
|
+
i2 >= l2.length && l2.push([]), s2 = l2[i2];
|
|
97
|
+
const r2 = o2[i2];
|
|
98
|
+
let u2 = e.getValueFromSource(t2, r2, void 0);
|
|
99
|
+
a2.isCumulative && (u2 = A[r2]), s2.push(u2);
|
|
100
|
+
}
|
|
101
|
+
} else if ("fixed" === a2.type) s2.push(a2.field);
|
|
102
|
+
else if ("variable" === a2.type) {
|
|
103
|
+
let o2 = e.getValueFromSource(t2, a2.field, void 0);
|
|
104
|
+
a2.isCumulative && (o2 = A[a2.field]), s2.push(o2);
|
|
105
|
+
} else if ("formula" === a2.type) {
|
|
106
|
+
const e2 = o.executeChartFormula(a2.formula, A, t2, i);
|
|
107
|
+
s2.push(e2);
|
|
108
|
+
} else s2.push(void 0);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
const _ = s.defaultSeries, I = t.deepCopy(null == _ ? [] : _), w = [];
|
|
112
|
+
for (const o2 of I) {
|
|
113
|
+
const a2 = S[o2.uuid];
|
|
114
|
+
if (a2.dynamicField) {
|
|
115
|
+
let s2 = V[a2.dynamicField];
|
|
116
|
+
s2 = s2 || [];
|
|
117
|
+
const l2 = a2.dynamicDatas ? a2.dynamicDatas : [];
|
|
118
|
+
for (let r2 = 0; r2 < s2.length; r2++) {
|
|
119
|
+
const u2 = s2[r2], n2 = t.deepCopy(o2);
|
|
120
|
+
if (a2.dynamicSeriesTitle) {
|
|
121
|
+
const t2 = a2.dynamicSeriesTitle.replace("${name}", u2);
|
|
122
|
+
n2.name = e.formatVariableValue(i, t2);
|
|
123
|
+
} else n2.name = u2;
|
|
124
|
+
n2.data = r2 < l2.length ? l2[r2] : [], "bar" == o2.type && a2.dynamicShowStack && (n2.stack = o2.uuid), w.push(n2);
|
|
125
|
+
}
|
|
126
|
+
} else o2.data = a2 ? a2.data : [], w.push(o2);
|
|
127
|
+
}
|
|
128
|
+
l.series = w;
|
|
129
|
+
const M = s.defaultXaxis, X = s.defaultYaxis;
|
|
130
|
+
if (l.isBar) {
|
|
131
|
+
if (X) for (const e2 of X) e2.data = b;
|
|
132
|
+
l.xAxis = M, l.yAxis = X;
|
|
133
|
+
} else M && M.length > 0 && (M[0].data = b), l.xAxis = M, l.yAxis = X;
|
|
134
|
+
o.formatToolboxI18n(l);
|
|
135
|
+
const j = s.props ? s.props.selGroupVariable : null;
|
|
136
|
+
!(s.props ? s.props.enableDrill : null) && j && (s.highlightInfos = [], e.setValueForVariableName(i.entity, j, null)), a.handleChartEvent(i, s, "afterUpdateChart", l, { resultData: r }), s.groupFields = h, s.cacheDatas = d, s.rawResult = r;
|
|
137
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const e = require("../page-helper-util.cjs"), t = require("../common-util.cjs"), r = require("./chart-util.cjs"), o = require("../events/event-util.cjs");
|
|
4
|
+
exports.updateChartOption = function(a, l, s, i) {
|
|
5
|
+
if (!i || !i.result) return;
|
|
6
|
+
o.handleChartEvent(a, l, "beforeUpdateChart", s, { resultData: i }), r.setDefaultGrid(s);
|
|
7
|
+
const n = i && i.result ? i.result : {}, u = l.serviceDataField;
|
|
8
|
+
let p = null;
|
|
9
|
+
u ? p = n[u] : n && (p = [n]), p || (p = []);
|
|
10
|
+
const c = l.props ? l.props.nameSource : void 0, d = l.props ? l.props.nameField : void 0, h = l.props ? l.props.nameFixed : void 0, f = l.props ? l.props.yaxisField : void 0, m = [d], v = [], g = [];
|
|
11
|
+
for (const t2 of p) {
|
|
12
|
+
if (!t2) continue;
|
|
13
|
+
let r2 = null;
|
|
14
|
+
r2 = "fixed" == c ? e.formatVariableValue(a, h) : e.getValueFromSource(t2, d, void 0), v.push(r2);
|
|
15
|
+
const o2 = e.getValueFromSource(t2, f, void 0);
|
|
16
|
+
g.push(o2);
|
|
17
|
+
}
|
|
18
|
+
const C = l.defaultSeries;
|
|
19
|
+
let F = C[0].pieColors;
|
|
20
|
+
F = F || [];
|
|
21
|
+
let S = C[0].pieColorMap;
|
|
22
|
+
S = S || {};
|
|
23
|
+
const x = [];
|
|
24
|
+
for (let e2 = 0; e2 < v.length && e2 < g.length; e2++) {
|
|
25
|
+
const t2 = { value: g[e2], name: v[e2] };
|
|
26
|
+
if (e2 < F.length || S[t2.name]) {
|
|
27
|
+
let r2 = S[t2.name];
|
|
28
|
+
r2 || (r2 = F[e2]), r2 && (t2.itemStyle = { color: r2 });
|
|
29
|
+
}
|
|
30
|
+
x.push(t2);
|
|
31
|
+
}
|
|
32
|
+
const b = t.deepCopy(C);
|
|
33
|
+
b[0].data = x, s.series = [b[0]], r.formatToolboxI18n(s), o.handleChartEvent(a, l, "afterUpdateChart", s, { resultData: i }), l.groupFields = m, l.cacheDatas = p, l.rawResult = i;
|
|
34
|
+
};
|