super-page-runtime 2.3.35 → 2.3.36-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 (628) 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/page-expose-util.mjs +184 -0
  5. package/dist/es/components/runtime/utils/assemblys-config.mjs +19 -0
  6. package/dist/es/components/runtime/utils/barcode-util.mjs +12 -0
  7. package/dist/es/components/runtime/utils/charts/chart-columnline-util.mjs +169 -0
  8. package/dist/es/components/runtime/utils/charts/chart-gauge-util.mjs +38 -0
  9. package/dist/es/components/runtime/utils/charts/chart-pie-util.mjs +83 -0
  10. package/dist/es/components/runtime/utils/charts/chart-radar-util.mjs +56 -0
  11. package/dist/es/components/runtime/utils/charts/chart-scatter-util.mjs +47 -0
  12. package/dist/es/components/runtime/utils/charts/chart-util.mjs +285 -0
  13. package/dist/es/components/runtime/utils/common-util.mjs +116 -0
  14. package/dist/es/components/runtime/utils/eventBus.mjs +5 -0
  15. package/dist/es/components/runtime/utils/events/data-backfill-util.mjs +38 -0
  16. package/dist/es/components/runtime/utils/events/event-util.mjs +411 -0
  17. package/dist/es/components/runtime/utils/events/print-label.mjs +100 -0
  18. package/dist/es/components/runtime/utils/events/standard-event.mjs +1164 -0
  19. package/dist/es/components/runtime/utils/events/validator-util.mjs +308 -0
  20. package/dist/es/components/runtime/utils/form/date-shortcuts.mjs +36 -0
  21. package/dist/es/components/runtime/utils/form/scan-util.mjs +88 -0
  22. package/dist/es/components/runtime/utils/global-refs.mjs +56 -0
  23. package/dist/es/components/runtime/utils/i18n-util.mjs +14 -0
  24. package/dist/es/components/runtime/utils/interfaces/page-design-types.mjs +4 -0
  25. package/dist/es/components/runtime/utils/page-helper-util.mjs +377 -0
  26. package/dist/es/components/runtime/utils/page-init-util.mjs +260 -0
  27. package/dist/es/components/runtime/utils/{page-permission-util.js → page-permission-util.mjs} +20 -21
  28. package/dist/es/components/runtime/utils/page-store.mjs +53 -0
  29. package/dist/es/components/runtime/utils/store-util.mjs +13 -0
  30. package/dist/es/components/runtime/utils/table-utils.mjs +84 -0
  31. package/dist/es/components/runtime/utils/tree-utils.mjs +58 -0
  32. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.mjs +4 -0
  33. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.mjs +29 -0
  34. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.mjs +7 -0
  35. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.mjs +21 -0
  36. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.mjs +4 -0
  37. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.mjs +41 -0
  38. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.mjs +4 -0
  39. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.mjs +6 -0
  40. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.mjs +4 -0
  41. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.mjs +20 -0
  42. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.mjs +7 -0
  43. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.mjs +53 -0
  44. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.mjs +14 -0
  45. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.mjs +4 -0
  46. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.mjs +13 -0
  47. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.mjs +4 -0
  48. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.mjs +59 -0
  49. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.mjs +4 -0
  50. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.mjs +7 -0
  51. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.mjs +52 -0
  52. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.mjs +7 -0
  53. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.mjs +35 -0
  54. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.mjs +7 -0
  55. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.mjs +46 -0
  56. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.mjs +7 -0
  57. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.mjs +35 -0
  58. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.mjs +7 -0
  59. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.mjs +35 -0
  60. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.mjs +408 -0
  61. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.mjs +6 -0
  62. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.mjs +4 -0
  63. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.mjs +10 -0
  64. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.mjs +4 -0
  65. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.mjs +33 -0
  66. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.mjs +4 -0
  67. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.mjs +15 -0
  68. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.mjs +4 -0
  69. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.mjs +4 -0
  70. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.mjs +252 -0
  71. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.mjs +20 -0
  72. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.mjs +4 -0
  73. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.mjs +35 -0
  74. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.mjs +4 -0
  75. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.mjs +33 -0
  76. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.mjs +4 -0
  77. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.mjs +18 -0
  78. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.mjs +4 -0
  79. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.mjs +18 -0
  80. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.mjs +4 -0
  81. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.mjs +22 -0
  82. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.mjs +4 -0
  83. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.mjs +19 -0
  84. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.mjs +4 -0
  85. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.mjs +35 -0
  86. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.mjs +4 -0
  87. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.mjs +19 -0
  88. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.mjs +4 -0
  89. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.mjs +7 -0
  90. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.mjs +29 -0
  91. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.mjs +4 -0
  92. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.mjs +20 -0
  93. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.mjs +4 -0
  94. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.mjs +17 -0
  95. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.mjs +7 -0
  96. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.mjs +29 -0
  97. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.mjs +7 -0
  98. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.mjs +81 -0
  99. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.mjs +4 -0
  100. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.mjs +25 -0
  101. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.mjs +4 -0
  102. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.mjs +20 -0
  103. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.mjs +4 -0
  104. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.mjs +43 -0
  105. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.mjs +7 -0
  106. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.mjs +96 -0
  107. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.mjs +7 -0
  108. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.mjs +46 -0
  109. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.mjs +4 -0
  110. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.mjs +69 -0
  111. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.mjs +361 -0
  112. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.mjs +4 -0
  113. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.mjs +320 -0
  114. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.mjs +4 -0
  115. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.mjs +4 -0
  116. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.mjs +83 -0
  117. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.mjs +7 -0
  118. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.mjs +132 -0
  119. package/dist/es/components/runtime/views/assemblys/error-render.vue.mjs +5 -0
  120. package/dist/es/components/runtime/views/assemblys/error-render.vue2.mjs +4 -0
  121. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.mjs +4 -0
  122. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.mjs +63 -0
  123. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.mjs +36 -0
  124. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.mjs +4 -0
  125. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.mjs +4 -0
  126. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.mjs +69 -0
  127. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.mjs +4 -0
  128. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.mjs +102 -0
  129. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.mjs +4 -0
  130. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.mjs +55 -0
  131. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.mjs +4 -0
  132. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.mjs +24 -0
  133. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.mjs +4 -0
  134. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.mjs +91 -0
  135. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.mjs +4 -0
  136. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.mjs +28 -0
  137. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.mjs +4 -0
  138. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.mjs +80 -0
  139. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.mjs +7 -0
  140. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.mjs +37 -0
  141. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.mjs +4 -0
  142. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.mjs +42 -0
  143. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.mjs +7 -0
  144. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.mjs +16 -0
  145. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.mjs +4 -0
  146. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.mjs +82 -0
  147. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.mjs +8 -0
  148. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.mjs +195 -0
  149. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.mjs +7 -0
  150. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.mjs +150 -0
  151. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.mjs +4 -0
  152. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.mjs +16 -0
  153. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.mjs +4 -0
  154. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.mjs +36 -0
  155. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.mjs +4 -0
  156. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.mjs +43 -0
  157. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.mjs +7 -0
  158. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.mjs +28 -0
  159. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.mjs +72 -0
  160. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.mjs +4 -0
  161. package/dist/es/components/runtime/views/assemblys/object-render.vue.mjs +141 -0
  162. package/dist/es/components/runtime/views/assemblys/object-render.vue2.mjs +4 -0
  163. package/dist/es/components/runtime/views/assemblys/page-bottom.vue.mjs +6 -0
  164. package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.mjs +4 -0
  165. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.mjs +7 -0
  166. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.mjs +26 -0
  167. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.mjs +7 -0
  168. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.mjs +28 -0
  169. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.mjs +7 -0
  170. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.mjs +45 -0
  171. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.mjs +4 -0
  172. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.mjs +20 -0
  173. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.mjs +4 -0
  174. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.mjs +23 -0
  175. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.mjs +7 -0
  176. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.mjs +23 -0
  177. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.mjs +4 -0
  178. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.mjs +27 -0
  179. package/dist/es/components/runtime/views/home-chart.vue.mjs +46 -0
  180. package/dist/es/components/runtime/views/home-chart.vue2.mjs +4 -0
  181. package/dist/es/components/runtime/views/super-page-dialog.vue.mjs +26 -0
  182. package/dist/es/components/runtime/views/super-page-dialog.vue3.mjs +5 -0
  183. package/dist/es/components/runtime/views/super-page.vue.mjs +7 -0
  184. package/dist/es/components/runtime/views/super-page.vue2.mjs +289 -0
  185. package/dist/es/i18n/langs/{cn.js → cn.mjs} +1 -1
  186. package/dist/es/i18n/langs/{en.js → en.mjs} +1 -1
  187. package/dist/es/index.mjs +30 -0
  188. package/dist/es/style.css +1 -1020
  189. package/dist/lib/_virtual/_plugin-vue_export-helper.cjs +1 -0
  190. package/dist/lib/assets/chart-themes/bar-theme.cjs +1 -0
  191. package/dist/lib/assets/chart-themes/bar-theme.d.ts +6 -0
  192. package/dist/lib/assets/chart-themes/gauge-theme.cjs +1 -0
  193. package/dist/lib/assets/chart-themes/gauge-theme.d.ts +6 -0
  194. package/dist/lib/assets/chart-themes/pie-theme.cjs +1 -0
  195. package/dist/lib/assets/chart-themes/pie-theme.d.ts +6 -0
  196. package/dist/lib/assets/chart-themes/radar-theme.cjs +1 -0
  197. package/dist/lib/assets/chart-themes/radar-theme.d.ts +6 -0
  198. package/dist/lib/assets/chart-themes/scatter-theme.cjs +1 -0
  199. package/dist/lib/assets/chart-themes/scatter-theme.d.ts +6 -0
  200. package/dist/lib/assets/file.png.cjs +1 -0
  201. package/dist/lib/assets/folder.png.cjs +1 -0
  202. package/dist/lib/components/runtime/index.d.ts +5 -0
  203. package/dist/lib/components/runtime/utils/ai-chat-util.cjs +1 -0
  204. package/dist/lib/components/runtime/utils/anchor-util.cjs +1 -0
  205. package/dist/lib/components/runtime/utils/anchor-util.d.ts +13 -0
  206. package/dist/lib/components/runtime/utils/api/api-util.d.ts +1 -0
  207. package/dist/lib/components/runtime/utils/api/page-expose-util.cjs +1 -0
  208. package/dist/lib/components/runtime/utils/api/page-expose-util.d.ts +1 -0
  209. package/dist/lib/components/runtime/utils/assemblys-config.cjs +1 -0
  210. package/dist/lib/components/runtime/utils/barcode-util.cjs +1 -0
  211. package/dist/lib/components/runtime/utils/barcode-util.d.ts +8 -0
  212. package/dist/lib/components/runtime/utils/charts/chart-columnline-util.cjs +2 -0
  213. package/dist/lib/components/runtime/utils/charts/chart-gauge-util.cjs +1 -0
  214. package/dist/lib/components/runtime/utils/charts/chart-pie-util.cjs +2 -0
  215. package/dist/lib/components/runtime/utils/charts/chart-radar-util.cjs +1 -0
  216. package/dist/lib/components/runtime/utils/charts/chart-scatter-util.cjs +1 -0
  217. package/dist/lib/components/runtime/utils/charts/chart-util.cjs +1 -0
  218. package/dist/lib/components/runtime/utils/charts/chart-util.d.ts +115 -0
  219. package/dist/lib/components/runtime/utils/common-util.cjs +1 -0
  220. package/dist/lib/components/runtime/utils/common-util.d.ts +33 -0
  221. package/dist/lib/components/runtime/utils/eventBus.cjs +1 -0
  222. package/dist/lib/components/runtime/utils/eventBus.d.ts +7 -0
  223. package/dist/lib/components/runtime/utils/events/data-backfill-util.cjs +1 -0
  224. package/dist/lib/components/runtime/utils/events/data-backfill-util.d.ts +27 -0
  225. package/dist/lib/components/runtime/utils/events/event-util.cjs +1 -0
  226. package/dist/lib/components/runtime/utils/events/event-util.d.ts +93 -0
  227. package/dist/lib/components/runtime/utils/events/print-label.cjs +1 -0
  228. package/dist/lib/components/runtime/utils/events/print-label.d.ts +5 -0
  229. package/dist/lib/components/runtime/utils/events/standard-event.cjs +1 -0
  230. package/dist/lib/components/runtime/utils/events/standard-event.d.ts +99 -0
  231. package/dist/lib/components/runtime/utils/events/validator-util.cjs +1 -0
  232. package/dist/lib/components/runtime/utils/events/validator-util.d.ts +24 -0
  233. package/dist/lib/components/runtime/utils/form/date-shortcuts.cjs +1 -0
  234. package/dist/lib/components/runtime/utils/form/date-shortcuts.d.ts +7 -0
  235. package/dist/lib/components/runtime/utils/form/scan-util.cjs +1 -0
  236. package/dist/lib/components/runtime/utils/global-refs.cjs +1 -0
  237. package/dist/lib/components/runtime/utils/global-refs.d.ts +65 -0
  238. package/dist/lib/components/runtime/utils/i18n-util.cjs +1 -0
  239. package/dist/lib/components/runtime/utils/i18n-util.d.ts +1 -0
  240. package/dist/lib/components/runtime/utils/interfaces/page-design-types.cjs +1 -0
  241. package/dist/lib/components/runtime/utils/interfaces/page-design-types.d.ts +259 -0
  242. package/dist/lib/components/runtime/utils/page-helper-util.cjs +1 -0
  243. package/dist/lib/components/runtime/utils/page-helper-util.d.ts +174 -0
  244. package/dist/lib/components/runtime/utils/page-init-util.cjs +1 -0
  245. package/dist/lib/components/runtime/utils/page-init-util.d.ts +49 -0
  246. package/dist/lib/components/runtime/utils/page-permission-util.cjs +1 -0
  247. package/dist/lib/components/runtime/utils/page-permission-util.d.ts +26 -0
  248. package/dist/lib/components/runtime/utils/page-store.cjs +1 -0
  249. package/dist/lib/components/runtime/utils/page-store.d.ts +58 -0
  250. package/dist/lib/components/runtime/utils/store-util.cjs +1 -0
  251. package/dist/lib/components/runtime/utils/store-util.d.ts +15 -0
  252. package/dist/lib/components/runtime/utils/store.cjs +1 -0
  253. package/dist/lib/components/runtime/utils/store.d.ts +2 -0
  254. package/dist/lib/components/runtime/utils/table-utils.cjs +1 -0
  255. package/dist/lib/components/runtime/utils/table-utils.d.ts +36 -0
  256. package/dist/lib/components/runtime/utils/tree-utils.cjs +1 -0
  257. package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue.cjs +1 -0
  258. package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue2.cjs +1 -0
  259. package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.cjs +1 -0
  260. package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.cjs +1 -0
  261. package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.cjs +1 -0
  262. package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.cjs +1 -0
  263. package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.cjs +1 -0
  264. package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.cjs +1 -0
  265. package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.cjs +1 -0
  266. package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.cjs +1 -0
  267. package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.cjs +1 -0
  268. package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.cjs +1 -0
  269. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.cjs +1 -0
  270. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.cjs +1 -0
  271. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.cjs +1 -0
  272. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.cjs +1 -0
  273. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue.cjs +1 -0
  274. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.cjs +1 -0
  275. package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.cjs +1 -0
  276. package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.cjs +1 -0
  277. package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.cjs +1 -0
  278. package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.cjs +1 -0
  279. package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.cjs +1 -0
  280. package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.cjs +1 -0
  281. package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.cjs +1 -0
  282. package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.cjs +1 -0
  283. package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.cjs +1 -0
  284. package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.cjs +1 -0
  285. package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.cjs +1 -0
  286. package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.d.ts +121 -0
  287. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue.cjs +1 -0
  288. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue2.cjs +1 -0
  289. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue.cjs +1 -0
  290. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue2.cjs +1 -0
  291. package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue.cjs +1 -0
  292. package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue2.cjs +1 -0
  293. package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue.cjs +1 -0
  294. package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue2.cjs +1 -0
  295. package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue.cjs +1 -0
  296. package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue2.cjs +1 -0
  297. package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.cjs +1 -0
  298. package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.d.ts +5 -0
  299. package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue2.cjs +1 -0
  300. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.cjs +1 -0
  301. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +28 -0
  302. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.cjs +1 -0
  303. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.cjs +1 -0
  304. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.d.ts +27 -0
  305. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue2.cjs +1 -0
  306. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.cjs +1 -0
  307. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.d.ts +59 -0
  308. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.cjs +1 -0
  309. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.cjs +1 -0
  310. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.d.ts +35 -0
  311. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.cjs +1 -0
  312. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.cjs +1 -0
  313. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.d.ts +26 -0
  314. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue2.cjs +1 -0
  315. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.cjs +1 -0
  316. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.d.ts +35 -0
  317. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.cjs +1 -0
  318. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.cjs +1 -0
  319. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.d.ts +31 -0
  320. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.cjs +1 -0
  321. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.cjs +1 -0
  322. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.d.ts +26 -0
  323. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue2.cjs +1 -0
  324. package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue.cjs +1 -0
  325. package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue2.cjs +1 -0
  326. package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.cjs +1 -0
  327. package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.cjs +1 -0
  328. package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue.cjs +1 -0
  329. package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue2.cjs +1 -0
  330. package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue.cjs +1 -0
  331. package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.cjs +1 -0
  332. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.cjs +1 -0
  333. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.d.ts +94 -0
  334. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.cjs +1 -0
  335. package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue.cjs +1 -0
  336. package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.cjs +1 -0
  337. package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue.cjs +1 -0
  338. package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue2.cjs +1 -0
  339. package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.cjs +1 -0
  340. package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.cjs +1 -0
  341. package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.cjs +1 -0
  342. package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.cjs +1 -0
  343. package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue.cjs +1 -0
  344. package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.cjs +1 -0
  345. package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.cjs +1 -0
  346. package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.cjs +1 -0
  347. package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue.cjs +1 -0
  348. package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.cjs +1 -0
  349. package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.cjs +1 -0
  350. package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.cjs +1 -0
  351. package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue.cjs +1 -0
  352. package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue2.cjs +1 -0
  353. package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue.cjs +1 -0
  354. package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.cjs +1 -0
  355. package/dist/lib/components/runtime/views/assemblys/error-render.vue.cjs +1 -0
  356. package/dist/lib/components/runtime/views/assemblys/error-render.vue.d.ts +22 -0
  357. package/dist/lib/components/runtime/views/assemblys/error-render.vue2.cjs +1 -0
  358. package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.cjs +1 -0
  359. package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.cjs +1 -0
  360. package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue.cjs +1 -0
  361. package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.cjs +1 -0
  362. package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue.cjs +1 -0
  363. package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.cjs +1 -0
  364. package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.cjs +1 -0
  365. package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.cjs +1 -0
  366. package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.cjs +1 -0
  367. package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.cjs +1 -0
  368. package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue.cjs +1 -0
  369. package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.cjs +1 -0
  370. package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.cjs +1 -0
  371. package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.cjs +1 -0
  372. package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.cjs +1 -0
  373. package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.cjs +1 -0
  374. package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.cjs +1 -0
  375. package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.cjs +1 -0
  376. package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue.cjs +1 -0
  377. package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue2.cjs +1 -0
  378. package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue.cjs +1 -0
  379. package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue2.cjs +1 -0
  380. package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.cjs +1 -0
  381. package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.cjs +1 -0
  382. package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue.cjs +1 -0
  383. package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.cjs +1 -0
  384. package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.cjs +1 -0
  385. package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.cjs +1 -0
  386. package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue.cjs +1 -0
  387. package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue2.cjs +1 -0
  388. package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.cjs +1 -0
  389. package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.cjs +1 -0
  390. package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue.cjs +1 -0
  391. package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.cjs +1 -0
  392. package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue.cjs +1 -0
  393. package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.cjs +1 -0
  394. package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.cjs +1 -0
  395. package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.cjs +1 -0
  396. package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.cjs +1 -0
  397. package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.d.ts +17 -0
  398. package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue2.cjs +1 -0
  399. package/dist/lib/components/runtime/views/assemblys/object-render.vue.cjs +1 -0
  400. package/dist/lib/components/runtime/views/assemblys/object-render.vue.d.ts +17 -0
  401. package/dist/lib/components/runtime/views/assemblys/object-render.vue2.cjs +1 -0
  402. package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.cjs +1 -0
  403. package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.d.ts +14 -0
  404. package/dist/lib/components/runtime/views/assemblys/page-bottom.vue2.cjs +1 -0
  405. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.cjs +1 -0
  406. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.d.ts +14 -0
  407. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.cjs +1 -0
  408. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.cjs +1 -0
  409. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.cjs +1 -0
  410. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.cjs +1 -0
  411. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.cjs +1 -0
  412. package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.cjs +1 -0
  413. package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.cjs +1 -0
  414. package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.cjs +1 -0
  415. package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.cjs +1 -0
  416. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.cjs +1 -0
  417. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.cjs +1 -0
  418. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.cjs +1 -0
  419. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.cjs +1 -0
  420. package/dist/lib/components/runtime/views/home-chart.vue.cjs +1 -0
  421. package/dist/lib/components/runtime/views/home-chart.vue.d.ts +23 -0
  422. package/dist/lib/components/runtime/views/home-chart.vue2.cjs +1 -0
  423. package/dist/lib/components/runtime/views/super-page-dialog.vue.cjs +1 -0
  424. package/dist/lib/components/runtime/views/super-page-dialog.vue.d.ts +40 -0
  425. package/dist/lib/components/runtime/views/super-page-dialog.vue3.cjs +1 -0
  426. package/dist/lib/components/runtime/views/super-page.vue.cjs +1 -0
  427. package/dist/lib/components/runtime/views/super-page.vue.d.ts +135 -0
  428. package/dist/lib/components/runtime/views/super-page.vue2.cjs +1 -0
  429. package/dist/lib/favicon.ico +0 -0
  430. package/dist/lib/i18n/langs/cn.cjs +1 -0
  431. package/dist/lib/i18n/langs/en.cjs +1 -0
  432. package/dist/lib/index.cjs +1 -0
  433. package/dist/lib/index.d.ts +16 -0
  434. package/dist/lib/style.css +1 -0
  435. package/package.json +77 -75
  436. package/dist/es/_virtual/_plugin-vue_export-helper.js +0 -8
  437. package/dist/es/components/runtime/utils/ai-chat-util.js +0 -16
  438. package/dist/es/components/runtime/utils/anchor-util.js +0 -84
  439. package/dist/es/components/runtime/utils/api/api-util.js +0 -4
  440. package/dist/es/components/runtime/utils/api/page-expose-util.js +0 -190
  441. package/dist/es/components/runtime/utils/assemblys-config.js +0 -20
  442. package/dist/es/components/runtime/utils/barcode-util.js +0 -12
  443. package/dist/es/components/runtime/utils/charts/chart-columnline-util.js +0 -168
  444. package/dist/es/components/runtime/utils/charts/chart-gauge-util.js +0 -38
  445. package/dist/es/components/runtime/utils/charts/chart-pie-util.js +0 -82
  446. package/dist/es/components/runtime/utils/charts/chart-radar-util.js +0 -56
  447. package/dist/es/components/runtime/utils/charts/chart-scatter-util.js +0 -47
  448. package/dist/es/components/runtime/utils/charts/chart-util.js +0 -288
  449. package/dist/es/components/runtime/utils/common-util.js +0 -120
  450. package/dist/es/components/runtime/utils/eventBus.js +0 -5
  451. package/dist/es/components/runtime/utils/events/data-backfill-util.js +0 -39
  452. package/dist/es/components/runtime/utils/events/event-util.js +0 -427
  453. package/dist/es/components/runtime/utils/events/print-label.js +0 -100
  454. package/dist/es/components/runtime/utils/events/standard-event.js +0 -1221
  455. package/dist/es/components/runtime/utils/events/validator-util.js +0 -326
  456. package/dist/es/components/runtime/utils/form/date-shortcuts.js +0 -36
  457. package/dist/es/components/runtime/utils/form/scan-util.js +0 -93
  458. package/dist/es/components/runtime/utils/global-refs.js +0 -57
  459. package/dist/es/components/runtime/utils/i18n-util.js +0 -14
  460. package/dist/es/components/runtime/utils/interfaces/page-design-types.js +0 -4
  461. package/dist/es/components/runtime/utils/page-helper-util.js +0 -387
  462. package/dist/es/components/runtime/utils/page-init-util.js +0 -280
  463. package/dist/es/components/runtime/utils/page-store.js +0 -53
  464. package/dist/es/components/runtime/utils/store-util.js +0 -13
  465. package/dist/es/components/runtime/utils/table-utils.js +0 -89
  466. package/dist/es/components/runtime/utils/tree-utils.js +0 -73
  467. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.js +0 -4
  468. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.js +0 -29
  469. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +0 -7
  470. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +0 -21
  471. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +0 -4
  472. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +0 -41
  473. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.js +0 -4
  474. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.js +0 -6
  475. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.js +0 -4
  476. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.js +0 -21
  477. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +0 -7
  478. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +0 -53
  479. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.js +0 -14
  480. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.js +0 -4
  481. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +0 -13
  482. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.js +0 -4
  483. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +0 -60
  484. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.js +0 -4
  485. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.js +0 -7
  486. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.js +0 -64
  487. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +0 -7
  488. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +0 -35
  489. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +0 -7
  490. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +0 -46
  491. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +0 -7
  492. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +0 -35
  493. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +0 -7
  494. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +0 -35
  495. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +0 -419
  496. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.js +0 -6
  497. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.js +0 -4
  498. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.js +0 -10
  499. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.js +0 -4
  500. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.js +0 -46
  501. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.js +0 -4
  502. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.js +0 -15
  503. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.js +0 -4
  504. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.js +0 -4
  505. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +0 -259
  506. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.js +0 -20
  507. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.js +0 -4
  508. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +0 -36
  509. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +0 -4
  510. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.js +0 -35
  511. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.js +0 -4
  512. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.js +0 -32
  513. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.js +0 -4
  514. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.js +0 -17
  515. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +0 -4
  516. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.js +0 -23
  517. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.js +0 -4
  518. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.js +0 -18
  519. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.js +0 -4
  520. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.js +0 -35
  521. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.js +0 -4
  522. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.js +0 -19
  523. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.js +0 -4
  524. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.js +0 -7
  525. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +0 -29
  526. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +0 -4
  527. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +0 -21
  528. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.js +0 -4
  529. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.js +0 -18
  530. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.js +0 -7
  531. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.js +0 -29
  532. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.js +0 -7
  533. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.js +0 -81
  534. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +0 -4
  535. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +0 -25
  536. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.js +0 -4
  537. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.js +0 -20
  538. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +0 -4
  539. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +0 -46
  540. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +0 -7
  541. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +0 -96
  542. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.js +0 -7
  543. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +0 -47
  544. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.js +0 -4
  545. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.js +0 -69
  546. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +0 -382
  547. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +0 -4
  548. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +0 -327
  549. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +0 -4
  550. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.js +0 -4
  551. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +0 -85
  552. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +0 -7
  553. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +0 -134
  554. package/dist/es/components/runtime/views/assemblys/error-render.vue.js +0 -5
  555. package/dist/es/components/runtime/views/assemblys/error-render.vue2.js +0 -4
  556. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +0 -4
  557. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +0 -64
  558. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.js +0 -38
  559. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.js +0 -4
  560. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.js +0 -4
  561. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +0 -69
  562. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +0 -4
  563. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +0 -102
  564. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +0 -4
  565. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +0 -55
  566. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +0 -4
  567. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +0 -24
  568. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +0 -4
  569. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +0 -94
  570. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +0 -4
  571. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +0 -28
  572. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +0 -4
  573. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +0 -82
  574. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.js +0 -7
  575. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +0 -38
  576. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.js +0 -4
  577. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +0 -43
  578. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +0 -7
  579. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +0 -16
  580. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +0 -4
  581. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +0 -82
  582. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +0 -8
  583. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +0 -199
  584. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.js +0 -7
  585. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +0 -156
  586. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.js +0 -4
  587. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.js +0 -16
  588. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +0 -4
  589. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +0 -36
  590. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +0 -4
  591. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +0 -44
  592. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +0 -4
  593. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +0 -28
  594. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.js +0 -83
  595. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.js +0 -4
  596. package/dist/es/components/runtime/views/assemblys/object-render.vue.js +0 -153
  597. package/dist/es/components/runtime/views/assemblys/object-render.vue2.js +0 -4
  598. package/dist/es/components/runtime/views/assemblys/page-bottom.vue.js +0 -6
  599. package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.js +0 -4
  600. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.js +0 -7
  601. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.js +0 -26
  602. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.js +0 -7
  603. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.js +0 -28
  604. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.js +0 -7
  605. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.js +0 -45
  606. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js +0 -4
  607. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.js +0 -20
  608. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.js +0 -4
  609. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.js +0 -23
  610. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +0 -7
  611. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +0 -24
  612. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.js +0 -4
  613. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.js +0 -27
  614. package/dist/es/components/runtime/views/home-chart.vue.js +0 -47
  615. package/dist/es/components/runtime/views/home-chart.vue2.js +0 -4
  616. package/dist/es/components/runtime/views/super-page-dialog.vue.js +0 -26
  617. package/dist/es/components/runtime/views/super-page-dialog.vue3.js +0 -5
  618. package/dist/es/components/runtime/views/super-page.vue.js +0 -7
  619. package/dist/es/components/runtime/views/super-page.vue2.js +0 -296
  620. package/dist/es/index.js +0 -30
  621. /package/dist/es/assets/chart-themes/{bar-theme.js → bar-theme.mjs} +0 -0
  622. /package/dist/es/assets/chart-themes/{gauge-theme.js → gauge-theme.mjs} +0 -0
  623. /package/dist/es/assets/chart-themes/{pie-theme.js → pie-theme.mjs} +0 -0
  624. /package/dist/es/assets/chart-themes/{radar-theme.js → radar-theme.mjs} +0 -0
  625. /package/dist/es/assets/chart-themes/{scatter-theme.js → scatter-theme.mjs} +0 -0
  626. /package/dist/es/assets/{file.png.js → file.png.mjs} +0 -0
  627. /package/dist/es/assets/{folder.png.js → folder.png.mjs} +0 -0
  628. /package/dist/es/components/runtime/utils/{store.js → store.mjs} +0 -0
