super-page-runtime 2.3.39 → 2.3.40-cdnTmp1

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 (647) hide show
  1. package/dist/es/_virtual/_plugin-vue_export-helper.mjs +8 -0
  2. package/dist/es/components/runtime/utils/ai-chat-util.mjs +16 -0
  3. package/dist/es/components/runtime/utils/anchor-util.mjs +83 -0
  4. package/dist/es/components/runtime/utils/api/api-util.d.ts +1 -1
  5. package/dist/es/components/runtime/utils/api/api-util.mjs +9 -0
  6. package/dist/es/components/runtime/utils/api/page-expose-util.mjs +184 -0
  7. package/dist/es/components/runtime/utils/assemblys-config.mjs +19 -0
  8. package/dist/es/components/runtime/utils/barcode-util.mjs +12 -0
  9. package/dist/es/components/runtime/utils/charts/chart-columnline-util.mjs +169 -0
  10. package/dist/es/components/runtime/utils/charts/chart-gauge-util.mjs +38 -0
  11. package/dist/es/components/runtime/utils/charts/chart-pie-util.mjs +83 -0
  12. package/dist/es/components/runtime/utils/charts/chart-radar-util.mjs +56 -0
  13. package/dist/es/components/runtime/utils/charts/chart-scatter-util.mjs +47 -0
  14. package/dist/es/components/runtime/utils/charts/chart-util.mjs +285 -0
  15. package/dist/es/components/runtime/utils/common-util.mjs +116 -0
  16. package/dist/es/components/runtime/utils/eventBus.mjs +8 -0
  17. package/dist/es/components/runtime/utils/events/data-backfill-util.mjs +38 -0
  18. package/dist/es/components/runtime/utils/events/event-util.mjs +413 -0
  19. package/dist/es/components/runtime/utils/events/print-label.mjs +100 -0
  20. package/dist/es/components/runtime/utils/events/standard-event.d.ts +8 -1
  21. package/dist/es/components/runtime/utils/events/standard-event.mjs +1188 -0
  22. package/dist/es/components/runtime/utils/events/validator-util.mjs +403 -0
  23. package/dist/es/components/runtime/utils/form/date-shortcuts.mjs +36 -0
  24. package/dist/es/components/runtime/utils/form/scan-util.mjs +88 -0
  25. package/dist/es/components/runtime/utils/global-refs.mjs +57 -0
  26. package/dist/es/components/runtime/utils/i18n-util.mjs +14 -0
  27. package/dist/es/components/runtime/utils/interfaces/page-design-types.mjs +4 -0
  28. package/dist/es/components/runtime/utils/page-helper-util.d.ts +7 -0
  29. package/dist/es/components/runtime/utils/page-helper-util.mjs +381 -0
  30. package/dist/es/components/runtime/utils/page-init-util.mjs +261 -0
  31. package/dist/es/components/runtime/utils/{page-permission-util.js → page-permission-util.mjs} +20 -21
  32. package/dist/es/components/runtime/utils/page-store.mjs +53 -0
  33. package/dist/es/components/runtime/utils/store-util.mjs +13 -0
  34. package/dist/es/components/runtime/utils/table-utils.mjs +84 -0
  35. package/dist/es/components/runtime/utils/tree-utils.mjs +68 -0
  36. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.mjs +4 -0
  37. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime2.vue.mjs +29 -0
  38. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.mjs +7 -0
  39. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime2.vue.mjs +21 -0
  40. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.mjs +4 -0
  41. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime2.vue.mjs +41 -0
  42. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.mjs +4 -0
  43. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime2.vue.mjs +6 -0
  44. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.mjs +4 -0
  45. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime2.vue.mjs +21 -0
  46. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.mjs +7 -0
  47. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime2.vue.mjs +53 -0
  48. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.mjs +14 -0
  49. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb2.vue.mjs +4 -0
  50. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.mjs +13 -0
  51. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group2.vue.mjs +4 -0
  52. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.mjs +59 -0
  53. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header2.vue.mjs +4 -0
  54. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.mjs +7 -0
  55. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search2.vue.mjs +59 -0
  56. package/dist/es/components/runtime/views/assemblys/chart/common/home-chart-condition-render.vue.mjs +93 -0
  57. package/dist/es/components/runtime/views/assemblys/chart/common/home-chart-condition-render2.vue.mjs +4 -0
  58. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.mjs +7 -0
  59. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime2.vue.mjs +35 -0
  60. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.mjs +7 -0
  61. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime2.vue.mjs +46 -0
  62. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.mjs +7 -0
  63. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime2.vue.mjs +35 -0
  64. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.mjs +7 -0
  65. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime2.vue.mjs +35 -0
  66. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.mjs +416 -0
  67. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.mjs +6 -0
  68. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item2.vue.mjs +4 -0
  69. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.mjs +10 -0
  70. package/dist/es/components/runtime/views/assemblys/chart/table/group-column2.vue.mjs +4 -0
  71. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.mjs +42 -0
  72. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column2.vue.mjs +4 -0
  73. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.mjs +15 -0
  74. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination2.vue.mjs +4 -0
  75. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.mjs +4 -0
  76. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime2.vue.mjs +252 -0
  77. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.mjs +20 -0
  78. package/dist/es/components/runtime/views/assemblys/common/event-call-component2.vue.mjs +4 -0
  79. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.mjs +35 -0
  80. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog2.vue.mjs +4 -0
  81. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.mjs +34 -0
  82. package/dist/es/components/runtime/views/assemblys/common/file-task-notice2.vue.mjs +4 -0
  83. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.mjs +27 -0
  84. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message2.vue.mjs +4 -0
  85. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.mjs +17 -0
  86. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog2.vue.mjs +4 -0
  87. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.mjs +22 -0
  88. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table2.vue.mjs +4 -0
  89. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.mjs +18 -0
  90. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog2.vue.mjs +4 -0
  91. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.mjs +35 -0
  92. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog2.vue.mjs +4 -0
  93. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.mjs +19 -0
  94. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog2.vue.mjs +4 -0
  95. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.mjs +7 -0
  96. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime2.vue.mjs +36 -0
  97. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.mjs +4 -0
  98. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime2.vue.mjs +21 -0
  99. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.mjs +4 -0
  100. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime2.vue.mjs +18 -0
  101. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.mjs +7 -0
  102. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox2.vue.mjs +29 -0
  103. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.mjs +7 -0
  104. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix2.vue.mjs +81 -0
  105. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.mjs +4 -0
  106. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime2.vue.mjs +25 -0
  107. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.mjs +4 -0
  108. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime2.vue.mjs +25 -0
  109. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.mjs +4 -0
  110. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime2.vue.mjs +43 -0
  111. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.mjs +7 -0
  112. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime2.vue.mjs +96 -0
  113. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.mjs +7 -0
  114. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime2.vue.mjs +47 -0
  115. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.mjs +4 -0
  116. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime2.vue.mjs +69 -0
  117. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.mjs +361 -0
  118. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime2.vue.mjs +4 -0
  119. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.mjs +323 -0
  120. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime2.vue.mjs +4 -0
  121. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.mjs +4 -0
  122. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime2.vue.mjs +88 -0
  123. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.mjs +7 -0
  124. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime2.vue.mjs +132 -0
  125. package/dist/es/components/runtime/views/assemblys/error-render.vue.mjs +5 -0
  126. package/dist/es/components/runtime/views/assemblys/error-render2.vue.mjs +4 -0
  127. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.mjs +4 -0
  128. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime2.vue.mjs +65 -0
  129. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.mjs +36 -0
  130. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element2.vue.mjs +4 -0
  131. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.mjs +4 -0
  132. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime2.vue.mjs +69 -0
  133. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.mjs +4 -0
  134. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime2.vue.mjs +102 -0
  135. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.mjs +4 -0
  136. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime2.vue.mjs +55 -0
  137. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.mjs +4 -0
  138. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime2.vue.mjs +24 -0
  139. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.mjs +4 -0
  140. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime2.vue.mjs +91 -0
  141. package/dist/es/components/runtime/views/assemblys/form/image-upload/imageupload-runtime.vue.mjs +4 -0
  142. package/dist/es/components/runtime/views/assemblys/form/image-upload/imageupload-runtime2.vue.mjs +88 -0
  143. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.mjs +4 -0
  144. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime2.vue.mjs +28 -0
  145. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.mjs +4 -0
  146. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime2.vue.mjs +79 -0
  147. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.mjs +7 -0
  148. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime2.vue.mjs +37 -0
  149. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.mjs +4 -0
  150. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime2.vue.mjs +42 -0
  151. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.mjs +7 -0
  152. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime2.vue.mjs +16 -0
  153. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.mjs +4 -0
  154. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime2.vue.mjs +84 -0
  155. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.mjs +8 -0
  156. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime2.vue.mjs +196 -0
  157. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.mjs +7 -0
  158. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime2.vue.mjs +150 -0
  159. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.mjs +4 -0
  160. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime2.vue.mjs +16 -0
  161. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.mjs +4 -0
  162. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime2.vue.mjs +36 -0
  163. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.mjs +4 -0
  164. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime2.vue.mjs +43 -0
  165. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.mjs +7 -0
  166. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime2.vue.mjs +28 -0
  167. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.mjs +83 -0
  168. package/dist/es/components/runtime/views/assemblys/home-chart-render2.vue.mjs +4 -0
  169. package/dist/es/components/runtime/views/assemblys/object-render.vue.mjs +162 -0
  170. package/dist/es/components/runtime/views/assemblys/object-render2.vue.mjs +4 -0
  171. package/dist/es/components/runtime/views/assemblys/page-bottom.vue.mjs +9 -0
  172. package/dist/es/components/runtime/views/assemblys/page-bottom2.vue.mjs +4 -0
  173. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.mjs +7 -0
  174. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box2.vue.mjs +55 -0
  175. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.mjs +7 -0
  176. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog2.vue.mjs +28 -0
  177. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.mjs +7 -0
  178. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime2.vue.mjs +45 -0
  179. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.mjs +4 -0
  180. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime2.vue.mjs +20 -0
  181. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.mjs +4 -0
  182. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime2.vue.mjs +23 -0
  183. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.mjs +7 -0
  184. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime2.vue.mjs +30 -0
  185. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.mjs +4 -0
  186. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime2.vue.mjs +27 -0
  187. package/dist/es/components/runtime/views/home-chart.vue.mjs +46 -0
  188. package/dist/es/components/runtime/views/home-chart2.vue.mjs +4 -0
  189. package/dist/es/components/runtime/views/super-page-dialog.vue.mjs +26 -0
  190. package/dist/es/components/runtime/views/super-page-dialog3.vue.mjs +5 -0
  191. package/dist/es/components/runtime/views/super-page.vue.d.ts +2 -2
  192. package/dist/es/components/runtime/views/super-page.vue.mjs +7 -0
  193. package/dist/es/components/runtime/views/super-page2.vue.mjs +309 -0
  194. package/dist/es/index.mjs +32 -0
  195. package/dist/es/style.css +1 -1033
  196. package/dist/lib/_virtual/_plugin-vue_export-helper.cjs +1 -0
  197. package/dist/lib/assets/chart-themes/bar-theme.cjs +1 -0
  198. package/dist/lib/assets/chart-themes/bar-theme.d.ts +6 -0
  199. package/dist/lib/assets/chart-themes/gauge-theme.cjs +1 -0
  200. package/dist/lib/assets/chart-themes/gauge-theme.d.ts +6 -0
  201. package/dist/lib/assets/chart-themes/pie-theme.cjs +1 -0
  202. package/dist/lib/assets/chart-themes/pie-theme.d.ts +6 -0
  203. package/dist/lib/assets/chart-themes/radar-theme.cjs +1 -0
  204. package/dist/lib/assets/chart-themes/radar-theme.d.ts +6 -0
  205. package/dist/lib/assets/chart-themes/scatter-theme.cjs +1 -0
  206. package/dist/lib/assets/chart-themes/scatter-theme.d.ts +6 -0
  207. package/dist/lib/assets/file.png.cjs +1 -0
  208. package/dist/lib/assets/folder.png.cjs +1 -0
  209. package/dist/lib/components/runtime/index.d.ts +6 -0
  210. package/dist/lib/components/runtime/utils/ai-chat-util.cjs +1 -0
  211. package/dist/lib/components/runtime/utils/anchor-util.cjs +1 -0
  212. package/dist/lib/components/runtime/utils/anchor-util.d.ts +13 -0
  213. package/dist/lib/components/runtime/utils/api/api-util.cjs +1 -0
  214. package/dist/lib/components/runtime/utils/api/api-util.d.ts +1 -0
  215. package/dist/lib/components/runtime/utils/api/page-expose-util.cjs +1 -0
  216. package/dist/lib/components/runtime/utils/api/page-expose-util.d.ts +1 -0
  217. package/dist/lib/components/runtime/utils/assemblys-config.cjs +1 -0
  218. package/dist/lib/components/runtime/utils/barcode-util.cjs +1 -0
  219. package/dist/lib/components/runtime/utils/barcode-util.d.ts +8 -0
  220. package/dist/lib/components/runtime/utils/charts/chart-columnline-util.cjs +2 -0
  221. package/dist/lib/components/runtime/utils/charts/chart-gauge-util.cjs +1 -0
  222. package/dist/lib/components/runtime/utils/charts/chart-pie-util.cjs +2 -0
  223. package/dist/lib/components/runtime/utils/charts/chart-radar-util.cjs +1 -0
  224. package/dist/lib/components/runtime/utils/charts/chart-scatter-util.cjs +1 -0
  225. package/dist/lib/components/runtime/utils/charts/chart-util.cjs +1 -0
  226. package/dist/lib/components/runtime/utils/charts/chart-util.d.ts +115 -0
  227. package/dist/lib/components/runtime/utils/common-util.cjs +1 -0
  228. package/dist/lib/components/runtime/utils/common-util.d.ts +33 -0
  229. package/dist/lib/components/runtime/utils/eventBus.cjs +1 -0
  230. package/dist/lib/components/runtime/utils/eventBus.d.ts +8 -0
  231. package/dist/lib/components/runtime/utils/events/data-backfill-util.cjs +1 -0
  232. package/dist/lib/components/runtime/utils/events/data-backfill-util.d.ts +27 -0
  233. package/dist/lib/components/runtime/utils/events/event-util.cjs +1 -0
  234. package/dist/lib/components/runtime/utils/events/event-util.d.ts +93 -0
  235. package/dist/lib/components/runtime/utils/events/print-label.cjs +1 -0
  236. package/dist/lib/components/runtime/utils/events/print-label.d.ts +5 -0
  237. package/dist/lib/components/runtime/utils/events/standard-event.cjs +1 -0
  238. package/dist/lib/components/runtime/utils/events/standard-event.d.ts +106 -0
  239. package/dist/lib/components/runtime/utils/events/validator-util.cjs +1 -0
  240. package/dist/lib/components/runtime/utils/events/validator-util.d.ts +31 -0
  241. package/dist/lib/components/runtime/utils/form/date-shortcuts.cjs +1 -0
  242. package/dist/lib/components/runtime/utils/form/date-shortcuts.d.ts +7 -0
  243. package/dist/lib/components/runtime/utils/form/scan-util.cjs +1 -0
  244. package/dist/lib/components/runtime/utils/global-refs.cjs +1 -0
  245. package/dist/lib/components/runtime/utils/global-refs.d.ts +65 -0
  246. package/dist/lib/components/runtime/utils/i18n-util.cjs +1 -0
  247. package/dist/lib/components/runtime/utils/i18n-util.d.ts +1 -0
  248. package/dist/lib/components/runtime/utils/interfaces/page-design-types.cjs +1 -0
  249. package/dist/lib/components/runtime/utils/interfaces/page-design-types.d.ts +259 -0
  250. package/dist/lib/components/runtime/utils/page-helper-util.cjs +1 -0
  251. package/dist/lib/components/runtime/utils/page-helper-util.d.ts +181 -0
  252. package/dist/lib/components/runtime/utils/page-init-util.cjs +1 -0
  253. package/dist/lib/components/runtime/utils/page-init-util.d.ts +49 -0
  254. package/dist/lib/components/runtime/utils/page-permission-util.cjs +1 -0
  255. package/dist/lib/components/runtime/utils/page-permission-util.d.ts +26 -0
  256. package/dist/lib/components/runtime/utils/page-store.cjs +1 -0
  257. package/dist/lib/components/runtime/utils/page-store.d.ts +58 -0
  258. package/dist/lib/components/runtime/utils/store-util.cjs +1 -0
  259. package/dist/lib/components/runtime/utils/store-util.d.ts +15 -0
  260. package/dist/lib/components/runtime/utils/store.cjs +1 -0
  261. package/dist/lib/components/runtime/utils/store.d.ts +2 -0
  262. package/dist/lib/components/runtime/utils/table-utils.cjs +1 -0
  263. package/dist/lib/components/runtime/utils/table-utils.d.ts +36 -0
  264. package/dist/lib/components/runtime/utils/tree-utils.cjs +1 -0
  265. package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue.cjs +1 -0
  266. package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime2.vue.cjs +1 -0
  267. package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.cjs +1 -0
  268. package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime2.vue.cjs +1 -0
  269. package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.cjs +1 -0
  270. package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime2.vue.cjs +1 -0
  271. package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.cjs +1 -0
  272. package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime2.vue.cjs +1 -0
  273. package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.cjs +1 -0
  274. package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime2.vue.cjs +1 -0
  275. package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.cjs +1 -0
  276. package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime2.vue.cjs +1 -0
  277. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.cjs +1 -0
  278. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb2.vue.cjs +1 -0
  279. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.cjs +1 -0
  280. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group2.vue.cjs +1 -0
  281. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue.cjs +1 -0
  282. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header2.vue.cjs +1 -0
  283. package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.cjs +1 -0
  284. package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search2.vue.cjs +1 -0
  285. package/dist/lib/components/runtime/views/assemblys/chart/common/home-chart-condition-render.vue.cjs +1 -0
  286. package/dist/lib/components/runtime/views/assemblys/chart/common/home-chart-condition-render.vue.d.ts +36 -0
  287. package/dist/lib/components/runtime/views/assemblys/chart/common/home-chart-condition-render2.vue.cjs +1 -0
  288. package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.cjs +1 -0
  289. package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime2.vue.cjs +1 -0
  290. package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.cjs +1 -0
  291. package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime2.vue.cjs +1 -0
  292. package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.cjs +1 -0
  293. package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime2.vue.cjs +1 -0
  294. package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.cjs +1 -0
  295. package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime2.vue.cjs +1 -0
  296. package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.cjs +1 -0
  297. package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.d.ts +121 -0
  298. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue.cjs +1 -0
  299. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item2.vue.cjs +1 -0
  300. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue.cjs +1 -0
  301. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column2.vue.cjs +1 -0
  302. package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue.cjs +1 -0
  303. package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column2.vue.cjs +1 -0
  304. package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue.cjs +1 -0
  305. package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination2.vue.cjs +1 -0
  306. package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue.cjs +1 -0
  307. package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime2.vue.cjs +1 -0
  308. package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.cjs +1 -0
  309. package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.d.ts +5 -0
  310. package/dist/lib/components/runtime/views/assemblys/common/event-call-component2.vue.cjs +1 -0
  311. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.cjs +1 -0
  312. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +28 -0
  313. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog2.vue.cjs +1 -0
  314. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.cjs +1 -0
  315. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.d.ts +27 -0
  316. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice2.vue.cjs +1 -0
  317. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.cjs +1 -0
  318. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.d.ts +59 -0
  319. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message2.vue.cjs +1 -0
  320. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.cjs +1 -0
  321. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.d.ts +35 -0
  322. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog2.vue.cjs +1 -0
  323. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.cjs +1 -0
  324. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.d.ts +26 -0
  325. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table2.vue.cjs +1 -0
  326. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.cjs +1 -0
  327. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.d.ts +35 -0
  328. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog2.vue.cjs +1 -0
  329. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.cjs +1 -0
  330. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.d.ts +31 -0
  331. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog2.vue.cjs +1 -0
  332. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.cjs +1 -0
  333. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.d.ts +26 -0
  334. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog2.vue.cjs +1 -0
  335. package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue.cjs +1 -0
  336. package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime2.vue.cjs +1 -0
  337. package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.cjs +1 -0
  338. package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime2.vue.cjs +1 -0
  339. package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue.cjs +1 -0
  340. package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime2.vue.cjs +1 -0
  341. package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue.cjs +1 -0
  342. package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox2.vue.cjs +1 -0
  343. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.cjs +1 -0
  344. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.d.ts +94 -0
  345. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix2.vue.cjs +1 -0
  346. package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue.cjs +1 -0
  347. package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime2.vue.cjs +1 -0
  348. package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue.cjs +1 -0
  349. package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime2.vue.cjs +1 -0
  350. package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.cjs +1 -0
  351. package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime2.vue.cjs +1 -0
  352. package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.cjs +1 -0
  353. package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime2.vue.cjs +1 -0
  354. package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue.cjs +1 -0
  355. package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime2.vue.cjs +1 -0
  356. package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.cjs +1 -0
  357. package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime2.vue.cjs +1 -0
  358. package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue.cjs +1 -0
  359. package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime2.vue.cjs +1 -0
  360. package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.cjs +1 -0
  361. package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime2.vue.cjs +1 -0
  362. package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue.cjs +1 -0
  363. package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime2.vue.cjs +1 -0
  364. package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue.cjs +1 -0
  365. package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime2.vue.cjs +1 -0
  366. package/dist/lib/components/runtime/views/assemblys/error-render.vue.cjs +1 -0
  367. package/dist/lib/components/runtime/views/assemblys/error-render.vue.d.ts +22 -0
  368. package/dist/lib/components/runtime/views/assemblys/error-render2.vue.cjs +1 -0
  369. package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.cjs +1 -0
  370. package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime2.vue.cjs +1 -0
  371. package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue.cjs +1 -0
  372. package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element2.vue.cjs +1 -0
  373. package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue.cjs +1 -0
  374. package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime2.vue.cjs +1 -0
  375. package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.cjs +1 -0
  376. package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime2.vue.cjs +1 -0
  377. package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.cjs +1 -0
  378. package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime2.vue.cjs +1 -0
  379. package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue.cjs +1 -0
  380. package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime2.vue.cjs +1 -0
  381. package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.cjs +1 -0
  382. package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime2.vue.cjs +1 -0
  383. package/dist/lib/components/runtime/views/assemblys/form/image-upload/imageupload-runtime.vue.cjs +1 -0
  384. package/dist/lib/components/runtime/views/assemblys/form/image-upload/imageupload-runtime2.vue.cjs +1 -0
  385. package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.cjs +1 -0
  386. package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime2.vue.cjs +1 -0
  387. package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.cjs +1 -0
  388. package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime2.vue.cjs +1 -0
  389. package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue.cjs +1 -0
  390. package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime2.vue.cjs +1 -0
  391. package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue.cjs +1 -0
  392. package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime2.vue.cjs +1 -0
  393. package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.cjs +1 -0
  394. package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime2.vue.cjs +1 -0
  395. package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue.cjs +1 -0
  396. package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime2.vue.cjs +1 -0
  397. package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.cjs +1 -0
  398. package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime2.vue.cjs +1 -0
  399. package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue.cjs +1 -0
  400. package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime2.vue.cjs +1 -0
  401. package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.cjs +1 -0
  402. package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime2.vue.cjs +1 -0
  403. package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue.cjs +1 -0
  404. package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime2.vue.cjs +1 -0
  405. package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue.cjs +1 -0
  406. package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime2.vue.cjs +1 -0
  407. package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.cjs +1 -0
  408. package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime2.vue.cjs +1 -0
  409. package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.cjs +1 -0
  410. package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.d.ts +17 -0
  411. package/dist/lib/components/runtime/views/assemblys/home-chart-render2.vue.cjs +1 -0
  412. package/dist/lib/components/runtime/views/assemblys/object-render.vue.cjs +1 -0
  413. package/dist/lib/components/runtime/views/assemblys/object-render.vue.d.ts +17 -0
  414. package/dist/lib/components/runtime/views/assemblys/object-render2.vue.cjs +1 -0
  415. package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.cjs +1 -0
  416. package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.d.ts +14 -0
  417. package/dist/lib/components/runtime/views/assemblys/page-bottom2.vue.cjs +1 -0
  418. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.cjs +1 -0
  419. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.d.ts +19 -0
  420. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box2.vue.cjs +1 -0
  421. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.cjs +1 -0
  422. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog2.vue.cjs +1 -0
  423. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.cjs +1 -0
  424. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime2.vue.cjs +1 -0
  425. package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.cjs +1 -0
  426. package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime2.vue.cjs +1 -0
  427. package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.cjs +1 -0
  428. package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime2.vue.cjs +1 -0
  429. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.cjs +1 -0
  430. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime2.vue.cjs +1 -0
  431. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.cjs +1 -0
  432. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime2.vue.cjs +1 -0
  433. package/dist/lib/components/runtime/views/home-chart.vue.cjs +1 -0
  434. package/dist/lib/components/runtime/views/home-chart.vue.d.ts +23 -0
  435. package/dist/lib/components/runtime/views/home-chart2.vue.cjs +1 -0
  436. package/dist/lib/components/runtime/views/super-page-dialog.vue.cjs +1 -0
  437. package/dist/lib/components/runtime/views/super-page-dialog.vue.d.ts +40 -0
  438. package/dist/lib/components/runtime/views/super-page-dialog3.vue.cjs +1 -0
  439. package/dist/lib/components/runtime/views/super-page.vue.cjs +1 -0
  440. package/dist/lib/components/runtime/views/super-page.vue.d.ts +135 -0
  441. package/dist/lib/components/runtime/views/super-page2.vue.cjs +1 -0
  442. package/dist/lib/favicon.ico +0 -0
  443. package/dist/lib/i18n/langs/cn.cjs +1 -0
  444. package/dist/lib/i18n/langs/en.cjs +1 -0
  445. package/dist/lib/index.cjs +1 -0
  446. package/dist/lib/index.d.ts +16 -0
  447. package/dist/lib/style.css +1 -0
  448. package/package.json +13 -11
  449. package/dist/es/_virtual/_plugin-vue_export-helper.js +0 -8
  450. package/dist/es/components/runtime/utils/ai-chat-util.js +0 -16
  451. package/dist/es/components/runtime/utils/anchor-util.js +0 -84
  452. package/dist/es/components/runtime/utils/api/api-util.js +0 -4
  453. package/dist/es/components/runtime/utils/api/page-expose-util.js +0 -190
  454. package/dist/es/components/runtime/utils/assemblys-config.js +0 -20
  455. package/dist/es/components/runtime/utils/barcode-util.js +0 -12
  456. package/dist/es/components/runtime/utils/charts/chart-columnline-util.js +0 -168
  457. package/dist/es/components/runtime/utils/charts/chart-gauge-util.js +0 -38
  458. package/dist/es/components/runtime/utils/charts/chart-pie-util.js +0 -82
  459. package/dist/es/components/runtime/utils/charts/chart-radar-util.js +0 -56
  460. package/dist/es/components/runtime/utils/charts/chart-scatter-util.js +0 -47
  461. package/dist/es/components/runtime/utils/charts/chart-util.js +0 -288
  462. package/dist/es/components/runtime/utils/common-util.js +0 -120
  463. package/dist/es/components/runtime/utils/eventBus.js +0 -8
  464. package/dist/es/components/runtime/utils/events/data-backfill-util.js +0 -39
  465. package/dist/es/components/runtime/utils/events/event-util.js +0 -425
  466. package/dist/es/components/runtime/utils/events/print-label.js +0 -100
  467. package/dist/es/components/runtime/utils/events/standard-event.js +0 -1237
  468. package/dist/es/components/runtime/utils/events/validator-util.js +0 -420
  469. package/dist/es/components/runtime/utils/form/date-shortcuts.js +0 -36
  470. package/dist/es/components/runtime/utils/form/scan-util.js +0 -93
  471. package/dist/es/components/runtime/utils/global-refs.js +0 -57
  472. package/dist/es/components/runtime/utils/i18n-util.js +0 -14
  473. package/dist/es/components/runtime/utils/interfaces/page-design-types.js +0 -4
  474. package/dist/es/components/runtime/utils/page-helper-util.js +0 -387
  475. package/dist/es/components/runtime/utils/page-init-util.js +0 -280
  476. package/dist/es/components/runtime/utils/page-store.js +0 -53
  477. package/dist/es/components/runtime/utils/store-util.js +0 -13
  478. package/dist/es/components/runtime/utils/table-utils.js +0 -89
  479. package/dist/es/components/runtime/utils/tree-utils.js +0 -73
  480. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.js +0 -4
  481. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.js +0 -29
  482. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +0 -7
  483. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +0 -21
  484. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +0 -4
  485. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +0 -41
  486. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.js +0 -4
  487. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.js +0 -6
  488. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.js +0 -4
  489. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.js +0 -21
  490. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +0 -7
  491. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +0 -53
  492. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.js +0 -14
  493. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.js +0 -4
  494. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +0 -13
  495. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.js +0 -4
  496. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +0 -60
  497. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.js +0 -4
  498. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.js +0 -7
  499. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.js +0 -64
  500. package/dist/es/components/runtime/views/assemblys/chart/common/home-chart-condition-render.vue.js +0 -94
  501. package/dist/es/components/runtime/views/assemblys/chart/common/home-chart-condition-render.vue2.js +0 -4
  502. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +0 -7
  503. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +0 -35
  504. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +0 -7
  505. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +0 -46
  506. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +0 -7
  507. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +0 -35
  508. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +0 -7
  509. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +0 -35
  510. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +0 -421
  511. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.js +0 -6
  512. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.js +0 -4
  513. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.js +0 -10
  514. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.js +0 -4
  515. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.js +0 -46
  516. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.js +0 -4
  517. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.js +0 -15
  518. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.js +0 -4
  519. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.js +0 -4
  520. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +0 -259
  521. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.js +0 -20
  522. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.js +0 -4
  523. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +0 -36
  524. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +0 -4
  525. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.js +0 -35
  526. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.js +0 -4
  527. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.js +0 -32
  528. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.js +0 -4
  529. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.js +0 -17
  530. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +0 -4
  531. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.js +0 -23
  532. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.js +0 -4
  533. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.js +0 -18
  534. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.js +0 -4
  535. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.js +0 -35
  536. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.js +0 -4
  537. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.js +0 -19
  538. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.js +0 -4
  539. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.js +0 -7
  540. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +0 -29
  541. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +0 -4
  542. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +0 -21
  543. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.js +0 -4
  544. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.js +0 -18
  545. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.js +0 -7
  546. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.js +0 -29
  547. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.js +0 -7
  548. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.js +0 -81
  549. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +0 -4
  550. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +0 -25
  551. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.js +0 -4
  552. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.js +0 -25
  553. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +0 -4
  554. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +0 -46
  555. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +0 -7
  556. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +0 -96
  557. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.js +0 -7
  558. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +0 -47
  559. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.js +0 -4
  560. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.js +0 -69
  561. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +0 -382
  562. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +0 -4
  563. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +0 -330
  564. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +0 -4
  565. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.js +0 -4
  566. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +0 -88
  567. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +0 -7
  568. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +0 -134
  569. package/dist/es/components/runtime/views/assemblys/error-render.vue.js +0 -5
  570. package/dist/es/components/runtime/views/assemblys/error-render.vue2.js +0 -4
  571. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +0 -4
  572. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +0 -64
  573. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.js +0 -38
  574. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.js +0 -4
  575. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.js +0 -4
  576. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +0 -69
  577. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +0 -4
  578. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +0 -102
  579. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +0 -4
  580. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +0 -55
  581. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +0 -4
  582. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +0 -24
  583. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +0 -4
  584. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +0 -94
  585. package/dist/es/components/runtime/views/assemblys/form/image-upload/imageupload-runtime.vue.js +0 -4
  586. package/dist/es/components/runtime/views/assemblys/form/image-upload/imageupload-runtime.vue2.js +0 -91
  587. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +0 -4
  588. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +0 -28
  589. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +0 -4
  590. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +0 -81
  591. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.js +0 -7
  592. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +0 -38
  593. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.js +0 -4
  594. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +0 -43
  595. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +0 -7
  596. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +0 -16
  597. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +0 -4
  598. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +0 -82
  599. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +0 -8
  600. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +0 -199
  601. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.js +0 -7
  602. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +0 -156
  603. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.js +0 -4
  604. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.js +0 -16
  605. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +0 -4
  606. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +0 -36
  607. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +0 -4
  608. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +0 -44
  609. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +0 -7
  610. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +0 -28
  611. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.js +0 -83
  612. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.js +0 -4
  613. package/dist/es/components/runtime/views/assemblys/object-render.vue.js +0 -165
  614. package/dist/es/components/runtime/views/assemblys/object-render.vue2.js +0 -4
  615. package/dist/es/components/runtime/views/assemblys/page-bottom.vue.js +0 -9
  616. package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.js +0 -4
  617. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.js +0 -7
  618. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.js +0 -55
  619. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.js +0 -7
  620. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.js +0 -28
  621. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.js +0 -7
  622. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.js +0 -45
  623. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js +0 -4
  624. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.js +0 -20
  625. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.js +0 -4
  626. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.js +0 -23
  627. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +0 -7
  628. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +0 -32
  629. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.js +0 -4
  630. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.js +0 -27
  631. package/dist/es/components/runtime/views/home-chart.vue.js +0 -47
  632. package/dist/es/components/runtime/views/home-chart.vue2.js +0 -4
  633. package/dist/es/components/runtime/views/super-page-dialog.vue.js +0 -26
  634. package/dist/es/components/runtime/views/super-page-dialog.vue3.js +0 -5
  635. package/dist/es/components/runtime/views/super-page.vue.js +0 -7
  636. package/dist/es/components/runtime/views/super-page.vue2.js +0 -311
  637. package/dist/es/index.js +0 -32
  638. /package/dist/es/assets/chart-themes/{bar-theme.js → bar-theme.mjs} +0 -0
  639. /package/dist/es/assets/chart-themes/{gauge-theme.js → gauge-theme.mjs} +0 -0
  640. /package/dist/es/assets/chart-themes/{pie-theme.js → pie-theme.mjs} +0 -0
  641. /package/dist/es/assets/chart-themes/{radar-theme.js → radar-theme.mjs} +0 -0
  642. /package/dist/es/assets/chart-themes/{scatter-theme.js → scatter-theme.mjs} +0 -0
  643. /package/dist/es/assets/{file.png.js → file.png.mjs} +0 -0
  644. /package/dist/es/assets/{folder.png.js → folder.png.mjs} +0 -0
  645. /package/dist/es/components/runtime/utils/{store.js → store.mjs} +0 -0
  646. /package/dist/es/i18n/langs/{cn.js → cn.mjs} +0 -0
  647. /package/dist/es/i18n/langs/{en.js → en.mjs} +0 -0
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "super-page-runtime",
3
- "version": "2.3.39",
3
+ "version": "2.3.40-cdnTmp1",
4
4
  "description": "AgileBuilder super page runtime",
