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
@@ -0,0 +1,36 @@
1
+ import { defineComponent as g, computed as k, resolveComponent as c, openBlock as s, createElementBlock as v, Fragment as C, createBlock as x, isRef as m, unref as d, createCommentVNode as V } from "vue";
2
+ import { formatVariableValue as A, setVariableValue as f, getVariableValue as b } from "../../../../utils/page-helper-util.mjs";
3
+ const P = g({ __name: "title-suffix-element", props: { pageContext: {}, property: {} }, setup(o) {
4
+ const r = o, n = r.pageContext.entity;
5
+ let t = [];
6
+ if (r.property.prefixPro && r.property.prefixPro.startsWith("${")) {
7
+ let l = r.property.prefixPro;
8
+ l = l.substring(2, l.length - 1), t = l.split(".");
9
+ } else t = [];
10
+ if (t.length > 0 && r.property.prefixDefault) {
11
+ const l = r.property.prefixDefault;
12
+ let e = A(r.pageContext, l);
13
+ e != null && e != null && (r.property.prefixType === "checkbox" && (e = (e + "").split(",")), f(n, t, e));
14
+ }
15
+ const y = r.property.prefixType;
16
+ let a = r.property.prefixValue;
17
+ a = a == null || a == null ? "" : a;
18
+ let p = null;
19
+ return t.length > 0 && (p = k({ get() {
20
+ const l = b(n, t);
21
+ return y === "checkbox" ? l != null && (Array.isArray(l) ? l.includes(a) : l === a) : l;
22
+ }, set(l) {
23
+ if (y === "checkbox") {
24
+ let e = b(n, t);
25
+ e || (e = []), Array.isArray(e) || (e = [e]);
26
+ const u = e.indexOf(a);
27
+ l ? u == -1 && e.push(a) : u > -1 && e.splice(u, 1), f(n, t, e);
28
+ } else f(n, t, l);
29
+ } })), (l, e) => {
30
+ const u = c("el-radio"), h = c("el-checkbox");
31
+ return s(), v(C, null, [o.property.prefixType === "radio" ? (s(), x(u, { key: 0, value: o.property.prefixValue, label: o.property.title, modelValue: d(p), "onUpdate:modelValue": e[0] || (e[0] = (i) => m(p) ? p.value = i : p = i) }, null, 8, ["value", "label", "modelValue"])) : V("", !0), o.property.prefixType === "checkbox" ? (s(), x(h, { key: 1, label: o.property.title, value: o.property.prefixValue, modelValue: d(p), "onUpdate:modelValue": e[1] || (e[1] = (i) => m(p) ? p.value = i : p = i) }, null, 8, ["label", "value", "modelValue"])) : V("", !0)], 64);
32
+ };
33
+ } });
34
+ export {
35
+ P as default
36
+ };
@@ -0,0 +1,4 @@
1
+ import o from "./title-suffix-element.vue.mjs";
2
+ export {
3
+ o as default
4
+ };
@@ -0,0 +1,4 @@
1
+ import o from "./custom-runtime2.vue.mjs";
2
+ export {
3
+ o as default
4
+ };
@@ -0,0 +1,69 @@
1
+ import { defineComponent as B, computed as G, ref as d, onMounted as H, nextTick as M, onUnmounted as N, resolveComponent as W, openBlock as f, createBlock as x, normalizeStyle as S, unref as n, normalizeClass as L, createSlots as T, withCtx as _, createElementBlock as w, resolveDynamicComponent as U, createCommentVNode as j, createElementVNode as J, toDisplayString as K } from "vue";
2
+ import { getFormModelFields as Q } from "../../../../utils/page-init-util.mjs";
3
+ import { setVariableValue as q, getVariableValue as X, formatVariableValue as Y, getFormPropName as P, setVariableValueWithProp as Z } from "../../../../utils/page-helper-util.mjs";
4
+ import { handleAfterInitEvent as ee, handleEvent as y } from "../../../../utils/events/event-util.mjs";
5
+ import { updateFormItemEditState as te } from "../../../../utils/events/validator-util.mjs";
6
+ import { getListCode as ae } from "../../../../utils/common-util.mjs";
7
+ import { getComponentRef as oe } from "../../../../utils/global-refs.mjs";
8
+ import { getAdditionalParamMap as ne } from "../../../../utils/events/standard-event.mjs";
9
+ import { $t as ie } from "../../../../utils/i18n-util.mjs";
10
+ import C from "../../../../utils/eventBus.mjs";
11
+ import { functions as re } from "../../../../utils/api/page-expose-util.mjs";
12
+ const le = { key: 0, style: { width: "100%", height: "100%" } }, ue = { key: 1, style: { width: "100%", height: "100%" }, class: "amb-widget-richtext-single" }, be = B({ __name: "custom-runtime", props: { pageContext: {}, configure: {} }, setup(a, { expose: $ }) {
13
+ const e = a, g = e.pageContext.entity ? e.pageContext.entity : {}, l = Q(e.pageContext, e.configure), u = G({ get: () => X(g, l), set(t) {
14
+ q(g, l, t);
15
+ } }), p = e.configure.runtime ? e.configure.runtime : {}, z = p.style, I = p.class, O = p.headerStyle, s = d(p.props ? p.props : {}), b = function(t) {
16
+ let o = {};
17
+ if (t) for (let c in t) {
18
+ const r = t[c];
19
+ o[c] = Y(e.pageContext, r);
20
+ }
21
+ return o;
22
+ }(p.customParams ? p.customParams : {}), h = ne(e.pageContext), v = d(e.configure.props && e.configure.props.base ? e.configure.props.base.name : null);
23
+ function V(t, o) {
24
+ Z(g, t, o);
25
+ }
26
+ function k(t) {
27
+ re.isHasFieldAuthPermission(e.configure) ? te(e.pageContext, t) : console.error("没有该字段的权限,dynamicFields=", l ? l.join(".") : "");
28
+ }
29
+ function R() {
30
+ const t = e.pageContext.tableUuids;
31
+ t && t.forEach((o) => {
32
+ const c = ae(e.pageContext.code, e.pageContext.version, e.configure.uuid), r = oe(e.pageContext, o);
33
+ r && r.restoreGridEdit(c);
34
+ });
35
+ }
36
+ e.configure.props.verification.custom && e.configure.props.verification.custom.enabled && (e.pageContext.customValidatorUuids || (e.pageContext.customValidatorUuids = []), e.pageContext.customValidatorUuids.push(e.configure.uuid));
37
+ const A = e.pageContext.code, m = d(l && l.length > 0 ? A + "__" + l.join("__") : null), i = d(null), E = d(null), D = d(null);
38
+ function F(t) {
39
+ y(u.value, e.pageContext, e.configure, t);
40
+ }
41
+ return H(() => {
42
+ C.$on(m.value + "-scanDone", (t) => {
43
+ const o = t.result;
44
+ q(g, l, o);
45
+ }), C.$on(m.value + "-pickFileDone", (t) => {
46
+ m.value, i.value.pickFileDone(t);
47
+ }), M(() => {
48
+ const t = u.value;
49
+ ee(t, e.pageContext, e.configure, { formItemRef: E.value, componentRef: i.value, titleRef: D.value, value: t, entity: e.pageContext.entity.data, pageData: e.pageContext.entity.page });
50
+ });
51
+ }), N(() => {
52
+ C.$off(m.value + "-scanDone"), C.$off(m.value + "-pickFileDone");
53
+ }), $({ getCustomRef: function() {
54
+ return i.value;
55
+ }, invokeCustomFunction: function(t, ...o) {
56
+ if (i.value && typeof i.value[t] == "function") return i.value[t](...o);
57
+ throw new Error(`执行失败:Function '${t}' not found in custom component`);
58
+ }, hasCustomFunction: function(t) {
59
+ return i.value && typeof i.value[t] == "function";
60
+ }, addRequiredClass: function() {
61
+ requiredClass.value = addRequiredClassUtil();
62
+ } }), (t, o) => {
63
+ const c = W("el-form-item");
64
+ return s.value.tittleShow ? (f(), x(c, { key: 0, ref_key: "formItemRef", ref: E, required: s.value.required, class: L(n(I)), "label-width": s.value.labelWidth, style: S(n(z)) }, T({ default: _(() => [v.value ? (f(), w("div", le, [(f(), x(U(v.value), { ref_key: "customRef", ref: i, size: s.value.size, entity: a.pageContext.entity.data, pageData: a.pageContext.entity.page, pageContext: a.pageContext, configureObj: a.configure, prop: n(P)(a.configure.props && a.configure.props.base ? a.configure.props.base.prop : null), "custom-params": n(b), modelValue: u.value, "onUpdate:modelValue": o[0] || (o[0] = (r) => u.value = r), disabled: s.value.state === "disabled", "additional-param-map": n(h), "component-id": m.value, onSetEntityValue: V, onSetCustomRules: k, onRestoreGridEdit: R, onHandleEvent: F, onChange: o[1] || (o[1] = (r) => n(y)(u.value, a.pageContext, a.configure, "change")) }, null, 40, ["size", "entity", "pageData", "pageContext", "configureObj", "prop", "custom-params", "modelValue", "disabled", "additional-param-map", "component-id"]))])) : j("", !0)]), _: 2 }, [s.value.tittleShow ? { name: "label", fn: _(() => [J("div", { ref_key: "titleRef", ref: D, style: S({ ...n(O) }), class: "amb-form-item-label" }, K(n(ie)(s.value.title)), 5)]), key: "0" } : void 0]), 1032, ["required", "class", "label-width", "style"])) : v.value ? (f(), w("div", ue, [(f(), x(U(v.value), { ref_key: "customRef", ref: i, entity: a.pageContext.entity.data, pageData: a.pageContext.entity.page, pageContext: a.pageContext, configureObj: a.configure, prop: n(P)(a.configure.props && a.configure.props.base ? a.configure.props.base.prop : null), "custom-params": n(b), modelValue: u.value, "onUpdate:modelValue": o[2] || (o[2] = (r) => u.value = r), disabled: s.value.state === "disabled", "additional-param-map": n(h), "component-id": m.value, onSetEntityValue: V, onSetCustomRules: k, onRestoreGridEdit: R, onHandleEvent: F, onChange: o[3] || (o[3] = (r) => n(y)(u.value, a.pageContext, a.configure, "change")) }, null, 40, ["entity", "pageData", "pageContext", "configureObj", "prop", "custom-params", "modelValue", "disabled", "additional-param-map", "component-id"]))])) : j("", !0);
65
+ };
66
+ } });
67
+ export {
68
+ be as default
69
+ };
@@ -0,0 +1,4 @@
1
+ import o from "./datepicker-runtime2.vue.mjs";
2
+ export {
3
+ o as default
4
+ };
@@ -0,0 +1,102 @@
1
+ import { defineComponent as $, ref as h, onMounted as I, nextTick as N, computed as U, resolveComponent as P, openBlock as y, createBlock as F, normalizeStyle as Y, unref as r, normalizeClass as W, createSlots as j, withCtx as M, createElementVNode as O, createElementBlock as G, Fragment as H, createTextVNode as J, toDisplayString as K } from "vue";
2
+ import { getFormModelFields as L } from "../../../../utils/page-init-util.mjs";
3
+ import { getDateShortCuts as Q } from "../../../../utils/form/date-shortcuts.mjs";
4
+ import { getModelFieldFromPageContext as X, getValueFromVariable as z, setVariableValue as p, getVariableValue as V, isDateDataType as Z } from "../../../../utils/page-helper-util.mjs";
5
+ import { handleAfterInitEvent as ee, getCustomFunc as ae, handleFormEvent as u } from "../../../../utils/events/event-util.mjs";
6
+ import le from "../common/title-suffix-element.vue.mjs";
7
+ import _ from "dayjs";
8
+ import { $t as te } from "../../../../utils/i18n-util.mjs";
9
+ import { addRequiredClassUtil as oe } from "../../../../utils/common-util.mjs";
10
+ import { DatePickerRange as re } from "agilebuilder-ui";
11
+ const me = $({ __name: "datepicker-runtime", props: { pageContext: {}, configure: {} }, setup(o, { expose: w }) {
12
+ var S;
13
+ const i = o, C = h(null), n = i.pageContext.entity ? i.pageContext.entity : {}, f = i.configure.runtime ? i.configure.runtime : {}, B = f.style, q = f.class, A = f.headerStyle, E = f.titleExceedStyle, e = h(f.props ? f.props : {});
14
+ let d = L(i.pageContext, i.configure, e.value.prop);
15
+ if (i.pageContext.modelFieldsMap && d && d.length > 0 && d[0] === "data") {
16
+ const l = X(d, i.pageContext);
17
+ l && function(a) {
18
+ const s = a.dataType;
19
+ Z(s) && (e.value.dateType === "year" && e.value.valueFormat === "YYYY" || e.value.dateType === "month" && e.value.valueFormat === "YYYY-MM") && (e.value.valueFormat = "x");
20
+ }(l);
21
+ }
22
+ let c = null, k = !1;
23
+ if (e.value.dateType && e.value.dateType.includes("range")) {
24
+ k = !0;
25
+ let l = e.value.prop2;
26
+ l && l.startsWith("${") || (l = "${page." + i.configure.uuid + "-2}");
27
+ const a = z(n, l, null);
28
+ if (l = l.substring(2, l.length - 1), c = l.split("."), !(a || n.data && (n.data.id || n.data.ID)) && e.value.defaultValue2) {
29
+ const s = z(n, e.value.defaultValue2);
30
+ if (s != null && s !== "") p(n, c, s);
31
+ else if (((S = e.value.moreDefaultValue2) == null ? void 0 : S.length) > 0) {
32
+ const g = e.value.moreDefaultValue2;
33
+ for (let b = 0; b < g.length; b++) {
34
+ const t = z(n, g[b]);
35
+ if (t != null && t !== "") {
36
+ p(n, c, t);
37
+ break;
38
+ }
39
+ }
40
+ }
41
+ }
42
+ }
43
+ const D = h(null), T = h(null), R = h(null);
44
+ function x(l, a) {
45
+ if (!l) return l;
46
+ if (a) {
47
+ typeof l != "number" || isNaN(l) || l.toString().length !== 4 || (l = l.toString());
48
+ try {
49
+ const s = _(l);
50
+ let g = null;
51
+ return g = a === "x" ? s.toDate().getTime() : _(l).format(a), g;
52
+ } catch (s) {
53
+ return console.error("日期值格式化错误", s), console.error(`value: ${l} ,valueFormat: ${e.value.valueFormat}`), l;
54
+ }
55
+ }
56
+ return l;
57
+ }
58
+ if (I(() => {
59
+ N(() => {
60
+ const l = v.value;
61
+ ee(l, i.pageContext, i.configure, { formItemRef: D.value, componentRef: T.value, titleRef: R.value, value: l, entity: i.pageContext.entity.data, pageData: i.pageContext.entity.page });
62
+ });
63
+ }), d) {
64
+ const l = V(n, d), a = x(l, e.value.valueFormat);
65
+ l !== a && p(n, d, a);
66
+ }
67
+ if (c) {
68
+ const l = V(n, c), a = x(l, e.value.valueFormat);
69
+ l !== a && p(n, c, a);
70
+ }
71
+ const v = U({ get() {
72
+ if (k) {
73
+ const l = [];
74
+ let a = V(n, d);
75
+ l.push(x(a, e.value.valueFormat));
76
+ let s = V(n, c);
77
+ return l.push(x(s, e.value.valueFormat)), l;
78
+ }
79
+ return x(V(n, d), e.value.valueFormat);
80
+ }, set(l) {
81
+ k ? Array.isArray(l) ? (p(n, d, l[0]), p(n, c, l[1]), C.value = "") : l === null && (p(n, d, null), p(n, c, null)) : (p(n, d, l), l != null && (C.value = ""));
82
+ } }), m = h(Q(e.value.dateScopeDetails, e.value.sourceType, e.value.dateType));
83
+ if (e.value.shortcutsFunc) {
84
+ const l = ae(i.pageContext, e.value.shortcutsFunc);
85
+ if (l) {
86
+ let a = l.apply(l, [{ pageContext: i.pageContext, configureObj: i.configure }]);
87
+ if (a) {
88
+ Array.isArray(a) || (a = [a]), m.value || (m.value = []);
89
+ for (let s of a) s.text && s.value && m.value.push(s);
90
+ }
91
+ }
92
+ }
93
+ return w({ addRequiredClass: function() {
94
+ C.value = oe();
95
+ } }), (l, a) => {
96
+ const s = P("el-time-picker"), g = P("el-date-picker"), b = P("el-form-item");
97
+ return y(), F(b, { ref_key: "formItemRef", ref: D, required: e.value.required, class: W(r(q) + (C.value ? " " + C.value : "")), "label-width": e.value.labelWidth, style: Y(r(B)) }, j({ default: M(() => [e.value.dateType == "time" || e.value.dateType == "timerange" ? (y(), F(s, { key: 0, ref_key: "componentRef", ref: T, "is-range": e.value.dateType == "timerange", style: { width: "100%" }, "range-separator": "-", clearable: e.value.clearable, disabled: e.value.state === "disabled", readonly: e.value.state === "readonly", size: e.value.size, placeholder: e.value.placeholder, "start-placeholder": e.value.placeholder, "end-placeholder": e.value.endPlaceholder ? e.value.endPlaceholder : e.value.placeholder, "unlink-panels": !0, format: e.value.format, "value-format": e.value.valueFormat, modelValue: v.value, "onUpdate:modelValue": a[0] || (a[0] = (t) => v.value = t), shortcuts: m.value, type: e.value.dateType, onChange: a[1] || (a[1] = (t) => r(u)(t, o.pageContext, o.configure, "change")), onBlur: a[2] || (a[2] = (t) => r(u)(t, o.pageContext, o.configure, "blur")), onFocus: a[3] || (a[3] = (t) => r(u)(t, o.pageContext, o.configure, "focus")), onVisibleChange: a[4] || (a[4] = (t) => r(u)(t, o.pageContext, o.configure, "visible-change")), onPanelChange: a[5] || (a[5] = (t) => r(u)(t, o.pageContext, o.configure, "panel-change")), onClear: a[6] || (a[6] = (t) => r(u)(t, o.pageContext, o.configure, "clear")) }, null, 8, ["is-range", "clearable", "disabled", "readonly", "size", "placeholder", "start-placeholder", "end-placeholder", "format", "value-format", "modelValue", "shortcuts", "type"])) : e.value.dateRangePickerMode !== "combined" && ["daterange", "datetimerange", "monthrange", "yearrange"].includes(e.value.dateType) ? (y(), F(r(re), { key: 1, modelValue: v.value, "onUpdate:modelValue": a[7] || (a[7] = (t) => v.value = t), type: e.value.dateType, disabled: e.value.state === "disabled", readonly: e.value.state === "readonly", clearable: e.value.clearable, format: e.value.format, "value-format": e.value.valueFormat, placeholder: e.value.placeholder, "start-placeholder": e.value.placeholder, "end-placeholder": e.value.endPlaceholder ? e.value.endPlaceholder : e.value.placeholder, size: e.value.size, shortcuts: m.value, onChange: a[8] || (a[8] = (t) => r(u)(t, o.pageContext, o.configure, "change")), onBlur: a[9] || (a[9] = (t) => r(u)(t, o.pageContext, o.configure, "blur")), onFocus: a[10] || (a[10] = (t) => r(u)(t, o.pageContext, o.configure, "focus")), onVisibleChange: a[11] || (a[11] = (t) => r(u)(t, o.pageContext, o.configure, "visible-change")), onPanelChange: a[12] || (a[12] = (t) => r(u)(t, o.pageContext, o.configure, "panel-change")), onClear: a[13] || (a[13] = (t) => r(u)(t, o.pageContext, o.configure, "clear")) }, null, 8, ["modelValue", "type", "disabled", "readonly", "clearable", "format", "value-format", "placeholder", "start-placeholder", "end-placeholder", "size", "shortcuts"])) : (y(), F(g, { key: 2, ref_key: "componentRef", ref: T, clearable: e.value.clearable, style: { width: "100%" }, "unlink-panels": !0, disabled: e.value.state === "disabled", readonly: e.value.state === "readonly", size: e.value.size, placeholder: e.value.placeholder, "start-placeholder": e.value.placeholder, "end-placeholder": e.value.endPlaceholder ? e.value.endPlaceholder : e.value.placeholder, format: e.value.format, "value-format": e.value.valueFormat, modelValue: v.value, "onUpdate:modelValue": a[14] || (a[14] = (t) => v.value = t), shortcuts: m.value, type: e.value.dateType, onChange: a[15] || (a[15] = (t) => r(u)(t, o.pageContext, o.configure, "change")), onBlur: a[16] || (a[16] = (t) => r(u)(t, o.pageContext, o.configure, "blur")), onFocus: a[17] || (a[17] = (t) => r(u)(t, o.pageContext, o.configure, "focus")), onVisibleChange: a[18] || (a[18] = (t) => r(u)(t, o.pageContext, o.configure, "visible-change")), onPanelChange: a[19] || (a[19] = (t) => r(u)(t, o.pageContext, o.configure, "panel-change")), onClear: a[20] || (a[20] = (t) => r(u)(t, o.pageContext, o.configure, "clear")) }, null, 8, ["clearable", "disabled", "readonly", "size", "placeholder", "start-placeholder", "end-placeholder", "format", "value-format", "modelValue", "shortcuts", "type"]))]), _: 2 }, [e.value.tittleShow ? { name: "label", fn: M(() => [O("div", { ref_key: "titleRef", ref: R, style: Y({ ...r(A), ...r(E) }) }, [e.value.prefixType ? (y(), F(le, { key: 0, pageContext: o.pageContext, property: e.value }, null, 8, ["pageContext", "property"])) : (y(), G(H, { key: 1 }, [J(K(r(te)(e.value.title)), 1)], 64))], 4)]), key: "0" } : void 0]), 1032, ["required", "class", "label-width", "style"]);
98
+ };
99
+ } });
100
+ export {
101
+ me as default
102
+ };
@@ -0,0 +1,4 @@
1
+ import o from "./depttree-runtime2.vue.mjs";
2
+ export {
3
+ o as default
4
+ };
@@ -0,0 +1,55 @@
1
+ import { defineComponent as O, ref as p, onMounted as A, nextTick as P, computed as U, watch as j, resolveComponent as w, openBlock as h, createBlock as z, normalizeStyle as I, unref as n, normalizeClass as G, createSlots as H, withCtx as R, createVNode as J, createElementVNode as K, createElementBlock as L, Fragment as Q, createTextVNode as X, toDisplayString as Y } from "vue";
2
+ import { getFormModelFields as Z } from "../../../../utils/page-init-util.mjs";
3
+ import { handleAfterInitEvent as ee, handleFormEvent as c } from "../../../../utils/events/event-util.mjs";
4
+ import te from "../common/title-suffix-element.vue.mjs";
5
+ import { $t as ae } from "../../../../utils/i18n-util.mjs";
6
+ import { setVariableValue as le, getVariableValue as T, getFormPropName as oe, getValueFromVariable as ne } from "../../../../utils/page-helper-util.mjs";
7
+ import { addRequiredClassUtil as re } from "../../../../utils/common-util.mjs";
8
+ const fe = O({ __name: "depttree-runtime", props: { pageContext: {}, configure: {} }, setup(x, { expose: _ }) {
9
+ const e = x, m = p(null), f = p([]), r = e.pageContext.entity ? e.pageContext.entity : {};
10
+ r.data || (r.data = {});
11
+ const g = r.data, q = r.page;
12
+ let i = Z(e.pageContext, e.configure);
13
+ const S = i.length > 0 ? i[i.length - 1] : e.configure.uuid, l = e.configure.runtime ? e.configure.runtime : {}, t = p(l.props ? l.props : {}), E = l.style, M = l.class, N = l.headerStyle, W = l.titleExceedStyle;
14
+ l.props.deptScope && (l.props.deptScope == "field" && l.props.deptScopeField ? (V(), function(a, s) {
15
+ if (a.indexOf("${fixed.") === 0) return;
16
+ const u = a.match(/\${(.*?)}/);
17
+ if (!u) return;
18
+ const d = u ? u[1].split(".") : [];
19
+ d && d.length > 0 && j(() => d.reduce((y, C) => y[C], e.pageContext.entity), (y, C) => {
20
+ s(y, C);
21
+ });
22
+ }(l.props.deptScopeField, (a, s) => {
23
+ V();
24
+ })) : l.props.deptScope == "depts" && l.props.deptScopeCodes && (f.value = l.props.deptScopeCodes.split(",")));
25
+ const F = p(null), b = p(null), k = p(null);
26
+ A(() => {
27
+ P(() => {
28
+ const a = g ? g[S] : null;
29
+ ee(a, e.pageContext, e.configure, { formItemRef: F.value, componentRef: b.value, titleRef: k.value, value: a, entity: e.pageContext.entity.data, pageData: e.pageContext.entity.page });
30
+ });
31
+ });
32
+ const B = U({ get: () => T(r, i), set(a) {
33
+ le(r, i, a), a != null && (m.value = "");
34
+ } }), o = t.value.autoSetFields ? t.value.autoSetFields : [];
35
+ let v = null;
36
+ function $(a, s) {
37
+ v ? v === a && (i.length > 0 ? c(T(r, i), e.pageContext, e.configure, "change") : c(s, e.pageContext, e.configure, "change")) : a === S && c(s, e.pageContext, e.configure, "change");
38
+ }
39
+ function D() {
40
+ c(null, e.pageContext, e.configure, "click");
41
+ }
42
+ function V() {
43
+ const a = ne(e.pageContext.entity, l.props.deptScopeField);
44
+ f.value = a ? a.split(",") : [];
45
+ }
46
+ return o.length - 1 > 0 && o[o.length - 1] && o[o.length - 1].model && (v = oe(o[o.length - 1].model)), _({ addRequiredClass: function() {
47
+ m.value = re();
48
+ } }), (a, s) => {
49
+ const u = w("OrganizationInput"), d = w("el-form-item");
50
+ return h(), z(d, { ref_key: "formItemRef", ref: F, required: t.value.required, class: G(n(M) + (m.value ? " " + m.value : "")), "label-width": t.value.labelWidth, style: I(n(E)) }, H({ default: R(() => [J(u, { ref_key: "componentRef", ref: b, disabled: t.value.state == "disabled", multiple: t.value.multiple, treeType: t.value.treeType, value: B.value, models: n(g), departmentInfo: f.value, limitFilterColumn: t.value.limitFilterColumn, pageModels: n(q), fields: n(o), inputShowWay: t.value.inputShowWay, autosize: t.value.autosize, size: t.value.size, displayItem: t.value.displayItem, separator: t.value.separator, onSetValue: $, onShowTree: D }, null, 8, ["disabled", "multiple", "treeType", "value", "models", "departmentInfo", "limitFilterColumn", "pageModels", "fields", "inputShowWay", "autosize", "size", "displayItem", "separator"])]), _: 2 }, [t.value.tittleShow ? { name: "label", fn: R(() => [K("div", { ref_key: "titleRef", ref: k, style: I({ ...n(N), ...n(W) }), class: "amb-form-item-label" }, [t.value.prefixType ? (h(), z(te, { key: 0, pageContext: x.pageContext, property: t.value }, null, 8, ["pageContext", "property"])) : (h(), L(Q, { key: 1 }, [X(Y(n(ae)(t.value.title)), 1)], 64))], 4)]), key: "0" } : void 0]), 1032, ["required", "class", "label-width", "style"]);
51
+ };
52
+ } });
53
+ export {
54
+ fe as default
55
+ };
@@ -0,0 +1,4 @@
1
+ import o from "./divider-runtime2.vue.mjs";
2
+ export {
3
+ o as default
4
+ };
@@ -0,0 +1,24 @@
1
+ import { defineComponent as m, ref as u, computed as v, onMounted as g, nextTick as y, resolveComponent as C, openBlock as x, createBlock as k, unref as p, withCtx as b, createElementVNode as _, normalizeStyle as h, toDisplayString as E } from "vue";
2
+ import { formatVariableValue as S } from "../../../../utils/page-helper-util.mjs";
3
+ import { handleAfterInitEvent as V, handleFormEvent as B } from "../../../../utils/events/event-util.mjs";
4
+ const w = m({ __name: "divider-runtime", props: { pageContext: {}, configure: {} }, setup(o) {
5
+ const e = o, a = e.configure.runtime ? e.configure.runtime : {}, c = a.headerStyle, n = u(a.props ? a.props : {});
6
+ let r = n.value.value;
7
+ const i = v(() => {
8
+ if (!r) return "";
9
+ const t = S(e.pageContext, r);
10
+ return t == null || t == null ? "" : t;
11
+ }), l = u(null);
12
+ return g(() => {
13
+ y(() => {
14
+ const t = i.value;
15
+ V(t, e.pageContext, e.configure, { componentRef: l.value, value: t, entity: e.pageContext.entity.data, pageData: e.pageContext.entity.page });
16
+ });
17
+ }), (t, s) => {
18
+ const d = C("el-divider");
19
+ return x(), k(d, { ref_key: "componentRef", ref: l, direction: n.value.direction, "border-style": n.value.borderType, "content-position": n.value.titlePosition, onClick: s[0] || (s[0] = (f) => p(B)(f, o.pageContext, o.configure, "click")) }, { default: b(() => [_("div", { style: h(p(c)) }, E(i.value), 5)]), _: 1 }, 8, ["direction", "border-style", "content-position"]);
20
+ };
21
+ } });
22
+ export {
23
+ w as default
24
+ };
@@ -0,0 +1,4 @@
1
+ import o from "./fileupload-runtime2.vue.mjs";
2
+ export {
3
+ o as default
4
+ };
@@ -0,0 +1,91 @@
1
+ import { defineComponent as ne, ref as s, watch as se, onMounted as re, nextTick as ue, onUnmounted as pe, resolveComponent as de, openBlock as k, createBlock as I, normalizeStyle as H, unref as r, normalizeClass as fe, createSlots as me, withCtx as J, createCommentVNode as K, createElementVNode as ce, toDisplayString as ve } from "vue";
2
+ import { getVariableValue as b, setVariableValue as L } from "../../../../utils/page-helper-util.mjs";
3
+ import { handleAfterInitEvent as ge, fileUploadBeforeUpload as he, fileUploadBeforeDelete as ye, fileUploadUploaded as Ce, fileUploadDeleted as we } from "../../../../utils/events/event-util.mjs";
4
+ import { getRelativeBaseUrl as xe, http as be, FsUploadNew as Q } from "agilebuilder-ui";
5
+ import X from "../../../../utils/eventBus.mjs";
6
+ import { $t as Y } from "../../../../utils/i18n-util.mjs";
7
+ import { addRequiredClassUtil as ke } from "../../../../utils/common-util.mjs";
8
+ const ze = ne({ __name: "fileupload-runtime", props: { pageContext: {}, configure: {} }, setup(f, { expose: Z }) {
9
+ var q, B, W, $, E, A, M;
10
+ const e = f, g = s(null), p = e.configure.runtime ? e.configure.runtime : {}, l = s(p.props ? p.props : {}), ee = p.style, le = p.class, oe = p.headerStyle, ae = p.titleExceedStyle, h = e.pageContext.entity ? e.pageContext.entity : {}, S = e.configure.props.base ? e.configure.props.base : {}, n = T(S.prop), N = T(S.propName);
11
+ let y = s({});
12
+ y.value.isShowWatermark = ((B = (q = e.configure.props) == null ? void 0 : q.watermark) == null ? void 0 : B.isShowWatermark) === void 0 ? "true" : ((W = e.configure.props) == null ? void 0 : W.watermark.isShowWatermark) + "", y.value.content = (E = ($ = e.configure.props) == null ? void 0 : $.watermark) != null && E.content ? (M = (A = e.configure.props) == null ? void 0 : A.watermark) == null ? void 0 : M.content : "", n && n.length > 1 && se(() => e.pageContext.entity[n[0]][n[1]], (o) => {
13
+ P(b(h, n));
14
+ });
15
+ const te = e.pageContext.code, m = s(n ? te + "__" + n.join("__") : null), ie = b(h, n), C = s(null), c = s(!1), i = s([]), v = s({});
16
+ function P(o) {
17
+ if (o) {
18
+ const a = o.split(",");
19
+ if (a.length > 0) {
20
+ const t = xe(window.$vueApp.config.globalProperties.baseAPI) + "/component/fs-upload/search-file-metadata";
21
+ be.post(t, a).then((u) => {
22
+ i.value = [];
23
+ const G = [], w = {};
24
+ u.forEach((d) => {
25
+ w[d.uuid] = d;
26
+ });
27
+ for (let d = 0; d < a.length; d++) {
28
+ const x = a[d];
29
+ G.push(w[x].fileName), i.value.push({ showName: w[x].fileName, serverPath: x, fileSize: w[x].fileSize });
30
+ }
31
+ l.value.displayType === "input" && (v.value.showName = G.join(","), v.value.serverPath = a.join(","));
32
+ }).finally(() => {
33
+ c.value = !0;
34
+ });
35
+ } else c.value = !0;
36
+ } else i.value = [], v.value = {}, c.value = !0;
37
+ }
38
+ function T(o) {
39
+ return o ? (o.startsWith("${") && (o = o.substring(2, o.length - 1)), o.split(".")) : [];
40
+ }
41
+ function U(o) {
42
+ return e.pageContext.fileuploadInfo || (e.pageContext.fileuploadInfo = []), e.pageContext.fileuploadInfo.findIndex((a) => a.uuid === e.configure.uuid) === -1 && e.pageContext.fileuploadInfo.push({ uuid: e.configure.uuid, label: Y(l.value.title) }), o.pageContext || (o.pageContext = e.pageContext), o.configure || (o.configureObj = e.configure), he(o);
43
+ }
44
+ function _() {
45
+ if (e.pageContext.fileuploadInfo, e.configure.uuid, e.pageContext.fileuploadInfo && e.configure.uuid) {
46
+ const o = e.pageContext.fileuploadInfo.findIndex((a) => a.uuid === e.configure.uuid);
47
+ o !== -1 && e.pageContext.fileuploadInfo.splice(o, 1);
48
+ }
49
+ e.pageContext.fileuploadInfo;
50
+ }
51
+ function z(o) {
52
+ _();
53
+ }
54
+ function R(o) {
55
+ return ye(e.pageContext, e.configure, o);
56
+ }
57
+ P(ie);
58
+ const D = (o, a, t) => {
59
+ var u;
60
+ _(), O(), u = { response: o, uploadFile: a, uploadFiles: t }, Ce(e.pageContext, e.configure, u);
61
+ }, F = (o) => {
62
+ var a;
63
+ O(), a = { file: o }, we(e.pageContext, e.configure, a);
64
+ }, O = () => {
65
+ const o = [], a = [];
66
+ if (l.value.limit && i.value.length > l.value.limit) {
67
+ const t = i.value.length - l.value.limit;
68
+ for (let u = 0; u < t; u++) i.value.shift();
69
+ }
70
+ for (let t = 0; t < i.value.length; t++) o.push(i.value[t].showName), a.push(i.value[t].serverPath);
71
+ L(e.pageContext.entity, n, a.join(",")), L(e.pageContext.entity, N, o.join(",")), a.length > 0 && (g.value = "");
72
+ }, j = s(null), V = s(null);
73
+ return re(() => {
74
+ X.$on(m.value + "-pickFileDone", (o) => {
75
+ m.value, C.value.pickFileDone(o);
76
+ }), ue(() => {
77
+ const o = b(h, n), a = { showName: b(h, N), serverPath: o };
78
+ ge(a, e.pageContext, e.configure, { formItemRef: j.value, componentRef: C.value, titleRef: V.value, value: a, entity: e.pageContext.entity.data, pageData: e.pageContext.entity.page });
79
+ });
80
+ }), pe(() => {
81
+ X.$off(m.value + "-pickFileDone");
82
+ }), Z({ addRequiredClass: function() {
83
+ g.value = ke();
84
+ } }), (o, a) => {
85
+ const t = de("el-form-item");
86
+ return l.value.tittleShow ? (k(), I(t, { key: 0, ref_key: "formItemRef", ref: j, required: l.value.required, class: fe(r(le) + (g.value ? " " + g.value : "")), "label-width": l.value.labelWidth, style: H(r(ee)) }, me({ default: J(() => [c.value ? (k(), I(r(Q), { key: 0, ref_key: "fileUploadRef", ref: C, style: { width: "100%" }, disabled: l.value.state === "disabled", displayType: l.value.displayType, accept: l.value.accept, multiple: l.value.multiple, placeholder: l.value.placeholder, limit: l.value.limit, "limit-file-size": l.value.limitFileSize, "disabled-no-preview": l.value.disabledNoPreview, "disabled-no-download": l.value.disabledNoDownload, openCameraOrChoosePhoto: l.value.openCameraOrChoosePhoto, "sort-type": l.value.sortType, "file-info": v.value, "file-list": i.value, "system-code": f.pageContext.systemCode, componentId: m.value, watermark: r(y), "on-success": D, "on-remove": F, "before-upload": U, "on-error": z, "before-remove": R, pageContext: f.pageContext, "file-show-type": l.value.fileShowType }, null, 8, ["disabled", "displayType", "accept", "multiple", "placeholder", "limit", "limit-file-size", "disabled-no-preview", "disabled-no-download", "openCameraOrChoosePhoto", "sort-type", "file-info", "file-list", "system-code", "componentId", "watermark", "pageContext", "file-show-type"])) : K("", !0)]), _: 2 }, [l.value.tittleShow ? { name: "label", fn: J(() => [ce("div", { ref_key: "titleRef", ref: V, style: H({ ...r(oe), ...r(ae) }), class: "amb-form-item-label" }, ve(r(Y)(l.value.title)), 5)]), key: "0" } : void 0]), 1032, ["required", "class", "label-width", "style"])) : c.value ? (k(), I(r(Q), { key: 1, ref_key: "fileUploadRef", ref: C, style: { width: "100%" }, disabled: l.value.state === "disabled", displayType: l.value.displayType, accept: l.value.accept, multiple: l.value.multiple, placeholder: l.value.placeholder, limit: l.value.limit, "limit-file-size": l.value.limitFileSize, "disabled-no-preview": l.value.disabledNoPreview, "disabled-no-download": l.value.disabledNoDownload, openCameraOrChoosePhoto: l.value.openCameraOrChoosePhoto, "sort-type": l.value.sortType, "file-info": v.value, "file-list": i.value, "system-code": f.pageContext.systemCode, componentId: m.value, watermark: r(y), "on-success": D, "on-remove": F, "before-upload": U, "on-error": z, "before-remove": R, pageContext: f.pageContext, "file-show-type": l.value.fileShowType }, null, 8, ["disabled", "displayType", "accept", "multiple", "placeholder", "limit", "limit-file-size", "disabled-no-preview", "disabled-no-download", "openCameraOrChoosePhoto", "sort-type", "file-info", "file-list", "system-code", "componentId", "watermark", "pageContext", "file-show-type"])) : K("", !0);
87
+ };
88
+ } });
89
+ export {
90
+ ze as default
91
+ };
@@ -0,0 +1,4 @@
1
+ import o from "./imageupload-runtime2.vue.mjs";
2
+ export {
3
+ o as default
4
+ };
@@ -0,0 +1,88 @@
1
+ import { defineComponent as ie, ref as n, onMounted as ne, nextTick as re, onUnmounted as ue, resolveComponent as se, openBlock as b, createBlock as k, normalizeStyle as G, unref as r, normalizeClass as pe, createSlots as fe, withCtx as H, createCommentVNode as J, createElementVNode as de, toDisplayString as ce } from "vue";
2
+ import { getVariableValue as I, setVariableValue as K } from "../../../../utils/page-helper-util.mjs";
3
+ import { handleAfterInitEvent as me, fileUploadBeforeUpload as ve, fileUploadBeforeDelete as ge, fileUploadUploaded as he, fileUploadDeleted as ye } from "../../../../utils/events/event-util.mjs";
4
+ import { FsImageUpload as L, getRelativeBaseUrl as Ce, http as xe } from "agilebuilder-ui";
5
+ import Q from "../../../../utils/eventBus.mjs";
6
+ import { $t as X } from "../../../../utils/i18n-util.mjs";
7
+ import { addRequiredClassUtil as we } from "../../../../utils/common-util.mjs";
8
+ const Ne = ie({ __name: "imageupload-runtime", props: { pageContext: {}, configure: {} }, setup(p, { expose: Y }) {
9
+ var V, q, B, W, $, E, A;
10
+ const e = p, v = n(null), u = e.configure.runtime ? e.configure.runtime : {}, a = n(u.props ? u.props : {}), Z = u.style, ee = u.class, te = u.headerStyle, ae = u.titleExceedStyle, w = e.pageContext.entity ? e.pageContext.entity : {}, S = e.configure.props.base ? e.configure.props.base : {}, f = T(S.prop), P = T(S.propName);
11
+ let g = n({});
12
+ g.value.isShowWatermark = ((q = (V = e.configure.props) == null ? void 0 : V.watermark) == null ? void 0 : q.isShowWatermark) === void 0 ? "true" : ((B = e.configure.props) == null ? void 0 : B.watermark.isShowWatermark) + "", g.value.content = ($ = (W = e.configure.props) == null ? void 0 : W.watermark) != null && $.content ? (A = (E = e.configure.props) == null ? void 0 : E.watermark) == null ? void 0 : A.content : "";
13
+ const oe = e.pageContext.code, d = n(f ? oe + "__" + f.join("__") : null), le = I(w, f), h = n(null), c = n(!1), i = n([]), m = n({});
14
+ function T(t) {
15
+ return t ? (t.startsWith("${") && (t = t.substring(2, t.length - 1)), t.split(".")) : [];
16
+ }
17
+ function U(t) {
18
+ return e.pageContext.fileuploadInfo || (e.pageContext.fileuploadInfo = []), e.pageContext.fileuploadInfo.findIndex((o) => o.uuid === e.configure.uuid) === -1 && e.pageContext.fileuploadInfo.push({ uuid: e.configure.uuid, label: X(a.value.title) }), t.pageContext || (t.pageContext = e.pageContext), t.configure || (t.configureObj = e.configure), ve(t);
19
+ }
20
+ function N() {
21
+ if (e.pageContext.fileuploadInfo, e.configure.uuid, e.pageContext.fileuploadInfo && e.configure.uuid) {
22
+ const t = e.pageContext.fileuploadInfo.findIndex((o) => o.uuid === e.configure.uuid);
23
+ t !== -1 && e.pageContext.fileuploadInfo.splice(t, 1);
24
+ }
25
+ e.pageContext.fileuploadInfo;
26
+ }
27
+ function _(t) {
28
+ N();
29
+ }
30
+ function z(t) {
31
+ return t.pageContext || (t.pageContext = e.pageContext), t.configure || (t.configureObj = e.configure), ge(e.pageContext, e.configure, t);
32
+ }
33
+ (function(t) {
34
+ if (t) {
35
+ const o = t.split(",");
36
+ if (o.length > 0) {
37
+ const l = Ce(window.$vueApp.config.globalProperties.baseAPI) + "/component/fs-upload/search-file-metadata";
38
+ xe.post(l, o).then((y) => {
39
+ i.value = [];
40
+ const M = [], C = {};
41
+ y.forEach((s) => {
42
+ C[s.uuid] = s;
43
+ });
44
+ for (let s = 0; s < o.length; s++) {
45
+ const x = o[s];
46
+ M.push(C[x].fileName), i.value.push({ showName: C[x].fileName, serverPath: x, fileSize: C[x].fileSize });
47
+ }
48
+ a.value.displayType === "input" && (m.value.showName = M.join(","), m.value.serverPath = o.join(","));
49
+ }).finally(() => {
50
+ c.value = !0;
51
+ });
52
+ } else c.value = !0;
53
+ } else i.value = [], m.value = {}, c.value = !0;
54
+ })(le);
55
+ const R = (t, o) => {
56
+ var l;
57
+ N(), O(), l = { response: t, uploadFile: o }, he(e.pageContext, e.configure, l);
58
+ }, D = (t) => {
59
+ var o;
60
+ O(), o = { file: t }, ye(e.pageContext, e.configure, o);
61
+ }, O = () => {
62
+ const t = [], o = [];
63
+ if (a.value.limit && i.value.length > a.value.limit) {
64
+ const l = i.value.length - a.value.limit;
65
+ for (let y = 0; y < l; y++) i.value.shift();
66
+ }
67
+ for (let l = 0; l < i.value.length; l++) t.push(i.value[l].showName), o.push(i.value[l].serverPath);
68
+ K(e.pageContext.entity, f, o.join(",")), K(e.pageContext.entity, P, t.join(",")), o.length > 0 && (v.value = "");
69
+ }, j = n(null), F = n(null);
70
+ return ne(() => {
71
+ Q.$on(d.value + "-pickFileDone", (t) => {
72
+ d.value, h.value.pickFileDone(t);
73
+ }), re(() => {
74
+ const t = I(w, f), o = { showName: I(w, P), serverPath: t };
75
+ me(o, e.pageContext, e.configure, { formItemRef: j.value, componentRef: h.value, titleRef: F.value, value: o, entity: e.pageContext.entity.data, pageData: e.pageContext.entity.page });
76
+ });
77
+ }), ue(() => {
78
+ Q.$off(d.value + "-pickFileDone");
79
+ }), Y({ addRequiredClass: function() {
80
+ v.value = we();
81
+ } }), (t, o) => {
82
+ const l = se("el-form-item");
83
+ return a.value.tittleShow ? (b(), k(l, { key: 0, ref_key: "formItemRef", ref: j, required: a.value.required, class: pe(r(ee) + (v.value ? " " + v.value : "")), "label-width": a.value.labelWidth, style: G(r(Z)) }, fe({ default: H(() => [c.value ? (b(), k(r(L), { key: 0, ref_key: "fileUploadRef", ref: h, style: { width: "100%" }, accept: a.value.accept && Object.keys(a.value.accept).length > 0 ? a.value.accept : "image/*", disabled: a.value.state === "disabled", displayType: a.value.displayType, multiple: a.value.multiple, placeholder: a.value.placeholder, limit: a.value.limit, "limit-file-size": a.value.limitFileSize, "disabled-no-download": a.value.disabledNoDownload, openCameraOrChoosePhoto: a.value.openCameraOrChoosePhoto, "sort-type": a.value.sortType, "file-info": m.value, "file-list": i.value, "system-code": p.pageContext.systemCode, componentId: d.value, watermark: r(g), "on-success": R, "on-remove": D, "before-upload": U, "before-remove": z, "on-error": _, pageContext: p.pageContext, "file-show-type": a.value.fileShowType }, null, 8, ["accept", "disabled", "displayType", "multiple", "placeholder", "limit", "limit-file-size", "disabled-no-download", "openCameraOrChoosePhoto", "sort-type", "file-info", "file-list", "system-code", "componentId", "watermark", "pageContext", "file-show-type"])) : J("", !0)]), _: 2 }, [a.value.tittleShow ? { name: "label", fn: H(() => [de("div", { ref_key: "titleRef", ref: F, style: G({ ...r(te), ...r(ae) }), class: "amb-form-item-label" }, ce(r(X)(a.value.title)), 5)]), key: "0" } : void 0]), 1032, ["required", "class", "label-width", "style"])) : c.value ? (b(), k(r(L), { key: 1, ref_key: "fileUploadRef", ref: h, style: { width: "100%" }, accept: a.value.accept, disabled: a.value.state === "disabled", displayType: a.value.displayType, multiple: a.value.multiple, placeholder: a.value.placeholder, limit: a.value.limit, "limit-file-size": a.value.limitFileSize, "disabled-no-download": a.value.disabledNoDownload, openCameraOrChoosePhoto: a.value.openCameraOrChoosePhoto, "sort-type": a.value.sortType, "file-info": m.value, "file-list": i.value, "system-code": p.pageContext.systemCode, componentId: d.value, watermark: r(g), "on-success": R, "on-remove": D, "before-upload": U, "before-remove": z, "on-error": _, pageContext: p.pageContext, "file-show-type": a.value.fileShowType }, null, 8, ["accept", "disabled", "displayType", "multiple", "placeholder", "limit", "limit-file-size", "disabled-no-download", "openCameraOrChoosePhoto", "sort-type", "file-info", "file-list", "system-code", "componentId", "watermark", "pageContext", "file-show-type"])) : J("", !0);
84
+ };
85
+ } });
86
+ export {
87
+ Ne as default
88
+ };
@@ -0,0 +1,4 @@
1
+ import o from "./input-number-runtime2.vue.mjs";
2
+ export {
3
+ o as default
4
+ };
@@ -0,0 +1,28 @@
1
+ import { defineComponent as z, ref as u, computed as B, onMounted as E, nextTick as F, resolveComponent as x, openBlock as m, createBlock as C, normalizeStyle as b, unref as o, normalizeClass as I, createSlots as T, withCtx as h, createVNode as D, createElementVNode as N, createElementBlock as U, Fragment as A, createTextVNode as M, toDisplayString as W } from "vue";
2
+ import { getFormModelFields as j } from "../../../../utils/page-init-util.mjs";
3
+ import { setVariableValue as G, getVariableValue as H } from "../../../../utils/page-helper-util.mjs";
4
+ import { handleAfterInitEvent as $, handleFormEvent as d } from "../../../../utils/events/event-util.mjs";
5
+ import J from "../common/title-suffix-element.vue.mjs";
6
+ import { $t as K } from "../../../../utils/i18n-util.mjs";
7
+ import { addRequiredClassUtil as L } from "../../../../utils/common-util.mjs";
8
+ const te = z({ __name: "input-number-runtime", props: { pageContext: {}, configure: {} }, setup(a, { expose: k }) {
9
+ const t = a, i = u(null), c = t.pageContext.entity ? t.pageContext.entity : {};
10
+ let f = j(t.pageContext, t.configure);
11
+ const p = B({ get: () => H(c, f), set(s) {
12
+ G(c, f, s), s != null && (i.value = "");
13
+ } }), r = t.configure.runtime ? t.configure.runtime : {}, V = r.style, R = r.class, S = r.headerStyle, _ = r.titleExceedStyle, e = u(r.props ? r.props : {}), v = u(null), g = u(null), y = u(null);
14
+ return E(() => {
15
+ F(() => {
16
+ const s = p.value;
17
+ $(s, t.pageContext, t.configure, { formItemRef: v.value, componentRef: g.value, titleRef: y.value, value: s, entity: t.pageContext.entity.data, pageData: t.pageContext.entity.page });
18
+ });
19
+ }), k({ addRequiredClass: function() {
20
+ i.value = L();
21
+ } }), (s, l) => {
22
+ const q = x("el-input-number"), w = x("el-form-item");
23
+ return m(), C(w, { ref_key: "formItemRef", ref: v, required: e.value.required, class: I(o(R) + (i.value ? " " + i.value : "")), "label-width": e.value.labelWidth, style: b(o(V)) }, T({ default: h(() => [D(q, { ref_key: "componentRef", ref: g, disabled: e.value.state === "disabled", readonly: e.value.state === "readonly", controls: e.value.showButton, size: e.value.size, placeholder: e.value.placeholder, modelValue: p.value, "onUpdate:modelValue": l[0] || (l[0] = (n) => p.value = n), precision: e.value.precision, step: e.value.step, min: e.value.min, max: e.value.max, onChange: l[1] || (l[1] = (n) => o(d)(n, a.pageContext, a.configure, "change")), onBlur: l[2] || (l[2] = (n) => o(d)(n, a.pageContext, a.configure, "blur")), onFocus: l[3] || (l[3] = (n) => o(d)(n, a.pageContext, a.configure, "focus")) }, null, 8, ["disabled", "readonly", "controls", "size", "placeholder", "modelValue", "precision", "step", "min", "max"])]), _: 2 }, [e.value.tittleShow ? { name: "label", fn: h(() => [N("div", { ref_key: "titleRef", ref: y, style: b({ ...o(S), ...o(_) }), class: "amb-form-item-label" }, [e.value.prefixType ? (m(), C(J, { key: 0, pageContext: a.pageContext, property: e.value }, null, 8, ["pageContext", "property"])) : (m(), U(A, { key: 1 }, [M(W(o(K)(e.value.title)), 1)], 64))], 4)]), key: "0" } : void 0]), 1032, ["required", "class", "label-width", "style"]);
24
+ };
25
+ } });
26
+ export {
27
+ te as default
28
+ };
@@ -0,0 +1,4 @@
1
+ import o from "./inputtext-runtime2.vue.mjs";
2
+ export {
3
+ o as default
4
+ };