@@ -0,0 +1,56 @@
1
+ import { getValueFromSource as n } from "../page-helper-util.mjs";
2
+ import { deepCopy as V } from "../common-util.mjs";
3
+ import { setDefaultGrid as $, caculateFormulaValue as j, executeChartFormula as G, formatToolboxI18n as I } from "./chart-util.mjs";
4
+ import { handleChartEvent as w } from "../events/event-util.mjs";
5
+ function z(c, r, u, s) {
6
+ if (!s || !s.result) return;
7
+ w(c, r, "beforeUpdateChart", u, { resultData: s }), $(u);
8
+ const p = s && s.result ? s.result : {}, x = r.serviceDataField;
9
+ let l = null;
10
+ x ? l = p[x] : p && (l = Array.isArray(p) ? p : [p]), l || (l = []);
11
+ const v = r.items ? r.items : [], h = [], y = {}, F = [], b = j(v, l, F);
12
+ for (const a of v) {
13
+ const i = a.props ? a.props : {}, f = i.yaxisSource, t = i.yaxisField;
14
+ let e = null;
15
+ if (!t || f && f != "variable") if (f == "formula") {
16
+ let o = i.formula ? i.formula : "";
17
+ for (const g in b) o = o.replace(new RegExp(g.replace("$", "\\$"), "g"), b[g]);
18
+ e = { uuid: a.uuid, type: "formula", formula: o, data: [] };
19
+ } else e = { uuid: a.uuid, type: "fixed", field: i.yaxisFix, data: [] };
20
+ else e = { uuid: a.uuid, type: "variable", field: t, data: [] };
21
+ e && (h.push(e), y[e.uuid] = e);
22
+ }
23
+ const d = r.props ? r.props : {}, A = d.nameField, C = d.maxSource, N = d.maxField, E = d.maxFixed, D = [], m = {};
24
+ for (const a of l) {
25
+ if (!a) continue;
26
+ const i = n(a, A, void 0);
27
+ let f = null;
28
+ f = C && C != "variable" ? E : n(a, N, void 0), D.push({ text: i, max: f });
29
+ for (const t of F) {
30
+ const e = n(a, t, void 0);
31
+ let o = m[t];
32
+ e === void 0 || isNaN(e) || (o === void 0 ? o = e : o += e), m[t] = o;
33
+ }
34
+ for (const t of h) {
35
+ const e = t.data;
36
+ if (t.type == "fixed") e.push(t.field);
37
+ else if (t.type == "variable") {
38
+ const o = n(a, t.field, void 0);
39
+ e.push(o);
40
+ } else if (t.type == "formula") {
41
+ const o = G(t.formula, m, a, c);
42
+ e.push(o);
43
+ } else e.push(void 0);
44
+ }
45
+ }
46
+ u.radar[0].indicator = D, I(u);
47
+ const R = r.defaultSeries, S = V(R), U = S[0].data;
48
+ for (const a of U) {
49
+ const i = y[a.uuid];
50
+ a.value = i.data;
51
+ }
52
+ u.series = S, w(c, r, "afterUpdateChart", u, { resultData: s }), r.cacheDatas = l, r.rawResult = s;
53
+ }
54
+ export {
55
+ z as updateChartOption
56
+ };
@@ -0,0 +1,47 @@
1
+ import { getValueFromSource as d } from "../page-helper-util.mjs";
2
+ import { deepCopy as b } from "../common-util.mjs";
3
+ import { setDefaultGrid as D, caculateFormulaValue as g, executeChartFormula as w, formatToolboxI18n as A } from "./chart-util.mjs";
4
+ import { handleChartEvent as z } from "../events/event-util.mjs";
5
+ function V(f, t, l, r) {
6
+ if (!r || !r.result) return;
7
+ z(f, t, "beforeUpdateChart", l, { resultData: r }), D(l);
8
+ const u = r && r.result ? r.result : {}, x = t.serviceDataField;
9
+ let i = null;
10
+ x ? i = u[x] : u && (i = Array.isArray(u) ? u : [u]), i || (i = []);
11
+ const h = t.items ? t.items : [], n = [], y = {};
12
+ for (const e of h) {
13
+ const o = e.props ? e.props : {}, a = e.props ? e.style : {}, s = o.xaxisField, m = o.sizeField, c = { uuid: e.uuid, xaxisField: s, yaxisField: o.yaxisField, yaxisSource: o.yaxisSource, formula: o.formula, sizeField: m, symbolSize: a.symbolSize, data: [] };
14
+ n.push(c), y[c.uuid] = c;
15
+ }
16
+ const F = [], S = g(h, i, F);
17
+ for (const e of n) if (e.yaxisSource === "formula") {
18
+ let o = e.formula ? e.formula : "";
19
+ for (const a in S) o = o.replace(new RegExp(a.replace("$", "\\$"), "g"), S[a]);
20
+ e.formula = o;
21
+ }
22
+ const p = {};
23
+ for (const e of i) if (e) {
24
+ for (const o of F) {
25
+ const a = d(e, o, void 0);
26
+ let s = p[o];
27
+ a === void 0 || isNaN(a) || (s === void 0 ? s = a : s += a), p[o] = s;
28
+ }
29
+ for (const o of n) {
30
+ const a = o.data, s = [];
31
+ if (s.push(d(e, o.xaxisField, void 0)), o.yaxisSource === "formula") {
32
+ const m = w(o.formula, p, e, f);
33
+ s.push(m);
34
+ } else s.push(d(e, o.yaxisField, void 0));
35
+ o.sizeField ? s.push(d(e, o.xaxisField, void 0)) : s.push(o.symbolSize), a.push(s);
36
+ }
37
+ }
38
+ const C = t.defaultSeries, v = b(C);
39
+ for (const e of v) {
40
+ const o = y[e.uuid];
41
+ e.data = o.data;
42
+ }
43
+ l.series = v, A(l), z(f, t, "afterUpdateChart", l, { resultData: r }), t.cacheDatas = i, t.rawResult = r;
44
+ }
45
+ export {
46
+ V as updateChartOption
47
+ };
@@ -0,0 +1,285 @@
1
+ import b from "../../../../assets/chart-themes/bar-theme.mjs";
2
+ import S from "../../../../assets/chart-themes/gauge-theme.mjs";
3
+ import V from "../../../../assets/chart-themes/pie-theme.mjs";
4
+ import M from "../../../../assets/chart-themes/radar-theme.mjs";
5
+ import _ from "../../../../assets/chart-themes/scatter-theme.mjs";
6
+ import { getDefaultValue as C } from "../page-init-util.mjs";
7
+ import { setValueForVariableName as x, setVariableValue as k, getValueFromSource as h, getParamNames as N, getValueFromVariable as A, formatVariableValue as v } from "../page-helper-util.mjs";
8
+ import { getI18n as g } from "agilebuilder-ui";
9
+ import { appendDefaultMethods as w } from "../events/event-util.mjs";
10
+ var O = ((e) => (e.X_FIELD_NAME = "__x", e.Y_TEMP_NAME = "__y", e))(O || {});
11
+ function P(e, t = "bar") {
12
+ return t === "bar" ? b[e] : t === "gauge" ? S[e] : t === "pie" ? V[e] : t === "radar" ? M[e] : t === "scatter" ? _[e] : b[e];
13
+ }
14
+ function z() {
15
+ return [{ value: "theme1", label: "主题1" }, { value: "theme2", label: "主题2" }, { value: "theme3", label: "主题3" }];
16
+ }
17
+ function I(e, t, a, i, r) {
18
+ return function(o) {
19
+ let n = o == null ? void 0 : o.value;
20
+ if (r && (n = o), n == null || n == null || Array.isArray(n) || isNaN(n) || !e || !e.indexOf) return n;
21
+ if (e.indexOf("precision") > -1) {
22
+ let c = parseInt(t);
23
+ (c == null || isNaN(c)) && (c = 2), n = parseFloat(parseFloat(n).toFixed(c));
24
+ }
25
+ let s = "";
26
+ e.indexOf("prefix") > -1 && a && (s = a);
27
+ let l = "";
28
+ return e.indexOf("append") > -1 && i && (l = i), s + n.toLocaleString() + l;
29
+ };
30
+ }
31
+ function G(e, t) {
32
+ if (!t) return;
33
+ if (t.tooltipFormatterArgs && (t.tooltip || (t.tooltip = {}), t.tooltip.valueFormatter = I.apply(t, t.tooltipFormatterArgs)), t.series) {
34
+ const o = e.props ? e.props.enableDrill : null;
35
+ for (const n of t.series) t.radar || (n.data = []), n.labelFormatterArgs && (n.label || (n.label = {}), n.label.formatter = I.apply(n, n.labelFormatterArgs)), !o && e.clickSet && e.clickSet.selected && n.emphasis && (n.emphasis.disabled = !1), n.type === "pie" && e.clickSet && e.clickSet.selected && (e.clickSet.multiple ? n.selectedMode = "multiple" : n.selectedMode = "single");
36
+ }
37
+ if (t.radar) for (const o of t.radar) o.indicator = [];
38
+ const a = t.series;
39
+ e.defaultSeries = a;
40
+ const i = t.xAxis;
41
+ i && i.length > 0 && i[0].data && (i[0].data = []), e.defaultXaxis = i;
42
+ const r = t.yAxis;
43
+ if (r) for (const o of r) o.data && (o.data = []), o._dataMin === "auto" && (o.min = function(n) {
44
+ if (n.min) return 10 * Math.floor(n.min / 10);
45
+ }), o._dataMax === "auto" && (o.max = function(n) {
46
+ if (n.max) return 10 * Math.ceil(n.max / 10);
47
+ });
48
+ e.defaultYaxis = r;
49
+ }
50
+ function J(e, t, a) {
51
+ if (!(a && t && t.clickSet && e)) return;
52
+ const i = t.clickSet;
53
+ a.on("click", function(r) {
54
+ let o = t.highlightInfos ? t.highlightInfos : [], n = -1;
55
+ if (o) {
56
+ const s = [];
57
+ for (let l = 0; l < o.length; l++) {
58
+ const c = o[l], f = c.seriesIndex === r.seriesIndex && c.dataIndex === r.dataIndex;
59
+ if (f || !i.multiple) {
60
+ if (i.selected) {
61
+ const u = t.name === "chart-pie" ? "unselect" : "downplay";
62
+ a.dispatchAction({ type: u, seriesIndex: c.seriesIndex, dataIndex: c.dataIndex });
63
+ }
64
+ } else s.push(c);
65
+ f && (n = l);
66
+ }
67
+ o = s;
68
+ }
69
+ if (n === -1) {
70
+ if (i.selected) {
71
+ const s = t.name === "chart-pie" ? "select" : "highlight";
72
+ a.dispatchAction({ type: s, seriesIndex: r.seriesIndex, dataIndex: r.dataIndex });
73
+ }
74
+ o.push({ seriesIndex: r.seriesIndex, dataIndex: r.dataIndex });
75
+ }
76
+ t.highlightInfos = o, F(e, t);
77
+ });
78
+ }
79
+ function Q(e, t, a) {
80
+ if (!a || !t || !e) return;
81
+ const i = t.highlightInfos ? t.highlightInfos : [];
82
+ for (let r = 0; r < i.length; r++) {
83
+ const o = i[r], n = t.name === "chart-pie" ? "unselect" : "downplay";
84
+ a.dispatchAction({ type: n, seriesIndex: o.seriesIndex, dataIndex: o.dataIndex });
85
+ }
86
+ t.highlightInfos = [], F(e, t);
87
+ }
88
+ function F(e, t) {
89
+ if (!t.clickSet) return;
90
+ const a = t.clickSet, i = a.variables;
91
+ if (!i || i.length == 0) return;
92
+ const r = t.highlightInfos ? t.highlightInfos : [], o = t.cacheDatas ? t.cacheDatas : [], n = [], s = [];
93
+ for (const l of r) s.includes(l.dataIndex) || (s.push(l.dataIndex), l.dataIndex < o.length && n.push(o[l.dataIndex]));
94
+ for (const l of i) {
95
+ if (!l.fieldName || !l.variable) continue;
96
+ const c = [];
97
+ for (const f of n) {
98
+ const u = h(f, l.fieldName, void 0);
99
+ u != null && c.push(u);
100
+ }
101
+ a.multiple ? x(e.entity, l.variable, c) : x(e.entity, l.variable, c.length > 0 ? c[0] : void 0);
102
+ }
103
+ }
104
+ function U(e, t, a) {
105
+ const i = t.items ? t.items : [], r = t.props ? t.props.orderByTarget : "";
106
+ let o = null;
107
+ if (r == "x" || r == "X") o = "__x";
108
+ else if (r) {
109
+ for (const l of i) if (l.uuid == r) {
110
+ const c = l.props ? l.props : {}, f = c.yaxisSource, u = c.yaxisField;
111
+ if (u && (!f || f == "variable")) {
112
+ o = u;
113
+ break;
114
+ }
115
+ if (f == "formula" && c.formula) {
116
+ o = l.uuid + "_field";
117
+ break;
118
+ }
119
+ }
120
+ }
121
+ if (!o) return;
122
+ const n = t.props ? t.props.orderSource : "";
123
+ let s = t.props ? t.props.orderFix : "";
124
+ if (n == "variable") {
125
+ const l = t.props ? t.props.orderVariable : "";
126
+ s = v(e, l);
127
+ }
128
+ s = s == "desc" || s == "DESC" ? "desc" : "asc", a.sort((l, c) => {
129
+ const f = h(l, o, void 0), u = h(c, o, void 0);
130
+ return s === "desc" ? u - f : f - u;
131
+ });
132
+ }
133
+ function q(e, t, a, i, r) {
134
+ if (!a) return a;
135
+ const o = t.props ? t.props : {};
136
+ if (!o.limitQuantity) return a;
137
+ let n = null;
138
+ if (o.itemNumVariable ? (n = v(e, o.itemNumVariable), n = parseInt(n)) : n = o.itemNumFix ? o.itemNumFix : 10, n == null || n == null || isNaN(n) || a.length < n) return a;
139
+ const s = o.overItemAlias, l = [], c = {};
140
+ i = i || [], r = r || [];
141
+ for (let f = 0; f < a.length; f++) {
142
+ const u = a[f];
143
+ if (f < n) l.push(u);
144
+ else {
145
+ if (!s) break;
146
+ for (const d of i) {
147
+ if (!d) continue;
148
+ let p = h(u, d, void 0);
149
+ p = p == null || p == null ? "" : p, c[d] || (c[d] = []);
150
+ const m = c[d];
151
+ m.includes(p) || m.push(p);
152
+ }
153
+ for (const d of r) {
154
+ if (!d) continue;
155
+ const p = h(u, d, void 0);
156
+ if (isNaN(p)) continue;
157
+ const m = c[d];
158
+ isNaN(m) ? c[d] = p : c[d] = p + m;
159
+ }
160
+ }
161
+ }
162
+ return s && (c.__x = s, l.push(c)), l;
163
+ }
164
+ function K(e, t, a) {
165
+ const i = {};
166
+ for (const r of e) {
167
+ const o = r.props ? r.props : {};
168
+ if (o.yaxisSource === "formula") {
169
+ const n = N(o.formula);
170
+ for (const s of n) if (!(s in i)) {
171
+ if (s.startsWith("${min.")) i[s] = D(t, s.substring(6, s.length - 1));
172
+ else if (s.startsWith("${max.")) i[s] = $(t, s.substring(6, s.length - 1));
173
+ else if (s.startsWith("${sum.")) i[s] = y(t, s.substring(6, s.length - 1));
174
+ else if (s.startsWith("${avg.")) i[s] = E(t, s.substring(6, s.length - 1));
175
+ else if (s.startsWith("${add.")) {
176
+ const l = s.substring(6, s.length - 1);
177
+ a.add(l);
178
+ }
179
+ }
180
+ }
181
+ }
182
+ return i;
183
+ }
184
+ function D(e, t) {
185
+ let a;
186
+ for (const i of e) {
187
+ const r = parseFloat(h(i, t, null));
188
+ (a === void 0 || !isNaN(r) && r < a) && (a = r);
189
+ }
190
+ return a;
191
+ }
192
+ function $(e, t) {
193
+ let a;
194
+ for (const i of e) {
195
+ const r = parseFloat(h(i, t, null));
196
+ (a === void 0 || !isNaN(r) && r > a) && (a = r);
197
+ }
198
+ return a;
199
+ }
200
+ function y(e, t) {
201
+ let a;
202
+ for (const i of e) {
203
+ const r = parseFloat(h(i, t, null));
204
+ a === void 0 ? a = r : isNaN(r) || (a += r);
205
+ }
206
+ return a;
207
+ }
208
+ function E(e, t) {
209
+ const a = y(e, t);
210
+ return a === void 0 || e.length === 0 ? a : parseFloat((a / e.length).toFixed(5));
211
+ }
212
+ function Z(e, t, a, i) {
213
+ if (!e) return;
214
+ if (t) for (const n in t) e = e.replace(new RegExp("\\${add." + n + "}", "g"), t[n]);
215
+ const r = N(e);
216
+ for (const n of r) {
217
+ let s = null;
218
+ s = n.startsWith("${row.") ? h(a, n.substring(6, n.length - 1), null) : A(i.entity, n), e = e.replace(new RegExp(n.replace("$", "\\$"), "g"), s);
219
+ }
220
+ e.includes("return ") || (e = "return " + e);
221
+ const o = new Function("params", e);
222
+ return w(o, i), o({ pageContext: i, row: a });
223
+ }
224
+ function tt(e, t) {
225
+ if (!e || !e.$el) return;
226
+ const a = e.$el.getElementsByTagName("canvas");
227
+ if (!a || a.length === 0) return;
228
+ const i = a[0], r = i.width + ":" + i.height;
229
+ return { isTable: !1, fileContent: i.toDataURL(), fileSize: r, title: t == null ? void 0 : t.title };
230
+ }
231
+ function et(e, t, a) {
232
+ const i = window.localStorage.getItem("HOME_MY_CHARTS_CONDITIONS");
233
+ let r = !0;
234
+ if (i) {
235
+ const o = JSON.parse(i);
236
+ if (o[a]) {
237
+ const n = o[a];
238
+ if (Object.keys(n).length > 0) {
239
+ r = !1;
240
+ for (const s in n) n[s] !== null && n[s] !== void 0 && x(t.entity, s, n[s]);
241
+ }
242
+ }
243
+ }
244
+ if (r && e) {
245
+ for (const o of e) if (o.prop && o.value) {
246
+ const n = C(t, o.value, "input-text", !1), s = o.prop.substring(2, o.prop.length - 1).split(".");
247
+ n != null && k(t.entity, s, n);
248
+ }
249
+ }
250
+ }
251
+ function nt(e) {
252
+ if (e != null && e.grid) {
253
+ const t = e.grid, a = (i) => !i || i === "0";
254
+ a(t.top) && a(t.right) && a(t.bottom) && a(t.left) && Object.assign(t, { right: "10%", bottom: "60", left: "10%" });
255
+ }
256
+ }
257
+ function at(e) {
258
+ var t;
259
+ if ((t = e == null ? void 0 : e.toolbox) != null && t.feature) {
260
+ const a = e.toolbox.feature;
261
+ for (const i in a) a[i].show && (a[i].title = g().t("chartMessage." + i), i === "dataView" && (a[i].lang = [g().t("chartMessage.dataView"), g().t("chartMessage.close"), g().t("chartMessage.refresh")]));
262
+ }
263
+ }
264
+ export {
265
+ O as CommonName,
266
+ K as caculateFormulaValue,
267
+ Q as clearChartSelected,
268
+ Z as executeChartFormula,
269
+ tt as exportCommonChart,
270
+ at as formatToolboxI18n,
271
+ E as getAvgValue,
272
+ P as getCustomTheme,
273
+ z as getCustomThemeOptions,
274
+ $ as getMaxValue,
275
+ D as getMinValue,
276
+ I as getNumFormatter,
277
+ y as getSumValue,
278
+ G as initChartOption,
279
+ q as limitDatas,
280
+ J as monitorChartClickToVariable,
281
+ nt as setDefaultGrid,
282
+ et as setHomeChartInitConfigValue,
283
+ U as sortDatas,
284
+ F as updateClickVariablesForSelected
285
+ };
@@ -0,0 +1,116 @@
1
+ import { getLanguageWithLocale as m, getSystemBackendUrl as y } from "agilebuilder-ui";
2
+ import { ExpressionEvaluator as h } from "../views/assemblys/chart/table/chart-table-util.mjs";
3
+ import { getCustomFunc as b } from "./events/event-util.mjs";
4
+ function A(t) {
5
+ return typeof Array.isArray == "function" ? Array.isArray(t) : Object.prototype.toString.call(t) === "[object Array]";
6
+ }
7
+ function O(t, e) {
8
+ if (e) return t;
9
+ {
10
+ const { baseURL: n, projectModel: i } = window.$vueApp.config.globalProperties;
11
+ let a = n;
12
+ return i === "developing.model" || t && (a = y(t)), a;
13
+ }
14
+ }
15
+ function C(t, e, n, i) {
16
+ let a = t;
17
+ return t && n && !function(s) {
18
+ return s.indexOf("http:") === 0 || s.indexOf("https:") === 0;
19
+ }(t) && (a = O(n, i) + "/" + e + t), a;
20
+ }
21
+ function M(t, e, n) {
22
+ if (!t || t.length === 0) return t;
23
+ let i = t;
24
+ if (Array.isArray(t)) {
25
+ t[0].templates && (i = function(f, o, c) {
26
+ const d = [];
27
+ return f.forEach((u) => {
28
+ let g = !0;
29
+ if (u.scopeFunc) {
30
+ const p = b(o, u.scopeFunc);
31
+ p && (g = p.apply(p, [{ pageContext: o, configureObj: c, template: u }]));
32
+ } else u.conditions && u.conditions.length > 0 && (g = h.evaluate(o, u.conditions));
33
+ g !== !1 && u.templates.forEach((p) => {
34
+ d.push({ templateUuid: p.templateUuid, templateName: p.templateName });
35
+ });
36
+ }), d;
37
+ }(t, e, n));
38
+ const a = m(), s = [], l = [], r = "~-~-";
39
+ return i.forEach((f) => {
40
+ const o = f.templateName;
41
+ if (o.indexOf(r) > 0) {
42
+ const c = o.substring(0, o.indexOf(r)), d = o.substring(o.indexOf(r) + r.length, o.lastIndexOf(r)), u = o.substring(o.lastIndexOf(r) + r.length);
43
+ a === d && l.indexOf(c) < 0 && (s.push({ templateUuid: f.templateUuid, templateName: u }), l.push(c));
44
+ } else s.push(f);
45
+ }), s;
46
+ }
47
+ }
48
+ function k(t) {
49
+ return t.toLowerCase().replace(/( |^)[a-z]/g, (e) => e.toUpperCase());
50
+ }
51
+ function I(t, e, n) {
52
+ return "V" + e + "__" + t + "__" + n;
53
+ }
54
+ function w(t) {
55
+ if (typeof t != "object" || t == null) return t;
56
+ const e = Array.isArray(t) ? [] : {};
57
+ for (const n in t) t.hasOwnProperty(n) && (e[n] = w(t[n]));
58
+ return e;
59
+ }
60
+ function U(t) {
61
+ let e;
62
+ return t.entity && t.entity.data && (e = t.entity.data.WORKFLOW_ID, e || (e = t.entity.data.workflow_id), e || (e = t.entity.data.workflowId)), e;
63
+ }
64
+ function W(t) {
65
+ var n, i, a, s;
66
+ let e;
67
+ if (t && ((i = (n = t.props) == null ? void 0 : n.base) != null && i.prop)) {
68
+ let l = (s = (a = t.props) == null ? void 0 : a.base) == null ? void 0 : s.prop;
69
+ l.indexOf("${") >= 0 && (l = l.substring(2, l.lastIndexOf("}")));
70
+ const r = l.split(".");
71
+ r.length === 2 ? e = r[1] : r.length === 3 && (e = r[1] + "__" + r[2]);
72
+ } else t.code && (e = t.code);
73
+ return e;
74
+ }
75
+ function _(t) {
76
+ try {
77
+ if (t != null) {
78
+ const e = parseInt(t + "");
79
+ if (Number.isInteger(e)) return !0;
80
+ }
81
+ return !1;
82
+ } catch {
83
+ return !1;
84
+ }
85
+ }
86
+ function v(t) {
87
+ return !!t.isWorkflowEntity || !(t.isWorkflowEntity !== void 0 || !t.workflowCode);
88
+ }
89
+ function E(t, e) {
90
+ if (t && e) {
91
+ let n = t.jumpPageMobileOpenMode;
92
+ n || (t.jumpPageOpenMode ? (n = t.jumpPageOpenMode, n === "newTab" && (n = "refresh")) : n = "refresh"), n === "refresh" && (t.dialogType = "drawer", t.jumpPageWidth = "100%", t.isRefreshWhenClosePopup = !0), t.jumpMode = n, t.jumpPageMobileOpenMode = n, t.jumpPageTitle || (t.jumpPageTitle = "QMS质量管理系统");
93
+ }
94
+ }
95
+ function F(t, e) {
96
+ return t[e] === null || t[e] === void 0 || t[e] === "";
97
+ }
98
+ function N() {
99
+ return "required_bg";
100
+ }
101
+ export {
102
+ N as addRequiredClassUtil,
103
+ w as deepCopy,
104
+ O as getBaseUrl,
105
+ I as getListCode,
106
+ W as getPropClassName,
107
+ C as getRealRestApiPath,
108
+ U as getWorkflowId,
109
+ A as isArrayFn,
110
+ _ as isNumber,
111
+ F as isVariableInvalidValue,
112
+ v as isWorkflowPage,
113
+ M as packageTemplateFiles,
114
+ E as refreshMobileDialogType,
115
+ k as upperFirstCase
116
+ };
@@ -0,0 +1,5 @@
1
+ import f from "mitt";
2
+ const o = f(), e = { $on: o.on, $emit: o.emit, $off: o.off };
3
+ export {
4
+ e as default
5
+ };
@@ -0,0 +1,38 @@
1
+ function o(t, e) {
2
+ let a = "new";
3
+ return e.id ? a = e.id : e.ID && (a = e.ID), i(t, a);
4
+ }
5
+ function i(t, e) {
6
+ return e ? `backfill_data_${t}_${e}` : `backfill_data_${t}_new`;
7
+ }
8
+ function c(t, e) {
9
+ sessionStorage.setItem(o(t, e), JSON.stringify(e));
10
+ }
11
+ function u(t, e) {
12
+ sessionStorage.removeItem(o(t, e));
13
+ }
14
+ function f(t, e) {
15
+ sessionStorage.removeItem(i(t, e));
16
+ }
17
+ function I(t, e) {
18
+ return sessionStorage.getItem(i(t, e)) !== null;
19
+ }
20
+ function S(t, e, a) {
21
+ const l = sessionStorage.getItem(i(t, e));
22
+ if (l) {
23
+ const n = JSON.parse(l);
24
+ let s = null;
25
+ n.version ? s = n.version : n.VERSION && (s = n.VERSION);
26
+ let r = null;
27
+ if (a.version ? r = a.version : a.VERSION && (r = a.VERSION), s == r) return n;
28
+ }
29
+ return a;
30
+ }
31
+ export {
32
+ c as cacheBackfillData,
33
+ i as getBackFillDataKey,
34
+ S as getRealFillData,
35
+ I as hasBackfillData,
36
+ u as removeCacheFillData,
37
+ f as removeCacheFillDataById
38
+ };