5
5
  "license": "ISC",
6
- "main": "dist/es/index.js",
6
+ "main": "dist/lib/index.cjs",
7
+ "module": "dist/es/index.mjs",
7
8
  "files": [
8
9
  "dist/*"
9
10
  ],
10
- "typings": "dist/lib/index.d.ts",
11
+ "typings": "dist/es/index.d.ts",
11
12
  "scripts": {
12
13
  "dev": "vite",
13
14
  "build": "run-p type-check \"build-only {@}\" --",
@@ -49,27 +50,28 @@
49
50
  "@vitejs/plugin-vue-jsx": "^3.1.0",
50
51
  "@vue/eslint-config-prettier": "^8.0.0",
51
52
  "@vue/test-utils": "^2.4.4",
52
- "agilebuilder-ui": "1.1.95",
53
- "axios": "^1.6.8",
53
+ "agilebuilder-ui": "1.1.96-cdnTmp1",
54
+ "axios": "1.11.0",
54
55
  "cypress": "^13.6.6",
55
- "element-plus": "^2.6.1",
56
+ "element-plus": "2.14.1",
56
57
  "eslint": "^8.49.0",
57
58
  "eslint-plugin-cypress": "^2.15.1",
58
59
  "eslint-plugin-vue": "^9.17.0",
59
60
  "js-cookie": "^3.0.5",
60
61
  "jsdom": "^24.0.0",
61
62
  "mitt": "^3.0.1",
62
- "pinia": "^2.1.7",
63
+ "pinia": "2.3.1",
63
64
  "rollup-plugin-terser": "^7.0.2",
64
65
  "saas": "^1.0.0",
65
66
  "sass": "^1.72.0",
66
67
  "start-server-and-test": "^2.0.3",
68
+ "terser": "^5.46.1",
67
69
  "vite": "^5.1.6",
68
70
  "vite-plugin-dts": "^3.9.1",
69
71
  "vitest": "^1.3.1",
70
- "vue": "^3.4.21",
71
- "vue-i18n": "^9.10.2",
72
- "vue-router": "^4.3.0",
73
- "vuex": "^4.1.0"
72
+ "vue": "3.5.27",
73
+ "vue-i18n": "9.14.5",
74
+ "vue-router": "4.5.1",
75
+ "vuex": "4.1.0"
74
76
  }
