super-page-runtime 1.0.16 → 1.3.13
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/_virtual/_plugin-vue_export-helper.js +8 -0
- package/dist/es/assets/chart-themes/theme1.d.ts +4 -0
- package/dist/es/assets/chart-themes/theme1.js +4 -0
- package/dist/es/assets/chart-themes/theme2.d.ts +4 -0
- package/dist/es/assets/chart-themes/theme2.js +4 -0
- package/dist/es/assets/chart-themes/theme3.d.ts +4 -0
- package/dist/es/assets/chart-themes/theme3.js +4 -0
- package/dist/es/assets/file.png.js +4 -0
- package/dist/es/assets/folder.png.js +4 -0
- package/dist/es/components/runtime/index.d.ts +5 -0
- package/dist/es/components/runtime/utils/api/api-util.d.ts +1 -0
- package/dist/es/components/runtime/utils/api/api-util.js +4 -0
- package/dist/es/components/runtime/utils/api/page-expose-util.d.ts +1 -0
- package/dist/es/components/runtime/utils/api/page-expose-util.js +159 -0
- package/dist/es/components/runtime/utils/assemblys-config.js +20 -0
- package/dist/es/components/runtime/utils/barcode-util.d.ts +8 -0
- package/dist/es/components/runtime/utils/barcode-util.js +12 -0
- package/dist/es/components/runtime/utils/charts/chart-columnline-util.js +140 -0
- package/dist/es/components/runtime/utils/charts/chart-gauge-util.js +37 -0
- package/dist/es/components/runtime/utils/charts/chart-pie-util.js +81 -0
- package/dist/es/components/runtime/utils/charts/chart-radar-util.js +55 -0
- package/dist/es/components/runtime/utils/charts/chart-scatter-util.js +46 -0
- package/dist/es/components/runtime/utils/charts/chart-util.d.ts +113 -0
- package/dist/es/components/runtime/utils/charts/chart-util.js +274 -0
- package/dist/es/components/runtime/utils/common-util.d.ts +33 -0
- package/dist/es/components/runtime/utils/common-util.js +120 -0
- package/dist/es/components/runtime/utils/eventBus.d.ts +7 -0
- package/dist/es/components/runtime/utils/eventBus.js +5 -0
- package/{lib/src → dist/es/components/runtime}/utils/events/event-util.d.ts +45 -1
- package/dist/es/components/runtime/utils/events/event-util.js +403 -0
- package/dist/es/components/runtime/utils/events/print-label.d.ts +5 -0
- package/dist/es/components/runtime/utils/events/print-label.js +100 -0
- package/{lib/src → dist/es/components/runtime}/utils/events/standard-event.d.ts +29 -3
- package/dist/es/components/runtime/utils/events/standard-event.js +971 -0
- package/dist/es/components/runtime/utils/events/validator-util.d.ts +25 -0
- package/dist/es/components/runtime/utils/events/validator-util.js +309 -0
- package/dist/es/components/runtime/utils/form/date-shortcuts.d.ts +7 -0
- package/dist/es/components/runtime/utils/form/date-shortcuts.js +36 -0
- package/dist/es/components/runtime/utils/form/scan-util.js +93 -0
- package/{lib/src → dist/es/components/runtime}/utils/global-refs.d.ts +6 -0
- package/dist/es/components/runtime/utils/global-refs.js +57 -0
- package/dist/es/components/runtime/utils/i18n-util.d.ts +1 -0
- package/dist/es/components/runtime/utils/i18n-util.js +14 -0
- package/{lib/src → dist/es/components/runtime}/utils/interfaces/page-design-types.d.ts +32 -6
- package/dist/es/components/runtime/utils/interfaces/page-design-types.js +4 -0
- package/dist/es/components/runtime/utils/page-helper-util.d.ts +174 -0
- package/dist/es/components/runtime/utils/page-helper-util.js +386 -0
- package/{lib/src → dist/es/components/runtime}/utils/page-init-util.d.ts +12 -2
- package/dist/es/components/runtime/utils/page-init-util.js +203 -0
- package/dist/es/components/runtime/utils/page-permission-util.d.ts +26 -0
- package/dist/es/components/runtime/utils/page-permission-util.js +30 -0
- package/dist/es/components/runtime/utils/page-store.d.ts +46 -0
- package/dist/es/components/runtime/utils/page-store.js +26 -0
- package/dist/es/components/runtime/utils/store-util.js +13 -0
- package/dist/es/components/runtime/utils/store.js +4 -0
- package/dist/es/components/runtime/utils/table-utils.d.ts +34 -0
- package/dist/es/components/runtime/utils/table-utils.js +80 -0
- package/dist/es/components/runtime/utils/tree-utils.js +73 -0
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.js +27 -0
- package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +21 -0
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +41 -0
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.js +6 -0
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.js +21 -0
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +53 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.js +14 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +13 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +60 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.js +63 -0
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +35 -0
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +46 -0
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +35 -0
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +35 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.d.ts +121 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +419 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.js +6 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.js +10 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.js +45 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.js +15 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +255 -0
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +28 -0
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +36 -0
- package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +4 -0
- package/{lib → dist/es}/components/runtime/views/assemblys/common/remove-signer-dialog.vue.d.ts +5 -5
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.js +24 -0
- package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.d.ts +31 -0
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.js +35 -0
- package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.js +4 -0
- package/{lib → dist/es}/components/runtime/views/assemblys/common/task-informition-dialog.vue.d.ts +5 -5
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.js +19 -0
- package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +29 -0
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +21 -0
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.js +18 -0
- package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.js +29 -0
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.d.ts +94 -0
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.js +81 -0
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +25 -0
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.js +20 -0
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +14 -0
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +96 -0
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +35 -0
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.js +69 -0
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +378 -0
- package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +300 -0
- package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +82 -0
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +134 -0
- package/{lib → dist/es}/components/runtime/views/assemblys/error-render.vue.d.ts +4 -4
- package/dist/es/components/runtime/views/assemblys/error-render.vue.js +5 -0
- package/dist/es/components/runtime/views/assemblys/error-render.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +50 -0
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.js +38 -0
- package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +69 -0
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +90 -0
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +55 -0
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +24 -0
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +75 -0
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +28 -0
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +82 -0
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +37 -0
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +32 -0
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +16 -0
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +73 -0
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +102 -0
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +97 -0
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.js +16 -0
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +36 -0
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +44 -0
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +28 -0
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.d.ts +17 -0
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.js +83 -0
- package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/object-render.vue.d.ts +17 -0
- package/dist/es/components/runtime/views/assemblys/object-render.vue.js +129 -0
- package/dist/es/components/runtime/views/assemblys/object-render.vue2.js +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.js +20 -0
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.js +23 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +7 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +24 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.js +4 -0
- package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.js +18 -0
- package/dist/es/components/runtime/views/home-chart.vue.d.ts +23 -0
- package/dist/es/components/runtime/views/home-chart.vue.js +47 -0
- package/dist/es/components/runtime/views/home-chart.vue2.js +4 -0
- package/{lib/components/super-page-dialog → dist/es/components/runtime/views}/super-page-dialog.vue.d.ts +7 -3
- package/dist/es/components/runtime/views/super-page-dialog.vue.js +26 -0
- package/dist/es/components/runtime/views/super-page-dialog.vue3.js +5 -0
- package/{lib → dist/es}/components/runtime/views/super-page.vue.d.ts +43 -10
- package/dist/es/components/runtime/views/super-page.vue.js +7 -0
- package/dist/es/components/runtime/views/super-page.vue2.js +262 -0
- package/dist/es/i18n/langs/cn.js +4 -0
- package/dist/es/i18n/langs/en.js +4 -0
- package/dist/es/index.d.ts +16 -0
- package/dist/es/index.js +30 -0
- package/dist/es/style.css +633 -0
- package/package.json +74 -67
- package/.eslintrc.cjs +0 -26
- package/.prettierrc.json +0 -8
- package/App.vue +0 -9
- package/components/index.ts +0 -17
- package/components/runtime/index.ts +0 -2
- package/components/runtime/utils/assemblys-config.js +0 -294
- package/components/runtime/views/assemblys/button/button/button-runtime.vue +0 -49
- package/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue +0 -26
- package/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue +0 -93
- package/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue +0 -59
- package/components/runtime/views/assemblys/chart/common/common-attr-assistant.vue +0 -32
- package/components/runtime/views/assemblys/chart/common/common-attr-base.vue +0 -60
- package/components/runtime/views/assemblys/chart/common/common-attr-drill.vue +0 -39
- package/components/runtime/views/assemblys/chart/common/common-attr-groupby.vue +0 -104
- package/components/runtime/views/assemblys/chart/common/common-attr-serieslist.vue +0 -145
- package/components/runtime/views/assemblys/chart/common/common-attr-sortby.vue +0 -119
- package/components/runtime/views/assemblys/chart/common/common-style-custom.vue +0 -28
- package/components/runtime/views/assemblys/chart/common/common-style-datazoom.vue +0 -45
- package/components/runtime/views/assemblys/chart/common/common-style-font-subtitle.vue +0 -78
- package/components/runtime/views/assemblys/chart/common/common-style-font-title.vue +0 -56
- package/components/runtime/views/assemblys/chart/common/common-style-grid.vue +0 -70
- package/components/runtime/views/assemblys/chart/common/common-style-legend.vue +0 -70
- package/components/runtime/views/assemblys/chart/common/common-style-tooltip.vue +0 -140
- package/components/runtime/views/assemblys/chart/common/common-style-xaxis.vue +0 -58
- package/components/runtime/views/assemblys/chart/common/common-style-yaxis.vue +0 -125
- package/components/runtime/views/assemblys/chart/common-series/common-attr-dataset.vue +0 -67
- package/components/runtime/views/assemblys/chart/common-series/common-attr-dynamic.vue +0 -57
- package/components/runtime/views/assemblys/chart/common-series/common-attr-testdatas.vue +0 -23
- package/components/runtime/views/assemblys/chart/common-series/common-style-label.vue +0 -209
- package/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue +0 -46
- package/components/runtime/views/assemblys/chart/pie/pie-runtime.vue +0 -56
- package/components/runtime/views/assemblys/chart/radar/radar-runtime.vue +0 -55
- package/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue +0 -57
- package/components/runtime/views/assemblys/common/common-attr-cursor.vue +0 -23
- package/components/runtime/views/assemblys/common/common-attr-size.vue +0 -54
- package/components/runtime/views/assemblys/common/common-select-table.vue +0 -287
- package/components/runtime/views/assemblys/common/common-style-background.vue +0 -46
- package/components/runtime/views/assemblys/common/common-style-border.vue +0 -37
- package/components/runtime/views/assemblys/common/common-style-custom.vue +0 -35
- package/components/runtime/views/assemblys/common/common-style-font-head.vue +0 -53
- package/components/runtime/views/assemblys/common/common-style-font.vue +0 -53
- package/components/runtime/views/assemblys/common/common-style-margin.vue +0 -34
- package/components/runtime/views/assemblys/common/common-style-padding.vue +0 -34
- package/components/runtime/views/assemblys/common/common-style-position.vue +0 -39
- package/components/runtime/views/assemblys/common/common-style-shadow.vue +0 -37
- package/components/runtime/views/assemblys/common/export-form-report-dialog.vue +0 -108
- package/components/runtime/views/assemblys/common/remove-signer-dialog.vue +0 -99
- package/components/runtime/views/assemblys/common/task-informition-dialog.vue +0 -69
- package/components/runtime/views/assemblys/common-attr-events.vue +0 -46
- package/components/runtime/views/assemblys/container/card/card-runtime.vue +0 -59
- package/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue +0 -59
- package/components/runtime/views/assemblys/container/container/container-runtime.vue +0 -41
- package/components/runtime/views/assemblys/container/flex/flex-runtime.vue +0 -35
- package/components/runtime/views/assemblys/container/form/form-runtime.vue +0 -37
- package/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue +0 -32
- package/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue +0 -54
- package/components/runtime/views/assemblys/container/tools/tools-runtime.vue +0 -99
- package/components/runtime/views/assemblys/data/bar-code/barcode-attr-base.vue +0 -117
- package/components/runtime/views/assemblys/data/bar-code/barcode-attr-event.vue +0 -14
- package/components/runtime/views/assemblys/data/bar-code/barcode-attr-style.vue +0 -25
- package/components/runtime/views/assemblys/data/bar-code/barcode-attr.vue +0 -28
- package/components/runtime/views/assemblys/data/bar-code/barcode-design.vue +0 -103
- package/components/runtime/views/assemblys/data/component/attr-header.vue +0 -69
- package/components/runtime/views/assemblys/data/component/attr-style.vue +0 -64
- package/components/runtime/views/assemblys/data/component/column-config.vue +0 -171
- package/components/runtime/views/assemblys/data/component/combinedHeader.vue +0 -96
- package/components/runtime/views/assemblys/data/component/composite-header.vue +0 -257
- package/components/runtime/views/assemblys/data/component/configuration-value.vue +0 -206
- package/components/runtime/views/assemblys/data/component/data-origin-tree.vue +0 -117
- package/components/runtime/views/assemblys/data/component/data-origin.vue +0 -260
- package/components/runtime/views/assemblys/data/component/formatting.vue +0 -200
- package/components/runtime/views/assemblys/data/component/in-parameter.vue +0 -56
- package/components/runtime/views/assemblys/data/component/querySetting.vue +0 -52
- package/components/runtime/views/assemblys/data/component/return-set-table.vue +0 -91
- package/components/runtime/views/assemblys/data/component/row-backgroud-color.vue +0 -58
- package/components/runtime/views/assemblys/data/component/select-data-table.vue +0 -86
- package/components/runtime/views/assemblys/data/table/main-table-runtime.vue +0 -858
- package/components/runtime/views/assemblys/data/table/sub-table-runtime.vue +0 -625
- package/components/runtime/views/assemblys/data/table/table-runtime.vue +0 -93
- package/components/runtime/views/assemblys/data/tree/tree-attr-base.vue +0 -137
- package/components/runtime/views/assemblys/data/tree/tree-attr-event.vue +0 -14
- package/components/runtime/views/assemblys/data/tree/tree-attr-style.vue +0 -55
- package/components/runtime/views/assemblys/data/tree/tree-attr.vue +0 -28
- package/components/runtime/views/assemblys/data/tree/tree-design.vue +0 -125
- package/components/runtime/views/assemblys/error-attr.vue +0 -15
- package/components/runtime/views/assemblys/error-render.vue +0 -17
- package/components/runtime/views/assemblys/form/cascader/cascader-design.vue +0 -288
- package/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue +0 -198
- package/components/runtime/views/assemblys/form/colors/colors-design.vue +0 -16
- package/components/runtime/views/assemblys/form/common/analytic-rule.vue +0 -148
- package/components/runtime/views/assemblys/form/common/attr-event.vue +0 -82
- package/components/runtime/views/assemblys/form/common/attr-header.vue +0 -54
- package/components/runtime/views/assemblys/form/common/attr-style.vue +0 -44
- package/components/runtime/views/assemblys/form/common/bar-code-rule.vue +0 -104
- package/components/runtime/views/assemblys/form/common/condition.vue +0 -147
- package/components/runtime/views/assemblys/form/common/data-origin.vue +0 -81
- package/components/runtime/views/assemblys/form/common/data-orign-in-parameter.vue +0 -64
- package/components/runtime/views/assemblys/form/common/dataorigin-input-table.vue +0 -106
- package/components/runtime/views/assemblys/form/common/default-value-setting.vue +0 -362
- package/components/runtime/views/assemblys/form/common/dimension-input.vue +0 -68
- package/components/runtime/views/assemblys/form/common/dynamic-data-source-setting.vue +0 -115
- package/components/runtime/views/assemblys/form/common/formatting-label.vue +0 -81
- package/components/runtime/views/assemblys/form/common/grid-num-select.vue +0 -43
- package/components/runtime/views/assemblys/form/common/icon-set-dialog.vue +0 -144
- package/components/runtime/views/assemblys/form/common/linkage.vue +0 -21
- package/components/runtime/views/assemblys/form/common/overall-height.vue +0 -20
- package/components/runtime/views/assemblys/form/common/overall-width.vue +0 -48
- package/components/runtime/views/assemblys/form/common/pre-suffix.vue +0 -33
- package/components/runtime/views/assemblys/form/common/rich-text.vue +0 -100
- package/components/runtime/views/assemblys/form/common/row-ul-li.vue +0 -55
- package/components/runtime/views/assemblys/form/common/setoption-table.vue +0 -86
- package/components/runtime/views/assemblys/form/common/size-input.vue +0 -65
- package/components/runtime/views/assemblys/form/common/suffixmodule.vue +0 -82
- package/components/runtime/views/assemblys/form/common/title.vue +0 -20
- package/components/runtime/views/assemblys/form/common/uploading.vue +0 -34
- package/components/runtime/views/assemblys/form/common/verification.vue +0 -79
- package/components/runtime/views/assemblys/form/common/voluntarily.vue +0 -27
- package/components/runtime/views/assemblys/form/custom/custom-attr-base.vue +0 -81
- package/components/runtime/views/assemblys/form/custom/custom-attr-event.vue +0 -14
- package/components/runtime/views/assemblys/form/custom/custom-attr-style.vue +0 -14
- package/components/runtime/views/assemblys/form/custom/custom-attr.vue +0 -28
- package/components/runtime/views/assemblys/form/custom/custom-design.vue +0 -57
- package/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue +0 -80
- package/components/runtime/views/assemblys/form/datetime/datetime-design.vue +0 -19
- package/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue +0 -60
- package/components/runtime/views/assemblys/form/divider/divider-runtime.vue +0 -44
- package/components/runtime/views/assemblys/form/file-picture/picture-design.vue +0 -80
- package/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue +0 -79
- package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-attr-base.vue +0 -142
- package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-attr-event.vue +0 -14
- package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-attr-style.vue +0 -14
- package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-attr.vue +0 -28
- package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-design.vue +0 -104
- package/components/runtime/views/assemblys/form/image-upload/imageupload-attr-base.vue +0 -75
- package/components/runtime/views/assemblys/form/image-upload/imageupload-attr-event.vue +0 -13
- package/components/runtime/views/assemblys/form/image-upload/imageupload-attr-style.vue +0 -14
- package/components/runtime/views/assemblys/form/image-upload/imageupload-attr.vue +0 -28
- package/components/runtime/views/assemblys/form/image-upload/imageupload-design.vue +0 -76
- package/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue +0 -62
- package/components/runtime/views/assemblys/form/input-show/input-show-attr-base.vue +0 -68
- package/components/runtime/views/assemblys/form/input-show/input-show-attr-event.vue +0 -14
- package/components/runtime/views/assemblys/form/input-show/input-show-attr-style.vue +0 -70
- package/components/runtime/views/assemblys/form/input-show/input-show-attr.vue +0 -28
- package/components/runtime/views/assemblys/form/input-show/input-show-design.vue +0 -155
- package/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue +0 -142
- package/components/runtime/views/assemblys/form/label/label-runtime.vue +0 -143
- package/components/runtime/views/assemblys/form/link/link-runtime.vue +0 -70
- package/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue +0 -24
- package/components/runtime/views/assemblys/form/radio/radio-runtime.vue +0 -203
- package/components/runtime/views/assemblys/form/rate/rate-design.vue +0 -16
- package/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue +0 -169
- package/components/runtime/views/assemblys/form/select/select-runtime.vue +0 -247
- package/components/runtime/views/assemblys/form/slider/slider-design.vue +0 -16
- package/components/runtime/views/assemblys/form/switch/switch-runtime.vue +0 -63
- package/components/runtime/views/assemblys/form/tag/tag-runtime.vue +0 -65
- package/components/runtime/views/assemblys/form/text/text-design.vue +0 -19
- package/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue +0 -63
- package/components/runtime/views/assemblys/form/transfer/transfer-design.vue +0 -32
- package/components/runtime/views/assemblys/object-render.vue +0 -176
- package/components/runtime/views/assemblys/page/page-attr-base-20240429-1.vue +0 -179
- package/components/runtime/views/assemblys/page/page-attr-base.vue +0 -259
- package/components/runtime/views/assemblys/page/page-attr-events.vue +0 -50
- package/components/runtime/views/assemblys/page/page-attr-style.vue +0 -25
- package/components/runtime/views/assemblys/page/page-attr.vue +0 -84
- package/components/runtime/views/assemblys/page/variable-dialog.vue +0 -242
- package/components/runtime/views/assemblys/workflow/component/combination.vue +0 -206
- package/components/runtime/views/assemblys/workflow/component/condition-dialog.vue +0 -99
- package/components/runtime/views/assemblys/workflow/component/event-dialog.vue +0 -278
- package/components/runtime/views/assemblys/workflow/component/journal-set-dialog.vue +0 -174
- package/components/runtime/views/assemblys/workflow/component/logical-setup-dialog.vue +0 -155
- package/components/runtime/views/assemblys/workflow/component/rule-dialog.vue +0 -47
- package/components/runtime/views/assemblys/workflow/component/set-dialog.vue +0 -130
- package/components/runtime/views/assemblys/workflow/component/task-trigger-dialog.vue +0 -96
- package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-attr-base.vue +0 -43
- package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-attr-event.vue +0 -14
- package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-attr-style.vue +0 -27
- package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-attr.vue +0 -28
- package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-design.vue +0 -17
- package/components/runtime/views/assemblys/workflow/text-history/texthistory-attr-base.vue +0 -60
- package/components/runtime/views/assemblys/workflow/text-history/texthistory-attr-event.vue +0 -14
- package/components/runtime/views/assemblys/workflow/text-history/texthistory-attr-style.vue +0 -27
- package/components/runtime/views/assemblys/workflow/text-history/texthistory-attr.vue +0 -28
- package/components/runtime/views/assemblys/workflow/text-history/texthistory-design.vue +0 -17
- package/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue +0 -64
- package/components/runtime/views/render/page-view.vue +0 -80
- package/components/runtime/views/super-page copy.vue +0 -61
- package/components/runtime/views/super-page.vue +0 -667
- package/components/super-page-dialog/index.ts +0 -2
- package/components/super-page-dialog/super-page-dialog.vue +0 -267
- package/components/wf-editor/index.ts +0 -2
- package/components/wf-editor/wf-editor.vue +0 -15
- package/cypress/e2e/example.cy.ts +0 -8
- package/cypress/e2e/tsconfig.json +0 -10
- package/cypress/fixtures/example.json +0 -5
- package/cypress/support/commands.ts +0 -39
- package/cypress/support/e2e.ts +0 -20
- package/cypress.config.ts +0 -8
- package/env.d.ts +0 -1
- package/index.html +0 -13
- package/lib/_virtual/_plugin-vue_export-helper.js +0 -9
- package/lib/components/index.d.ts +0 -5
- package/lib/components/runtime/index.d.ts +0 -3
- package/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +0 -24
- package/lib/components/runtime/views/assemblys/object-render.vue.d.ts +0 -17
- package/lib/components/super-page-dialog/index.d.ts +0 -3
- package/lib/components/wf-editor/index.d.ts +0 -3
- package/lib/components/wf-editor/wf-editor.vue.d.ts +0 -2
- package/lib/index.js +0 -8
- package/lib/runtime/index.js +0 -3
- package/lib/runtime/utils/assemblys-config.js +0 -258
- package/lib/runtime/views/assemblys/button/button/button-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/button/button/button-runtime.vue2.js +0 -54
- package/lib/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +0 -35
- package/lib/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +0 -110
- package/lib/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +0 -53
- package/lib/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +0 -42
- package/lib/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +0 -50
- package/lib/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +0 -50
- package/lib/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +0 -51
- package/lib/runtime/views/assemblys/common/export-form-report-dialog.vue.js +0 -141
- package/lib/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +0 -3
- package/lib/runtime/views/assemblys/common/remove-signer-dialog.vue.js +0 -127
- package/lib/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +0 -3
- package/lib/runtime/views/assemblys/common/task-informition-dialog.vue.js +0 -104
- package/lib/runtime/views/assemblys/common/task-informition-dialog.vue2.js +0 -3
- package/lib/runtime/views/assemblys/container/card/card-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/container/card/card-runtime.vue2.js +0 -72
- package/lib/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +0 -73
- package/lib/runtime/views/assemblys/container/container/container-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/container/container/container-runtime.vue2.js +0 -78
- package/lib/runtime/views/assemblys/container/flex/flex-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +0 -42
- package/lib/runtime/views/assemblys/container/form/form-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/container/form/form-runtime.vue2.js +0 -43
- package/lib/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +0 -29
- package/lib/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +0 -68
- package/lib/runtime/views/assemblys/container/tools/tools-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +0 -74
- package/lib/runtime/views/assemblys/data/table/main-table-runtime.vue.js +0 -640
- package/lib/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +0 -3
- package/lib/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +0 -452
- package/lib/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +0 -3
- package/lib/runtime/views/assemblys/data/table/table-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/data/table/table-runtime.vue2.js +0 -82
- package/lib/runtime/views/assemblys/error-render.vue.js +0 -22
- package/lib/runtime/views/assemblys/error-render.vue2.js +0 -3
- package/lib/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +0 -156
- package/lib/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +0 -82
- package/lib/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +0 -59
- package/lib/runtime/views/assemblys/form/divider/divider-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +0 -40
- package/lib/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +0 -74
- package/lib/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +0 -63
- package/lib/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +0 -127
- package/lib/runtime/views/assemblys/form/label/label-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/form/label/label-runtime.vue2.js +0 -133
- package/lib/runtime/views/assemblys/form/link/link-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/form/link/link-runtime.vue2.js +0 -77
- package/lib/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +0 -29
- package/lib/runtime/views/assemblys/form/radio/radio-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +0 -157
- package/lib/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +0 -174
- package/lib/runtime/views/assemblys/form/select/select-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/form/select/select-runtime.vue2.js +0 -201
- package/lib/runtime/views/assemblys/form/switch/switch-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +0 -63
- package/lib/runtime/views/assemblys/form/tag/tag-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +0 -63
- package/lib/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +0 -65
- package/lib/runtime/views/assemblys/object-render.vue.js +0 -142
- package/lib/runtime/views/assemblys/object-render.vue2.js +0 -3
- package/lib/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +0 -3
- package/lib/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +0 -61
- package/lib/runtime/views/super-page.vue.js +0 -479
- package/lib/runtime/views/super-page.vue2.js +0 -3
- package/lib/src/assets/chart-themes/theme1.js +0 -7
- package/lib/src/assets/chart-themes/theme2.js +0 -7
- package/lib/src/assets/chart-themes/theme3.js +0 -7
- package/lib/src/utils/api/api-util.d.ts +0 -11
- package/lib/src/utils/api/api-util.js +0 -128
- package/lib/src/utils/charts/chart-util.js +0 -15
- package/lib/src/utils/common-util.d.ts +0 -11
- package/lib/src/utils/common-util.js +0 -81
- package/lib/src/utils/events/event-util.js +0 -525
- package/lib/src/utils/events/standard-event.js +0 -1623
- package/lib/src/utils/events/validator-util.d.ts +0 -4
- package/lib/src/utils/events/validator-util.js +0 -389
- package/lib/src/utils/global-refs.js +0 -65
- package/lib/src/utils/interfaces/page-design-types.js +0 -9
- package/lib/src/utils/page-helper-util.d.ts +0 -87
- package/lib/src/utils/page-helper-util.js +0 -503
- package/lib/src/utils/page-init-util.js +0 -200
- package/lib/src/utils/store-util.js +0 -17
- package/lib/src/utils/store.js +0 -3
- package/lib/src/utils/table-utils.js +0 -23
- package/lib/super-page-dialog/index.js +0 -3
- package/lib/super-page-dialog/super-page-dialog.vue.js +0 -73
- package/lib/super-page-dialog/super-page-dialog.vue2.js +0 -3
- package/lib/wf-editor/index.js +0 -3
- package/lib/wf-editor/wf-editor.css +0 -4
- package/lib/wf-editor/wf-editor.vue.js +0 -15
- package/main.ts +0 -11
- package/package-ws.json +0 -70
- package/public/favicon.ico +0 -0
- package/src/assets/base.css +0 -86
- package/src/assets/chart-themes/theme1.ts +0 -6
- package/src/assets/chart-themes/theme2.ts +0 -6
- package/src/assets/chart-themes/theme3.ts +0 -6
- package/src/assets/images/button/button-group.png +0 -0
- package/src/assets/images/button/button.png +0 -0
- package/src/assets/images/chart/chart-column.png +0 -0
- package/src/assets/images/chart/chart-gauge.png +0 -0
- package/src/assets/images/chart/chart-pie.png +0 -0
- package/src/assets/images/chart/chart-radar.png +0 -0
- package/src/assets/images/chart/chart-scatter.png +0 -0
- package/src/assets/images/container/container-card.png +0 -0
- package/src/assets/images/container/container-collapse.png +0 -0
- package/src/assets/images/container/container-container.png +0 -0
- package/src/assets/images/container/container-flex.png +0 -0
- package/src/assets/images/container/container-form.png +0 -0
- package/src/assets/images/container/container-iframe.png +0 -0
- package/src/assets/images/container/container-normal.png +0 -0
- package/src/assets/images/container/container-tabs.png +0 -0
- package/src/assets/images/container/container-tools.png +0 -0
- package/src/assets/images/data/data-process.png +0 -0
- package/src/assets/images/data/data-step.png +0 -0
- package/src/assets/images/data/data-table-column.png +0 -0
- package/src/assets/images/data/data-table.png +0 -0
- package/src/assets/images/data/data-timeline.png +0 -0
- package/src/assets/images/data/data-tree.png +0 -0
- package/src/assets/images/form/form-cascader.png +0 -0
- package/src/assets/images/form/form-check.png +0 -0
- package/src/assets/images/form/form-color.png +0 -0
- package/src/assets/images/form/form-count.png +0 -0
- package/src/assets/images/form/form-custom.png +0 -0
- package/src/assets/images/form/form-date.png +0 -0
- package/src/assets/images/form/form-dept.png +0 -0
- package/src/assets/images/form/form-divider.png +0 -0
- package/src/assets/images/form/form-file.png +0 -0
- package/src/assets/images/form/form-image-upload.png +0 -0
- package/src/assets/images/form/form-img.png +0 -0
- package/src/assets/images/form/form-input.png +0 -0
- package/src/assets/images/form/form-label.png +0 -0
- package/src/assets/images/form/form-link.png +0 -0
- package/src/assets/images/form/form-radio.png +0 -0
- package/src/assets/images/form/form-scan.png +0 -0
- package/src/assets/images/form/form-score.png +0 -0
- package/src/assets/images/form/form-select.png +0 -0
- package/src/assets/images/form/form-slider.png +0 -0
- package/src/assets/images/form/form-space.png +0 -0
- package/src/assets/images/form/form-switch.png +0 -0
- package/src/assets/images/form/form-text.png +0 -0
- package/src/assets/images/form/form-textarea.png +0 -0
- package/src/assets/images/form/form-transfer.png +0 -0
- package/src/assets/images/form/form-zoom.png +0 -0
- package/src/assets/images/group-button.png +0 -0
- package/src/assets/images/group-chart.png +0 -0
- package/src/assets/images/group-container.png +0 -0
- package/src/assets/images/group-data.png +0 -0
- package/src/assets/images/group-form.png +0 -0
- package/src/assets/images/group-workflow.png +0 -0
- package/src/assets/images/workflow/workflow-button.png +0 -0
- package/src/assets/images/workflow/workflow-history-texts.png +0 -0
- package/src/assets/images/workflow/workflow-history.png +0 -0
- package/src/assets/images/workflow/workflow-imagehistory.png +0 -0
- package/src/assets/images/workflow/workflow-texthistory .png +0 -0
- package/src/assets/logo.svg +0 -1
- package/src/assets/main.css +0 -1
- package/src/i18n/langs/cn.js +0 -52
- package/src/i18n/langs/en.js +0 -52
- package/src/stores/counter.ts +0 -12
- package/src/utils/api/api-util.ts +0 -176
- package/src/utils/charts/chart-util.ts +0 -41
- package/src/utils/common-util.ts +0 -96
- package/src/utils/container-style-util.ts +0 -237
- package/src/utils/eventBus.ts +0 -14
- package/src/utils/events/event-util.ts +0 -790
- package/src/utils/events/jump-page-util.ts +0 -0
- package/src/utils/events/standard-event.ts +0 -2075
- package/src/utils/events/validator-util.ts +0 -474
- package/src/utils/global-refs.ts +0 -160
- package/src/utils/interfaces/page-design-types.ts +0 -259
- package/src/utils/page-helper-util.ts +0 -850
- package/src/utils/page-init-util.ts +0 -291
- package/src/utils/page-permission-util.ts +0 -521
- package/src/utils/store-util.ts +0 -41
- package/src/utils/store.ts +0 -3
- package/src/utils/table-utils.ts +0 -31
- package/tsconfig copy.json +0 -17
- package/tsconfig.app copy.json +0 -14
- package/tsconfig.app.json +0 -14
- package/tsconfig.json +0 -17
- package/tsconfig.node copy.json +0 -19
- package/tsconfig.node.json +0 -19
- package/tsconfig.vitest copy.json +0 -11
- package/tsconfig.vitest.json +0 -11
- package/vite.config copy.ts +0 -109
- package/vite.config.ts +0 -86
- package/vitest.config.ts +0 -14
- /package/{lib/src → dist/es/components/runtime}/utils/store-util.d.ts +0 -0
- /package/{lib/src → dist/es/components/runtime}/utils/store.d.ts +0 -0
- /package/{lib → dist/es}/favicon.ico +0 -0
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const A = "data:image/png;base64,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";
|
|
2
|
+
export {
|
|
3
|
+
A as default
|
|
4
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const Y = "data:image/png;base64,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";
|
|
2
|
+
export {
|
|
3
|
+
Y as default
|
|
4
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ElMessage as e, ElMessageBox as s } from "element-plus";
|
|
2
|
+
import { functions as o } from "./page-expose-util.js";
|
|
3
|
+
import { standardEvents as t } from "../events/standard-event.js";
|
|
4
|
+
o.standardEvents = t, window.$PageUtil = o, window.$message = e, window.$messageBox = s;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const functions: any;
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
import { getOptionDatasSourceMap as e, getComponentOptionDatasFromPage as t, getVariableValue as n, setVariableValue as i, setValueForVariableName as o } from "../page-helper-util.js";
|
|
2
|
+
import { getComponentRef as a, getComponentRefByCode as r } from "../global-refs.js";
|
|
3
|
+
import s from "../eventBus.js";
|
|
4
|
+
import l from "agilebuilder-ui/src/utils/request";
|
|
5
|
+
import { getFormData as c, getAdditionalParamMap as u, refreshPage as f } from "../events/standard-event.js";
|
|
6
|
+
import { dynamicControlTableEdit as m, disabledAllFields as d, updateFormItemEditState as p } from "../events/validator-util.js";
|
|
7
|
+
import { deepCopy as g, getBaseUrl as b } from "../common-util.js";
|
|
8
|
+
import { replacePrefix as y, isMobileBrowser as h } from "agilebuilder-ui/src/utils/common-util";
|
|
9
|
+
import { getFormModelFields as E, getModelFields as P } from "../page-init-util.js";
|
|
10
|
+
import { getCustomFunc as C } from "../events/event-util.js";
|
|
11
|
+
import { isHasFieldPermissionAuth as $ } from "../table-utils.js";
|
|
12
|
+
const k = { showElement: function(e2, t2, n2) {
|
|
13
|
+
n2 ? A(e2, "showElement", t2) : t2.forEach((t3) => {
|
|
14
|
+
const n3 = r(e2, t3);
|
|
15
|
+
n3 ? n3.show() : console.error(`未找到code为${t3}的组件`);
|
|
16
|
+
});
|
|
17
|
+
}, hideElement: function(e2, t2, n2) {
|
|
18
|
+
n2 ? A(e2, "hideElement", t2) : t2.forEach((t3) => {
|
|
19
|
+
const n3 = r(e2, t3);
|
|
20
|
+
n3 ? n3.hide() : console.error(`未找到code为${t3}的组件`);
|
|
21
|
+
});
|
|
22
|
+
}, enableElement: function(e2, t2, n2) {
|
|
23
|
+
n2 ? A(e2, "enableElement", t2) : t2.forEach((t3) => {
|
|
24
|
+
const n3 = r(e2, t3);
|
|
25
|
+
if (n3) {
|
|
26
|
+
const e3 = n3.getConfigure();
|
|
27
|
+
e3 && e3.runtime.props && (e3.runtime.props.state = "enabled");
|
|
28
|
+
} else console.error(`未找到code为${t3}的组件`);
|
|
29
|
+
});
|
|
30
|
+
}, disableElement: function(e2, t2, n2) {
|
|
31
|
+
n2 ? A(e2, "disableElement", t2) : t2.forEach((t3) => {
|
|
32
|
+
const n3 = r(e2, t3);
|
|
33
|
+
if (n3) {
|
|
34
|
+
const e3 = n3.getConfigure();
|
|
35
|
+
e3 && e3.runtime.props && (e3.runtime.props.state = "disabled");
|
|
36
|
+
} else console.error(`未找到code为${t3}的组件`);
|
|
37
|
+
});
|
|
38
|
+
}, setEntityDataValue: function(e2, t2) {
|
|
39
|
+
Object.keys(t2).forEach((n2) => {
|
|
40
|
+
o(e2.entity, n2.startsWith("${") ? n2 : "${data." + n2 + "}", t2[n2]);
|
|
41
|
+
});
|
|
42
|
+
}, setEntityPageValue: function(e2, t2) {
|
|
43
|
+
Object.keys(t2).forEach((n2) => {
|
|
44
|
+
o(e2.entity, n2.startsWith("${") ? n2 : "${page." + n2 + "}", t2[n2]);
|
|
45
|
+
});
|
|
46
|
+
}, setEntityValueByType: function(e2, t2, n2) {
|
|
47
|
+
Object.keys(n2).forEach((i2) => {
|
|
48
|
+
o(e2.entity, i2.startsWith("${") ? i2 : "${" + t2 + "." + i2 + "}", n2[i2]);
|
|
49
|
+
});
|
|
50
|
+
}, dynamicControlFormEdit: function(e2, t2, n2) {
|
|
51
|
+
n2 ? A(e2, "dynamicControlFormEdit", t2) : p(e2, t2);
|
|
52
|
+
}, disabledAllFields(e2) {
|
|
53
|
+
d(e2);
|
|
54
|
+
}, dynamicControlTableEdit(e2, t2, n2) {
|
|
55
|
+
m(e2, t2, n2);
|
|
56
|
+
}, executeServiceFlow: function(e2, t2, n2) {
|
|
57
|
+
const i2 = e2.code;
|
|
58
|
+
n2 || (n2 = { entity: e2.entity.data, serviceVariables: {}, requestParams: u(e2), taskParamMap: e2.entity.task, dynamicDimensionValue: [], dynamicSortValue: "" }), n2.entity || (n2.entity = e2.entity.data), n2.requestParams || (n2.requestParams = u(e2)), n2.taskParamMap || (n2.taskParamMap = e2.entity.task);
|
|
59
|
+
const o2 = e2.backendUrl, a2 = b(o2, e2.isTest);
|
|
60
|
+
return l.post(`${a2}/dsc/service-flow/execute/${i2}/${t2}`, n2);
|
|
61
|
+
}, openPage: function(e2, t2) {
|
|
62
|
+
s.$emit(e2.code + "_open-dialog", { pageContext: e2, eventParams: t2.eventParams, configureObj: { props: { linkPage: t2 } } });
|
|
63
|
+
}, refreshPage: function(e2, t2) {
|
|
64
|
+
f(e2, t2);
|
|
65
|
+
}, refreshSubTableHandle: function(e2, t2) {
|
|
66
|
+
let n2;
|
|
67
|
+
const i2 = r(e2, t2);
|
|
68
|
+
if (i2) {
|
|
69
|
+
const e3 = i2.getConfigure();
|
|
70
|
+
e3 && e3.uuid && e3.name && "table" === e3.name && (n2 = e3.uuid);
|
|
71
|
+
}
|
|
72
|
+
n2 ? s.$emit("_refreshSubTableHandle_" + n2) : console.error("tableUUid is undefined");
|
|
73
|
+
}, refreshChildData(e2, t2, n2) {
|
|
74
|
+
let i2;
|
|
75
|
+
const o2 = r(e2, t2);
|
|
76
|
+
if (o2) {
|
|
77
|
+
const e3 = o2.getConfigure();
|
|
78
|
+
e3 && e3.uuid && e3.name && "table" === e3.name && (i2 = e3.uuid);
|
|
79
|
+
}
|
|
80
|
+
i2 ? s.$emit("_refreshChildData_" + i2, n2) : console.error("tableUUid is undefined");
|
|
81
|
+
}, getServerConfigValue: (e2) => window.$vueApp.config.globalProperties[e2], getBackendUrl: (e2) => b(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) => u(e2), getAdditionalParamValue(e2, t2) {
|
|
82
|
+
const n2 = u(e2);
|
|
83
|
+
return n2 ? n2[t2] : null;
|
|
84
|
+
}, isMobile: () => h(), getComponentRefByProp: (e2, t2) => r(e2, t2), getComponentRefByCode: (e2, t2) => a(e2, t2), getFormViewData(o2) {
|
|
85
|
+
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
86
|
+
const r2 = o2.entity ? o2.entity : {}, s2 = g(r2), l2 = e(o2);
|
|
87
|
+
for (const e2 in l2) {
|
|
88
|
+
const r3 = t(o2, e2), l3 = a(o2, e2);
|
|
89
|
+
if (l3) {
|
|
90
|
+
const e3 = l3.getConfigure();
|
|
91
|
+
if (e3 && ((_b = (_a = e3.props) == null ? void 0 : _a.dataOrigin) == null ? void 0 : _b.optionValueSetType) && ("static" === ((_d = (_c = e3.props) == null ? void 0 : _c.dataOrigin) == null ? void 0 : _d.optionValueSetType) || "optionGroup" === ((_f = (_e = e3.props) == null ? void 0 : _e.dataOrigin) == null ? void 0 : _f.optionValueSetType))) if (e3.name && ("select" === e3.name && ((_h = (_g = e3.props) == null ? void 0 : _g.base) == null ? void 0 : _h.multiple) || "checkbox" === e3.name)) {
|
|
92
|
+
const t2 = E(o2, e3), a2 = n(s2, t2);
|
|
93
|
+
if (a2) {
|
|
94
|
+
const e4 = j(a2.split(","), r3);
|
|
95
|
+
i(s2, t2, e4);
|
|
96
|
+
}
|
|
97
|
+
} else {
|
|
98
|
+
const t2 = E(o2, e3), a2 = j(n(s2, t2), r3);
|
|
99
|
+
i(s2, t2, a2);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
const c2 = o2.listCodesMap;
|
|
104
|
+
for (const e2 in c2) {
|
|
105
|
+
let t2;
|
|
106
|
+
if (e2.indexOf("__") > 0 && (t2 = e2.substring(e2.lastIndexOf("__") + 2)), t2) {
|
|
107
|
+
const i2 = a(o2, t2);
|
|
108
|
+
if (i2) {
|
|
109
|
+
const t3 = i2.getConfigure(), o3 = t3.code ? t3.code : e2, a2 = P(t3, o3), r3 = n(s2, a2);
|
|
110
|
+
v(i2.getTableSelectOptions(e2), r3);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
return s2.data;
|
|
115
|
+
}, getFormData: (e2, t2) => c(e2, t2), getCustomFunc: (e2, t2) => C(e2, t2), replaceUrlPrefix: (e2) => y(e2), isHasFieldAuthPermission: (e2) => {
|
|
116
|
+
var _a, _b, _c, _d;
|
|
117
|
+
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));
|
|
118
|
+
}, isHasFieldAuth(e2, t2) {
|
|
119
|
+
$(e2, null, t2);
|
|
120
|
+
}, isHasFieldAuthWithTable(e2, t2, n2) {
|
|
121
|
+
$(e2, t2, n2);
|
|
122
|
+
} };
|
|
123
|
+
function v(e2, t2) {
|
|
124
|
+
e2 && t2 && t2.forEach((t3) => {
|
|
125
|
+
Object.keys(e2).forEach((n2) => {
|
|
126
|
+
const i2 = t3[n2], o2 = e2[n2], a2 = o2.options, r2 = o2.column;
|
|
127
|
+
let s2;
|
|
128
|
+
if (r2 && r2.componentType && ("multiselect" === r2.componentType || "checkbox" === r2.componentType)) {
|
|
129
|
+
if (i2) {
|
|
130
|
+
s2 = j(i2.split(","), a2);
|
|
131
|
+
}
|
|
132
|
+
} else s2 = j(i2, a2);
|
|
133
|
+
t3[n2] = s2;
|
|
134
|
+
});
|
|
135
|
+
});
|
|
136
|
+
}
|
|
137
|
+
function j(e2, t2) {
|
|
138
|
+
let n2;
|
|
139
|
+
return null != e2 && t2 && (Array.isArray(e2) ? (n2 = "", e2.forEach((i2) => {
|
|
140
|
+
n2 = n2 + V(e2, t2) + ",";
|
|
141
|
+
}), n2.indexOf(",") > 0 && (n2 = n2.substring(0, n2.lastIndexOf(",")))) : (n2 = e2, n2 = V(e2, t2))), n2;
|
|
142
|
+
}
|
|
143
|
+
function V(e2, t2) {
|
|
144
|
+
let n2 = e2;
|
|
145
|
+
if (null != e2 && t2) for (let i2 = 0; i2 < t2.length; i2++) {
|
|
146
|
+
const o2 = t2[i2].value, a2 = t2[i2].label ? t2[i2].label : t2[i2].name;
|
|
147
|
+
if (e2 + "" == o2 + "" && null != a2) {
|
|
148
|
+
n2 = a2;
|
|
149
|
+
break;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
return n2;
|
|
153
|
+
}
|
|
154
|
+
function A(e2, t2, n2) {
|
|
155
|
+
e2.initInfo || (e2.initInfo = {}), e2.initInfo[t2] = n2;
|
|
156
|
+
}
|
|
157
|
+
export {
|
|
158
|
+
k as functions
|
|
159
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { defineAsyncComponent as e } from "vue";
|
|
2
|
+
import { usePageContextStore as t } from "./page-store.js";
|
|
3
|
+
const m = [{ name: "container", label: "容器", icon: "assets/images/group-container.png", items: [{ name: "form", label: "表单", runtimeComponent: e(() => import("../views/assemblys/container/form/form-runtime.vue.js")) }, { name: "card", label: "卡片", runtimeComponent: e(() => import("../views/assemblys/container/card/card-runtime.vue.js")) }, { name: "collapse", label: "折叠面板", runtimeComponent: e(() => import("../views/assemblys/container/collapse/collapse-runtime.vue.js")) }, { name: "layout", label: "Flex", runtimeComponent: e(() => import("../views/assemblys/container/flex/flex-runtime.vue.js")) }, { name: "tabs", label: "Tabs", runtimeComponent: e(() => import("../views/assemblys/container/tabs/tabs-runtime.vue.js")) }, { name: "tools", label: "工具栏", runtimeComponent: e(() => import("../views/assemblys/container/tools/tools-runtime.vue.js")) }, { name: "iframe", label: "Iframe", runtimeComponent: e(() => import("../views/assemblys/container/iframe/iframe-runtime.vue.js")) }, { name: "container", label: "布局", runtimeComponent: e(() => import("../views/assemblys/container/container/container-runtime.vue.js")) }] }, { name: "form", label: "表单", items: [{ name: "input-text", label: "文本框", runtimeComponent: e(() => import("../views/assemblys/form/input-text/inputtext-runtime.vue.js")) }, { name: "select", label: "下拉框", runtimeComponent: e(() => import("../views/assemblys/form/select/select-runtime.vue.js")) }, { name: "radio", label: "单选框", runtimeComponent: e(() => import("../views/assemblys/form/radio/radio-runtime.vue.js")) }, { name: "checkbox", label: "复选框", runtimeComponent: e(() => import("../views/assemblys/form/checkbox/checkbox-runtime.vue.js")) }, { name: "textarea", label: "文本域", runtimeComponent: e(() => import("../views/assemblys/form/textarea/textarea-runtime.vue.js")) }, { name: "datePicker", label: "日期/时间", runtimeComponent: e(() => import("../views/assemblys/form/date-picker/datepicker-runtime.vue.js")) }, { name: "switch", label: "开关", runtimeComponent: e(() => import("../views/assemblys/form/switch/switch-runtime.vue.js")) }, { name: "inputNumber", label: "计数器", runtimeComponent: e(() => import("../views/assemblys/form/input-number/input-number-runtime.vue.js")) }, { name: "tag", label: "标签", runtimeComponent: e(() => import("../views/assemblys/form/tag/tag-runtime.vue.js")) }, { name: "richText", label: "富文本", runtimeComponent: e(() => import("../views/assemblys/form/rich-text/richtext-runtime.vue.js")) }, { name: "divider", label: "分割线", runtimeComponent: e(() => import("../views/assemblys/form/divider/divider-runtime.vue.js")) }, { name: "separatelabel", label: "分割标签", runtimeComponent: e(() => import("../views/assemblys/form/separatelabel/separatelabel-runtime.vue.js")) }, { name: "placeholder", label: "占位符", runtimeComponent: e(() => import("../views/assemblys/form/placeholder/placeholder-runtime.vue.js")) }, { name: "link", label: "链接", runtimeComponent: e(() => import("../views/assemblys/form/link/link-runtime.vue.js")) }, { name: "label", label: "Label组件", runtimeComponent: e(() => import("../views/assemblys/form/label/label-runtime.vue.js")) }, { name: "dept-tree", label: "组织树", runtimeComponent: e(() => import("../views/assemblys/form/dept-tree/depttree-runtime.vue.js")) }, { name: "file-upload", label: "文件上传", runtimeComponent: e(() => import("../views/assemblys/form/file-upload/fileupload-runtime.vue.js")) }] }, { name: "button", label: "按钮", items: [{ name: "button-detail", label: "按钮", runtimeComponent: e(() => import("../views/assemblys/button/button/button-runtime.vue.js")) }, { name: "button-group", label: "按钮组", runtimeComponent: e(() => import("../views/assemblys/button/button-group/buttongroup-runtime.vue.js")) }, { name: "dropdown", label: "下拉菜单", runtimeComponent: e(() => import("../views/assemblys/button/dropdown/dropdown-runtime.vue.js")) }, { name: "print-label", label: "打印标签", runtimeComponent: e(() => import("../views/assemblys/button/print-label/printlabel-runtime.vue.js")) }, { name: "export-pdf", label: "打印标签", runtimeComponent: e(() => import("../views/assemblys/button/export-pdf/exportpdf-runtime.vue.js")) }] }, { name: "workflow", label: "工作流", items: [{ name: "workflow-button", label: "工作流按钮", runtimeComponent: e(() => import("../views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js")) }, { name: "picture-flow", label: "图形历史", runtimeComponent: e(() => import("../views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js")) }, { name: "text-flow", label: "文本历史", runtimeComponent: e(() => import("../views/assemblys/workflow/text-history/textflow-runtime.vue.js")) }, { name: "workflow-node", label: "流程环节", runtimeComponent: e(() => import("../views/assemblys/workflow/workflow-node/workflownode-runtime.vue.js")) }] }, { name: "chart", label: "统计图", items: [{ name: "chart-column-line", label: "柱/折图", runtimeComponent: e(() => import("../views/assemblys/chart/column-line/column-line-runtime.vue.js")) }, { name: "chart-pie", label: "饼图", runtimeComponent: e(() => import("../views/assemblys/chart/pie/pie-runtime.vue.js")) }, { name: "chart-gauge", label: "仪表盘", runtimeComponent: e(() => import("../views/assemblys/chart/gauge/gauge-runtime.vue.js")) }, { name: "chart-radar", label: "雷达图", runtimeComponent: e(() => import("../views/assemblys/chart/radar/radar-runtime.vue.js")) }, { name: "chart-scatter", label: "散点图", runtimeComponent: e(() => import("../views/assemblys/chart/scatter/scatter-runtime.vue.js")) }, { name: "statistical-table", label: "统计表格", runtimeComponent: e(() => import("../views/assemblys/chart/table/table-runtime.vue.js")) }] }, { name: "data", label: "数据", items: [{ name: "table", label: "表格", runtimeComponent: e(() => import("../views/assemblys/data/table/table-runtime.vue.js")) }, { name: "tree", label: "树控件", runtimeComponent: e(() => import("../views/assemblys/data/tree/tree-runtime.vue.js")) }, { name: "bar-code", label: "条码", runtimeComponent: e(() => import("../views/assemblys/data/bar-code/barcode-runtime.vue.js")) }] }, { name: "other", label: "其他", items: [{ name: "custom", label: "自定义", runtimeComponent: e(() => import("../views/assemblys/form/custom/custom-runtime.vue.js")) }] }];
|
|
4
|
+
function n(e2) {
|
|
5
|
+
if (!e2) return null;
|
|
6
|
+
for (let n2 = 0; n2 < m.length; n2++) {
|
|
7
|
+
let o = m[n2].items;
|
|
8
|
+
for (let m2 = 0; m2 < o.length; m2++) {
|
|
9
|
+
let n3 = o[m2];
|
|
10
|
+
if (n3.name == e2) {
|
|
11
|
+
return t().countComponentsTotalNmber(), n3.runtimeComponent;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
return null;
|
|
16
|
+
}
|
|
17
|
+
export {
|
|
18
|
+
m as assemblyGroups,
|
|
19
|
+
n as getRuntimeComponentByName
|
|
20
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
function e(e2, t) {
|
|
2
|
+
let n = true, r = "";
|
|
3
|
+
return e2.forEach((e3) => {
|
|
4
|
+
if ("-1" !== e3.propDbName && -1 !== e3.propDbName) {
|
|
5
|
+
const a = t[e3.propDbName];
|
|
6
|
+
e3.supplementaryCharacters && e3.length ? a ? a.length > e3.length ? r += a.substring(0, e3.length) : r += a.padEnd(e3.length, e3.supplementaryCharacters) : r += "".padEnd(e3.length, e3.supplementaryCharacters) : a ? r += a : n = false;
|
|
7
|
+
} else r += e3.fixedValue;
|
|
8
|
+
}), n ? r : null;
|
|
9
|
+
}
|
|
10
|
+
export {
|
|
11
|
+
e as generateCodeByRule
|
|
12
|
+
};
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
import { getValueFromSource as e, formatVariableValue as i, setValueForVariableName as t } from "../page-helper-util.js";
|
|
2
|
+
import { deepCopy as s } from "../common-util.js";
|
|
3
|
+
import { setDefaultGrid as o, CommonName as a, caculateFormulaValue as l, sortDatas as n, limitDatas as r, executeChartFormula as u } from "./chart-util.js";
|
|
4
|
+
import { handleChartEvent as c } from "../events/event-util.js";
|
|
5
|
+
function d(d2, f, p, m) {
|
|
6
|
+
if (!m || !m.result) return;
|
|
7
|
+
o(p), c(d2, f, "beforeUpdateChart", p, { resultData: m });
|
|
8
|
+
const h = m && m.result ? m.result : {};
|
|
9
|
+
let y = m && m.groupValue ? m.groupValue : void 0;
|
|
10
|
+
const g = f.serviceDataField;
|
|
11
|
+
let v = null;
|
|
12
|
+
g ? v = h[g] : h && (v = Array.isArray(h) ? h : [h]), v || (v = []), f.runtime.dataConfig.runtimeData = v;
|
|
13
|
+
let F = f.props ? f.props.groups : null;
|
|
14
|
+
if (F || (F = []), !y || 0 === y.length) {
|
|
15
|
+
y = [];
|
|
16
|
+
for (const e2 of F) y.push(e2.group);
|
|
17
|
+
}
|
|
18
|
+
const S = {}, D = [], x = [];
|
|
19
|
+
for (const e2 of F) S[e2.group] = e2.target, e2.target && !D.includes(e2.target) && (D.push(e2.target), y.includes(e2.group) && x.push(e2.target));
|
|
20
|
+
let N = f.props ? f.props.mulGroupShow : "";
|
|
21
|
+
N = "break" == N ? "\r\n" : " ";
|
|
22
|
+
for (const i2 of v) {
|
|
23
|
+
if (!i2) continue;
|
|
24
|
+
const t2 = [];
|
|
25
|
+
for (const s3 of y) {
|
|
26
|
+
const o2 = S[s3], a2 = e(i2, o2, void 0);
|
|
27
|
+
a2 && t2.push(a2);
|
|
28
|
+
}
|
|
29
|
+
const s2 = t2.join(N);
|
|
30
|
+
i2[a.X_FIELD_NAME] = s2;
|
|
31
|
+
}
|
|
32
|
+
const E = f.items ? f.items : [], A = [], _ = {}, b = [], w = {}, C = [], I = [], X = /* @__PURE__ */ new Set(), L = l(E, v, X);
|
|
33
|
+
for (const e2 of X) C.push(e2);
|
|
34
|
+
for (const e2 of E) {
|
|
35
|
+
const i2 = e2.props ? e2.props : {}, t2 = i2.yaxisSource, s2 = i2.yaxisField, o2 = i2.isCumulative;
|
|
36
|
+
let a2 = null;
|
|
37
|
+
if (!s2 || t2 && "variable" != t2) if ("formula" == t2) {
|
|
38
|
+
let t3 = i2.formula ? i2.formula : "";
|
|
39
|
+
for (const e3 in L) t3 = t3.replace(new RegExp(e3.replace("$", "\\$"), "g"), L[e3]);
|
|
40
|
+
a2 = { uuid: e2.uuid, type: "formula", formula: t3, data: [], dynamicDatas: [] };
|
|
41
|
+
} else a2 = { uuid: e2.uuid, type: "fixed", field: i2.yaxisFix, data: [], dynamicDatas: [] };
|
|
42
|
+
else a2 = { uuid: e2.uuid, type: "variable", field: s2, isCumulative: o2, data: [], dynamicDatas: [] }, s2 && !C.includes(s2) && C.push(s2), s2 && !I.includes(s2) && I.push(s2), o2 && !X.has(s2) && X.add(s2);
|
|
43
|
+
null != a2 && (A.push(a2), _[e2.uuid] = a2), i2.dynamicSeriesField && !b.includes(i2.dynamicSeriesField) && a2 && (a2.dynamicField = i2.dynamicSeriesField, a2.dynamicSeriesTitle = i2.dynamicSeriesTitle, a2.dynamicShowStack = i2.dynamicShowStack, b.push(i2.dynamicSeriesField), w[i2.dynamicSeriesField] = s2);
|
|
44
|
+
}
|
|
45
|
+
const M = {};
|
|
46
|
+
if (b.length > 0) {
|
|
47
|
+
const i2 = [], t2 = {};
|
|
48
|
+
for (const s2 of v) if (s2) for (const o2 of C) {
|
|
49
|
+
const l2 = s2[a.X_FIELD_NAME];
|
|
50
|
+
let n2 = t2[l2];
|
|
51
|
+
if (!n2) {
|
|
52
|
+
n2 = {};
|
|
53
|
+
for (const e2 of D) n2[e2] = s2[e2];
|
|
54
|
+
n2[a.X_FIELD_NAME] = s2[a.X_FIELD_NAME], t2[l2] = n2, i2.push(n2);
|
|
55
|
+
}
|
|
56
|
+
let r2 = e(s2, o2, void 0);
|
|
57
|
+
if (!isNaN(r2)) {
|
|
58
|
+
const e2 = n2[o2];
|
|
59
|
+
isNaN || (r2 += e2), n2[o2] = r2;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
for (const i3 of b) {
|
|
63
|
+
const s2 = [];
|
|
64
|
+
for (const o2 of v) {
|
|
65
|
+
if (!o2) continue;
|
|
66
|
+
const l2 = t2[o2[a.X_FIELD_NAME]];
|
|
67
|
+
if (!l2) continue;
|
|
68
|
+
let n2 = e(o2, i3, void 0);
|
|
69
|
+
n2 = null == n2 || null == n2 ? "" : n2, s2.includes(n2) || (s2.push(n2), I.push(n2), X.add(n2));
|
|
70
|
+
const r2 = w[i3];
|
|
71
|
+
if (void 0 !== r2) {
|
|
72
|
+
const i4 = e(o2, r2, void 0);
|
|
73
|
+
let t3 = l2[n2];
|
|
74
|
+
void 0 === t3 ? t3 = i4 : isNaN(i4) || (t3 += i4), l2[n2] = t3;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
M[i3] = s2;
|
|
78
|
+
}
|
|
79
|
+
v = i2;
|
|
80
|
+
}
|
|
81
|
+
n(d2, f, v), v = r(d2, f, v, D, I);
|
|
82
|
+
const j = [], k = {};
|
|
83
|
+
for (const i2 of v) if (i2) {
|
|
84
|
+
for (const t2 of X) {
|
|
85
|
+
const s2 = e(i2, t2, void 0);
|
|
86
|
+
let o2 = k[t2];
|
|
87
|
+
void 0 === s2 || isNaN(s2) || (void 0 === o2 ? o2 = s2 : o2 += s2), k[t2] = o2;
|
|
88
|
+
}
|
|
89
|
+
j.push(i2[a.X_FIELD_NAME]);
|
|
90
|
+
for (const t2 of A) {
|
|
91
|
+
let s2 = t2.data;
|
|
92
|
+
const o2 = t2.dynamicDatas;
|
|
93
|
+
if (t2.dynamicField) {
|
|
94
|
+
let a2 = M[t2.dynamicField];
|
|
95
|
+
a2 = a2 || [];
|
|
96
|
+
for (let l2 = 0; l2 < a2.length; l2++) {
|
|
97
|
+
l2 >= o2.length && o2.push([]), s2 = o2[l2];
|
|
98
|
+
const n2 = a2[l2];
|
|
99
|
+
let r2 = e(i2, n2, void 0);
|
|
100
|
+
t2.isCumulative && (r2 = k[n2]), s2.push(r2);
|
|
101
|
+
}
|
|
102
|
+
} else if ("fixed" === t2.type) s2.push(t2.field);
|
|
103
|
+
else if ("variable" === t2.type) {
|
|
104
|
+
let o3 = e(i2, t2.field, void 0);
|
|
105
|
+
t2.isCumulative && (o3 = k[t2.field]), s2.push(o3);
|
|
106
|
+
} else if ("formula" === t2.type) {
|
|
107
|
+
const e2 = u(t2.formula, k, i2, d2);
|
|
108
|
+
s2.push(e2);
|
|
109
|
+
} else s2.push(void 0);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
const T = f.defaultSeries, V = s(null == T ? [] : T), $ = [];
|
|
113
|
+
for (const e2 of V) {
|
|
114
|
+
const t2 = _[e2.uuid];
|
|
115
|
+
if (t2.dynamicField) {
|
|
116
|
+
let o2 = M[t2.dynamicField];
|
|
117
|
+
o2 = o2 || [];
|
|
118
|
+
const a2 = t2.dynamicDatas ? t2.dynamicDatas : [];
|
|
119
|
+
for (let l2 = 0; l2 < o2.length; l2++) {
|
|
120
|
+
const n2 = o2[l2], r2 = s(e2);
|
|
121
|
+
if (t2.dynamicSeriesTitle) {
|
|
122
|
+
const e3 = t2.dynamicSeriesTitle.replace("${name}", n2);
|
|
123
|
+
r2.name = i(d2, e3);
|
|
124
|
+
} else r2.name = n2;
|
|
125
|
+
r2.data = l2 < a2.length ? a2[l2] : [], "bar" == e2.type && t2.dynamicShowStack && (r2.stack = e2.uuid), $.push(r2);
|
|
126
|
+
}
|
|
127
|
+
} else e2.data = t2 ? t2.data : [], $.push(e2);
|
|
128
|
+
}
|
|
129
|
+
p.series = $;
|
|
130
|
+
const G = f.defaultXaxis, R = f.defaultYaxis;
|
|
131
|
+
if (p.isBar) {
|
|
132
|
+
if (R) for (const e2 of R) e2.data = j;
|
|
133
|
+
p.xAxis = G, p.yAxis = R;
|
|
134
|
+
} else G && G.length > 0 && (G[0].data = j), p.xAxis = G, p.yAxis = R;
|
|
135
|
+
const U = f.props ? f.props.selGroupVariable : null;
|
|
136
|
+
!(f.props ? f.props.enableDrill : null) && U && (f.highlightInfos = [], t(d2.entity, U, null)), c(d2, f, "afterUpdateChart", p, { resultData: m }), f.groupFields = x, f.cacheDatas = v, f.rawResult = m;
|
|
137
|
+
}
|
|
138
|
+
export {
|
|
139
|
+
d as updateChartOption
|
|
140
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { formatVariableValue as e, getValueFromSource as o } from "../page-helper-util.js";
|
|
2
|
+
import { deepCopy as t } from "../common-util.js";
|
|
3
|
+
import { setDefaultGrid as s } from "./chart-util.js";
|
|
4
|
+
function r(r2, l, i, p) {
|
|
5
|
+
if (!p || !p.result) return;
|
|
6
|
+
s(i);
|
|
7
|
+
const n = p && p.result ? p.result : {}, a = l.serviceDataField;
|
|
8
|
+
let u = null;
|
|
9
|
+
a ? u = n[a] : n && (u = [n]), u || (u = []);
|
|
10
|
+
const c = l.props ? l.props.nameSource : void 0, d = l.props ? l.props.nameField : void 0, m = l.props ? l.props.nameFixed : void 0, f = l.props ? l.props.yaxisField : void 0, h = [d], v = [], g = [];
|
|
11
|
+
for (const t2 of u) {
|
|
12
|
+
if (!t2) continue;
|
|
13
|
+
let s2 = null;
|
|
14
|
+
s2 = "fixed" == c ? e(r2, m) : o(t2, d, void 0), v.push(s2);
|
|
15
|
+
const l2 = o(t2, f, void 0);
|
|
16
|
+
g.push(l2);
|
|
17
|
+
}
|
|
18
|
+
const F = l.defaultSeries;
|
|
19
|
+
let x = F[0].pieColors;
|
|
20
|
+
x = x || [];
|
|
21
|
+
let j = F[0].pieColorMap;
|
|
22
|
+
j = j || {};
|
|
23
|
+
const S = [];
|
|
24
|
+
for (let e2 = 0; e2 < v.length && e2 < g.length; e2++) {
|
|
25
|
+
const o2 = { value: g[e2], name: v[e2] };
|
|
26
|
+
if (e2 < x.length || j[o2.name]) {
|
|
27
|
+
let t2 = j[o2.name];
|
|
28
|
+
t2 || (t2 = x[e2]), t2 && (o2.itemStyle = { color: t2 });
|
|
29
|
+
}
|
|
30
|
+
S.push(o2);
|
|
31
|
+
}
|
|
32
|
+
const y = t(F);
|
|
33
|
+
y[0].data = S, i.series = [y[0]], updateLegend(i), l.groupFields = h, l.cacheDatas = u, l.rawResult = p;
|
|
34
|
+
}
|
|
35
|
+
export {
|
|
36
|
+
r as updateChartOption
|
|
37
|
+
};
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { getValueFromSource as o, setValueForVariableName as t } from "../page-helper-util.js";
|
|
2
|
+
import { deepCopy as r } from "../common-util.js";
|
|
3
|
+
import { setDefaultGrid as s, CommonName as e, caculateFormulaValue as l, executeChartFormula as n, sortDatas as p, limitDatas as i } from "./chart-util.js";
|
|
4
|
+
function u(u2, c, a, f) {
|
|
5
|
+
if (!f || !f.result) return;
|
|
6
|
+
s(a);
|
|
7
|
+
const g = f && f.result ? f.result : {};
|
|
8
|
+
let m = f && f.groupValue ? f.groupValue : void 0;
|
|
9
|
+
const h = c.serviceDataField;
|
|
10
|
+
let d = null;
|
|
11
|
+
h ? d = g[h] : g && (d = Array.isArray(g) ? g : [g]), d || (d = []);
|
|
12
|
+
let y = c.props ? c.props.groups : null;
|
|
13
|
+
if (y || (y = []), !m || 0 === m.length) {
|
|
14
|
+
m = [];
|
|
15
|
+
for (const o2 of y) m.push(o2.group);
|
|
16
|
+
}
|
|
17
|
+
const x = {}, v = [], E = [];
|
|
18
|
+
for (const o2 of y) x[o2.group] = o2.target, o2.target && !v.includes(o2.target) && (v.push(o2.target), m.includes(o2.group) && E.push(o2.target));
|
|
19
|
+
let F = c.props ? c.props.mulGroupShow : "";
|
|
20
|
+
F = "break" == F ? "\r\n" : " ";
|
|
21
|
+
for (const t2 of d) {
|
|
22
|
+
if (!t2) continue;
|
|
23
|
+
const r2 = [];
|
|
24
|
+
for (const s3 of m) {
|
|
25
|
+
const e2 = x[s3], l2 = o(t2, e2, void 0);
|
|
26
|
+
l2 && r2.push(l2);
|
|
27
|
+
}
|
|
28
|
+
const s2 = r2.join(F);
|
|
29
|
+
t2[e.X_FIELD_NAME] = s2;
|
|
30
|
+
}
|
|
31
|
+
const S = c.items ? c.items : [];
|
|
32
|
+
if (0 == S.length) return;
|
|
33
|
+
const _ = c.props ? c.props : {};
|
|
34
|
+
let A = _.yaxisField;
|
|
35
|
+
if (S[0].props.yaxisField = A, S[0].props.yaxisSource = _.yaxisSource, S[0].props.formula = _.formula, "formula" === _.yaxisSource) {
|
|
36
|
+
const t2 = [], r2 = l(S, d, t2);
|
|
37
|
+
let s2 = _.formula ? _.formula : "";
|
|
38
|
+
for (const o2 in r2) s2 = s2.replace(new RegExp(o2.replace("$", "\\$"), "g"), r2[o2]);
|
|
39
|
+
A = e.Y_TEMP_NAME;
|
|
40
|
+
const p2 = {};
|
|
41
|
+
for (const r3 of d) {
|
|
42
|
+
if (!r3) continue;
|
|
43
|
+
for (const s3 of t2) {
|
|
44
|
+
const t3 = o(r3, s3, void 0);
|
|
45
|
+
let e3 = p2[s3];
|
|
46
|
+
void 0 === t3 || isNaN(t3) || (void 0 === e3 ? e3 = t3 : e3 += t3), p2[s3] = e3;
|
|
47
|
+
}
|
|
48
|
+
const e2 = n(s2, p2, r3, u2);
|
|
49
|
+
r3[A] = e2;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
S[0].props.yaxisField = A, S[0].props.yaxisSource = "", p(u2, c, d), d = i(u2, c, d, v, [A]);
|
|
53
|
+
const D = [], M = [];
|
|
54
|
+
for (const t2 of d) {
|
|
55
|
+
if (!t2) continue;
|
|
56
|
+
D.push(t2[e.X_FIELD_NAME]);
|
|
57
|
+
const r2 = o(t2, A, void 0);
|
|
58
|
+
M.push(r2);
|
|
59
|
+
}
|
|
60
|
+
const N = c.defaultSeries;
|
|
61
|
+
let j = N[0].pieColors;
|
|
62
|
+
j = j || [];
|
|
63
|
+
let b = N[0].pieColorMap;
|
|
64
|
+
b = b || {};
|
|
65
|
+
const w = [];
|
|
66
|
+
for (let o2 = 0; o2 < D.length && o2 < M.length; o2++) {
|
|
67
|
+
const t2 = { value: M[o2], name: D[o2] };
|
|
68
|
+
if (o2 < j.length || b[t2.name]) {
|
|
69
|
+
let r2 = b[t2.name];
|
|
70
|
+
r2 || (r2 = j[o2]), r2 && (t2.itemStyle = { color: r2 });
|
|
71
|
+
}
|
|
72
|
+
w.push(t2);
|
|
73
|
+
}
|
|
74
|
+
const I = r(N);
|
|
75
|
+
I[0].data = w, a.series = [I[0]];
|
|
76
|
+
const V = c.props ? c.props.selGroupVariable : null;
|
|
77
|
+
!(c.props ? c.props.enableDrill : null) && V && (c.highlightInfos = [], t(u2.entity, V, null)), c.groupFields = E, c.cacheDatas = d, c.rawResult = f;
|
|
78
|
+
}
|
|
79
|
+
export {
|
|
80
|
+
u as updateChartOption
|
|
81
|
+
};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { getValueFromSource as e } from "../page-helper-util.js";
|
|
2
|
+
import { deepCopy as o } from "../common-util.js";
|
|
3
|
+
import { setDefaultGrid as i, caculateFormulaValue as t, executeChartFormula as a } from "./chart-util.js";
|
|
4
|
+
function s(s2, r, l, u) {
|
|
5
|
+
if (!u || !u.result) return;
|
|
6
|
+
i(l);
|
|
7
|
+
const f = u && u.result ? u.result : {}, d = r.serviceDataField;
|
|
8
|
+
let n = null;
|
|
9
|
+
d ? n = f[d] : f && (n = Array.isArray(f) ? f : [f]), n || (n = []);
|
|
10
|
+
const c = r.items ? r.items : [], p = [], m = {}, x = [], v = t(c, n, x);
|
|
11
|
+
for (const e2 of c) {
|
|
12
|
+
const o2 = e2.props ? e2.props : {}, i2 = o2.yaxisSource, t2 = o2.yaxisField;
|
|
13
|
+
let a2 = null;
|
|
14
|
+
if (!t2 || i2 && "variable" != i2) if ("formula" == i2) {
|
|
15
|
+
let i3 = o2.formula ? o2.formula : "";
|
|
16
|
+
for (const e3 in v) i3 = i3.replace(new RegExp(e3.replace("$", "\\$"), "g"), v[e3]);
|
|
17
|
+
a2 = { uuid: e2.uuid, type: "formula", formula: i3, data: [] };
|
|
18
|
+
} else a2 = { uuid: e2.uuid, type: "fixed", field: o2.yaxisFix, data: [] };
|
|
19
|
+
else a2 = { uuid: e2.uuid, type: "variable", field: t2, data: [] };
|
|
20
|
+
a2 && (p.push(a2), m[a2.uuid] = a2);
|
|
21
|
+
}
|
|
22
|
+
const y = r.props ? r.props : {}, h = y.nameField, F = y.maxSource, b = y.maxField, g = y.maxFixed, j = [], S = {};
|
|
23
|
+
for (const o2 of n) {
|
|
24
|
+
if (!o2) continue;
|
|
25
|
+
const i2 = e(o2, h, void 0);
|
|
26
|
+
let t2 = null;
|
|
27
|
+
t2 = F && "variable" != F ? g : e(o2, b, void 0), j.push({ text: i2, max: t2 });
|
|
28
|
+
for (const i3 of x) {
|
|
29
|
+
const t3 = e(o2, i3, void 0);
|
|
30
|
+
let a2 = S[i3];
|
|
31
|
+
void 0 === t3 || isNaN(t3) || (void 0 === a2 ? a2 = t3 : a2 += t3), S[i3] = a2;
|
|
32
|
+
}
|
|
33
|
+
for (const i3 of p) {
|
|
34
|
+
const t3 = i3.data;
|
|
35
|
+
if ("fixed" == i3.type) t3.push(i3.field);
|
|
36
|
+
else if ("variable" == i3.type) {
|
|
37
|
+
const a2 = e(o2, i3.field, void 0);
|
|
38
|
+
t3.push(a2);
|
|
39
|
+
} else if ("formula" == i3.type) {
|
|
40
|
+
const e2 = a(i3.formula, S, o2, s2);
|
|
41
|
+
t3.push(e2);
|
|
42
|
+
} else t3.push(void 0);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
l.radar[0].indicator = j;
|
|
46
|
+
const w = r.defaultSeries, A = o(w), D = A[0].data;
|
|
47
|
+
for (const e2 of D) {
|
|
48
|
+
const o2 = m[e2.uuid];
|
|
49
|
+
e2.value = o2.data;
|
|
50
|
+
}
|
|
51
|
+
l.series = A, r.cacheDatas = n, r.rawResult = u;
|
|
52
|
+
}
|
|
53
|
+
export {
|
|
54
|
+
s as updateChartOption
|
|
55
|
+
};
|