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.
Files changed (632) hide show
  1. package/dist/es/_virtual/_plugin-vue_export-helper.js +8 -0
  2. package/dist/es/assets/chart-themes/theme1.d.ts +4 -0
  3. package/dist/es/assets/chart-themes/theme1.js +4 -0
  4. package/dist/es/assets/chart-themes/theme2.d.ts +4 -0
  5. package/dist/es/assets/chart-themes/theme2.js +4 -0
  6. package/dist/es/assets/chart-themes/theme3.d.ts +4 -0
  7. package/dist/es/assets/chart-themes/theme3.js +4 -0
  8. package/dist/es/assets/file.png.js +4 -0
  9. package/dist/es/assets/folder.png.js +4 -0
  10. package/dist/es/components/runtime/index.d.ts +5 -0
  11. package/dist/es/components/runtime/utils/api/api-util.d.ts +1 -0
  12. package/dist/es/components/runtime/utils/api/api-util.js +4 -0
  13. package/dist/es/components/runtime/utils/api/page-expose-util.d.ts +1 -0
  14. package/dist/es/components/runtime/utils/api/page-expose-util.js +159 -0
  15. package/dist/es/components/runtime/utils/assemblys-config.js +20 -0
  16. package/dist/es/components/runtime/utils/barcode-util.d.ts +8 -0
  17. package/dist/es/components/runtime/utils/barcode-util.js +12 -0
  18. package/dist/es/components/runtime/utils/charts/chart-columnline-util.js +140 -0
  19. package/dist/es/components/runtime/utils/charts/chart-gauge-util.js +37 -0
  20. package/dist/es/components/runtime/utils/charts/chart-pie-util.js +81 -0
  21. package/dist/es/components/runtime/utils/charts/chart-radar-util.js +55 -0
  22. package/dist/es/components/runtime/utils/charts/chart-scatter-util.js +46 -0
  23. package/dist/es/components/runtime/utils/charts/chart-util.d.ts +113 -0
  24. package/dist/es/components/runtime/utils/charts/chart-util.js +274 -0
  25. package/dist/es/components/runtime/utils/common-util.d.ts +33 -0
  26. package/dist/es/components/runtime/utils/common-util.js +120 -0
  27. package/dist/es/components/runtime/utils/eventBus.d.ts +7 -0
  28. package/dist/es/components/runtime/utils/eventBus.js +5 -0
  29. package/{lib/src → dist/es/components/runtime}/utils/events/event-util.d.ts +45 -1
  30. package/dist/es/components/runtime/utils/events/event-util.js +403 -0
  31. package/dist/es/components/runtime/utils/events/print-label.d.ts +5 -0
  32. package/dist/es/components/runtime/utils/events/print-label.js +100 -0
  33. package/{lib/src → dist/es/components/runtime}/utils/events/standard-event.d.ts +29 -3
  34. package/dist/es/components/runtime/utils/events/standard-event.js +971 -0
  35. package/dist/es/components/runtime/utils/events/validator-util.d.ts +25 -0
  36. package/dist/es/components/runtime/utils/events/validator-util.js +309 -0
  37. package/dist/es/components/runtime/utils/form/date-shortcuts.d.ts +7 -0
  38. package/dist/es/components/runtime/utils/form/date-shortcuts.js +36 -0
  39. package/dist/es/components/runtime/utils/form/scan-util.js +93 -0
  40. package/{lib/src → dist/es/components/runtime}/utils/global-refs.d.ts +6 -0
  41. package/dist/es/components/runtime/utils/global-refs.js +57 -0
  42. package/dist/es/components/runtime/utils/i18n-util.d.ts +1 -0
  43. package/dist/es/components/runtime/utils/i18n-util.js +14 -0
  44. package/{lib/src → dist/es/components/runtime}/utils/interfaces/page-design-types.d.ts +32 -6
  45. package/dist/es/components/runtime/utils/interfaces/page-design-types.js +4 -0
  46. package/dist/es/components/runtime/utils/page-helper-util.d.ts +174 -0
  47. package/dist/es/components/runtime/utils/page-helper-util.js +386 -0
  48. package/{lib/src → dist/es/components/runtime}/utils/page-init-util.d.ts +12 -2
  49. package/dist/es/components/runtime/utils/page-init-util.js +203 -0
  50. package/dist/es/components/runtime/utils/page-permission-util.d.ts +26 -0
  51. package/dist/es/components/runtime/utils/page-permission-util.js +30 -0
  52. package/dist/es/components/runtime/utils/page-store.d.ts +46 -0
  53. package/dist/es/components/runtime/utils/page-store.js +26 -0
  54. package/dist/es/components/runtime/utils/store-util.js +13 -0
  55. package/dist/es/components/runtime/utils/store.js +4 -0
  56. package/dist/es/components/runtime/utils/table-utils.d.ts +34 -0
  57. package/dist/es/components/runtime/utils/table-utils.js +80 -0
  58. package/dist/es/components/runtime/utils/tree-utils.js +73 -0
  59. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.js +4 -0
  60. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.js +27 -0
  61. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +7 -0
  62. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +21 -0
  63. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +4 -0
  64. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +41 -0
  65. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.js +4 -0
  66. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.js +6 -0
  67. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.js +4 -0
  68. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.js +21 -0
  69. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +7 -0
  70. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +53 -0
  71. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.js +14 -0
  72. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.js +4 -0
  73. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +13 -0
  74. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.js +4 -0
  75. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +60 -0
  76. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.js +4 -0
  77. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.js +7 -0
  78. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.js +63 -0
  79. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +7 -0
  80. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +35 -0
  81. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +7 -0
  82. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +46 -0
  83. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +7 -0
  84. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +35 -0
  85. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +7 -0
  86. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +35 -0
  87. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.d.ts +121 -0
  88. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +419 -0
  89. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.js +6 -0
  90. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.js +4 -0
  91. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.js +10 -0
  92. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.js +4 -0
  93. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.js +45 -0
  94. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.js +4 -0
  95. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.js +15 -0
  96. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.js +4 -0
  97. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.js +4 -0
  98. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +255 -0
  99. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +28 -0
  100. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +36 -0
  101. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +4 -0
  102. package/{lib → dist/es}/components/runtime/views/assemblys/common/remove-signer-dialog.vue.d.ts +5 -5
  103. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.js +24 -0
  104. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +4 -0
  105. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.d.ts +31 -0
  106. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.js +35 -0
  107. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.js +4 -0
  108. package/{lib → dist/es}/components/runtime/views/assemblys/common/task-informition-dialog.vue.d.ts +5 -5
  109. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.js +19 -0
  110. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.js +4 -0
  111. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.js +7 -0
  112. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +29 -0
  113. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +4 -0
  114. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +21 -0
  115. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.js +4 -0
  116. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.js +18 -0
  117. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.js +7 -0
  118. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.js +29 -0
  119. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.d.ts +94 -0
  120. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.js +7 -0
  121. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.js +81 -0
  122. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +4 -0
  123. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +25 -0
  124. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.js +4 -0
  125. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.js +20 -0
  126. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +4 -0
  127. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +14 -0
  128. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +7 -0
  129. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +96 -0
  130. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.js +7 -0
  131. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +35 -0
  132. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.js +4 -0
  133. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.js +69 -0
  134. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +378 -0
  135. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +4 -0
  136. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +300 -0
  137. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +4 -0
  138. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.js +4 -0
  139. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +82 -0
  140. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +7 -0
  141. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +134 -0
  142. package/{lib → dist/es}/components/runtime/views/assemblys/error-render.vue.d.ts +4 -4
  143. package/dist/es/components/runtime/views/assemblys/error-render.vue.js +5 -0
  144. package/dist/es/components/runtime/views/assemblys/error-render.vue2.js +4 -0
  145. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +4 -0
  146. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +50 -0
  147. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.js +38 -0
  148. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.js +4 -0
  149. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.js +4 -0
  150. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +69 -0
  151. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +4 -0
  152. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +90 -0
  153. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +4 -0
  154. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +55 -0
  155. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +4 -0
  156. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +24 -0
  157. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +4 -0
  158. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +75 -0
  159. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +4 -0
  160. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +28 -0
  161. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +4 -0
  162. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +82 -0
  163. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.js +4 -0
  164. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +37 -0
  165. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.js +4 -0
  166. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +32 -0
  167. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +7 -0
  168. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +16 -0
  169. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +4 -0
  170. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +73 -0
  171. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +4 -0
  172. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +102 -0
  173. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.js +4 -0
  174. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +97 -0
  175. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.js +4 -0
  176. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.js +16 -0
  177. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +4 -0
  178. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +36 -0
  179. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +4 -0
  180. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +44 -0
  181. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +4 -0
  182. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +28 -0
  183. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.d.ts +17 -0
  184. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.js +83 -0
  185. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.js +4 -0
  186. package/dist/es/components/runtime/views/assemblys/object-render.vue.d.ts +17 -0
  187. package/dist/es/components/runtime/views/assemblys/object-render.vue.js +129 -0
  188. package/dist/es/components/runtime/views/assemblys/object-render.vue2.js +4 -0
  189. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js +4 -0
  190. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.js +20 -0
  191. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.js +4 -0
  192. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.js +23 -0
  193. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +7 -0
  194. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +24 -0
  195. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.js +4 -0
  196. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.js +18 -0
  197. package/dist/es/components/runtime/views/home-chart.vue.d.ts +23 -0
  198. package/dist/es/components/runtime/views/home-chart.vue.js +47 -0
  199. package/dist/es/components/runtime/views/home-chart.vue2.js +4 -0
  200. package/{lib/components/super-page-dialog → dist/es/components/runtime/views}/super-page-dialog.vue.d.ts +7 -3
  201. package/dist/es/components/runtime/views/super-page-dialog.vue.js +26 -0
  202. package/dist/es/components/runtime/views/super-page-dialog.vue3.js +5 -0
  203. package/{lib → dist/es}/components/runtime/views/super-page.vue.d.ts +43 -10
  204. package/dist/es/components/runtime/views/super-page.vue.js +7 -0
  205. package/dist/es/components/runtime/views/super-page.vue2.js +262 -0
  206. package/dist/es/i18n/langs/cn.js +4 -0
  207. package/dist/es/i18n/langs/en.js +4 -0
  208. package/dist/es/index.d.ts +16 -0
  209. package/dist/es/index.js +30 -0
  210. package/dist/es/style.css +633 -0
  211. package/package.json +74 -67
  212. package/.eslintrc.cjs +0 -26
  213. package/.prettierrc.json +0 -8
  214. package/App.vue +0 -9
  215. package/components/index.ts +0 -17
  216. package/components/runtime/index.ts +0 -2
  217. package/components/runtime/utils/assemblys-config.js +0 -294
  218. package/components/runtime/views/assemblys/button/button/button-runtime.vue +0 -49
  219. package/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue +0 -26
  220. package/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue +0 -93
  221. package/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue +0 -59
  222. package/components/runtime/views/assemblys/chart/common/common-attr-assistant.vue +0 -32
  223. package/components/runtime/views/assemblys/chart/common/common-attr-base.vue +0 -60
  224. package/components/runtime/views/assemblys/chart/common/common-attr-drill.vue +0 -39
  225. package/components/runtime/views/assemblys/chart/common/common-attr-groupby.vue +0 -104
  226. package/components/runtime/views/assemblys/chart/common/common-attr-serieslist.vue +0 -145
  227. package/components/runtime/views/assemblys/chart/common/common-attr-sortby.vue +0 -119
  228. package/components/runtime/views/assemblys/chart/common/common-style-custom.vue +0 -28
  229. package/components/runtime/views/assemblys/chart/common/common-style-datazoom.vue +0 -45
  230. package/components/runtime/views/assemblys/chart/common/common-style-font-subtitle.vue +0 -78
  231. package/components/runtime/views/assemblys/chart/common/common-style-font-title.vue +0 -56
  232. package/components/runtime/views/assemblys/chart/common/common-style-grid.vue +0 -70
  233. package/components/runtime/views/assemblys/chart/common/common-style-legend.vue +0 -70
  234. package/components/runtime/views/assemblys/chart/common/common-style-tooltip.vue +0 -140
  235. package/components/runtime/views/assemblys/chart/common/common-style-xaxis.vue +0 -58
  236. package/components/runtime/views/assemblys/chart/common/common-style-yaxis.vue +0 -125
  237. package/components/runtime/views/assemblys/chart/common-series/common-attr-dataset.vue +0 -67
  238. package/components/runtime/views/assemblys/chart/common-series/common-attr-dynamic.vue +0 -57
  239. package/components/runtime/views/assemblys/chart/common-series/common-attr-testdatas.vue +0 -23
  240. package/components/runtime/views/assemblys/chart/common-series/common-style-label.vue +0 -209
  241. package/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue +0 -46
  242. package/components/runtime/views/assemblys/chart/pie/pie-runtime.vue +0 -56
  243. package/components/runtime/views/assemblys/chart/radar/radar-runtime.vue +0 -55
  244. package/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue +0 -57
  245. package/components/runtime/views/assemblys/common/common-attr-cursor.vue +0 -23
  246. package/components/runtime/views/assemblys/common/common-attr-size.vue +0 -54
  247. package/components/runtime/views/assemblys/common/common-select-table.vue +0 -287
  248. package/components/runtime/views/assemblys/common/common-style-background.vue +0 -46
  249. package/components/runtime/views/assemblys/common/common-style-border.vue +0 -37
  250. package/components/runtime/views/assemblys/common/common-style-custom.vue +0 -35
  251. package/components/runtime/views/assemblys/common/common-style-font-head.vue +0 -53
  252. package/components/runtime/views/assemblys/common/common-style-font.vue +0 -53
  253. package/components/runtime/views/assemblys/common/common-style-margin.vue +0 -34
  254. package/components/runtime/views/assemblys/common/common-style-padding.vue +0 -34
  255. package/components/runtime/views/assemblys/common/common-style-position.vue +0 -39
  256. package/components/runtime/views/assemblys/common/common-style-shadow.vue +0 -37
  257. package/components/runtime/views/assemblys/common/export-form-report-dialog.vue +0 -108
  258. package/components/runtime/views/assemblys/common/remove-signer-dialog.vue +0 -99
  259. package/components/runtime/views/assemblys/common/task-informition-dialog.vue +0 -69
  260. package/components/runtime/views/assemblys/common-attr-events.vue +0 -46
  261. package/components/runtime/views/assemblys/container/card/card-runtime.vue +0 -59
  262. package/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue +0 -59
  263. package/components/runtime/views/assemblys/container/container/container-runtime.vue +0 -41
  264. package/components/runtime/views/assemblys/container/flex/flex-runtime.vue +0 -35
  265. package/components/runtime/views/assemblys/container/form/form-runtime.vue +0 -37
  266. package/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue +0 -32
  267. package/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue +0 -54
  268. package/components/runtime/views/assemblys/container/tools/tools-runtime.vue +0 -99
  269. package/components/runtime/views/assemblys/data/bar-code/barcode-attr-base.vue +0 -117
  270. package/components/runtime/views/assemblys/data/bar-code/barcode-attr-event.vue +0 -14
  271. package/components/runtime/views/assemblys/data/bar-code/barcode-attr-style.vue +0 -25
  272. package/components/runtime/views/assemblys/data/bar-code/barcode-attr.vue +0 -28
  273. package/components/runtime/views/assemblys/data/bar-code/barcode-design.vue +0 -103
  274. package/components/runtime/views/assemblys/data/component/attr-header.vue +0 -69
  275. package/components/runtime/views/assemblys/data/component/attr-style.vue +0 -64
  276. package/components/runtime/views/assemblys/data/component/column-config.vue +0 -171
  277. package/components/runtime/views/assemblys/data/component/combinedHeader.vue +0 -96
  278. package/components/runtime/views/assemblys/data/component/composite-header.vue +0 -257
  279. package/components/runtime/views/assemblys/data/component/configuration-value.vue +0 -206
  280. package/components/runtime/views/assemblys/data/component/data-origin-tree.vue +0 -117
  281. package/components/runtime/views/assemblys/data/component/data-origin.vue +0 -260
  282. package/components/runtime/views/assemblys/data/component/formatting.vue +0 -200
  283. package/components/runtime/views/assemblys/data/component/in-parameter.vue +0 -56
  284. package/components/runtime/views/assemblys/data/component/querySetting.vue +0 -52
  285. package/components/runtime/views/assemblys/data/component/return-set-table.vue +0 -91
  286. package/components/runtime/views/assemblys/data/component/row-backgroud-color.vue +0 -58
  287. package/components/runtime/views/assemblys/data/component/select-data-table.vue +0 -86
  288. package/components/runtime/views/assemblys/data/table/main-table-runtime.vue +0 -858
  289. package/components/runtime/views/assemblys/data/table/sub-table-runtime.vue +0 -625
  290. package/components/runtime/views/assemblys/data/table/table-runtime.vue +0 -93
  291. package/components/runtime/views/assemblys/data/tree/tree-attr-base.vue +0 -137
  292. package/components/runtime/views/assemblys/data/tree/tree-attr-event.vue +0 -14
  293. package/components/runtime/views/assemblys/data/tree/tree-attr-style.vue +0 -55
  294. package/components/runtime/views/assemblys/data/tree/tree-attr.vue +0 -28
  295. package/components/runtime/views/assemblys/data/tree/tree-design.vue +0 -125
  296. package/components/runtime/views/assemblys/error-attr.vue +0 -15
  297. package/components/runtime/views/assemblys/error-render.vue +0 -17
  298. package/components/runtime/views/assemblys/form/cascader/cascader-design.vue +0 -288
  299. package/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue +0 -198
  300. package/components/runtime/views/assemblys/form/colors/colors-design.vue +0 -16
  301. package/components/runtime/views/assemblys/form/common/analytic-rule.vue +0 -148
  302. package/components/runtime/views/assemblys/form/common/attr-event.vue +0 -82
  303. package/components/runtime/views/assemblys/form/common/attr-header.vue +0 -54
  304. package/components/runtime/views/assemblys/form/common/attr-style.vue +0 -44
  305. package/components/runtime/views/assemblys/form/common/bar-code-rule.vue +0 -104
  306. package/components/runtime/views/assemblys/form/common/condition.vue +0 -147
  307. package/components/runtime/views/assemblys/form/common/data-origin.vue +0 -81
  308. package/components/runtime/views/assemblys/form/common/data-orign-in-parameter.vue +0 -64
  309. package/components/runtime/views/assemblys/form/common/dataorigin-input-table.vue +0 -106
  310. package/components/runtime/views/assemblys/form/common/default-value-setting.vue +0 -362
  311. package/components/runtime/views/assemblys/form/common/dimension-input.vue +0 -68
  312. package/components/runtime/views/assemblys/form/common/dynamic-data-source-setting.vue +0 -115
  313. package/components/runtime/views/assemblys/form/common/formatting-label.vue +0 -81
  314. package/components/runtime/views/assemblys/form/common/grid-num-select.vue +0 -43
  315. package/components/runtime/views/assemblys/form/common/icon-set-dialog.vue +0 -144
  316. package/components/runtime/views/assemblys/form/common/linkage.vue +0 -21
  317. package/components/runtime/views/assemblys/form/common/overall-height.vue +0 -20
  318. package/components/runtime/views/assemblys/form/common/overall-width.vue +0 -48
  319. package/components/runtime/views/assemblys/form/common/pre-suffix.vue +0 -33
  320. package/components/runtime/views/assemblys/form/common/rich-text.vue +0 -100
  321. package/components/runtime/views/assemblys/form/common/row-ul-li.vue +0 -55
  322. package/components/runtime/views/assemblys/form/common/setoption-table.vue +0 -86
  323. package/components/runtime/views/assemblys/form/common/size-input.vue +0 -65
  324. package/components/runtime/views/assemblys/form/common/suffixmodule.vue +0 -82
  325. package/components/runtime/views/assemblys/form/common/title.vue +0 -20
  326. package/components/runtime/views/assemblys/form/common/uploading.vue +0 -34
  327. package/components/runtime/views/assemblys/form/common/verification.vue +0 -79
  328. package/components/runtime/views/assemblys/form/common/voluntarily.vue +0 -27
  329. package/components/runtime/views/assemblys/form/custom/custom-attr-base.vue +0 -81
  330. package/components/runtime/views/assemblys/form/custom/custom-attr-event.vue +0 -14
  331. package/components/runtime/views/assemblys/form/custom/custom-attr-style.vue +0 -14
  332. package/components/runtime/views/assemblys/form/custom/custom-attr.vue +0 -28
  333. package/components/runtime/views/assemblys/form/custom/custom-design.vue +0 -57
  334. package/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue +0 -80
  335. package/components/runtime/views/assemblys/form/datetime/datetime-design.vue +0 -19
  336. package/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue +0 -60
  337. package/components/runtime/views/assemblys/form/divider/divider-runtime.vue +0 -44
  338. package/components/runtime/views/assemblys/form/file-picture/picture-design.vue +0 -80
  339. package/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue +0 -79
  340. package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-attr-base.vue +0 -142
  341. package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-attr-event.vue +0 -14
  342. package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-attr-style.vue +0 -14
  343. package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-attr.vue +0 -28
  344. package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-design.vue +0 -104
  345. package/components/runtime/views/assemblys/form/image-upload/imageupload-attr-base.vue +0 -75
  346. package/components/runtime/views/assemblys/form/image-upload/imageupload-attr-event.vue +0 -13
  347. package/components/runtime/views/assemblys/form/image-upload/imageupload-attr-style.vue +0 -14
  348. package/components/runtime/views/assemblys/form/image-upload/imageupload-attr.vue +0 -28
  349. package/components/runtime/views/assemblys/form/image-upload/imageupload-design.vue +0 -76
  350. package/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue +0 -62
  351. package/components/runtime/views/assemblys/form/input-show/input-show-attr-base.vue +0 -68
  352. package/components/runtime/views/assemblys/form/input-show/input-show-attr-event.vue +0 -14
  353. package/components/runtime/views/assemblys/form/input-show/input-show-attr-style.vue +0 -70
  354. package/components/runtime/views/assemblys/form/input-show/input-show-attr.vue +0 -28
  355. package/components/runtime/views/assemblys/form/input-show/input-show-design.vue +0 -155
  356. package/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue +0 -142
  357. package/components/runtime/views/assemblys/form/label/label-runtime.vue +0 -143
  358. package/components/runtime/views/assemblys/form/link/link-runtime.vue +0 -70
  359. package/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue +0 -24
  360. package/components/runtime/views/assemblys/form/radio/radio-runtime.vue +0 -203
  361. package/components/runtime/views/assemblys/form/rate/rate-design.vue +0 -16
  362. package/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue +0 -169
  363. package/components/runtime/views/assemblys/form/select/select-runtime.vue +0 -247
  364. package/components/runtime/views/assemblys/form/slider/slider-design.vue +0 -16
  365. package/components/runtime/views/assemblys/form/switch/switch-runtime.vue +0 -63
  366. package/components/runtime/views/assemblys/form/tag/tag-runtime.vue +0 -65
  367. package/components/runtime/views/assemblys/form/text/text-design.vue +0 -19
  368. package/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue +0 -63
  369. package/components/runtime/views/assemblys/form/transfer/transfer-design.vue +0 -32
  370. package/components/runtime/views/assemblys/object-render.vue +0 -176
  371. package/components/runtime/views/assemblys/page/page-attr-base-20240429-1.vue +0 -179
  372. package/components/runtime/views/assemblys/page/page-attr-base.vue +0 -259
  373. package/components/runtime/views/assemblys/page/page-attr-events.vue +0 -50
  374. package/components/runtime/views/assemblys/page/page-attr-style.vue +0 -25
  375. package/components/runtime/views/assemblys/page/page-attr.vue +0 -84
  376. package/components/runtime/views/assemblys/page/variable-dialog.vue +0 -242
  377. package/components/runtime/views/assemblys/workflow/component/combination.vue +0 -206
  378. package/components/runtime/views/assemblys/workflow/component/condition-dialog.vue +0 -99
  379. package/components/runtime/views/assemblys/workflow/component/event-dialog.vue +0 -278
  380. package/components/runtime/views/assemblys/workflow/component/journal-set-dialog.vue +0 -174
  381. package/components/runtime/views/assemblys/workflow/component/logical-setup-dialog.vue +0 -155
  382. package/components/runtime/views/assemblys/workflow/component/rule-dialog.vue +0 -47
  383. package/components/runtime/views/assemblys/workflow/component/set-dialog.vue +0 -130
  384. package/components/runtime/views/assemblys/workflow/component/task-trigger-dialog.vue +0 -96
  385. package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-attr-base.vue +0 -43
  386. package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-attr-event.vue +0 -14
  387. package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-attr-style.vue +0 -27
  388. package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-attr.vue +0 -28
  389. package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-design.vue +0 -17
  390. package/components/runtime/views/assemblys/workflow/text-history/texthistory-attr-base.vue +0 -60
  391. package/components/runtime/views/assemblys/workflow/text-history/texthistory-attr-event.vue +0 -14
  392. package/components/runtime/views/assemblys/workflow/text-history/texthistory-attr-style.vue +0 -27
  393. package/components/runtime/views/assemblys/workflow/text-history/texthistory-attr.vue +0 -28
  394. package/components/runtime/views/assemblys/workflow/text-history/texthistory-design.vue +0 -17
  395. package/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue +0 -64
  396. package/components/runtime/views/render/page-view.vue +0 -80
  397. package/components/runtime/views/super-page copy.vue +0 -61
  398. package/components/runtime/views/super-page.vue +0 -667
  399. package/components/super-page-dialog/index.ts +0 -2
  400. package/components/super-page-dialog/super-page-dialog.vue +0 -267
  401. package/components/wf-editor/index.ts +0 -2
  402. package/components/wf-editor/wf-editor.vue +0 -15
  403. package/cypress/e2e/example.cy.ts +0 -8
  404. package/cypress/e2e/tsconfig.json +0 -10
  405. package/cypress/fixtures/example.json +0 -5
  406. package/cypress/support/commands.ts +0 -39
  407. package/cypress/support/e2e.ts +0 -20
  408. package/cypress.config.ts +0 -8
  409. package/env.d.ts +0 -1
  410. package/index.html +0 -13
  411. package/lib/_virtual/_plugin-vue_export-helper.js +0 -9
  412. package/lib/components/index.d.ts +0 -5
  413. package/lib/components/runtime/index.d.ts +0 -3
  414. package/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +0 -24
  415. package/lib/components/runtime/views/assemblys/object-render.vue.d.ts +0 -17
  416. package/lib/components/super-page-dialog/index.d.ts +0 -3
  417. package/lib/components/wf-editor/index.d.ts +0 -3
  418. package/lib/components/wf-editor/wf-editor.vue.d.ts +0 -2
  419. package/lib/index.js +0 -8
  420. package/lib/runtime/index.js +0 -3
  421. package/lib/runtime/utils/assemblys-config.js +0 -258
  422. package/lib/runtime/views/assemblys/button/button/button-runtime.vue.js +0 -3
  423. package/lib/runtime/views/assemblys/button/button/button-runtime.vue2.js +0 -54
  424. package/lib/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +0 -3
  425. package/lib/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +0 -35
  426. package/lib/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +0 -3
  427. package/lib/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +0 -110
  428. package/lib/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +0 -3
  429. package/lib/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +0 -53
  430. package/lib/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +0 -3
  431. package/lib/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +0 -42
  432. package/lib/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +0 -3
  433. package/lib/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +0 -50
  434. package/lib/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +0 -3
  435. package/lib/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +0 -50
  436. package/lib/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +0 -3
  437. package/lib/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +0 -51
  438. package/lib/runtime/views/assemblys/common/export-form-report-dialog.vue.js +0 -141
  439. package/lib/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +0 -3
  440. package/lib/runtime/views/assemblys/common/remove-signer-dialog.vue.js +0 -127
  441. package/lib/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +0 -3
  442. package/lib/runtime/views/assemblys/common/task-informition-dialog.vue.js +0 -104
  443. package/lib/runtime/views/assemblys/common/task-informition-dialog.vue2.js +0 -3
  444. package/lib/runtime/views/assemblys/container/card/card-runtime.vue.js +0 -3
  445. package/lib/runtime/views/assemblys/container/card/card-runtime.vue2.js +0 -72
  446. package/lib/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +0 -3
  447. package/lib/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +0 -73
  448. package/lib/runtime/views/assemblys/container/container/container-runtime.vue.js +0 -3
  449. package/lib/runtime/views/assemblys/container/container/container-runtime.vue2.js +0 -78
  450. package/lib/runtime/views/assemblys/container/flex/flex-runtime.vue.js +0 -3
  451. package/lib/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +0 -42
  452. package/lib/runtime/views/assemblys/container/form/form-runtime.vue.js +0 -3
  453. package/lib/runtime/views/assemblys/container/form/form-runtime.vue2.js +0 -43
  454. package/lib/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +0 -3
  455. package/lib/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +0 -29
  456. package/lib/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +0 -3
  457. package/lib/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +0 -68
  458. package/lib/runtime/views/assemblys/container/tools/tools-runtime.vue.js +0 -3
  459. package/lib/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +0 -74
  460. package/lib/runtime/views/assemblys/data/table/main-table-runtime.vue.js +0 -640
  461. package/lib/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +0 -3
  462. package/lib/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +0 -452
  463. package/lib/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +0 -3
  464. package/lib/runtime/views/assemblys/data/table/table-runtime.vue.js +0 -3
  465. package/lib/runtime/views/assemblys/data/table/table-runtime.vue2.js +0 -82
  466. package/lib/runtime/views/assemblys/error-render.vue.js +0 -22
  467. package/lib/runtime/views/assemblys/error-render.vue2.js +0 -3
  468. package/lib/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +0 -3
  469. package/lib/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +0 -156
  470. package/lib/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +0 -3
  471. package/lib/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +0 -82
  472. package/lib/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +0 -3
  473. package/lib/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +0 -59
  474. package/lib/runtime/views/assemblys/form/divider/divider-runtime.vue.js +0 -3
  475. package/lib/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +0 -40
  476. package/lib/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +0 -3
  477. package/lib/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +0 -74
  478. package/lib/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +0 -3
  479. package/lib/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +0 -63
  480. package/lib/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +0 -3
  481. package/lib/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +0 -127
  482. package/lib/runtime/views/assemblys/form/label/label-runtime.vue.js +0 -3
  483. package/lib/runtime/views/assemblys/form/label/label-runtime.vue2.js +0 -133
  484. package/lib/runtime/views/assemblys/form/link/link-runtime.vue.js +0 -3
  485. package/lib/runtime/views/assemblys/form/link/link-runtime.vue2.js +0 -77
  486. package/lib/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +0 -3
  487. package/lib/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +0 -29
  488. package/lib/runtime/views/assemblys/form/radio/radio-runtime.vue.js +0 -3
  489. package/lib/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +0 -157
  490. package/lib/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +0 -3
  491. package/lib/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +0 -174
  492. package/lib/runtime/views/assemblys/form/select/select-runtime.vue.js +0 -3
  493. package/lib/runtime/views/assemblys/form/select/select-runtime.vue2.js +0 -201
  494. package/lib/runtime/views/assemblys/form/switch/switch-runtime.vue.js +0 -3
  495. package/lib/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +0 -63
  496. package/lib/runtime/views/assemblys/form/tag/tag-runtime.vue.js +0 -3
  497. package/lib/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +0 -63
  498. package/lib/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +0 -3
  499. package/lib/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +0 -65
  500. package/lib/runtime/views/assemblys/object-render.vue.js +0 -142
  501. package/lib/runtime/views/assemblys/object-render.vue2.js +0 -3
  502. package/lib/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +0 -3
  503. package/lib/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +0 -61
  504. package/lib/runtime/views/super-page.vue.js +0 -479
  505. package/lib/runtime/views/super-page.vue2.js +0 -3
  506. package/lib/src/assets/chart-themes/theme1.js +0 -7
  507. package/lib/src/assets/chart-themes/theme2.js +0 -7
  508. package/lib/src/assets/chart-themes/theme3.js +0 -7
  509. package/lib/src/utils/api/api-util.d.ts +0 -11
  510. package/lib/src/utils/api/api-util.js +0 -128
  511. package/lib/src/utils/charts/chart-util.js +0 -15
  512. package/lib/src/utils/common-util.d.ts +0 -11
  513. package/lib/src/utils/common-util.js +0 -81
  514. package/lib/src/utils/events/event-util.js +0 -525
  515. package/lib/src/utils/events/standard-event.js +0 -1623
  516. package/lib/src/utils/events/validator-util.d.ts +0 -4
  517. package/lib/src/utils/events/validator-util.js +0 -389
  518. package/lib/src/utils/global-refs.js +0 -65
  519. package/lib/src/utils/interfaces/page-design-types.js +0 -9
  520. package/lib/src/utils/page-helper-util.d.ts +0 -87
  521. package/lib/src/utils/page-helper-util.js +0 -503
  522. package/lib/src/utils/page-init-util.js +0 -200
  523. package/lib/src/utils/store-util.js +0 -17
  524. package/lib/src/utils/store.js +0 -3
  525. package/lib/src/utils/table-utils.js +0 -23
  526. package/lib/super-page-dialog/index.js +0 -3
  527. package/lib/super-page-dialog/super-page-dialog.vue.js +0 -73
  528. package/lib/super-page-dialog/super-page-dialog.vue2.js +0 -3
  529. package/lib/wf-editor/index.js +0 -3
  530. package/lib/wf-editor/wf-editor.css +0 -4
  531. package/lib/wf-editor/wf-editor.vue.js +0 -15
  532. package/main.ts +0 -11
  533. package/package-ws.json +0 -70
  534. package/public/favicon.ico +0 -0
  535. package/src/assets/base.css +0 -86
  536. package/src/assets/chart-themes/theme1.ts +0 -6
  537. package/src/assets/chart-themes/theme2.ts +0 -6
  538. package/src/assets/chart-themes/theme3.ts +0 -6
  539. package/src/assets/images/button/button-group.png +0 -0
  540. package/src/assets/images/button/button.png +0 -0
  541. package/src/assets/images/chart/chart-column.png +0 -0
  542. package/src/assets/images/chart/chart-gauge.png +0 -0
  543. package/src/assets/images/chart/chart-pie.png +0 -0
  544. package/src/assets/images/chart/chart-radar.png +0 -0
  545. package/src/assets/images/chart/chart-scatter.png +0 -0
  546. package/src/assets/images/container/container-card.png +0 -0
  547. package/src/assets/images/container/container-collapse.png +0 -0
  548. package/src/assets/images/container/container-container.png +0 -0
  549. package/src/assets/images/container/container-flex.png +0 -0
  550. package/src/assets/images/container/container-form.png +0 -0
  551. package/src/assets/images/container/container-iframe.png +0 -0
  552. package/src/assets/images/container/container-normal.png +0 -0
  553. package/src/assets/images/container/container-tabs.png +0 -0
  554. package/src/assets/images/container/container-tools.png +0 -0
  555. package/src/assets/images/data/data-process.png +0 -0
  556. package/src/assets/images/data/data-step.png +0 -0
  557. package/src/assets/images/data/data-table-column.png +0 -0
  558. package/src/assets/images/data/data-table.png +0 -0
  559. package/src/assets/images/data/data-timeline.png +0 -0
  560. package/src/assets/images/data/data-tree.png +0 -0
  561. package/src/assets/images/form/form-cascader.png +0 -0
  562. package/src/assets/images/form/form-check.png +0 -0
  563. package/src/assets/images/form/form-color.png +0 -0
  564. package/src/assets/images/form/form-count.png +0 -0
  565. package/src/assets/images/form/form-custom.png +0 -0
  566. package/src/assets/images/form/form-date.png +0 -0
  567. package/src/assets/images/form/form-dept.png +0 -0
  568. package/src/assets/images/form/form-divider.png +0 -0
  569. package/src/assets/images/form/form-file.png +0 -0
  570. package/src/assets/images/form/form-image-upload.png +0 -0
  571. package/src/assets/images/form/form-img.png +0 -0
  572. package/src/assets/images/form/form-input.png +0 -0
  573. package/src/assets/images/form/form-label.png +0 -0
  574. package/src/assets/images/form/form-link.png +0 -0
  575. package/src/assets/images/form/form-radio.png +0 -0
  576. package/src/assets/images/form/form-scan.png +0 -0
  577. package/src/assets/images/form/form-score.png +0 -0
  578. package/src/assets/images/form/form-select.png +0 -0
  579. package/src/assets/images/form/form-slider.png +0 -0
  580. package/src/assets/images/form/form-space.png +0 -0
  581. package/src/assets/images/form/form-switch.png +0 -0
  582. package/src/assets/images/form/form-text.png +0 -0
  583. package/src/assets/images/form/form-textarea.png +0 -0
  584. package/src/assets/images/form/form-transfer.png +0 -0
  585. package/src/assets/images/form/form-zoom.png +0 -0
  586. package/src/assets/images/group-button.png +0 -0
  587. package/src/assets/images/group-chart.png +0 -0
  588. package/src/assets/images/group-container.png +0 -0
  589. package/src/assets/images/group-data.png +0 -0
  590. package/src/assets/images/group-form.png +0 -0
  591. package/src/assets/images/group-workflow.png +0 -0
  592. package/src/assets/images/workflow/workflow-button.png +0 -0
  593. package/src/assets/images/workflow/workflow-history-texts.png +0 -0
  594. package/src/assets/images/workflow/workflow-history.png +0 -0
  595. package/src/assets/images/workflow/workflow-imagehistory.png +0 -0
  596. package/src/assets/images/workflow/workflow-texthistory .png +0 -0
  597. package/src/assets/logo.svg +0 -1
  598. package/src/assets/main.css +0 -1
  599. package/src/i18n/langs/cn.js +0 -52
  600. package/src/i18n/langs/en.js +0 -52
  601. package/src/stores/counter.ts +0 -12
  602. package/src/utils/api/api-util.ts +0 -176
  603. package/src/utils/charts/chart-util.ts +0 -41
  604. package/src/utils/common-util.ts +0 -96
  605. package/src/utils/container-style-util.ts +0 -237
  606. package/src/utils/eventBus.ts +0 -14
  607. package/src/utils/events/event-util.ts +0 -790
  608. package/src/utils/events/jump-page-util.ts +0 -0
  609. package/src/utils/events/standard-event.ts +0 -2075
  610. package/src/utils/events/validator-util.ts +0 -474
  611. package/src/utils/global-refs.ts +0 -160
  612. package/src/utils/interfaces/page-design-types.ts +0 -259
  613. package/src/utils/page-helper-util.ts +0 -850
  614. package/src/utils/page-init-util.ts +0 -291
  615. package/src/utils/page-permission-util.ts +0 -521
  616. package/src/utils/store-util.ts +0 -41
  617. package/src/utils/store.ts +0 -3
  618. package/src/utils/table-utils.ts +0 -31
  619. package/tsconfig copy.json +0 -17
  620. package/tsconfig.app copy.json +0 -14
  621. package/tsconfig.app.json +0 -14
  622. package/tsconfig.json +0 -17
  623. package/tsconfig.node copy.json +0 -19
  624. package/tsconfig.node.json +0 -19
  625. package/tsconfig.vitest copy.json +0 -11
  626. package/tsconfig.vitest.json +0 -11
  627. package/vite.config copy.ts +0 -109
  628. package/vite.config.ts +0 -86
  629. package/vitest.config.ts +0 -14
  630. /package/{lib/src → dist/es/components/runtime}/utils/store-util.d.ts +0 -0
  631. /package/{lib/src → dist/es/components/runtime}/utils/store.d.ts +0 -0
  632. /package/{lib → dist/es}/favicon.ico +0 -0