75
77
  }
@@ -1,8 +0,0 @@
1
- const t = (t2, o) => {
2
- const c = t2.__vccOpts || t2;
3
- for (const [t3, s] of o) c[t3] = s;
4
- return c;
5
- };
6
- export {
7
- t as default
8
- };
@@ -1,16 +0,0 @@
1
- import { setActiveMenuToChatAiStore as e, setPageInfoToChatStore as t } from "agilebuilder-ui/src/utils/chat-ai-util.ts";
2
- import { functions as o } from "./api/page-expose-util.js";
3
- function a(e2) {
4
- const t2 = o.getFormViewData(e2), a2 = e2.propTitleMap, r2 = {};
5
- for (const e3 in t2) Array.isArray(t2[e3]) || a2 && a2[e3] && (r2[a2[e3]] = t2[e3]);
6
- return r2;
7
- }
8
- function r(o2, a2) {
9
- o2 && (e({ menuCode: a2.menuCode, menuName: a2.label }), t(a2, { instance: o2, exposeProxy: o2.exposeProxy, pageType: a2.pageType }));
10
- }
11
- const i = { getFormFormatDataUtil: a, setPageToChatStore: r };
12
- export {
13
- i as default,
14
- a as getFormFormatDataUtil,
15
- r as setPageToChatStore
16
- };
@@ -1,84 +0,0 @@
1
- import { caculateShowCondition as e } from "./page-helper-util.js";
2
- import { getComponentRefByCode as t, getComponentRef as n } from "./global-refs.js";
3
- import { nextTick as o } from "vue";
4
- function c(e2, t2) {
5
- const c2 = n(e2, t2);
6
- c2 && o(() => {
7
- m(c2);
8
- });
9
- }
10
- function l(e2, n2) {
11
- const c2 = t(e2, n2);
12
- c2 && o(() => {
13
- m(c2);
14
- });
15
- }
16
- function i(t2, o2) {
17
- if (t2 && 0 !== t2.length) for (let c2 = 0; c2 < t2.length; c2++) {
18
- const { uuid: l2, conditions: i2 } = t2[c2];
19
- if (e(o2, i2)) {
20
- r(() => {
21
- const e2 = n(o2, l2);
22
- e2 && m(e2);
23
- });
24
- break;
25
- }
26
- }
27
- }
28
- function r(e2, t2 = {}) {
29
- const { checkInterval: n2 = 50, stableCount: c2 = 10, maxWaitTime: l2 = 3e3 } = t2;
30
- let i2 = -1, r2 = 0, m2 = 0;
31
- const u2 = () => {
32
- const t3 = document.documentElement.scrollHeight || document.body.scrollHeight;
33
- if (t3 === i2) {
34
- if (r2++, r2 >= c2) return void o(() => {
35
- e2();
36
- });
37
- } else i2 = t3, r2 = 0;
38
- m2 += n2, m2 >= l2 ? o(() => {
39
- e2();
40
- }) : setTimeout(u2, n2);
41
- };
42
- o(() => {
43
- u2();
44
- });
45
- }
46
- function m(e2) {
47
- const t2 = function(e3) {
48
- let t3 = null;
49
- return e3 && e3.$el ? t3 = e3.$el : e3 instanceof HTMLElement && (t3 = e3), t3 && t3.nodeType !== Node.ELEMENT_NODE && (t3 = t3.nextElementSibling || t3.parentElement), t3 instanceof HTMLElement ? t3 : null;
50
- }(e2);
51
- if (!t2) return;
52
- const n2 = t2.getBoundingClientRect(), o2 = function(e3) {
53
- const t3 = [];
54
- let n3 = e3.parentElement;
55
- for (; n3; ) {
56
- const e4 = window.getComputedStyle(n3).overflowY;
57
- ("auto" === e4 || "scroll" === e4) && n3.scrollHeight > n3.clientHeight && t3.push(n3), n3 = n3.parentElement;
58
- }
59
- document.documentElement.scrollHeight > document.documentElement.clientHeight && t3.push(document.documentElement);
60
- return t3;
61
- }(t2);
62
- for (const e3 of o2) if (e3 === document.documentElement || e3 === document.body) {
63
- const t3 = window.pageYOffset || document.documentElement.scrollTop;
64
- u(e3, Math.max(0, n2.top + t3 - 100));
65
- } else {
66
- const t3 = e3.getBoundingClientRect(), o3 = n2.top - t3.top + e3.scrollTop;
67
- u(e3, Math.max(0, o3 - 100));
68
- }
69
- }
70
- function u(e2, t2) {
71
- if ("scrollBehavior" in document.documentElement.style) return void e2.scrollTo({ top: t2, behavior: "smooth" });
72
- const n2 = e2.scrollTop, o2 = t2 - n2;
73
- if (Math.abs(o2) < 1) return;
74
- const c2 = performance.now ? performance.now() : Date.now();
75
- requestAnimationFrame(function t3() {
76
- const l2 = (performance.now ? performance.now() : Date.now()) - c2, i2 = Math.min(l2 / 300, 1), r2 = i2 < 0.5 ? 4 * i2 * i2 * i2 : 1 - Math.pow(-2 * i2 + 2, 3) / 2;
77
- e2.scrollTop = n2 + o2 * r2, i2 < 1 && requestAnimationFrame(t3);
78
- });
79
- }
80
- export {
81
- l as scrollIntoComponentWithCode,
82
- c as scrollIntoComponentWithUuid,
83
- i as scrollIntoViewWithContainer
84
- };
@@ -1,4 +0,0 @@
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;
@@ -1,190 +0,0 @@
1
- import { getOptionDatasSourceMap as e, getComponentOptionDatasFromPage as t, getVariableValue as n, setVariableValue as o, setValueForVariableName as i } 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 p, updateFormItemEditState as d } from "../events/validator-util.js";
7
- import { deepCopy as g, getBaseUrl as y } from "../common-util.js";
8
- import { replacePrefix as b, isMobileBrowser as h } from "agilebuilder-ui/src/utils/common-util";
9
- import { getFormModelFields as E, getModelFields as C } from "../page-init-util.js";
10
- import { getCustomFunc as P } from "../events/event-util.js";
11
- import { isHasFieldPermissionAuth as T } from "../table-utils.js";
12
- import { scrollIntoComponentWithCode as k, scrollIntoComponentWithUuid as $ } from "../anchor-util.js";
13
- const v = { showElement: function(e2, t2, n2) {
14
- n2 ? D(e2, "showElement", t2) : t2.forEach((t3) => {
15
- const n3 = r(e2, t3);
16
- n3 ? n3.show() : console.error(`未找到code为${t3}的组件`);
17
- });
18
- }, hideElement: function(e2, t2, n2) {
19
- n2 ? D(e2, "hideElement", t2) : t2.forEach((t3) => {
20
- const n3 = r(e2, t3);
21
- n3 ? n3.hide() : console.error(`未找到code为${t3}的组件`);
22
- });
23
- }, enableElement: function(e2, t2, n2) {
24
- n2 ? D(e2, "enableElement", t2) : t2.forEach((t3) => {
25
- const n3 = r(e2, t3);
26
- if (n3) {
27
- const e3 = n3.getConfigure();
28
- e3 && e3.runtime.props && (e3.runtime.props.state = "enabled");
29
- } else console.error(`未找到code为${t3}的组件`);
30
- });
31
- }, disableElement: function(e2, t2, n2) {
32
- n2 ? D(e2, "disableElement", t2) : t2.forEach((t3) => {
33
- const n3 = r(e2, t3);
34
- if (n3) {
35
- const e3 = n3.getConfigure();
36
- e3 && e3.runtime.props && (e3.runtime.props.state = "disabled");
37
- } else console.error(`未找到code为${t3}的组件`);
38
- });
39
- }, setEntityDataValue: function(e2, t2) {
40
- Object.keys(t2).forEach((n2) => {
41
- i(e2.entity, n2.startsWith("${") ? n2 : "${data." + n2 + "}", t2[n2]);
42
- });
43
- }, setEntityPageValue: function(e2, t2) {
44
- Object.keys(t2).forEach((n2) => {
45
- i(e2.entity, n2.startsWith("${") ? n2 : "${page." + n2 + "}", t2[n2]);
46
- });
47
- }, setEntityValueByType: function(e2, t2, n2) {
48
- Object.keys(n2).forEach((o2) => {
49
- i(e2.entity, o2.startsWith("${") ? o2 : "${" + t2 + "." + o2 + "}", n2[o2]);
50
- });
51
- }, dynamicControlFormEdit: function(e2, t2, n2) {
52
- n2 ? D(e2, "dynamicControlFormEdit", t2) : d(e2, t2);
53
- }, disabledAllFields(e2) {
54
- p(e2);
55
- }, dynamicControlTableEdit(e2, t2, n2) {
56
- m(e2, t2, n2);
57
- }, executeServiceFlow: function(e2, t2, n2) {
58
- const o2 = e2.code;
59
- 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);
60
- const i2 = e2.backendUrl, a2 = y(i2, e2.isTest);
61
- return l.post(`${a2}/dsc/service-flow/execute/${o2}/${t2}`, n2);
62
- }, openPage: function(e2, t2) {
63
- s.$emit(e2.code + "_open-dialog", { pageContext: e2, eventParams: t2.eventParams, configureObj: { props: { linkPage: t2 } } });
64
- }, refreshPage: function(e2, t2) {
65
- f(e2, t2);
66
- }, refreshSubTableHandle: function(e2, t2) {
67
- let n2;
68
- const o2 = r(e2, t2);
69
- if (o2) {
70
- const e3 = o2.getConfigure();
71
- e3 && e3.uuid && e3.name && "table" === e3.name && (n2 = e3.uuid);
72
- }
73
- n2 ? s.$emit("_refreshSubTableHandle_" + n2) : console.error("tableUUid is undefined");
74
- }, refreshChildData(e2, t2, n2) {
75
- let o2;
76
- const i2 = r(e2, t2);
77
- if (i2) {
78
- const e3 = i2.getConfigure();
79
- e3 && e3.uuid && e3.name && "table" === e3.name && (o2 = e3.uuid);
80
- }
81
- o2 ? s.$emit("_refreshChildData_" + o2, n2) : console.error("tableUUid is undefined");
82
- }, getServerConfigValue: (e2) => window.$vueApp.config.globalProperties[e2], getBackendUrl: (e2) => y(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, getTaskDataValue: (e2, t2) => e2.entity.task ? e2.entity.task[t2] : null, getValueByType: (e2, t2, n2) => e2.entity[t2] ? e2.entity[t2][n2] : null, getAdditionalParams: (e2) => u(e2), getAdditionalParamValue(e2, t2) {
83
- const n2 = u(e2);
84
- return n2 ? n2[t2] : null;
85
- }, isMobile: () => h(), getComponentRefByProp: (e2, t2) => r(e2, t2), getComponentRefByCode: (e2, t2) => a(e2, t2), getFormViewData(i2) {
86
- var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j;
87
- const r2 = i2.entity ? i2.entity : {}, s2 = g(r2), l2 = e(i2);
88
- for (const e2 in l2) {
89
- const r3 = t(i2, e2), l3 = a(i2, e2);
90
- if (l3) {
91
- const e3 = l3.getConfigure();
92
- if (e3) if (!((_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)) {
93
- if ("dynamicData" === ((_h = (_g = e3 == null ? void 0 : e3.props) == null ? void 0 : _g.dataOrigin) == null ? void 0 : _h.optionValueSetType) && ("select" === (e3 == null ? void 0 : e3.name) || "checkbox" === (e3 == null ? void 0 : e3.name) || "radio" === (e3 == null ? void 0 : e3.name))) {
94
- const t2 = E(i2, e3), a2 = l3.getSelectItemsTitle(), r4 = a2 && a2.length > 0 ? a2 : n(s2, t2);
95
- o(s2, t2, r4);
96
- }
97
- } else if (e3.name && ("select" === e3.name && ((_j = (_i = e3.props) == null ? void 0 : _i.base) == null ? void 0 : _j.multiple) || "checkbox" === e3.name)) {
98
- const t2 = E(i2, e3), a2 = n(s2, t2);
99
- if (a2) {
100
- const e4 = j(a2.split(","), r3);
101
- o(s2, t2, e4);
102
- }
103
- } else {
104
- const t2 = E(i2, e3), a2 = j(n(s2, t2), r3);
105
- o(s2, t2, a2);
106
- }
107
- }
108
- }
109
- const c2 = i2.listCodesMap;
110
- for (const e2 in c2) {
111
- let t2;
112
- if (e2.indexOf("__") > 0 && (t2 = e2.substring(e2.lastIndexOf("__") + 2)), t2) {
113
- const o2 = a(i2, t2);
114
- if (o2) {
115
- const t3 = o2.getConfigure(), i3 = t3.code ? t3.code : e2, a2 = C(t3, i3), r3 = n(s2, a2), l3 = o2.getTableSelectOptions(e2), c3 = o2.getColumns(), u2 = {}, f2 = {};
116
- c3 && c3.length > 0 && c3.forEach((e3) => {
117
- "DATE" !== e3.dataType && "TIME" !== e3.dataType || (f2[e3.prop] = e3);
118
- }), u2.formatDateColumns = f2, V(l3, r3, u2, o2);
119
- }
120
- }
121
- }
122
- return s2.data;
123
- }, getFormData: (e2, t2) => c(e2, t2), getCustomFunc: (e2, t2) => P(e2, t2), replaceUrlPrefix: (e2) => b(e2), isHasFieldAuthPermission: (e2) => {
124
- var _a, _b, _c, _d;
125
- 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));
126
- }, isHasFieldAuth(e2, t2) {
127
- T(e2, null, t2);
128
- }, isHasFieldAuthWithTable(e2, t2, n2) {
129
- T(e2, t2, n2);
130
- }, scrollIntoComponentWithUuid(e2, t2) {
131
- $(e2, t2);
132
- }, scrollIntoComponentWithCode(e2, t2) {
133
- k(e2, t2);
134
- }, isSignerTaskTransactor(e2, t2) {
135
- if (!t2) return true;
136
- const n2 = e2.entity.task;
137
- if (n2) {
138
- if (n2.sourceTrustor) return t2 === n2.sourceTrustor;
139
- if (n2.sourceAssigner) return t2 === n2.sourceAssigner || !(!n2.transactor || t2 !== n2.transactor);
140
- if (n2.transactor && t2 === n2.transactor) return true;
141
- }
142
- return false;
143
- } };
144
- function V(e2, t2, n2, o2) {
145
- if (e2 && t2) {
146
- const i2 = o2.getSuperGridRef();
147
- t2.forEach((t3) => {
148
- if (n2 == null ? void 0 : n2.formatDateColumns) {
149
- const e3 = n2.formatDateColumns;
150
- Object.keys(e3).forEach((n3) => {
151
- const o3 = e3[n3];
152
- t3[n3] && (t3[n3] = i2.rowDoFormat(o3, t3[n3]));
153
- });
154
- }
155
- Object.keys(e2).forEach((n3) => {
156
- const o3 = t3[n3], i3 = e2[n3], a2 = i3.options, r2 = i3.column;
157
- let s2;
158
- if (r2 && r2.componentType && ("multiselect" === r2.componentType || "checkbox" === r2.componentType)) {
159
- if (o3) {
160
- s2 = j(o3.split(","), a2);
161
- }
162
- } else s2 = j(o3, a2);
163
- t3[n3] = s2;
164
- });
165
- });
166
- }
167
- }
168
- function j(e2, t2) {
169
- let n2;
170
- return null != e2 && t2 && (Array.isArray(e2) ? (n2 = "", e2.forEach((o2) => {
171
- n2 = n2 + A(e2, t2) + ",";
172
- }), n2.indexOf(",") > 0 && (n2 = n2.substring(0, n2.lastIndexOf(",")))) : (n2 = e2, n2 = A(e2, t2))), n2;
173
- }
174
- function A(e2, t2) {
175
- let n2 = e2;
176
- if (null != e2 && t2) for (let o2 = 0; o2 < t2.length; o2++) {
177
- const i2 = t2[o2].value, a2 = t2[o2].label ? t2[o2].label : t2[o2].name;
178
- if (e2 + "" == i2 + "" && null != a2) {
179
- n2 = a2;
180
- break;
181
- }
182
- }
183
- return n2;
184
- }
185
- function D(e2, t2, n2) {
186
- e2.initInfo || (e2.initInfo = {}), e2.initInfo[t2] = n2;
187
- }
188
- export {
189
- v as functions
190
- };
@@ -1,20 +0,0 @@
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: "image-upload", label: "图片上传", runtimeComponent: e(() => import("../views/assemblys/form/image-upload/imageupload-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: "extract-workflow", label: "抽单", runtimeComponent: e(() => import("../views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.js")) }, { name: "extract-workflow-dialog", label: "抽单Dialog", runtimeComponent: e(() => import("../views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.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
- };
@@ -1,12 +0,0 @@
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
- };
@@ -1,168 +0,0 @@
1
- import { getValueFromSource as e, formatVariableValue as t, setValueForVariableName as i } from "../page-helper-util.js";
2
- import { deepCopy as o } from "../common-util.js";
3
- import { setDefaultGrid as s, CommonName as a, caculateFormulaValue as l, executeChartFormula as r, sortDatas as n, limitDatas as u, formatToolboxI18n as d } from "./chart-util.js";
4
- import { handleChartEvent as f } from "../events/event-util.js";
5
- function c(c2, m, h, y) {
6
- if (!y || !y.result) return;
7
- s(h), h.tooltip || (h.tooltip = {}), f(c2, m, "beforeUpdateChart", h, { resultData: y });
8
- const g = y && y.result ? y.result : {};
9
- let v = y && y.groupValue ? y.groupValue : void 0;
10
- const F = m.serviceDataField;
11
- let S = null;
12
- F ? S = g[F] : g && (S = Array.isArray(g) ? g : [g]), S || (S = []), m.runtime.dataConfig.runtimeData = S;
13
- let D = m.props ? m.props.groups : null;
14
- if (D || (D = []), !v || 0 === v.length) {
15
- v = [];
16
- for (const e2 of D) v.push(e2.group);
17
- }
18
- const _ = {}, x = [], A = [];
19
- for (const e2 of D) _[e2.group] = e2.target, e2.target && !x.includes(e2.target) && (x.push(e2.target), v.includes(e2.group) && A.push(e2.target));
20
- let N = m.props ? m.props.mulGroupShow : "";
21
- N = "break" == N ? "\r\n" : " ";
22
- for (const t2 of S) {
23
- if (!t2) continue;
24
- const i2 = [];
25
- for (const o3 of v) {
26
- const s2 = _[o3], a2 = e(t2, s2, void 0);
27
- a2 && i2.push(a2);
28
- }
29
- const o2 = i2.join(N);
30
- t2[a.X_FIELD_NAME] = o2;
31
- }
32
- const E = m.items ? m.items : [], C = [], b = {}, w = [], I = {}, X = [], L = [], M = /* @__PURE__ */ new Set(), j = l(E, S, M);
33
- for (const e2 of M) X.push(e2);
34
- for (const e2 of E) {
35
- const t2 = e2.props ? e2.props : {}, i2 = t2.yaxisSource, o2 = t2.yaxisField, s2 = t2.isCumulative;
36
- let a2 = null;
37
- if (!o2 || i2 && "variable" != i2) if ("formula" == i2) {
38
- let i3 = t2.formula ? t2.formula : "";
39
- for (const e3 in j) i3 = i3.replace(new RegExp(e3.replace("$", "\\$"), "g"), j[e3]);
40
- a2 = { uuid: e2.uuid, type: "formula", formula: i3, isFormulaCalculateAfterSort: t2.isFormulaCalculateAfterSort, data: [], dynamicDatas: [] };
41
- } else a2 = { uuid: e2.uuid, type: "fixed", field: t2.yaxisFix, data: [], dynamicDatas: [] };
42
- else a2 = { uuid: e2.uuid, type: "variable", field: o2, isCumulative: s2, data: [], dynamicDatas: [] }, o2 && !X.includes(o2) && X.push(o2), o2 && !L.includes(o2) && L.push(o2), s2 && !M.has(o2) && M.add(o2);
43
- null != a2 && (C.push(a2), b[e2.uuid] = a2), t2.dynamicSeriesField && !w.includes(t2.dynamicSeriesField) && a2 && (a2.dynamicField = t2.dynamicSeriesField, a2.dynamicSeriesTitle = t2.dynamicSeriesTitle, a2.dynamicShowStack = t2.dynamicShowStack, w.push(t2.dynamicSeriesField), I[t2.dynamicSeriesField] = o2), t2.dynamicSeriesDataField && t2.dynamicSeriesDataField.forEach((e3) => {
44
- X.includes(e3) || X.push(e3);
45
- });
46
- }
47
- const k = {};
48
- if (w.length > 0) {
49
- const t2 = [], i2 = {};
50
- for (const o2 of S) if (o2) for (const s2 of X) {
51
- const l2 = o2[a.X_FIELD_NAME];
52
- let r2 = i2[l2];
53
- if (!r2) {
54
- r2 = {};
55
- for (const e2 of x) r2[e2] = o2[e2];
56
- r2[a.X_FIELD_NAME] = o2[a.X_FIELD_NAME], i2[l2] = r2, t2.push(r2);
57
- }
58
- let n2 = e(o2, s2, void 0);
59
- if (!isNaN(n2)) {
60
- const e2 = r2[s2];
61
- isNaN(e2) || (n2 += e2), r2[s2] = n2;
62
- }
63
- }
64
- for (const t3 of w) {
65
- const o2 = [];
66
- for (const s2 of S) {
67
- if (!s2) continue;
68
- const l2 = i2[s2[a.X_FIELD_NAME]];
69
- if (!l2) continue;
70
- let r2 = e(s2, t3, void 0);
71
- r2 = null == r2 || null == r2 ? "" : r2, o2.includes(r2) || (o2.push(r2), L.push(r2), M.add(r2));
72
- const n2 = I[t3];
73
- if (void 0 !== n2) {
74
- const t4 = e(s2, n2, void 0);
75
- let i3 = l2[r2];
76
- void 0 === i3 ? i3 = t4 : isNaN(t4) || (i3 += t4), l2[r2] = i3;
77
- }
78
- }
79
- k[t3] = o2;
80
- }
81
- S = t2;
82
- }
83
- let T = {};
84
- const V = /* @__PURE__ */ new Set(), $ = m.props ? m.props.orderByTarget : "";
85
- for (const e2 of C) "formula" === e2.type && e2.isFormulaCalculateAfterSort && $ !== e2.uuid && V.add(e2.uuid + "_field");
86
- for (const e2 of S) if (e2) {
87
- p(e2, M, T);
88
- for (const t2 of C) if ("formula" === t2.type && !t2.isFormulaCalculateAfterSort) {
89
- const i2 = r(t2.formula, T, e2, c2);
90
- e2[t2.uuid + "_field"] = i2;
91
- }
92
- }
93
- if (n(c2, m, S), V.size > 0) {
94
- const e2 = {};
95
- for (const t2 of S) {
96
- p(t2, M, e2);
97
- for (const i2 of C) if ("formula" === i2.type && V.has(i2.uuid + "_field")) {
98
- const o2 = r(i2.formula, e2, t2, c2);
99
- t2[i2.uuid + "_field"] = o2;
100
- }
101
- }
102
- }
103
- S = u(c2, m, S, x, L);
104
- const B = [];
105
- T = {};
106
- for (const t2 of S) if (t2) {
107
- for (const i2 of M) {
108
- const o2 = e(t2, i2, void 0);
109
- let s2 = T[i2];
110
- void 0 === o2 || isNaN(o2) || (void 0 === s2 ? s2 = o2 : s2 += o2), T[i2] = s2;
111
- }
112
- B.push(t2[a.X_FIELD_NAME]);
113
- for (const i2 of C) {
114
- let o2 = i2.data;
115
- const s2 = i2.dynamicDatas;
116
- if (i2.dynamicField) {
117
- let a2 = k[i2.dynamicField];
118
- a2 = a2 || [];
119
- for (let l2 = 0; l2 < a2.length; l2++) {
120
- l2 >= s2.length && s2.push([]), o2 = s2[l2];
121
- const r2 = a2[l2];
122
- let n2 = e(t2, r2, void 0);
123
- i2.isCumulative && (n2 = T[r2]), o2.push(n2);
124
- }
125
- } else if ("fixed" === i2.type) o2.push(i2.field);
126
- else if ("variable" === i2.type) {
127
- let s3 = e(t2, i2.field, void 0);
128
- i2.isCumulative && (s3 = T[i2.field]), o2.push(s3);
129
- } else "formula" === i2.type ? o2.push(t2[i2.uuid + "_field"]) : o2.push(void 0);
130
- }
131
- }
132
- const G = m.defaultSeries, R = o(null == G ? [] : G), U = [];
133
- for (const e2 of R) {
134
- const i2 = b[e2.uuid];
135
- if (i2.dynamicField) {
136
- let s2 = k[i2.dynamicField];
137
- s2 = s2 || [];
138
- const a2 = i2.dynamicDatas ? i2.dynamicDatas : [];
139
- for (let l2 = 0; l2 < s2.length; l2++) {
140
- const r2 = s2[l2], n2 = o(e2);
141
- if (i2.dynamicSeriesTitle) {
142
- const e3 = i2.dynamicSeriesTitle.replace("${name}", r2);
143
- n2.name = t(c2, e3);
144
- } else n2.name = r2;
145
- n2.data = l2 < a2.length ? a2[l2] : [], "bar" == e2.type && i2.dynamicShowStack && (n2.stack = e2.uuid), U.push(n2);
146
- }
147
- } else e2.data = i2 ? i2.data : [], U.push(e2);
148
- }
149
- h.series = U;
150
- const z = m.defaultXaxis, Y = m.defaultYaxis;
151
- if (h.isBar) {
152
- if (Y) for (const e2 of Y) e2.data = B;
153
- h.xAxis = z, h.yAxis = Y;
154
- } else z && z.length > 0 && (z[0].data = B), h.xAxis = z, h.yAxis = Y;
155
- d(h);
156
- const q = m.props ? m.props.selGroupVariable : null;
157
- !(m.props ? m.props.enableDrill : null) && q && (m.highlightInfos = [], i(c2.entity, q, null)), f(c2, m, "afterUpdateChart", h, { resultData: y }), m.groupFields = A, m.cacheDatas = S, m.rawResult = y;
158
- }
159
- function p(t2, i2, o2) {
160
- for (const s2 of i2) {
161
- const i3 = e(t2, s2, void 0);
162
- let a2 = o2[s2];
163
- void 0 === i3 || isNaN(i3) || (void 0 === a2 ? a2 = i3 : a2 += i3), o2[s2] = a2;
164
- }
165
- }
166
- export {
167
- c as updateChartOption
168
- };
@@ -1,38 +0,0 @@
1
- import { formatVariableValue as e, getValueFromSource as t } from "../page-helper-util.js";
2
- import { deepCopy as o } from "../common-util.js";
3
- import { setDefaultGrid as r, formatToolboxI18n as s } from "./chart-util.js";
4
- import { handleChartEvent as l } from "../events/event-util.js";
5
- function i(i2, p, a, n) {
6
- if (!n || !n.result) return;
7
- l(i2, p, "beforeUpdateChart", a, { resultData: n }), r(a);
8
- const u = n && n.result ? n.result : {}, c = p.serviceDataField;
9
- let m = null;
10
- c ? m = u[c] : u && (m = [u]), m || (m = []);
11
- const d = p.props ? p.props.nameSource : void 0, f = p.props ? p.props.nameField : void 0, h = p.props ? p.props.nameFixed : void 0, v = p.props ? p.props.yaxisField : void 0, g = [f], F = [], j = [];
12
- for (const o2 of m) {
13
- if (!o2) continue;
14
- let r2 = null;
15
- r2 = "fixed" == d ? e(i2, h) : t(o2, f, void 0), F.push(r2);
16
- const s2 = t(o2, v, void 0);
17
- j.push(s2);
18
- }
19
- const x = p.defaultSeries;
20
- let C = x[0].pieColors;
21
- C = C || [];
22
- let D = x[0].pieColorMap;
23
- D = D || {};
24
- const S = [];
25
- for (let e2 = 0; e2 < F.length && e2 < j.length; e2++) {
26
- const t2 = { value: j[e2], name: F[e2] };
27
- if (e2 < C.length || D[t2.name]) {
28
- let o2 = D[t2.name];
29
- o2 || (o2 = C[e2]), o2 && (t2.itemStyle = { color: o2 });
30
- }
31
- S.push(t2);
32
- }
33
- const y = o(x);
34
- y[0].data = S, a.series = [y[0]], s(a), l(i2, p, "afterUpdateChart", a, { resultData: n }), p.groupFields = g, p.cacheDatas = m, p.rawResult = n;
35
- }
36
- export {
37
- i as updateChartOption
38
- };