@@ -0,0 +1,41 @@
1
+ import { defineComponent as e, ref as t, computed as l, onMounted as n, nextTick as o, resolveComponent as u, createBlock as i, openBlock as a, normalizeStyle as r, normalizeClass as p, unref as s, withCtx as c, createElementBlock as g, Fragment as f, createTextVNode as d, toDisplayString as m, createVNode as v, renderList as y } from "vue";
2
+ import { ArrowDown as b } from "@element-plus/icons-vue";
3
+ import { formatVariableValue as C } from "../../../../utils/page-helper-util.js";
4
+ import { handleAfterInitEvent as k, handleEvent as x, handleFormEvent as _ } from "../../../../utils/events/event-util.js";
5
+ import { $t as w } from "../../../../utils/i18n-util.js";
6
+ const z = { key: 1 }, h = e({ __name: "dropdown-runtime", props: { pageContext: {}, configure: {} }, setup(e2) {
7
+ const h2 = e2, j = h2.configure.runtime ? h2.configure.runtime : {}, T = j.style, A = j.class, B = t(j.props ? j.props : {});
8
+ let O = null;
9
+ const R = (h2.configure.props && h2.configure.props.dataOrigin ? h2.configure.props.dataOrigin : {}).optionValueSetType;
10
+ function S(e3) {
11
+ _(e3, h2.pageContext, h2.configure, e3 ? "menuShow" : "menuHidden");
12
+ }
13
+ O = "variable" == R ? l(() => {
14
+ let e3;
15
+ const t2 = C(h2.pageContext, B.value.menuField);
16
+ if (t2 && Array.isArray(t2)) {
17
+ e3 = t2;
18
+ for (let t3 = 0; t3 < e3.length; t3++) {
19
+ const l2 = e3[t3];
20
+ l2.label || (l2.label = t3 + 1);
21
+ }
22
+ } else {
23
+ const l2 = (t2 ? t2 + "" : "").trim().split(",");
24
+ e3 = [];
25
+ for (let t3 of l2) e3.push({ value: t3, label: t3 });
26
+ }
27
+ return e3;
28
+ }) : t(B.value.options ? B.value.options : []);
29
+ const V = t(null);
30
+ return n(() => {
31
+ o(() => {
32
+ k(null, h2.pageContext, h2.configure, { componentRef: V.value, entity: h2.pageContext.entity.data, pageData: h2.pageContext.entity.page });
33
+ });
34
+ }), (t2, l2) => {
35
+ const n2 = u("el-button"), o2 = u("el-icon"), C2 = u("el-text"), k2 = u("el-dropdown-item"), _2 = u("el-dropdown-menu"), h3 = u("el-dropdown");
36
+ return a(), i(h3, { ref_key: "componentRef", ref: V, class: p(s(A)), style: r(s(T)), placement: B.value.placement, "split-button": B.value.splitButton, disabled: "disabled" === B.value.state, type: B.value.buttonType, size: B.value.size, trigger: B.value.trigger, onVisibleChange: S }, { dropdown: c(() => [v(_2, null, { default: c(() => [(a(true), g(f, null, y(s(O), (t3, l3) => (a(), i(k2, { key: t3, onClick: (l4) => s(x)(l4, e2.pageContext, e2.configure, "click", { menuItem: t3 }) }, { default: c(() => [d(m(s(w)(t3.label)), 1)]), _: 2 }, 1032, ["onClick"]))), 128))]), _: 1 })]), default: c(() => ["button" === B.value.triggerElement ? (a(), g(f, { key: 0 }, [B.value.splitButton ? (a(), g("span", z, m(B.value.title), 1)) : (a(), i(n2, { key: 0, size: B.value.size, type: B.value.buttonType }, { default: c(() => [d(m(s(w)(B.value.title)), 1)]), _: 1 }, 8, ["size", "type"]))], 64)) : (a(), i(C2, { key: 1 }, { default: c(() => [d(m(s(w)(B.value.title)) + " ", 1), v(o2, null, { default: c(() => [v(s(b))]), _: 1 })]), _: 1 }))]), _: 1 }, 8, ["class", "style", "placement", "split-button", "disabled", "type", "size", "trigger"]);
37
+ };
38
+ } });
39
+ export {
40
+ h as default
41
+ };
@@ -0,0 +1,4 @@
1
+ import e from "./exportpdf-runtime.vue2.js";
2
+ export {
3
+ e as default
4
+ };
@@ -0,0 +1,6 @@
1
+ import { defineComponent as e, createBlock as t, openBlock as o } from "vue";
2
+ import n from "../button/button-runtime.vue2.js";
3
+ const r = e({ __name: "exportpdf-runtime", props: { pageContext: {}, configure: {} }, setup: (e2) => (r2, u) => (o(), t(n, { configure: e2.configure, pageContext: e2.pageContext }, null, 8, ["configure", "pageContext"])) });
4
+ export {
5
+ r as default
6
+ };
@@ -0,0 +1,4 @@
1
+ import e from "./printlabel-runtime.vue2.js";
2
+ export {
3
+ e as default
4
+ };
@@ -0,0 +1,21 @@
1
+ import { defineComponent as e, ref as t, onMounted as l, nextTick as n, resolveComponent as u, createBlock as o, openBlock as a, normalizeStyle as i, normalizeClass as p, unref as r, withCtx as s, createElementBlock as g, Fragment as c, createTextVNode as m, toDisplayString as f, createVNode as v, renderList as d } from "vue";
2
+ import "agilebuilder-ui";
3
+ import { handleAfterInitEvent as y, handleEvent as b } from "../../../../utils/events/event-util.js";
4
+ import k from "../button/button-runtime.vue2.js";
5
+ import { $t as C } from "../../../../utils/i18n-util.js";
6
+ const x = { key: 1 }, _ = e({ __name: "printlabel-runtime", props: { pageContext: {}, configure: {} }, setup(e2) {
7
+ const _2 = e2, w = _2.configure.runtime ? _2.configure.runtime : {}, z = t(w.props ? w.props : {}), j = t(false);
8
+ z.value.template && z.value.template.length > 1 && (j.value = true);
9
+ const B = w.style, D = w.class, R = t(null);
10
+ return l(() => {
11
+ n(() => {
12
+ j.value && y(null, _2.pageContext, _2.configure, { componentRef: R.value, entity: _2.pageContext.entity.data, pageData: _2.pageContext.entity.page });
13
+ });
14
+ }), (t2, l2) => {
15
+ const n2 = u("el-button"), y2 = u("ArrowDown"), _3 = u("el-icon"), w2 = u("el-text"), T = u("el-dropdown-item"), h = u("el-dropdown-menu"), A = u("el-dropdown");
16
+ return j.value ? (a(), o(A, { key: 1, ref_key: "componentRef", ref: R, class: p(r(D)), style: i(r(B)), placement: z.value.placement, "split-button": z.value.splitButton, disabled: "disabled" === z.value.state, type: z.value.buttonType, size: z.value.size, trigger: z.value.trigger }, { dropdown: s(() => [v(h, null, { default: s(() => [(a(true), g(c, null, d(z.value.template, (t3, l3) => (a(), o(T, { key: t3, onClick: (l4) => r(b)(l4, e2.pageContext, e2.configure, "click", { menuItem: t3 }) }, { default: s(() => [m(f(r(C)(t3.label)), 1)]), _: 2 }, 1032, ["onClick"]))), 128))]), _: 1 })]), default: s(() => ["button" === z.value.triggerElement ? (a(), g(c, { key: 0 }, [z.value.splitButton ? (a(), g("span", x, f(r(C)(z.value.title)), 1)) : (a(), o(n2, { key: 0, size: z.value.size, type: z.value.buttonType, onClick: l2[0] || (l2[0] = (t3) => r(b)(t3, e2.pageContext, e2.configure, "menuClick")) }, { default: s(() => [m(f(r(C)(z.value.title)), 1)]), _: 1 }, 8, ["size", "type"]))], 64)) : (a(), o(w2, { key: 1 }, { default: s(() => [m(f(r(C)(z.value.title)) + " ", 1), v(_3, null, { default: s(() => [v(y2)]), _: 1 })]), _: 1 }))]), _: 1 }, 8, ["class", "style", "placement", "split-button", "disabled", "type", "size", "trigger"])) : (a(), o(k, { key: 0, configure: e2.configure, pageContext: e2.pageContext }, null, 8, ["configure", "pageContext"]));
17
+ };
18
+ } });
19
+ export {
20
+ _ as default
21
+ };
@@ -0,0 +1,7 @@
1
+ import e from "./column-line-runtime.vue2.js";
2
+ /* empty css */
3
+ import o from "../../../../../../_virtual/_plugin-vue_export-helper.js";
4
+ const r = o(e, [["__scopeId", "data-v-e1cf60d6"]]);
5
+ export {
6
+ r as default
7
+ };
@@ -0,0 +1,53 @@
1
+ import { defineComponent as e, ref as r, onMounted as o, watch as t, createElementBlock as n, openBlock as a, normalizeClass as i, normalizeStyle as u, unref as s, withDirectives as l, createVNode as c, vShow as p } from "vue";
2
+ import { getCustomTheme as f, initChartOption as g, monitorChartClickToVariable as m, clearChartSelected as h, exportCommonChart as d } from "../../../../utils/charts/chart-util.js";
3
+ import { getChartDatasFromPage as v, updateChartDatasources as x, monitorFieldChange as C } from "../../../../utils/page-helper-util.js";
4
+ import { updateChartOption as I } from "../../../../utils/charts/chart-columnline-util.js";
5
+ import { doClickJumpPageEvent as k } from "../../../../utils/events/event-util.js";
6
+ import y from "../common/common-chart-header.vue.js";
7
+ import { use as R } from "echarts/core";
8
+ import { CanvasRenderer as j } from "echarts/renderers";
9
+ import { LineChart as b, BarChart as D } from "echarts/charts";
10
+ import { GridComponent as V, LegendComponent as P, TitleComponent as _, TooltipComponent as w, ToolboxComponent as O, DataZoomComponent as T } from "echarts/components";
11
+ import E from "vue-echarts";
12
+ const A = e({ __name: "column-line-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: A2 }) {
13
+ R([j, b, V, P, _, w, D, O, T]);
14
+ const H = e2, N = r(null), S = r(), U = r(null), z = H.configure.props ? H.configure.props.enableDrill : null, F = H.configure.props ? H.configure.props.drillEndTrigger : null, q = H.configure.props ? H.configure.props.linkPage : null, B = {};
15
+ if (H.configure.items) for (const e3 of H.configure.items) e3.props && e3.props.linkPage && e3.props.linkPage.jumpPageUrl ? B[e3.uuid] = e3 : q && q.jumpPageUrl && (B[e3.uuid] = H.configure);
16
+ const G = H.configure.runtime ? H.configure.runtime : {}, J = G.style, K = G.class, L = G.dataConfig, M = G.headerInfo ? G.headerInfo : {}, Q = G.chartOption, W = H.configure.props ? H.configure.props : {}, X = f(W.customTheme);
17
+ function Y(e3) {
18
+ "clearDrill" == F ? U.value && U.value.closeDrill && U.value.closeDrill(0) : "clickEvent" === F && Z(e3);
19
+ }
20
+ function Z(e3) {
21
+ if (e3.seriesIndex >= Q.series.length) return;
22
+ const r2 = Q.series[e3.seriesIndex].uuid, o2 = B[r2];
23
+ if (!o2) return;
24
+ const t2 = { data: e3.data, dataIndex: e3.dataIndex, name: e3.name, seriesId: e3.seriesId, seriesIndex: e3.seriesIndex, seriesName: e3.seriesName, seriesType: e3.seriesType, value: e3.value };
25
+ k(H.pageContext, o2, t2);
26
+ }
27
+ g(H.configure, Q), o(() => {
28
+ const e3 = v(H.pageContext, H.configure);
29
+ e3 && oe(e3), S.value && (z || Object.keys(B).length > 0) && S.value.chart.on("click", function(e4) {
30
+ z ? U.value && U.value.drill && U.value.drill(e4, H.configure.cacheDatas) : Z(e4);
31
+ }), !z && H.configure.clickSet && S.value && m(H.pageContext, H.configure, S.value.chart);
32
+ });
33
+ let $ = M.groupValue;
34
+ function ee(e3) {
35
+ L && (true !== e3 && (L.autoRefresh = true), x(H.pageContext, [L], M.drillParams));
36
+ }
37
+ t(M, () => {
38
+ $ != M.groupValue && ($ = M.groupValue, L && (L.services[0].groupValue = M.groupValue), ee(false));
39
+ });
40
+ const re = M.monitorFields;
41
+ function oe(e3) {
42
+ var _a;
43
+ e3 || (e3 = []), Array.isArray(e3) && (e3 = e3.length > 0 ? e3[0] : {}), e3 || (e3 = {}), e3.hasRender ? e3.hasRender = true : (e3.hasRender = true, L.autoRefresh || ($ = e3.groupValue, $ && "checkbox" !== M.groupComponent && ($ = $.join(",")), M.groupValue = $), L.autoRefresh && z || h(H.pageContext, H.configure, (_a = S.value) == null ? void 0 : _a.chart), L.autoRefresh = false, I(H.pageContext, H.configure, Q, e3), S.value && S.value.setOption(Q, true));
44
+ }
45
+ return C(H.pageContext, re, () => {
46
+ ee(true);
47
+ }), A2({ updateChartDatas: oe, exportChart: function() {
48
+ return d(S.value);
49
+ }, chartOption: Q }), (r2, o2) => (a(), n("div", { style: u(s(J)), class: i([s(K), "amb-widget-chart amb-widget-flex amb-chart-container"]), ref_key: "thisRef", ref: N }, [l(c(y, { ref_key: "headerRef", ref: U, headerInfo: s(M), configure: e2.configure, pageContext: e2.pageContext, onDrillEnd: Y, class: "amb-chart-header" }, null, 8, ["headerInfo", "configure", "pageContext"]), [[p, s(M).showHeader || e2.pageContext.showHomepageSearch]]), c(s(E), { ref_key: "chartRef", ref: S, class: "amb-chart-content", theme: s(X), option: s(Q), autoresize: "" }, null, 8, ["theme", "option"])], 6));
50
+ } });
51
+ export {
52
+ A as default
53
+ };
@@ -0,0 +1,14 @@
1
+ import { defineComponent as e, resolveComponent as r, createBlock as o, openBlock as l, unref as t, withCtx as s, createElementBlock as a, Fragment as n, renderList as c, createTextVNode as m, toDisplayString as u } from "vue";
2
+ import { ArrowRight as i } from "@element-plus/icons-vue";
3
+ const p = e({ __name: "common-chart-header-breadcrumb", props: { headerInfo: { type: Object, required: true } }, emits: ["close-drill"], setup(e2, { emit: p2 }) {
4
+ const d = p2;
5
+ return (p3, f) => {
6
+ const b = r("el-tag"), h = r("el-breadcrumb");
7
+ return l(), o(h, { "separator-icon": t(i) }, { default: s(() => [(l(true), a(n, null, c(e2.headerInfo.drillOptions, (e3, r2) => (l(), o(b, { key: e3.name, closable: "", type: "success", style: { "margin-left": "4px" }, onClose: (e4) => {
8
+ d("close-drill", r2);
9
+ } }, { default: s(() => [m(u(e3.label), 1)]), _: 2 }, 1032, ["onClose"]))), 128))]), _: 1 }, 8, ["separator-icon"]);
10
+ };
11
+ } });
12
+ export {
13
+ p as default
14
+ };
@@ -0,0 +1,4 @@
1
+ import r from "./common-chart-header-breadcrumb.vue.js";
2
+ export {
3
+ r as default
4
+ };
@@ -0,0 +1,13 @@
1
+ import { defineComponent as e, watch as l, resolveComponent as o, createBlock as a, createElementBlock as u, openBlock as r, withCtx as n, Fragment as d, renderList as p } from "vue";
2
+ const t = e({ __name: "common-chart-header-group", props: { headerInfo: { type: Object, required: true } }, setup(e2) {
3
+ const t2 = e2;
4
+ return l(t2.headerInfo, () => {
5
+ t2.headerInfo;
6
+ }), (l2, t3) => {
7
+ const h = o("el-checkbox"), f = o("el-checkbox-group"), m = o("el-radio"), V = o("el-radio-button"), b = o("el-radio-group");
8
+ return "checkbox" == e2.headerInfo.groupComponent ? (r(), a(f, { key: 0, modelValue: e2.headerInfo.groupValue, "onUpdate:modelValue": t3[0] || (t3[0] = (l3) => e2.headerInfo.groupValue = l3) }, { default: n(() => [(r(true), u(d, null, p(e2.headerInfo.options, (e3) => (r(), a(h, { label: e3.label, value: e3.value }, null, 8, ["label", "value"]))), 256))]), _: 1 }, 8, ["modelValue"])) : "radio" == e2.headerInfo.groupComponent ? (r(true), u(d, { key: 1 }, p(e2.headerInfo.options, (l3) => (r(), a(m, { modelValue: e2.headerInfo.groupValue, "onUpdate:modelValue": t3[1] || (t3[1] = (l4) => e2.headerInfo.groupValue = l4), value: l3.value, label: l3.label }, null, 8, ["modelValue", "value", "label"]))), 256)) : (r(), a(b, { key: 2, modelValue: e2.headerInfo.groupValue, "onUpdate:modelValue": t3[2] || (t3[2] = (l3) => e2.headerInfo.groupValue = l3) }, { default: n(() => [(r(true), u(d, null, p(e2.headerInfo.options, (e3) => (r(), a(V, { label: e3.label, value: e3.value }, null, 8, ["label", "value"]))), 256))]), _: 1 }, 8, ["modelValue"]));
9
+ };
10
+ } });
11
+ export {
12
+ t as default
13
+ };
@@ -0,0 +1,4 @@
1
+ import o from "./common-chart-header-group.vue.js";
2
+ export {
3
+ o as default
4
+ };
@@ -0,0 +1,60 @@
1
+ import { defineComponent as e, ref as o, resolveComponent as r, createElementBlock as n, openBlock as t, createElementVNode as a, createCommentVNode as l, withDirectives as i, createBlock as d, normalizeStyle as f, toDisplayString as h, vShow as s, createVNode as c, withCtx as I, unref as u } from "vue";
2
+ import { Search as p } from "@element-plus/icons-vue";
3
+ import g from "./common-chart-header-group.vue.js";
4
+ import m from "./common-chart-header-breadcrumb.vue.js";
5
+ import b from "./common-homepage-search.vue.js";
6
+ import { setVariableValueWithProp as v, getValueFromSource as y, setValueForVariableName as O } from "../../../../utils/page-helper-util.js";
7
+ const w = { class: "amb-widget-chart-header" }, x = { class: "amb-widget-chart-header-item" }, k = { class: "amb-widget-chart-header-item amb-widget-chart-header-center" }, j = { class: "amb-widget-chart-header-item" }, C = { key: 0, class: "amb-widget-chart-header-item" }, P = e({ __name: "common-chart-header", props: { headerInfo: { type: Object, required: true }, configure: { type: Object, required: true }, pageContext: { type: Object, required: true } }, emits: ["drill-end"], setup(e2, { expose: P2, emit: _ }) {
8
+ const N = e2, D = o(null), A = o(), R = _;
9
+ function S(e3) {
10
+ const o2 = N.headerInfo.drillOptions.length;
11
+ if (e3 >= o2) N.headerInfo.drillOptions;
12
+ else {
13
+ for (let r2 = o2 - 1; r2 >= e3; r2--) N.headerInfo.drillOptions.splice(r2, 1);
14
+ q(e3);
15
+ }
16
+ }
17
+ function q(e3) {
18
+ const o2 = {};
19
+ for (let e4 of N.headerInfo.drillOptions) e4.fieldName && (o2[e4.fieldName] = e4.value);
20
+ N.headerInfo.drillParams = o2, N.headerInfo.groupValue = N.headerInfo.options[e3].value, F();
21
+ }
22
+ function F(e3) {
23
+ const o2 = N.configure.clickSet;
24
+ if (!o2 || !o2.variables || 0 === o2.variables.length) return;
25
+ const r2 = {};
26
+ e3 && Object.assign(r2, e3);
27
+ const n2 = N.headerInfo.drillOptions;
28
+ if (n2.length > 0) {
29
+ if (!e3) {
30
+ const e4 = n2[n2.length - 1];
31
+ e4.data && Object.assign(r2, e4.data);
32
+ }
33
+ for (let e4 of n2) e4.rawFieldName && v(r2, e4.rawFieldName, e4.value);
34
+ }
35
+ for (let e4 of o2.variables) {
36
+ if (!e4.fieldName || !e4.variable) continue;
37
+ const o3 = y(r2, e4.fieldName, void 0);
38
+ O(N.pageContext.entity, e4.variable, o3);
39
+ }
40
+ }
41
+ N.headerInfo.drillOptions || (N.headerInfo.drillOptions = []);
42
+ const G = () => {
43
+ A.value.openSearch();
44
+ };
45
+ return P2({ drill: function(e3, o2) {
46
+ const r2 = N.headerInfo.drillOptions.length;
47
+ if (r2 + 1 >= N.headerInfo.options.length) {
48
+ return F(o2 && e3.dataIndex < o2.length ? o2[e3.dataIndex] : void 0), void R("drill-end", e3);
49
+ }
50
+ N.headerInfo.options;
51
+ const n2 = N.headerInfo.options[r2], t2 = o2 && e3.dataIndex < o2.length ? o2[e3.dataIndex] : null, a2 = { fieldName: n2.target ? n2.target.replace(".", "_") : "", rawFieldName: n2.target ? n2.target : "", label: e3.name, value: e3.name, data: t2 };
52
+ N.headerInfo.drillOptions.push(a2), q(r2 + 1);
53
+ }, closeDrill: S }), (o2, v2) => {
54
+ const y2 = r("el-icon"), O2 = r("el-tooltip");
55
+ return t(), n("div", w, [a("div", x, [i(a("label", { style: f(e2.headerInfo.style) }, h(e2.headerInfo.title) + "  ", 5), [[s, e2.headerInfo.title && (!e2.headerInfo.textAlign || "left" == e2.headerInfo.textAlign)]]), !e2.headerInfo.showDrill || e2.headerInfo.groupPosition && "left" != e2.headerInfo.groupPosition ? l("", true) : (t(), d(m, { key: 0, ref_key: "drillObjRef", ref: D, headerInfo: e2.headerInfo, onCloseDrill: S }, null, 8, ["headerInfo"])), !e2.headerInfo.showGroup || e2.headerInfo.groupPosition && "left" != e2.headerInfo.groupPosition ? l("", true) : (t(), d(g, { key: 1, headerInfo: e2.headerInfo }, null, 8, ["headerInfo"]))]), a("div", k, [i(a("label", { style: f(e2.headerInfo.style) }, h(e2.headerInfo.title) + "  ", 5), [[s, e2.headerInfo.title && "center" == e2.headerInfo.textAlign]]), e2.headerInfo.showDrill && "center" == e2.headerInfo.groupPosition ? (t(), d(m, { key: 0, headerInfo: e2.headerInfo, onCloseDrill: S, ref_key: "drillObjRef", ref: D }, null, 8, ["headerInfo"])) : l("", true), e2.headerInfo.showGroup && "center" == e2.headerInfo.groupPosition ? (t(), d(g, { key: 1, headerInfo: e2.headerInfo }, null, 8, ["headerInfo"])) : l("", true)]), a("div", j, [i(a("label", { style: f(e2.headerInfo.style) }, h(e2.headerInfo.title) + "  ", 5), [[s, e2.headerInfo.title && "right" == e2.headerInfo.textAlign]]), e2.headerInfo.showDrill && "right" == e2.headerInfo.groupPosition ? (t(), d(m, { key: 0, headerInfo: e2.headerInfo, onCloseDrill: S, ref_key: "drillObjRef", ref: D }, null, 8, ["headerInfo"])) : l("", true), e2.headerInfo.showGroup && "right" == e2.headerInfo.groupPosition ? (t(), d(g, { key: 1, headerInfo: e2.headerInfo }, null, 8, ["headerInfo"])) : l("", true)]), e2.pageContext.showHomepageSearch ? (t(), n("div", C, [c(O2, { content: "打开查询弹窗", effect: "light" }, { default: I(() => [c(y2, { onClick: G }, { default: I(() => [c(u(p))]), _: 1 })]), _: 1 }), c(b, { ref_key: "commonHomepageSearchRef", ref: A, configure: e2.configure, pageContext: e2.pageContext }, null, 8, ["configure", "pageContext"])])) : l("", true)]);
56
+ };
57
+ } });
58
+ export {
59
+ P as default
60
+ };
@@ -0,0 +1,4 @@
1
+ import e from "./common-chart-header.vue.js";
2
+ export {
3
+ e as default
4
+ };
@@ -0,0 +1,7 @@
1
+ import e from "./common-homepage-search.vue2.js";
2
+ /* empty css */
3
+ import o from "../../../../../../_virtual/_plugin-vue_export-helper.js";
4
+ const m = o(e, [["__scopeId", "data-v-57964c4a"]]);
5
+ export {
6
+ m as default
7
+ };
@@ -0,0 +1,63 @@
1
+ import { defineComponent as e, ref as t, onMounted as o, onUnmounted as i, resolveComponent as l, createBlock as a, openBlock as r, withCtx as n, createElementVNode as u, createVNode as s, createTextVNode as p, createCommentVNode as c, createElementBlock as g, Fragment as m, renderList as d } from "vue";
2
+ import f from "../../object-render.vue.js";
3
+ import { updateChartDatasources as v, getValueFromVariable as h } from "../../../../utils/page-helper-util.js";
4
+ import { ElLoading as y, ElMessage as C } from "element-plus";
5
+ import S from "agilebuilder-ui/src/utils/request";
6
+ import "agilebuilder-ui/src/utils/common-util";
7
+ import "agilebuilder-ui/src/utils/util";
8
+ import "async-validator";
9
+ import "../../../../utils/global-refs.js";
10
+ import "../../../../utils/eventBus.js";
11
+ import "../../../../utils/page-store.js";
12
+ import "agilebuilder-ui/src/utils/i18n-util";
13
+ import "vue-i18n";
14
+ import "agilebuilder-ui/src/utils/auth";
15
+ import "axios";
16
+ import "../../../../utils/events/print-label.js";
17
+ const b = { style: { overflow: "auto", height: "calc(100vh - 140px)" }, ref: "dialogBody" }, O = { class: "dialog-footer" }, x = e({ __name: "common-homepage-search", props: { configure: { type: Object, required: true }, pageContext: { type: Object, default: () => {
18
+ } } }, setup(e2, { expose: x2 }) {
19
+ const N = e2, _ = t(false), J = t({}), j = t(0);
20
+ let I;
21
+ o(() => {
22
+ I = setTimeout(() => {
23
+ J.value = JSON.parse(JSON.stringify(N.pageContext.entity));
24
+ }, 200);
25
+ }), i(() => {
26
+ I && clearTimeout(I);
27
+ });
28
+ const k = t([]), w = () => {
29
+ _.value = false;
30
+ }, T = () => {
31
+ const e3 = y.service({ lock: true, text: "Loading", background: "rgba(0, 0, 0, 0.7)" });
32
+ v(N.pageContext, N.pageContext.initChartServiceConfigs, null, false).then(() => {
33
+ _.value = false;
34
+ }).finally(() => {
35
+ _.value = false, e3.close();
36
+ });
37
+ };
38
+ function H() {
39
+ N.pageContext.entity = JSON.parse(JSON.stringify(J.value)), j.value++;
40
+ }
41
+ function A() {
42
+ const e3 = {};
43
+ N.pageContext.variables.forEach((t3) => {
44
+ const o3 = "${page." + t3.name + "}";
45
+ e3[o3] = h(N.pageContext.entity, o3, null);
46
+ });
47
+ let t2 = window.localStorage.getItem("HOME_MY_CHARTS_CONDITIONS"), o2 = {};
48
+ t2 && (o2 = JSON.parse(t2)), o2[N.configure.homeChartSettingUserId] = e3;
49
+ const i2 = JSON.stringify(e3);
50
+ window.localStorage.setItem("HOME_MY_CHARTS_CONDITIONS", JSON.stringify(o2)), J.value = JSON.parse(JSON.stringify(N.pageContext.entity)), S.post(window.$vueApp.config.globalProperties.baseAPI + "/component/home-chart-settings/search-conditions", { id: N.configure.homeChartSettingUserId, searchConditionsJson: i2 }).then((e4) => {
51
+ C.success("保存成功"), T();
52
+ });
53
+ }
54
+ return x2({ openSearch: () => {
55
+ _.value = true, k.value = N.configure.pushHomepage.searchConditions;
56
+ } }), (t2, o2) => {
57
+ const i2 = l("el-empty"), v2 = l("el-form"), h2 = l("el-button"), y2 = l("el-dialog");
58
+ return r(), a(y2, { modelValue: _.value, "onUpdate:modelValue": o2[0] || (o2[0] = (e3) => _.value = e3), title: "筛选", close: w, "append-to-body": "", fullscreen: "", top: "40vh", append: "", width: "70%", draggable: "" }, { default: n(() => [u("div", b, [k.value && 0 !== k.value.length ? c("", true) : (r(), a(i2, { key: 0, description: "未设置筛选条件", "image-size": 50 })), (r(), a(v2, { key: j.value }, { default: n(() => [(r(true), g(m, null, d(k.value, (t3) => (r(), a(f, { key: t3.uuid, configure: t3, pageContext: e2.pageContext }, null, 8, ["configure", "pageContext"]))), 128))]), _: 1 }))], 512)]), footer: n(() => [u("div", O, [s(h2, { type: "primary", onClick: T }, { default: n(() => [...o2[1] || (o2[1] = [p(" 确定 ", -1)])]), _: 1 }), s(h2, { type: "default", onClick: H }, { default: n(() => [...o2[2] || (o2[2] = [p("重置", -1)])]), _: 1 }), s(h2, { type: "primary", onClick: A }, { default: n(() => [...o2[3] || (o2[3] = [p(" 保存为默认条件 ", -1)])]), _: 1 })])]), _: 1 }, 8, ["modelValue"]);
59
+ };
60
+ } });
61
+ export {
62
+ x as default
63
+ };
@@ -0,0 +1,7 @@
1
+ import e from "./gauge-runtime.vue2.js";
2
+ /* empty css */
3
+ import r from "../../../../../../_virtual/_plugin-vue_export-helper.js";
4
+ const t = r(e, [["__scopeId", "data-v-807f72b1"]]);
5
+ export {
6
+ t as default
7
+ };
@@ -0,0 +1,35 @@
1
+ import { defineComponent as e, ref as r, onMounted as t, watch as o, createElementBlock as a, openBlock as n, normalizeClass as s, normalizeStyle as u, unref as i, withDirectives as c, createVNode as p, vShow as m } from "vue";
2
+ import { getCustomTheme as f, initChartOption as h, exportCommonChart as l } from "../../../../utils/charts/chart-util.js";
3
+ import { getChartDatasFromPage as g, updateChartDatasources as d, monitorFieldChange as x } from "../../../../utils/page-helper-util.js";
4
+ import { updateChartOption as C } from "../../../../utils/charts/chart-gauge-util.js";
5
+ import v from "../common/common-chart-header.vue.js";
6
+ import { use as y } from "echarts/core";
7
+ import { CanvasRenderer as R } from "echarts/renderers";
8
+ import { GaugeChart as b } from "echarts/charts";
9
+ import { GridComponent as V, TitleComponent as _, TooltipComponent as j, ToolboxComponent as w } from "echarts/components";
10
+ import I from "vue-echarts";
11
+ const k = e({ __name: "gauge-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: k2 }) {
12
+ y([R, b, V, _, j, w]);
13
+ const A = e2, H = r(null), O = r(), z = r(null), D = A.configure.runtime ? A.configure.runtime : {}, F = D.style, P = D.class, S = D.dataConfig, T = D.headerInfo ? D.headerInfo : {}, q = D.chartOption, B = A.configure.props ? A.configure.props : {}, E = f(B.customTheme);
14
+ h(A.configure, q), t(() => {
15
+ const e3 = g(A.pageContext, A.configure);
16
+ e3 && L(e3);
17
+ });
18
+ let G = T.groupValue;
19
+ function J() {
20
+ S && d(A.pageContext, [S], T.drillParams);
21
+ }
22
+ o(T, () => {
23
+ G != T.groupValue && (G = T.groupValue, S && (S.services[0].groupValue = T.groupValue), J());
24
+ });
25
+ const K = T.monitorFields;
26
+ function L(e3) {
27
+ e3 || (e3 = []), Array.isArray(e3) && (e3 = e3.length > 0 ? e3[0] : {}), e3 || (e3 = {}), e3.hasRender ? e3.hasRender = true : (e3.hasRender = true, C(A.pageContext, A.configure, q, e3), O.value && O.value.setOption(q, true));
28
+ }
29
+ return x(A.pageContext, K, J), k2({ updateChartDatas: L, exportChart: function() {
30
+ return l(O.value);
31
+ } }), (r2, t2) => (n(), a("div", { style: u(i(F)), class: s([i(P), "amb-widget-chart amb-widget-flex amb-chart-container"]), ref_key: "thisRef", ref: H }, [c(p(v, { ref_key: "headerRef", ref: z, headerInfo: i(T), configure: e2.configure, pageContext: e2.pageContext, class: "amb-chart-header" }, null, 8, ["headerInfo", "configure", "pageContext"]), [[m, i(T).showHeader || e2.pageContext.showHomepageSearch]]), p(i(I), { ref_key: "chartRef", ref: O, class: "amb-chart-content", theme: i(E), option: i(q), autoresize: "" }, null, 8, ["theme", "option"])], 6));
32
+ } });
33
+ export {
34
+ k as default
35
+ };
@@ -0,0 +1,7 @@
1
+ import e from "./pie-runtime.vue2.js";
2
+ /* empty css */
3
+ import r from "../../../../../../_virtual/_plugin-vue_export-helper.js";
4
+ const t = r(e, [["__scopeId", "data-v-17d626a7"]]);
5
+ export {
6
+ t as default
7
+ };
@@ -0,0 +1,46 @@
1
+ import { defineComponent as e, ref as r, onMounted as o, watch as t, createElementBlock as a, openBlock as n, normalizeClass as u, normalizeStyle as i, unref as l, withDirectives as c, createVNode as s, vShow as p } from "vue";
2
+ import { getCustomTheme as f, initChartOption as g, monitorChartClickToVariable as h, clearChartSelected as m, exportCommonChart as d } from "../../../../utils/charts/chart-util.js";
3
+ import { updateChartOption as v } from "../../../../utils/charts/chart-pie-util.js";
4
+ import { doClickJumpPageEvent as x } from "../../../../utils/events/event-util.js";
5
+ import { getChartDatasFromPage as C, updateChartDatasources as R, monitorFieldChange as j } from "../../../../utils/page-helper-util.js";
6
+ import k from "../common/common-chart-header.vue.js";
7
+ import { use as b } from "echarts/core";
8
+ import { CanvasRenderer as y } from "echarts/renderers";
9
+ import { PieChart as D } from "echarts/charts";
10
+ import { GridComponent as V, LegendComponent as _, TitleComponent as w, TooltipComponent as I, ToolboxComponent as P } from "echarts/components";
11
+ import E from "vue-echarts";
12
+ const A = e({ __name: "pie-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: A2 }) {
13
+ b([y, D, V, _, w, I, P]);
14
+ const H = e2, O = r(null), S = r(), T = r(null), U = H.configure.props ? H.configure.props.enableDrill : null, z = H.configure.props ? H.configure.props.drillEndTrigger : null, F = H.configure.props ? H.configure.props.linkPage : null, q = H.configure.runtime ? H.configure.runtime : {}, B = q.style, G = q.class, J = q.dataConfig, K = q.headerInfo ? q.headerInfo : {}, L = q.chartOption, M = H.configure.props ? H.configure.props : {}, N = f(M.customTheme);
15
+ function Q(e3) {
16
+ "clearDrill" == z ? T.value && T.value.closeDrill && T.value.closeDrill(0) : "clickEvent" == z && W();
17
+ }
18
+ function W() {
19
+ F && F.jumpPageUrl && x(H.pageContext, H.configure, void 0);
20
+ }
21
+ g(H.configure, L), o(() => {
22
+ const e3 = C(H.pageContext, H.configure);
23
+ e3 && $(e3), S.value && (U || F && F.jumpPageUrl) && S.value.chart.on("click", function(e4) {
24
+ U ? T.value && T.value.drill && T.value.drill(e4, H.configure.cacheDatas) : W();
25
+ }), !U && H.configure.clickSet && S.value && h(H.pageContext, H.configure, S.value.chart);
26
+ });
27
+ let X = K.groupValue;
28
+ function Y(e3) {
29
+ J && (true !== e3 && (J.autoRefresh = true), R(H.pageContext, [J], K.drillParams));
30
+ }
31
+ t(K, () => {
32
+ X != K.groupValue && (X = K.groupValue, J && (J.services[0].groupValue = K.groupValue), Y(false));
33
+ });
34
+ const Z = K.monitorFields;
35
+ function $(e3) {
36
+ e3 || (e3 = []), Array.isArray(e3) && (e3 = e3.length > 0 ? e3[0] : {}), e3 || (e3 = {}), e3.hasRender ? e3.hasRender = true : (e3.hasRender = true, J.autoRefresh || (X = e3.groupValue, X && "checkbox" !== K.groupComponent && (X = X.join(",")), K.groupValue = X), J.autoRefresh && U || m(H.pageContext, H.configure, S.value.chart), J.autoRefresh = false, v(H.pageContext, H.configure, L, e3), S.value && S.value.setOption(L, true));
37
+ }
38
+ return j(H.pageContext, Z, () => {
39
+ Y(true);
40
+ }), A2({ updateChartDatas: $, exportChart: function() {
41
+ return d(S.value);
42
+ } }), (r2, o2) => (n(), a("div", { style: i(l(B)), class: u([l(G), "amb-widget-chart amb-widget-flex amb-chart-container"]), ref_key: "thisRef", ref: O }, [c(s(k, { ref_key: "headerRef", ref: T, headerInfo: l(K), configure: e2.configure, pageContext: e2.pageContext, onDrillEnd: Q, class: "amb-chart-header" }, null, 8, ["headerInfo", "configure", "pageContext"]), [[p, l(K).showHeader || e2.pageContext.showHomepageSearch]]), s(l(E), { ref_key: "chartRef", ref: S, class: "amb-chart-content", theme: l(N), option: l(L), autoresize: "" }, null, 8, ["theme", "option"])], 6));
43
+ } });
44
+ export {
45
+ A as default
46
+ };
@@ -0,0 +1,7 @@
1
+ import r from "./radar-runtime.vue2.js";
2
+ /* empty css */
3
+ import e from "../../../../../../_virtual/_plugin-vue_export-helper.js";
4
+ const t = e(r, [["__scopeId", "data-v-a4e2d500"]]);
5
+ export {
6
+ t as default
7
+ };
@@ -0,0 +1,35 @@
1
+ import { defineComponent as e, ref as r, onMounted as t, watch as o, createElementBlock as a, openBlock as n, normalizeClass as s, normalizeStyle as u, unref as i, withDirectives as c, createVNode as p, vShow as m } from "vue";
2
+ import { getCustomTheme as f, initChartOption as h, exportCommonChart as l } from "../../../../utils/charts/chart-util.js";
3
+ import { getChartDatasFromPage as g, updateChartDatasources as d, monitorFieldChange as x } from "../../../../utils/page-helper-util.js";
4
+ import { updateChartOption as C } from "../../../../utils/charts/chart-radar-util.js";
5
+ import v from "../common/common-chart-header.vue.js";
6
+ import { use as y } from "echarts/core";
7
+ import { CanvasRenderer as R } from "echarts/renderers";
8
+ import { RadarChart as b } from "echarts/charts";
9
+ import { GridComponent as V, TitleComponent as _, TooltipComponent as j, ToolboxComponent as w, LegendComponent as I } from "echarts/components";
10
+ import k from "vue-echarts";
11
+ const A = e({ __name: "radar-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: A2 }) {
12
+ y([R, b, V, _, j, w, I]);
13
+ const H = e2, O = r(null), z = r(), D = r(null), F = H.configure.runtime ? H.configure.runtime : {}, P = F.style, S = F.class, T = F.dataConfig, q = F.headerInfo ? F.headerInfo : {}, B = F.chartOption, E = H.configure.props ? H.configure.props : {}, G = f(E.customTheme);
14
+ h(H.configure, B), t(() => {
15
+ const e3 = g(H.pageContext, H.configure);
16
+ e3 && M(e3);
17
+ });
18
+ let J = q.groupValue;
19
+ function K() {
20
+ T && d(H.pageContext, [T], q.drillParams);
21
+ }
22
+ o(q, () => {
23
+ J != q.groupValue && (J = q.groupValue, T && (T.services[0].groupValue = q.groupValue), K());
24
+ });
25
+ const L = q.monitorFields;
26
+ function M(e3) {
27
+ e3 || (e3 = []), Array.isArray(e3) && (e3 = e3.length > 0 ? e3[0] : {}), e3 || (e3 = {}), e3.hasRender ? e3.hasRender = true : (e3.hasRender = true, C(H.pageContext, H.configure, B, e3), z.value && z.value.setOption(B, true));
28
+ }
29
+ return x(H.pageContext, L, K), A2({ updateChartDatas: M, exportChart: function() {
30
+ return l(z.value);
31
+ } }), (r2, t2) => (n(), a("div", { style: u(i(P)), class: s([i(S), "amb-widget-chart amb-widget-flex amb-chart-container"]), ref_key: "thisRef", ref: O }, [c(p(v, { ref_key: "headerRef", ref: D, headerInfo: i(q), configure: e2.configure, pageContext: e2.pageContext, class: "amb-chart-header" }, null, 8, ["headerInfo", "configure", "pageContext"]), [[m, i(q).showHeader || e2.pageContext.showHomepageSearch]]), p(i(k), { ref_key: "chartRef", ref: z, class: "amb-chart-content", theme: i(G), option: i(B), autoresize: "" }, null, 8, ["theme", "option"])], 6));
32
+ } });
33
+ export {
34
+ A as default
35
+ };
@@ -0,0 +1,7 @@
1
+ import t from "./scatter-runtime.vue2.js";
2
+ /* empty css */
3
+ import e from "../../../../../../_virtual/_plugin-vue_export-helper.js";
4
+ const r = e(t, [["__scopeId", "data-v-a924cb6f"]]);
5
+ export {
6
+ r as default
7
+ };
@@ -0,0 +1,35 @@
1
+ import { defineComponent as e, ref as r, onMounted as t, watch as o, createElementBlock as a, openBlock as n, normalizeClass as s, normalizeStyle as c, unref as u, withDirectives as i, createVNode as p, vShow as m } from "vue";
2
+ import { getCustomTheme as f, initChartOption as h, exportCommonChart as l } from "../../../../utils/charts/chart-util.js";
3
+ import { getChartDatasFromPage as g, updateChartDatasources as d, monitorFieldChange as x } from "../../../../utils/page-helper-util.js";
4
+ import { updateChartOption as C } from "../../../../utils/charts/chart-scatter-util.js";
5
+ import v from "../common/common-chart-header.vue.js";
6
+ import { use as y } from "echarts/core";
7
+ import { CanvasRenderer as R } from "echarts/renderers";
8
+ import { ScatterChart as b } from "echarts/charts";
9
+ import { GridComponent as V, LegendComponent as _, TitleComponent as j, TooltipComponent as w, ToolboxComponent as I, DataZoomComponent as k } from "echarts/components";
10
+ import A from "vue-echarts";
11
+ const H = e({ __name: "scatter-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: H2 }) {
12
+ y([R, b, V, _, j, w, I, k]);
13
+ const O = e2, z = r(null), D = r(), F = r(null), P = O.configure.runtime ? O.configure.runtime : {}, S = P.style, T = P.class, q = P.dataConfig, B = P.headerInfo ? P.headerInfo : {}, E = P.chartOption, G = O.configure.props ? O.configure.props : {}, J = f(G.customTheme);
14
+ h(O.configure, E), t(() => {
15
+ const e3 = g(O.pageContext, O.configure);
16
+ e3 && N(e3);
17
+ });
18
+ let K = B.groupValue;
19
+ function L() {
20
+ q && d(O.pageContext, [q], B.drillParams);
21
+ }
22
+ o(B, () => {
23
+ K != B.groupValue && (K = B.groupValue, q && (q.services[0].groupValue = B.groupValue), L());
24
+ });
25
+ const M = B.monitorFields;
26
+ function N(e3) {
27
+ e3 || (e3 = []), Array.isArray(e3) && (e3 = e3.length > 0 ? e3[0] : {}), e3 || (e3 = {}), e3.hasRender ? e3.hasRender = true : (e3.hasRender = true, C(O.pageContext, O.configure, E, e3), D.value && D.value.setOption(E, true));
28
+ }
29
+ return x(O.pageContext, M, L), H2({ updateChartDatas: N, exportChart: function() {
30
+ return l(D.value);
31
+ } }), (r2, t2) => (n(), a("div", { style: c(u(S)), class: s([u(T), "amb-widget-chart amb-widget-flex amb-chart-container"]), ref_key: "thisRef", ref: z }, [i(p(v, { ref_key: "headerRef", ref: F, headerInfo: u(B), configure: e2.configure, pageContext: e2.pageContext, class: "amb-chart-header" }, null, 8, ["headerInfo", "configure", "pageContext"]), [[m, u(B).showHeader || e2.pageContext.showHomepageSearch]]), p(u(A), { ref_key: "chartRef", ref: D, class: "amb-chart-content", theme: u(J), option: u(E), autoresize: "" }, null, 8, ["theme", "option"])], 6));
32
+ } });
33
+ export {
34
+ H as default
35
+ };