super-page-runtime 2.3.36 → 2.3.37-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 (632) 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 +5 -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 +411 -0
  19. package/dist/es/components/runtime/utils/events/print-label.mjs +100 -0
  20. package/dist/es/components/runtime/utils/events/standard-event.mjs +1164 -0
  21. package/dist/es/components/runtime/utils/events/validator-util.mjs +349 -0
  22. package/dist/es/components/runtime/utils/form/date-shortcuts.mjs +36 -0
  23. package/dist/es/components/runtime/utils/form/scan-util.mjs +88 -0
  24. package/dist/es/components/runtime/utils/global-refs.mjs +56 -0
  25. package/dist/es/components/runtime/utils/i18n-util.mjs +14 -0
  26. package/dist/es/components/runtime/utils/interfaces/page-design-types.mjs +4 -0
  27. package/dist/es/components/runtime/utils/page-helper-util.mjs +377 -0
  28. package/dist/es/components/runtime/utils/page-init-util.mjs +260 -0
  29. package/dist/es/components/runtime/utils/{page-permission-util.js → page-permission-util.mjs} +20 -21
  30. package/dist/es/components/runtime/utils/page-store.mjs +53 -0
  31. package/dist/es/components/runtime/utils/store-util.mjs +13 -0
  32. package/dist/es/components/runtime/utils/table-utils.mjs +84 -0
  33. package/dist/es/components/runtime/utils/tree-utils.mjs +58 -0
  34. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.mjs +4 -0
  35. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.mjs +29 -0
  36. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.mjs +7 -0
  37. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.mjs +21 -0
  38. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.mjs +4 -0
  39. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.mjs +41 -0
  40. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.mjs +4 -0
  41. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.mjs +6 -0
  42. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.mjs +4 -0
  43. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.mjs +20 -0
  44. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.mjs +7 -0
  45. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.mjs +53 -0
  46. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.mjs +14 -0
  47. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.mjs +4 -0
  48. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.mjs +13 -0
  49. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.mjs +4 -0
  50. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.mjs +59 -0
  51. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.mjs +4 -0
  52. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.mjs +7 -0
  53. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.mjs +52 -0
  54. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.mjs +7 -0
  55. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.mjs +35 -0
  56. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.mjs +7 -0
  57. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.mjs +46 -0
  58. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.mjs +7 -0
  59. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.mjs +35 -0
  60. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.mjs +7 -0
  61. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.mjs +35 -0
  62. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.mjs +410 -0
  63. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.mjs +6 -0
  64. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.mjs +4 -0
  65. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.mjs +10 -0
  66. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.mjs +4 -0
  67. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.mjs +33 -0
  68. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.mjs +4 -0
  69. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.mjs +15 -0
  70. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.mjs +4 -0
  71. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.mjs +4 -0
  72. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.mjs +252 -0
  73. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.mjs +20 -0
  74. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.mjs +4 -0
  75. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.mjs +35 -0
  76. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.mjs +4 -0
  77. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.mjs +33 -0
  78. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.mjs +4 -0
  79. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.mjs +18 -0
  80. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.mjs +4 -0
  81. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.mjs +18 -0
  82. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.mjs +4 -0
  83. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.mjs +22 -0
  84. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.mjs +4 -0
  85. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.mjs +19 -0
  86. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.mjs +4 -0
  87. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.mjs +35 -0
  88. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.mjs +4 -0
  89. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.mjs +19 -0
  90. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.mjs +4 -0
  91. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.mjs +7 -0
  92. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.mjs +29 -0
  93. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.mjs +4 -0
  94. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.mjs +20 -0
  95. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.mjs +4 -0
  96. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.mjs +17 -0
  97. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.mjs +7 -0
  98. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.mjs +29 -0
  99. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.mjs +7 -0
  100. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.mjs +81 -0
  101. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.mjs +4 -0
  102. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.mjs +25 -0
  103. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.mjs +4 -0
  104. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.mjs +25 -0
  105. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.mjs +4 -0
  106. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.mjs +43 -0
  107. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.mjs +7 -0
  108. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.mjs +96 -0
  109. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.mjs +7 -0
  110. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.mjs +46 -0
  111. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.mjs +4 -0
  112. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.mjs +69 -0
  113. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.mjs +361 -0
  114. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.mjs +4 -0
  115. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.mjs +323 -0
  116. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.mjs +4 -0
  117. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.mjs +4 -0
  118. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.mjs +86 -0
  119. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.mjs +7 -0
  120. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.mjs +132 -0
  121. package/dist/es/components/runtime/views/assemblys/error-render.vue.mjs +5 -0
  122. package/dist/es/components/runtime/views/assemblys/error-render.vue2.mjs +4 -0
  123. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.mjs +4 -0
  124. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.mjs +63 -0
  125. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.mjs +36 -0
  126. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.mjs +4 -0
  127. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.mjs +4 -0
  128. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.mjs +69 -0
  129. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.mjs +4 -0
  130. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.mjs +102 -0
  131. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.mjs +4 -0
  132. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.mjs +55 -0
  133. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.mjs +4 -0
  134. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.mjs +24 -0
  135. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.mjs +4 -0
  136. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.mjs +91 -0
  137. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.mjs +4 -0
  138. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.mjs +28 -0
  139. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.mjs +4 -0
  140. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.mjs +80 -0
  141. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.mjs +7 -0
  142. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.mjs +37 -0
  143. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.mjs +4 -0
  144. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.mjs +42 -0
  145. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.mjs +7 -0
  146. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.mjs +16 -0
  147. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.mjs +4 -0
  148. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.mjs +82 -0
  149. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.mjs +8 -0
  150. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.mjs +195 -0
  151. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.mjs +7 -0
  152. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.mjs +150 -0
  153. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.mjs +4 -0
  154. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.mjs +16 -0
  155. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.mjs +4 -0
  156. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.mjs +36 -0
  157. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.mjs +4 -0
  158. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.mjs +43 -0
  159. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.mjs +7 -0
  160. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.mjs +28 -0
  161. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.mjs +72 -0
  162. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.mjs +4 -0
  163. package/dist/es/components/runtime/views/assemblys/object-render.vue.mjs +153 -0
  164. package/dist/es/components/runtime/views/assemblys/object-render.vue2.mjs +4 -0
  165. package/dist/es/components/runtime/views/assemblys/page-bottom.vue.mjs +9 -0
  166. package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.mjs +4 -0
  167. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.mjs +7 -0
  168. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.mjs +47 -0
  169. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.mjs +7 -0
  170. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.mjs +28 -0
  171. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.mjs +7 -0
  172. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.mjs +45 -0
  173. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.mjs +4 -0
  174. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.mjs +20 -0
  175. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.mjs +4 -0
  176. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.mjs +23 -0
  177. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.mjs +7 -0
  178. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.mjs +30 -0
  179. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.mjs +4 -0
  180. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.mjs +27 -0
  181. package/dist/es/components/runtime/views/home-chart.vue.mjs +46 -0
  182. package/dist/es/components/runtime/views/home-chart.vue2.mjs +4 -0
  183. package/dist/es/components/runtime/views/super-page-dialog.vue.mjs +26 -0
  184. package/dist/es/components/runtime/views/super-page-dialog.vue3.mjs +5 -0
  185. package/dist/es/components/runtime/views/super-page.vue.d.ts +2 -2
  186. package/dist/es/components/runtime/views/super-page.vue.mjs +7 -0
  187. package/dist/es/components/runtime/views/super-page.vue2.mjs +298 -0
  188. package/dist/es/index.mjs +30 -0
  189. package/dist/es/style.css +1 -1025
  190. package/dist/lib/_virtual/_plugin-vue_export-helper.cjs +1 -0
  191. package/dist/lib/assets/chart-themes/bar-theme.cjs +1 -0
  192. package/dist/lib/assets/chart-themes/bar-theme.d.ts +6 -0
  193. package/dist/lib/assets/chart-themes/gauge-theme.cjs +1 -0
  194. package/dist/lib/assets/chart-themes/gauge-theme.d.ts +6 -0
  195. package/dist/lib/assets/chart-themes/pie-theme.cjs +1 -0
  196. package/dist/lib/assets/chart-themes/pie-theme.d.ts +6 -0
  197. package/dist/lib/assets/chart-themes/radar-theme.cjs +1 -0
  198. package/dist/lib/assets/chart-themes/radar-theme.d.ts +6 -0
  199. package/dist/lib/assets/chart-themes/scatter-theme.cjs +1 -0
  200. package/dist/lib/assets/chart-themes/scatter-theme.d.ts +6 -0
  201. package/dist/lib/assets/file.png.cjs +1 -0
  202. package/dist/lib/assets/folder.png.cjs +1 -0
  203. package/dist/lib/components/runtime/index.d.ts +5 -0
  204. package/dist/lib/components/runtime/utils/ai-chat-util.cjs +1 -0
  205. package/dist/lib/components/runtime/utils/anchor-util.cjs +1 -0
  206. package/dist/lib/components/runtime/utils/anchor-util.d.ts +13 -0
  207. package/dist/lib/components/runtime/utils/api/api-util.cjs +1 -0
  208. package/dist/lib/components/runtime/utils/api/api-util.d.ts +1 -0
  209. package/dist/lib/components/runtime/utils/api/page-expose-util.cjs +1 -0
  210. package/dist/lib/components/runtime/utils/api/page-expose-util.d.ts +1 -0
  211. package/dist/lib/components/runtime/utils/assemblys-config.cjs +1 -0
  212. package/dist/lib/components/runtime/utils/barcode-util.cjs +1 -0
  213. package/dist/lib/components/runtime/utils/barcode-util.d.ts +8 -0
  214. package/dist/lib/components/runtime/utils/charts/chart-columnline-util.cjs +2 -0
  215. package/dist/lib/components/runtime/utils/charts/chart-gauge-util.cjs +1 -0
  216. package/dist/lib/components/runtime/utils/charts/chart-pie-util.cjs +2 -0
  217. package/dist/lib/components/runtime/utils/charts/chart-radar-util.cjs +1 -0
  218. package/dist/lib/components/runtime/utils/charts/chart-scatter-util.cjs +1 -0
  219. package/dist/lib/components/runtime/utils/charts/chart-util.cjs +1 -0
  220. package/dist/lib/components/runtime/utils/charts/chart-util.d.ts +115 -0
  221. package/dist/lib/components/runtime/utils/common-util.cjs +1 -0
  222. package/dist/lib/components/runtime/utils/common-util.d.ts +33 -0
  223. package/dist/lib/components/runtime/utils/eventBus.cjs +1 -0
  224. package/dist/lib/components/runtime/utils/eventBus.d.ts +7 -0
  225. package/dist/lib/components/runtime/utils/events/data-backfill-util.cjs +1 -0
  226. package/dist/lib/components/runtime/utils/events/data-backfill-util.d.ts +27 -0
  227. package/dist/lib/components/runtime/utils/events/event-util.cjs +1 -0
  228. package/dist/lib/components/runtime/utils/events/event-util.d.ts +93 -0
  229. package/dist/lib/components/runtime/utils/events/print-label.cjs +1 -0
  230. package/dist/lib/components/runtime/utils/events/print-label.d.ts +5 -0
  231. package/dist/lib/components/runtime/utils/events/standard-event.cjs +1 -0
  232. package/dist/lib/components/runtime/utils/events/standard-event.d.ts +99 -0
  233. package/dist/lib/components/runtime/utils/events/validator-util.cjs +1 -0
  234. package/dist/lib/components/runtime/utils/events/validator-util.d.ts +24 -0
  235. package/dist/lib/components/runtime/utils/form/date-shortcuts.cjs +1 -0
  236. package/dist/lib/components/runtime/utils/form/date-shortcuts.d.ts +7 -0
  237. package/dist/lib/components/runtime/utils/form/scan-util.cjs +1 -0
  238. package/dist/lib/components/runtime/utils/global-refs.cjs +1 -0
  239. package/dist/lib/components/runtime/utils/global-refs.d.ts +65 -0
  240. package/dist/lib/components/runtime/utils/i18n-util.cjs +1 -0
  241. package/dist/lib/components/runtime/utils/i18n-util.d.ts +1 -0
  242. package/dist/lib/components/runtime/utils/interfaces/page-design-types.cjs +1 -0
  243. package/dist/lib/components/runtime/utils/interfaces/page-design-types.d.ts +259 -0
  244. package/dist/lib/components/runtime/utils/page-helper-util.cjs +1 -0
  245. package/dist/lib/components/runtime/utils/page-helper-util.d.ts +174 -0
  246. package/dist/lib/components/runtime/utils/page-init-util.cjs +1 -0
  247. package/dist/lib/components/runtime/utils/page-init-util.d.ts +49 -0
  248. package/dist/lib/components/runtime/utils/page-permission-util.cjs +1 -0
  249. package/dist/lib/components/runtime/utils/page-permission-util.d.ts +26 -0
  250. package/dist/lib/components/runtime/utils/page-store.cjs +1 -0
  251. package/dist/lib/components/runtime/utils/page-store.d.ts +58 -0
  252. package/dist/lib/components/runtime/utils/store-util.cjs +1 -0
  253. package/dist/lib/components/runtime/utils/store-util.d.ts +15 -0
  254. package/dist/lib/components/runtime/utils/store.cjs +1 -0
  255. package/dist/lib/components/runtime/utils/store.d.ts +2 -0
  256. package/dist/lib/components/runtime/utils/table-utils.cjs +1 -0
  257. package/dist/lib/components/runtime/utils/table-utils.d.ts +36 -0
  258. package/dist/lib/components/runtime/utils/tree-utils.cjs +1 -0
  259. package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue.cjs +1 -0
  260. package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue2.cjs +1 -0
  261. package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.cjs +1 -0
  262. package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.cjs +1 -0
  263. package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.cjs +1 -0
  264. package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.cjs +1 -0
  265. package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.cjs +1 -0
  266. package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.cjs +1 -0
  267. package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.cjs +1 -0
  268. package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.cjs +1 -0
  269. package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.cjs +1 -0
  270. package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.cjs +1 -0
  271. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.cjs +1 -0
  272. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.cjs +1 -0
  273. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.cjs +1 -0
  274. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.cjs +1 -0
  275. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue.cjs +1 -0
  276. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.cjs +1 -0
  277. package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.cjs +1 -0
  278. package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.cjs +1 -0
  279. package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.cjs +1 -0
  280. package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.cjs +1 -0
  281. package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.cjs +1 -0
  282. package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.cjs +1 -0
  283. package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.cjs +1 -0
  284. package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.cjs +1 -0
  285. package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.cjs +1 -0
  286. package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.cjs +1 -0
  287. package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.cjs +1 -0
  288. package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.d.ts +121 -0
  289. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue.cjs +1 -0
  290. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue2.cjs +1 -0
  291. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue.cjs +1 -0
  292. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue2.cjs +1 -0
  293. package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue.cjs +1 -0
  294. package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue2.cjs +1 -0
  295. package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue.cjs +1 -0
  296. package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue2.cjs +1 -0
  297. package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue.cjs +1 -0
  298. package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue2.cjs +1 -0
  299. package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.cjs +1 -0
  300. package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.d.ts +5 -0
  301. package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue2.cjs +1 -0
  302. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.cjs +1 -0
  303. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +28 -0
  304. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.cjs +1 -0
  305. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.cjs +1 -0
  306. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.d.ts +27 -0
  307. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue2.cjs +1 -0
  308. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.cjs +1 -0
  309. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.d.ts +59 -0
  310. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.cjs +1 -0
  311. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.cjs +1 -0
  312. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.d.ts +35 -0
  313. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.cjs +1 -0
  314. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.cjs +1 -0
  315. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.d.ts +26 -0
  316. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue2.cjs +1 -0
  317. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.cjs +1 -0
  318. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.d.ts +35 -0
  319. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.cjs +1 -0
  320. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.cjs +1 -0
  321. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.d.ts +31 -0
  322. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.cjs +1 -0
  323. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.cjs +1 -0
  324. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.d.ts +26 -0
  325. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue2.cjs +1 -0
  326. package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue.cjs +1 -0
  327. package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue2.cjs +1 -0
  328. package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.cjs +1 -0
  329. package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.cjs +1 -0
  330. package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue.cjs +1 -0
  331. package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue2.cjs +1 -0
  332. package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue.cjs +1 -0
  333. package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.cjs +1 -0
  334. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.cjs +1 -0
  335. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.d.ts +94 -0
  336. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.cjs +1 -0
  337. package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue.cjs +1 -0
  338. package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.cjs +1 -0
  339. package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue.cjs +1 -0
  340. package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue2.cjs +1 -0
  341. package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.cjs +1 -0
  342. package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.cjs +1 -0
  343. package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.cjs +1 -0
  344. package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.cjs +1 -0
  345. package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue.cjs +1 -0
  346. package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.cjs +1 -0
  347. package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.cjs +1 -0
  348. package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.cjs +1 -0
  349. package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue.cjs +1 -0
  350. package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.cjs +1 -0
  351. package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.cjs +1 -0
  352. package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.cjs +1 -0
  353. package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue.cjs +1 -0
  354. package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue2.cjs +1 -0
  355. package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue.cjs +1 -0
  356. package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.cjs +1 -0
  357. package/dist/lib/components/runtime/views/assemblys/error-render.vue.cjs +1 -0
  358. package/dist/lib/components/runtime/views/assemblys/error-render.vue.d.ts +22 -0
  359. package/dist/lib/components/runtime/views/assemblys/error-render.vue2.cjs +1 -0
  360. package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.cjs +1 -0
  361. package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.cjs +1 -0
  362. package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue.cjs +1 -0
  363. package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.cjs +1 -0
  364. package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue.cjs +1 -0
  365. package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.cjs +1 -0
  366. package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.cjs +1 -0
  367. package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.cjs +1 -0
  368. package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.cjs +1 -0
  369. package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.cjs +1 -0
  370. package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue.cjs +1 -0
  371. package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.cjs +1 -0
  372. package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.cjs +1 -0
  373. package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.cjs +1 -0
  374. package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.cjs +1 -0
  375. package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.cjs +1 -0
  376. package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.cjs +1 -0
  377. package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.cjs +1 -0
  378. package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue.cjs +1 -0
  379. package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue2.cjs +1 -0
  380. package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue.cjs +1 -0
  381. package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue2.cjs +1 -0
  382. package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.cjs +1 -0
  383. package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.cjs +1 -0
  384. package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue.cjs +1 -0
  385. package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.cjs +1 -0
  386. package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.cjs +1 -0
  387. package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.cjs +1 -0
  388. package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue.cjs +1 -0
  389. package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue2.cjs +1 -0
  390. package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.cjs +1 -0
  391. package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.cjs +1 -0
  392. package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue.cjs +1 -0
  393. package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.cjs +1 -0
  394. package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue.cjs +1 -0
  395. package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.cjs +1 -0
  396. package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.cjs +1 -0
  397. package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.cjs +1 -0
  398. package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.cjs +1 -0
  399. package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.d.ts +17 -0
  400. package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue2.cjs +1 -0
  401. package/dist/lib/components/runtime/views/assemblys/object-render.vue.cjs +1 -0
  402. package/dist/lib/components/runtime/views/assemblys/object-render.vue.d.ts +17 -0
  403. package/dist/lib/components/runtime/views/assemblys/object-render.vue2.cjs +1 -0
  404. package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.cjs +1 -0
  405. package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.d.ts +14 -0
  406. package/dist/lib/components/runtime/views/assemblys/page-bottom.vue2.cjs +1 -0
  407. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.cjs +1 -0
  408. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.d.ts +14 -0
  409. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.cjs +1 -0
  410. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.cjs +1 -0
  411. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.cjs +1 -0
  412. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.cjs +1 -0
  413. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.cjs +1 -0
  414. package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.cjs +1 -0
  415. package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.cjs +1 -0
  416. package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.cjs +1 -0
  417. package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.cjs +1 -0
  418. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.cjs +1 -0
  419. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.cjs +1 -0
  420. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.cjs +1 -0
  421. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.cjs +1 -0
  422. package/dist/lib/components/runtime/views/home-chart.vue.cjs +1 -0
  423. package/dist/lib/components/runtime/views/home-chart.vue.d.ts +23 -0
  424. package/dist/lib/components/runtime/views/home-chart.vue2.cjs +1 -0
  425. package/dist/lib/components/runtime/views/super-page-dialog.vue.cjs +1 -0
  426. package/dist/lib/components/runtime/views/super-page-dialog.vue.d.ts +40 -0
  427. package/dist/lib/components/runtime/views/super-page-dialog.vue3.cjs +1 -0
  428. package/dist/lib/components/runtime/views/super-page.vue.cjs +1 -0
  429. package/dist/lib/components/runtime/views/super-page.vue.d.ts +135 -0
  430. package/dist/lib/components/runtime/views/super-page.vue2.cjs +1 -0
  431. package/dist/lib/favicon.ico +0 -0
  432. package/dist/lib/i18n/langs/cn.cjs +1 -0
  433. package/dist/lib/i18n/langs/en.cjs +1 -0
  434. package/dist/lib/index.cjs +1 -0
  435. package/dist/lib/index.d.ts +16 -0
  436. package/dist/lib/style.css +1 -0
  437. package/package.json +13 -11
  438. package/dist/es/_virtual/_plugin-vue_export-helper.js +0 -8
  439. package/dist/es/components/runtime/utils/ai-chat-util.js +0 -16
  440. package/dist/es/components/runtime/utils/anchor-util.js +0 -84
  441. package/dist/es/components/runtime/utils/api/api-util.js +0 -4
  442. package/dist/es/components/runtime/utils/api/page-expose-util.js +0 -190
  443. package/dist/es/components/runtime/utils/assemblys-config.js +0 -20
  444. package/dist/es/components/runtime/utils/barcode-util.js +0 -12
  445. package/dist/es/components/runtime/utils/charts/chart-columnline-util.js +0 -168
  446. package/dist/es/components/runtime/utils/charts/chart-gauge-util.js +0 -38
  447. package/dist/es/components/runtime/utils/charts/chart-pie-util.js +0 -82
  448. package/dist/es/components/runtime/utils/charts/chart-radar-util.js +0 -56
  449. package/dist/es/components/runtime/utils/charts/chart-scatter-util.js +0 -47
  450. package/dist/es/components/runtime/utils/charts/chart-util.js +0 -288
  451. package/dist/es/components/runtime/utils/common-util.js +0 -120
  452. package/dist/es/components/runtime/utils/eventBus.js +0 -5
  453. package/dist/es/components/runtime/utils/events/data-backfill-util.js +0 -39
  454. package/dist/es/components/runtime/utils/events/event-util.js +0 -427
  455. package/dist/es/components/runtime/utils/events/print-label.js +0 -100
  456. package/dist/es/components/runtime/utils/events/standard-event.js +0 -1221
  457. package/dist/es/components/runtime/utils/events/validator-util.js +0 -326
  458. package/dist/es/components/runtime/utils/form/date-shortcuts.js +0 -36
  459. package/dist/es/components/runtime/utils/form/scan-util.js +0 -93
  460. package/dist/es/components/runtime/utils/global-refs.js +0 -57
  461. package/dist/es/components/runtime/utils/i18n-util.js +0 -14
  462. package/dist/es/components/runtime/utils/interfaces/page-design-types.js +0 -4
  463. package/dist/es/components/runtime/utils/page-helper-util.js +0 -387
  464. package/dist/es/components/runtime/utils/page-init-util.js +0 -280
  465. package/dist/es/components/runtime/utils/page-store.js +0 -53
  466. package/dist/es/components/runtime/utils/store-util.js +0 -13
  467. package/dist/es/components/runtime/utils/table-utils.js +0 -89
  468. package/dist/es/components/runtime/utils/tree-utils.js +0 -73
  469. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.js +0 -4
  470. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.js +0 -29
  471. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +0 -7
  472. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +0 -21
  473. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +0 -4
  474. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +0 -41
  475. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.js +0 -4
  476. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.js +0 -6
  477. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.js +0 -4
  478. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.js +0 -21
  479. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +0 -7
  480. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +0 -53
  481. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.js +0 -14
  482. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.js +0 -4
  483. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +0 -13
  484. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.js +0 -4
  485. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +0 -60
  486. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.js +0 -4
  487. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.js +0 -7
  488. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.js +0 -64
  489. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +0 -7
  490. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +0 -35
  491. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +0 -7
  492. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +0 -46
  493. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +0 -7
  494. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +0 -35
  495. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +0 -7
  496. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +0 -35
  497. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +0 -419
  498. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.js +0 -6
  499. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.js +0 -4
  500. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.js +0 -10
  501. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.js +0 -4
  502. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.js +0 -46
  503. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.js +0 -4
  504. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.js +0 -15
  505. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.js +0 -4
  506. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.js +0 -4
  507. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +0 -259
  508. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.js +0 -20
  509. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.js +0 -4
  510. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +0 -36
  511. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +0 -4
  512. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.js +0 -35
  513. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.js +0 -4
  514. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.js +0 -32
  515. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.js +0 -4
  516. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.js +0 -17
  517. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +0 -4
  518. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.js +0 -23
  519. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.js +0 -4
  520. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.js +0 -18
  521. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.js +0 -4
  522. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.js +0 -35
  523. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.js +0 -4
  524. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.js +0 -19
  525. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.js +0 -4
  526. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.js +0 -7
  527. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +0 -29
  528. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +0 -4
  529. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +0 -21
  530. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.js +0 -4
  531. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.js +0 -18
  532. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.js +0 -7
  533. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.js +0 -29
  534. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.js +0 -7
  535. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.js +0 -81
  536. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +0 -4
  537. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +0 -25
  538. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.js +0 -4
  539. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.js +0 -20
  540. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +0 -4
  541. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +0 -46
  542. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +0 -7
  543. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +0 -96
  544. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.js +0 -7
  545. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +0 -47
  546. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.js +0 -4
  547. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.js +0 -69
  548. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +0 -382
  549. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +0 -4
  550. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +0 -327
  551. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +0 -4
  552. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.js +0 -4
  553. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +0 -85
  554. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +0 -7
  555. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +0 -134
  556. package/dist/es/components/runtime/views/assemblys/error-render.vue.js +0 -5
  557. package/dist/es/components/runtime/views/assemblys/error-render.vue2.js +0 -4
  558. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +0 -4
  559. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +0 -64
  560. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.js +0 -38
  561. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.js +0 -4
  562. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.js +0 -4
  563. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +0 -69
  564. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +0 -4
  565. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +0 -102
  566. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +0 -4
  567. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +0 -55
  568. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +0 -4
  569. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +0 -24
  570. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +0 -4
  571. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +0 -94
  572. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +0 -4
  573. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +0 -28
  574. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +0 -4
  575. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +0 -82
  576. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.js +0 -7
  577. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +0 -38
  578. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.js +0 -4
  579. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +0 -43
  580. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +0 -7
  581. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +0 -16
  582. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +0 -4
  583. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +0 -82
  584. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +0 -8
  585. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +0 -199
  586. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.js +0 -7
  587. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +0 -156
  588. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.js +0 -4
  589. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.js +0 -16
  590. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +0 -4
  591. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +0 -36
  592. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +0 -4
  593. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +0 -44
  594. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +0 -7
  595. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +0 -28
  596. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.js +0 -83
  597. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.js +0 -4
  598. package/dist/es/components/runtime/views/assemblys/object-render.vue.js +0 -153
  599. package/dist/es/components/runtime/views/assemblys/object-render.vue2.js +0 -4
  600. package/dist/es/components/runtime/views/assemblys/page-bottom.vue.js +0 -6
  601. package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.js +0 -4
  602. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.js +0 -7
  603. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.js +0 -26
  604. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.js +0 -7
  605. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.js +0 -28
  606. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.js +0 -7
  607. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.js +0 -45
  608. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js +0 -4
  609. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.js +0 -20
  610. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.js +0 -4
  611. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.js +0 -23
  612. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +0 -7
  613. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +0 -24
  614. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.js +0 -4
  615. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.js +0 -27
  616. package/dist/es/components/runtime/views/home-chart.vue.js +0 -47
  617. package/dist/es/components/runtime/views/home-chart.vue2.js +0 -4
  618. package/dist/es/components/runtime/views/super-page-dialog.vue.js +0 -26
  619. package/dist/es/components/runtime/views/super-page-dialog.vue3.js +0 -5
  620. package/dist/es/components/runtime/views/super-page.vue.js +0 -7
  621. package/dist/es/components/runtime/views/super-page.vue2.js +0 -296
  622. package/dist/es/index.js +0 -30
  623. /package/dist/es/assets/chart-themes/{bar-theme.js → bar-theme.mjs} +0 -0
  624. /package/dist/es/assets/chart-themes/{gauge-theme.js → gauge-theme.mjs} +0 -0
  625. /package/dist/es/assets/chart-themes/{pie-theme.js → pie-theme.mjs} +0 -0
  626. /package/dist/es/assets/chart-themes/{radar-theme.js → radar-theme.mjs} +0 -0
  627. /package/dist/es/assets/chart-themes/{scatter-theme.js → scatter-theme.mjs} +0 -0
  628. /package/dist/es/assets/{file.png.js → file.png.mjs} +0 -0
  629. /package/dist/es/assets/{folder.png.js → folder.png.mjs} +0 -0
  630. /package/dist/es/components/runtime/utils/{store.js → store.mjs} +0 -0
  631. /package/dist/es/i18n/langs/{cn.js → cn.mjs} +0 -0
  632. /package/dist/es/i18n/langs/{en.js → en.mjs} +0 -0
@@ -1,38 +0,0 @@
1
- import { defineComponent as e, computed as l, resolveComponent as r, createElementBlock as t, openBlock as p, Fragment as o, createBlock as u, createCommentVNode as a, unref as i, isRef as n } from "vue";
2
- import { formatVariableValue as s, setVariableValue as y, getVariableValue as f } from "../../../../utils/page-helper-util.js";
3
- const x = e({ __name: "title-suffix-element", props: { pageContext: {}, property: {} }, setup(e2) {
4
- const x2 = e2, c = x2.pageContext.entity;
5
- let d = [];
6
- if (x2.property.prefixPro && x2.property.prefixPro.startsWith("${")) {
7
- let e3 = x2.property.prefixPro;
8
- e3 = e3.substring(2, e3.length - 1), d = e3.split(".");
9
- } else d = [];
10
- if (d.length > 0 && x2.property.prefixDefault) {
11
- const e3 = x2.property.prefixDefault;
12
- let l2 = s(x2.pageContext, e3);
13
- if (null != l2 && null != l2) {
14
- "checkbox" === x2.property.prefixType && (l2 = (l2 + "").split(",")), y(c, d, l2);
15
- }
16
- }
17
- const m = x2.property.prefixType;
18
- let h = x2.property.prefixValue;
19
- h = null == h || null == h ? "" : h;
20
- let b = null;
21
- return d.length > 0 && (b = l({ get() {
22
- const e3 = f(c, d);
23
- return "checkbox" === m ? null != e3 && (Array.isArray(e3) ? e3.includes(h) : e3 === h) : e3;
24
- }, set(e3) {
25
- if ("checkbox" === m) {
26
- let l2 = f(c, d);
27
- l2 || (l2 = []), Array.isArray(l2) || (l2 = [l2]);
28
- const r2 = l2.indexOf(h);
29
- e3 ? -1 == r2 && l2.push(h) : r2 > -1 && l2.splice(r2, 1), y(c, d, l2);
30
- } else y(c, d, e3);
31
- } })), (l2, s2) => {
32
- const y2 = r("el-radio"), f2 = r("el-checkbox");
33
- return p(), t(o, null, ["radio" === e2.property.prefixType ? (p(), u(y2, { key: 0, value: e2.property.prefixValue, label: e2.property.title, modelValue: i(b), "onUpdate:modelValue": s2[0] || (s2[0] = (e3) => n(b) ? b.value = e3 : b = e3) }, null, 8, ["value", "label", "modelValue"])) : a("", true), "checkbox" === e2.property.prefixType ? (p(), u(f2, { key: 1, label: e2.property.title, value: e2.property.prefixValue, modelValue: i(b), "onUpdate:modelValue": s2[1] || (s2[1] = (e3) => n(b) ? b.value = e3 : b = e3) }, null, 8, ["label", "value", "modelValue"])) : a("", true)], 64);
34
- };
35
- } });
36
- export {
37
- x as default
38
- };
@@ -1,4 +0,0 @@
1
- import e from "./title-suffix-element.vue.js";
2
- export {
3
- e as default
4
- };
@@ -1,4 +0,0 @@
1
- import t from "./custom-runtime.vue2.js";
2
- export {
3
- t as default
4
- };
@@ -1,69 +0,0 @@
1
- import { defineComponent as e, computed as t, ref as o, onMounted as n, nextTick as a, onUnmounted as i, resolveComponent as u, createBlock as l, createElementBlock as r, createCommentVNode as s, openBlock as p, normalizeStyle as c, normalizeClass as f, unref as d, withCtx as m, resolveDynamicComponent as g, toDisplayString as v } from "vue";
2
- import { getFormModelFields as C } from "../../../../utils/page-init-util.js";
3
- import { setVariableValue as x, getVariableValue as y, formatVariableValue as b, getFormPropName as h, setVariableValueWithProp as j } from "../../../../utils/page-helper-util.js";
4
- import { handleAfterInitEvent as R, handleEvent as k } from "../../../../utils/events/event-util.js";
5
- import { updateFormItemEditState as V } from "../../../../utils/events/validator-util.js";
6
- import { getListCode as _ } from "../../../../utils/common-util.js";
7
- import { getComponentRef as D } from "../../../../utils/global-refs.js";
8
- import { getAdditionalParamMap as w } from "../../../../utils/events/standard-event.js";
9
- import { $t as E } from "../../../../utils/i18n-util.js";
10
- import F from "../../../../utils/eventBus.js";
11
- import { functions as S } from "../../../../utils/api/page-expose-util.js";
12
- const U = { key: 0, style: { width: "100%", height: "100%" } }, q = { key: 1, style: { width: "100%", height: "100%" }, class: "amb-widget-richtext-single" }, $ = e({ __name: "custom-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: $2 }) {
13
- const O = e2, z = O.pageContext.entity ? O.pageContext.entity : {}, G = C(O.pageContext, O.configure), H = t({ get: () => y(z, G), set(e3) {
14
- x(z, G, e3);
15
- } }), P = O.configure.runtime ? O.configure.runtime : {}, I = P.style, A = P.class, B = P.headerStyle, W = o(P.props ? P.props : {}), J = function(e3) {
16
- let t2 = {};
17
- if (e3) for (let o2 in e3) {
18
- const n2 = e3[o2];
19
- t2[o2] = b(O.pageContext, n2);
20
- }
21
- return t2;
22
- }(P.customParams ? P.customParams : {}), K = w(O.pageContext), L = o(O.configure.props && O.configure.props.base ? O.configure.props.base.name : null);
23
- function M(e3, t2) {
24
- j(z, e3, t2);
25
- }
26
- function N(e3) {
27
- S.isHasFieldAuthPermission(O.configure) ? V(O.pageContext, e3) : console.error("没有该字段的权限,dynamicFields=", G ? G.join(".") : "");
28
- }
29
- function Q() {
30
- const e3 = O.pageContext.tableUuids;
31
- e3 && e3.forEach((e4) => {
32
- const t2 = _(O.pageContext.code, O.pageContext.version, O.configure.uuid), o2 = D(O.pageContext, e4);
33
- o2 && o2.restoreGridEdit(t2);
34
- });
35
- }
36
- O.configure.props.verification.custom && O.configure.props.verification.custom.enabled && (O.pageContext.customValidatorUuids || (O.pageContext.customValidatorUuids = []), O.pageContext.customValidatorUuids.push(O.configure.uuid));
37
- const T = O.pageContext.code, X = o(G && G.length > 0 ? T + "__" + G.join("__") : null), Y = o(null), Z = o(null), ee = o(null);
38
- function te(e3) {
39
- k(H.value, O.pageContext, O.configure, e3);
40
- }
41
- return n(() => {
42
- F.$on(X.value + "-scanDone", (e3) => {
43
- const t2 = e3.result;
44
- x(z, G, t2);
45
- }), F.$on(X.value + "-pickFileDone", (e3) => {
46
- X.value, Y.value.pickFileDone(e3);
47
- }), a(() => {
48
- const e3 = H.value;
49
- R(e3, O.pageContext, O.configure, { formItemRef: Z.value, componentRef: Y.value, titleRef: ee.value, value: e3, entity: O.pageContext.entity.data, pageData: O.pageContext.entity.page });
50
- });
51
- }), i(() => {
52
- F.$off(X.value + "-scanDone"), F.$off(X.value + "-pickFileDone");
53
- }), $2({ getCustomRef: function() {
54
- return Y.value;
55
- }, invokeCustomFunction: function(e3, ...t2) {
56
- if (Y.value && "function" == typeof Y.value[e3]) return Y.value[e3](...t2);
57
- throw new Error(`执行失败:Function '${e3}' not found in custom component`);
58
- }, hasCustomFunction: function(e3) {
59
- return Y.value && "function" == typeof Y.value[e3];
60
- }, addRequiredClass: function() {
61
- requiredClass.value = addRequiredClassUtil();
62
- } }), (t2, o2) => {
63
- const n2 = u("el-form-item");
64
- return W.value.tittleShow ? (p(), l(n2, { key: 0, ref_key: "formItemRef", ref: Z, required: W.value.required, class: f(d(A)), "label-width": W.value.labelWidth, style: c(d(I)) }, { label: m(() => [W.value.tittleShow ? (p(), r("div", { key: 0, ref_key: "titleRef", ref: ee, style: c({ ...d(B) }) }, v(d(E)(W.value.title)), 5)) : s("", true)]), default: m(() => [L.value ? (p(), r("div", U, [(p(), l(g(L.value), { ref_key: "customRef", ref: Y, size: W.value.size, entity: e2.pageContext.entity.data, pageData: e2.pageContext.entity.page, pageContext: e2.pageContext, configureObj: e2.configure, prop: d(h)(e2.configure.props && e2.configure.props.base ? e2.configure.props.base.prop : null), "custom-params": d(J), modelValue: H.value, "onUpdate:modelValue": o2[0] || (o2[0] = (e3) => H.value = e3), disabled: "disabled" === W.value.state, "additional-param-map": d(K), "component-id": X.value, onSetEntityValue: M, onSetCustomRules: N, onRestoreGridEdit: Q, onHandleEvent: te, onChange: o2[1] || (o2[1] = (t3) => d(k)(H.value, e2.pageContext, e2.configure, "change")) }, null, 40, ["size", "entity", "pageData", "pageContext", "configureObj", "prop", "custom-params", "modelValue", "disabled", "additional-param-map", "component-id"]))])) : s("", true)]), _: 1 }, 8, ["required", "class", "label-width", "style"])) : L.value ? (p(), r("div", q, [(p(), l(g(L.value), { ref_key: "customRef", ref: Y, entity: e2.pageContext.entity.data, pageData: e2.pageContext.entity.page, pageContext: e2.pageContext, configureObj: e2.configure, prop: d(h)(e2.configure.props && e2.configure.props.base ? e2.configure.props.base.prop : null), "custom-params": d(J), modelValue: H.value, "onUpdate:modelValue": o2[2] || (o2[2] = (e3) => H.value = e3), disabled: "disabled" === W.value.state, "additional-param-map": d(K), "component-id": X.value, onSetEntityValue: M, onSetCustomRules: N, onRestoreGridEdit: Q, onHandleEvent: te, onChange: o2[3] || (o2[3] = (t3) => d(k)(H.value, e2.pageContext, e2.configure, "change")) }, null, 40, ["entity", "pageData", "pageContext", "configureObj", "prop", "custom-params", "modelValue", "disabled", "additional-param-map", "component-id"]))])) : s("", true);
65
- };
66
- } });
67
- export {
68
- $ as default
69
- };
@@ -1,4 +0,0 @@
1
- import e from "./datepicker-runtime.vue2.js";
2
- export {
3
- e as default
4
- };
@@ -1,102 +0,0 @@
1
- import { defineComponent as e, ref as a, onMounted as l, nextTick as t, computed as o, resolveComponent as r, createBlock as u, openBlock as n, normalizeStyle as i, normalizeClass as c, unref as p, withCtx as s, createElementBlock as d, createCommentVNode as v, Fragment as f, createTextVNode as g, toDisplayString as m } from "vue";
2
- import { getFormModelFields as h } from "../../../../utils/page-init-util.js";
3
- import { getDateShortCuts as y } from "../../../../utils/form/date-shortcuts.js";
4
- import { getModelFieldFromPageContext as C, getValueFromVariable as x, setVariableValue as b, getVariableValue as F, isDateDataType as k } from "../../../../utils/page-helper-util.js";
5
- import { handleAfterInitEvent as T, getCustomFunc as V, handleFormEvent as P } from "../../../../utils/events/event-util.js";
6
- import j from "../common/title-suffix-element.vue.js";
7
- import z from "dayjs";
8
- import { $t as R } from "../../../../utils/i18n-util.js";
9
- import { addRequiredClassUtil as Y } from "../../../../utils/common-util.js";
10
- import { DatePickerRange as _ } from "agilebuilder-ui";
11
- const D = e({ __name: "datepicker-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: D2 }) {
12
- var _a;
13
- const S = e2, w = a(null), q = S.pageContext.entity ? S.pageContext.entity : {}, A = S.configure.runtime ? S.configure.runtime : {}, M = A.style, $ = A.class, B = A.headerStyle, I = A.titleExceedStyle, U = a(A.props ? A.props : {});
14
- let N = h(S.pageContext, S.configure, U.value.prop);
15
- if (S.pageContext.modelFieldsMap && N && N.length > 0 && "data" === N[0]) {
16
- const e3 = C(N, S.pageContext);
17
- e3 && function(e4) {
18
- const a2 = e4.dataType;
19
- k(a2) && ("year" === U.value.dateType && "YYYY" === U.value.valueFormat || "month" === U.value.dateType && "YYYY-MM" === U.value.valueFormat) && (U.value.valueFormat = "x");
20
- }(e3);
21
- }
22
- let W = null, E = false;
23
- if (U.value.dateType && U.value.dateType.includes("range")) {
24
- E = true;
25
- let e3 = U.value.prop2;
26
- e3 && e3.startsWith("${") || (e3 = "${page." + S.configure.uuid + "-2}");
27
- const a2 = x(q, e3, null);
28
- if (e3 = e3.substring(2, e3.length - 1), W = e3.split("."), !(a2 || q.data && (q.data.id || q.data.ID)) && U.value.defaultValue2) {
29
- const e4 = x(q, U.value.defaultValue2);
30
- if (null != e4 && "" !== e4) b(q, W, e4);
31
- else if (((_a = U.value.moreDefaultValue2) == null ? void 0 : _a.length) > 0) {
32
- const e5 = U.value.moreDefaultValue2;
33
- for (let a3 = 0; a3 < e5.length; a3++) {
34
- const l2 = x(q, e5[a3]);
35
- if (null != l2 && "" !== l2) {
36
- b(q, W, l2);
37
- break;
38
- }
39
- }
40
- }
41
- }
42
- }
43
- const O = a(null), G = a(null), H = a(null);
44
- function J(e3, a2) {
45
- if (!e3) return e3;
46
- if (a2) {
47
- "number" != typeof e3 || isNaN(e3) || 4 !== e3.toString().length || (e3 = e3.toString());
48
- try {
49
- const l2 = z(e3);
50
- let t2 = null;
51
- return t2 = "x" === a2 ? l2.toDate().getTime() : z(e3).format(a2), t2;
52
- } catch (a3) {
53
- return console.error("日期值格式化错误", a3), console.error(`value: ${e3} ,valueFormat: ${U.value.valueFormat}`), e3;
54
- }
55
- }
56
- return e3;
57
- }
58
- if (l(() => {
59
- t(() => {
60
- const e3 = K.value;
61
- T(e3, S.pageContext, S.configure, { formItemRef: O.value, componentRef: G.value, titleRef: H.value, value: e3, entity: S.pageContext.entity.data, pageData: S.pageContext.entity.page });
62
- });
63
- }), N) {
64
- const e3 = F(q, N), a2 = J(e3, U.value.valueFormat);
65
- e3 !== a2 && b(q, N, a2);
66
- }
67
- if (W) {
68
- const e3 = F(q, W), a2 = J(e3, U.value.valueFormat);
69
- e3 !== a2 && b(q, W, a2);
70
- }
71
- const K = o({ get() {
72
- if (E) {
73
- const e3 = [];
74
- let a2 = F(q, N);
75
- e3.push(J(a2, U.value.valueFormat));
76
- let l2 = F(q, W);
77
- return e3.push(J(l2, U.value.valueFormat)), e3;
78
- }
79
- return J(F(q, N), U.value.valueFormat);
80
- }, set(e3) {
81
- E ? Array.isArray(e3) ? (b(q, N, e3[0]), b(q, W, e3[1]), w.value = "") : null === e3 && (b(q, N, null), b(q, W, null)) : (b(q, N, e3), null != e3 && (w.value = ""));
82
- } }), L = a(y(U.value.dateScopeDetails, U.value.sourceType, U.value.dateType));
83
- if (U.value.shortcutsFunc) {
84
- const e3 = V(S.pageContext, U.value.shortcutsFunc);
85
- if (e3) {
86
- let a2 = e3.apply(e3, [{ pageContext: S.pageContext, configureObj: S.configure }]);
87
- if (a2) {
88
- Array.isArray(a2) || (a2 = [a2]), L.value || (L.value = []);
89
- for (let e4 of a2) e4.text && e4.value && L.value.push(e4);
90
- }
91
- }
92
- }
93
- return D2({ addRequiredClass: function() {
94
- w.value = Y();
95
- } }), (a2, l2) => {
96
- const t2 = r("el-time-picker"), o2 = r("el-date-picker"), h2 = r("el-form-item");
97
- return n(), u(h2, { ref_key: "formItemRef", ref: O, required: U.value.required, class: c(p($) + (w.value ? " " + w.value : "")), "label-width": U.value.labelWidth, style: i(p(M)) }, { label: s(() => [U.value.tittleShow ? (n(), d("div", { key: 0, ref_key: "titleRef", ref: H, style: i({ ...p(B), ...p(I) }) }, [U.value.prefixType ? (n(), u(j, { key: 0, pageContext: e2.pageContext, property: U.value }, null, 8, ["pageContext", "property"])) : (n(), d(f, { key: 1 }, [g(m(p(R)(U.value.title)), 1)], 64))], 4)) : v("", true)]), default: s(() => ["time" == U.value.dateType || "timerange" == U.value.dateType ? (n(), u(t2, { key: 0, ref_key: "componentRef", ref: G, "is-range": "timerange" == U.value.dateType, style: { width: "100%" }, "range-separator": "-", clearable: U.value.clearable, disabled: "disabled" === U.value.state, readonly: "readonly" === U.value.state, size: U.value.size, placeholder: U.value.placeholder, "start-placeholder": U.value.placeholder, "end-placeholder": U.value.endPlaceholder ? U.value.endPlaceholder : U.value.placeholder, "unlink-panels": true, format: U.value.format, "value-format": U.value.valueFormat, modelValue: K.value, "onUpdate:modelValue": l2[0] || (l2[0] = (e3) => K.value = e3), shortcuts: L.value, type: U.value.dateType, onChange: l2[1] || (l2[1] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "change")), onBlur: l2[2] || (l2[2] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "blur")), onFocus: l2[3] || (l2[3] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "focus")), onVisibleChange: l2[4] || (l2[4] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "visible-change")), onPanelChange: l2[5] || (l2[5] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "panel-change")), onClear: l2[6] || (l2[6] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "clear")) }, null, 8, ["is-range", "clearable", "disabled", "readonly", "size", "placeholder", "start-placeholder", "end-placeholder", "format", "value-format", "modelValue", "shortcuts", "type"])) : "combined" !== U.value.dateRangePickerMode && ["daterange", "datetimerange", "monthrange", "yearrange"].includes(U.value.dateType) ? (n(), u(p(_), { key: 1, modelValue: K.value, "onUpdate:modelValue": l2[7] || (l2[7] = (e3) => K.value = e3), type: U.value.dateType, disabled: "disabled" === U.value.state, readonly: "readonly" === U.value.state, clearable: U.value.clearable, format: U.value.format, "value-format": U.value.valueFormat, placeholder: U.value.placeholder, "start-placeholder": U.value.placeholder, "end-placeholder": U.value.endPlaceholder ? U.value.endPlaceholder : U.value.placeholder, size: U.value.size, shortcuts: L.value, onChange: l2[8] || (l2[8] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "change")), onBlur: l2[9] || (l2[9] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "blur")), onFocus: l2[10] || (l2[10] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "focus")), onVisibleChange: l2[11] || (l2[11] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "visible-change")), onPanelChange: l2[12] || (l2[12] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "panel-change")), onClear: l2[13] || (l2[13] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "clear")) }, null, 8, ["modelValue", "type", "disabled", "readonly", "clearable", "format", "value-format", "placeholder", "start-placeholder", "end-placeholder", "size", "shortcuts"])) : (n(), u(o2, { key: 2, ref_key: "componentRef", ref: G, clearable: U.value.clearable, style: { width: "100%" }, "unlink-panels": true, disabled: "disabled" === U.value.state, readonly: "readonly" === U.value.state, size: U.value.size, placeholder: U.value.placeholder, "start-placeholder": U.value.placeholder, "end-placeholder": U.value.endPlaceholder ? U.value.endPlaceholder : U.value.placeholder, format: U.value.format, "value-format": U.value.valueFormat, modelValue: K.value, "onUpdate:modelValue": l2[14] || (l2[14] = (e3) => K.value = e3), shortcuts: L.value, type: U.value.dateType, onChange: l2[15] || (l2[15] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "change")), onBlur: l2[16] || (l2[16] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "blur")), onFocus: l2[17] || (l2[17] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "focus")), onVisibleChange: l2[18] || (l2[18] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "visible-change")), onPanelChange: l2[19] || (l2[19] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "panel-change")), onClear: l2[20] || (l2[20] = (a3) => p(P)(a3, e2.pageContext, e2.configure, "clear")) }, null, 8, ["clearable", "disabled", "readonly", "size", "placeholder", "start-placeholder", "end-placeholder", "format", "value-format", "modelValue", "shortcuts", "type"]))]), _: 1 }, 8, ["required", "class", "label-width", "style"]);
98
- };
99
- } });
100
- export {
101
- D as default
102
- };
@@ -1,4 +0,0 @@
1
- import e from "./depttree-runtime.vue2.js";
2
- export {
3
- e as default
4
- };
@@ -1,55 +0,0 @@
1
- import { defineComponent as e, ref as t, onMounted as l, nextTick as o, computed as n, watch as a, resolveComponent as i, createBlock as p, openBlock as u, normalizeStyle as r, normalizeClass as s, unref as d, withCtx as f, createVNode as m, createElementBlock as c, createCommentVNode as g, Fragment as v, createTextVNode as y, toDisplayString as x } from "vue";
2
- import { getFormModelFields as h } from "../../../../utils/page-init-util.js";
3
- import { handleAfterInitEvent as C, handleFormEvent as S } from "../../../../utils/events/event-util.js";
4
- import F from "../common/title-suffix-element.vue.js";
5
- import { $t as I } from "../../../../utils/i18n-util.js";
6
- import { setVariableValue as b, getVariableValue as k, getFormPropName as w, getValueFromVariable as z } from "../../../../utils/page-helper-util.js";
7
- import { addRequiredClassUtil as R } from "../../../../utils/common-util.js";
8
- const j = e({ __name: "depttree-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: j2 }) {
9
- const _ = e2, T = t(null), q = t([]), W = _.pageContext.entity ? _.pageContext.entity : {};
10
- W.data || (W.data = {});
11
- const M = W.data, O = W.page;
12
- let $ = h(_.pageContext, _.configure);
13
- const D = $.length > 0 ? $[$.length - 1] : _.configure.uuid, E = _.configure.runtime ? _.configure.runtime : {}, V = t(E.props ? E.props : {}), A = E.style, B = E.class, G = E.headerStyle, H = E.titleExceedStyle;
14
- E.props.deptScope && ("field" == E.props.deptScope && E.props.deptScopeField ? (Y(), function(e3, t2) {
15
- if (0 === e3.indexOf("${fixed.")) return;
16
- const l2 = e3.match(/\${(.*?)}/);
17
- if (!l2) return;
18
- const o2 = l2 ? l2[1].split(".") : [];
19
- o2 && o2.length > 0 && a(() => o2.reduce((e4, t3) => e4[t3], _.pageContext.entity), (e4, l3) => {
20
- t2(e4, l3);
21
- });
22
- }(E.props.deptScopeField, (e3, t2) => {
23
- Y();
24
- })) : "depts" == E.props.deptScope && E.props.deptScopeCodes && (q.value = E.props.deptScopeCodes.split(",")));
25
- const J = t(null), K = t(null), L = t(null);
26
- l(() => {
27
- o(() => {
28
- const e3 = M ? M[D] : null;
29
- C(e3, _.pageContext, _.configure, { formItemRef: J.value, componentRef: K.value, titleRef: L.value, value: e3, entity: _.pageContext.entity.data, pageData: _.pageContext.entity.page });
30
- });
31
- });
32
- const N = n({ get: () => k(W, $), set(e3) {
33
- b(W, $, e3), null != e3 && (T.value = "");
34
- } }), P = V.value.autoSetFields ? V.value.autoSetFields : [];
35
- let Q = null;
36
- function U(e3, t2) {
37
- Q ? Q === e3 && ($.length > 0 ? S(k(W, $), _.pageContext, _.configure, "change") : S(t2, _.pageContext, _.configure, "change")) : e3 === D && S(t2, _.pageContext, _.configure, "change");
38
- }
39
- function X() {
40
- S(null, _.pageContext, _.configure, "click");
41
- }
42
- function Y() {
43
- const e3 = z(_.pageContext.entity, E.props.deptScopeField);
44
- q.value = e3 ? e3.split(",") : [];
45
- }
46
- return P.length - 1 > 0 && P[P.length - 1] && P[P.length - 1].model && (Q = w(P[P.length - 1].model)), j2({ addRequiredClass: function() {
47
- T.value = R();
48
- } }), (t2, l2) => {
49
- const o2 = i("OrganizationInput"), n2 = i("el-form-item");
50
- return u(), p(n2, { ref_key: "formItemRef", ref: J, required: V.value.required, class: s(d(B) + (T.value ? " " + T.value : "")), "label-width": V.value.labelWidth, style: r(d(A)) }, { label: f(() => [V.value.tittleShow ? (u(), c("div", { key: 0, ref_key: "titleRef", ref: L, style: r({ ...d(G), ...d(H) }) }, [V.value.prefixType ? (u(), p(F, { key: 0, pageContext: e2.pageContext, property: V.value }, null, 8, ["pageContext", "property"])) : (u(), c(v, { key: 1 }, [y(x(d(I)(V.value.title)), 1)], 64))], 4)) : g("", true)]), default: f(() => [m(o2, { ref_key: "componentRef", ref: K, disabled: "disabled" == V.value.state, multiple: V.value.multiple, treeType: V.value.treeType, value: N.value, models: d(M), departmentInfo: q.value, limitFilterColumn: V.value.limitFilterColumn, pageModels: d(O), fields: d(P), inputShowWay: V.value.inputShowWay, autosize: V.value.autosize, size: V.value.size, displayItem: V.value.displayItem, separator: V.value.separator, onSetValue: U, onShowTree: X }, null, 8, ["disabled", "multiple", "treeType", "value", "models", "departmentInfo", "limitFilterColumn", "pageModels", "fields", "inputShowWay", "autosize", "size", "displayItem", "separator"])]), _: 1 }, 8, ["required", "class", "label-width", "style"]);
51
- };
52
- } });
53
- export {
54
- j as default
55
- };
@@ -1,4 +0,0 @@
1
- import e from "./divider-runtime.vue2.js";
2
- export {
3
- e as default
4
- };
@@ -1,24 +0,0 @@
1
- import { defineComponent as e, ref as t, computed as n, onMounted as o, nextTick as r, resolveComponent as i, createBlock as u, openBlock as l, unref as a, withCtx as p, createElementVNode as s, normalizeStyle as c, toDisplayString as d } from "vue";
2
- import { formatVariableValue as f } from "../../../../utils/page-helper-util.js";
3
- import { handleAfterInitEvent as v, handleFormEvent as g } from "../../../../utils/events/event-util.js";
4
- const m = e({ __name: "divider-runtime", props: { pageContext: {}, configure: {} }, setup(e2) {
5
- const m2 = e2, y = m2.configure.runtime ? m2.configure.runtime : {}, x = y.headerStyle, C = t(y.props ? y.props : {});
6
- let _ = C.value.value;
7
- const b = n(() => {
8
- if (!_) return "";
9
- const e3 = f(m2.pageContext, _);
10
- return null == e3 || null == e3 ? "" : e3;
11
- }), k = t(null);
12
- return o(() => {
13
- r(() => {
14
- const e3 = b.value;
15
- v(e3, m2.pageContext, m2.configure, { componentRef: k.value, value: e3, entity: m2.pageContext.entity.data, pageData: m2.pageContext.entity.page });
16
- });
17
- }), (t2, n2) => {
18
- const o2 = i("el-divider");
19
- return l(), u(o2, { ref_key: "componentRef", ref: k, direction: C.value.direction, "border-style": C.value.borderType, "content-position": C.value.titlePosition, onClick: n2[0] || (n2[0] = (t3) => a(g)(t3, e2.pageContext, e2.configure, "click")) }, { default: p(() => [s("div", { style: c(a(x)) }, d(b.value), 5)]), _: 1 }, 8, ["direction", "border-style", "content-position"]);
20
- };
21
- } });
22
- export {
23
- m as default
24
- };
@@ -1,4 +0,0 @@
1
- import e from "./fileupload-runtime.vue2.js";
2
- export {
3
- e as default
4
- };
@@ -1,94 +0,0 @@
1
- import { defineComponent as e, ref as l, watch as t, onMounted as o, nextTick as i, onUnmounted as a, resolveComponent as n, createBlock as u, createCommentVNode as r, openBlock as p, normalizeStyle as s, normalizeClass as d, unref as f, withCtx as v, createElementBlock as m, toDisplayString as c } from "vue";
2
- import { getVariableValue as g, setVariableValue as h } from "../../../../utils/page-helper-util.js";
3
- import { handleAfterInitEvent as y, fileUploadBeforeUpload as C, fileUploadUploaded as w, fileUploadBeforeDelete as x, fileUploadDeleted as b } from "../../../../utils/events/event-util.js";
4
- import k from "agilebuilder-ui/src/utils/request";
5
- import { FsUploadNew as I } from "agilebuilder-ui";
6
- import P from "../../../../utils/eventBus.js";
7
- import { $t as S } from "../../../../utils/i18n-util.js";
8
- import { addRequiredClassUtil as N } from "../../../../utils/common-util.js";
9
- import { getRelativeBaseUrl as T } from "agilebuilder-ui/src/utils/common-util";
10
- const _ = e({ __name: "fileupload-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: _2 }) {
11
- var _a, _b, _c, _d, _e, _f, _g;
12
- const j = e2, z = l(null), R = j.configure.runtime ? j.configure.runtime : {}, F = l(R.props ? R.props : {}), D = R.style, O = R.class, q = R.headerStyle, W = R.titleExceedStyle, $ = j.pageContext.entity ? j.pageContext.entity : {}, A = j.configure.props.base ? j.configure.props.base : {}, E = X(A.prop), U = X(A.propName);
13
- let B = l({});
14
- B.value.isShowWatermark = void 0 === ((_b = (_a = j.configure.props) == null ? void 0 : _a.watermark) == null ? void 0 : _b.isShowWatermark) ? "true" : ((_c = j.configure.props) == null ? void 0 : _c.watermark.isShowWatermark) + "", B.value.content = ((_e = (_d = j.configure.props) == null ? void 0 : _d.watermark) == null ? void 0 : _e.content) ? (_g = (_f = j.configure.props) == null ? void 0 : _f.watermark) == null ? void 0 : _g.content : "", E && E.length > 1 && t(() => j.pageContext.entity[E[0]][E[1]], (e3) => {
15
- V(g($, E));
16
- });
17
- const G = j.pageContext.code, H = l(E ? G + "__" + E.join("__") : null), J = g($, E), K = l(null), L = l(false), M = l([]), Q = l({});
18
- function V(e3) {
19
- if (e3) {
20
- const l2 = e3.split(",");
21
- if (l2.length > 0) {
22
- const e4 = T(window.$vueApp.config.globalProperties.baseAPI) + "/component/fs-upload/search-file-metadata";
23
- k.post(e4, l2).then((e5) => {
24
- M.value = [];
25
- const t2 = [], o2 = {};
26
- e5.forEach((e6) => {
27
- o2[e6.uuid] = e6;
28
- });
29
- for (let e6 = 0; e6 < l2.length; e6++) {
30
- const i2 = l2[e6];
31
- t2.push(o2[i2].fileName), M.value.push({ showName: o2[i2].fileName, serverPath: i2, fileSize: o2[i2].fileSize });
32
- }
33
- "input" === F.value.displayType && (Q.value.showName = t2.join(","), Q.value.serverPath = l2.join(","));
34
- }).finally(() => {
35
- L.value = true;
36
- });
37
- } else L.value = true;
38
- } else M.value = [], Q.value = {}, L.value = true;
39
- }
40
- function X(e3) {
41
- return e3 ? (e3.startsWith("${") && (e3 = e3.substring(2, e3.length - 1)), e3.split(".")) : [];
42
- }
43
- function Y(e3) {
44
- j.pageContext.fileuploadInfo || (j.pageContext.fileuploadInfo = []);
45
- return -1 === j.pageContext.fileuploadInfo.findIndex((e4) => e4.uuid === j.configure.uuid) && j.pageContext.fileuploadInfo.push({ uuid: j.configure.uuid, label: S(F.value.title) }), j.pageContext.fileuploadInfo, C(e3);
46
- }
47
- function Z() {
48
- if (j.pageContext.fileuploadInfo, j.configure.uuid, j.pageContext.fileuploadInfo && j.configure.uuid) {
49
- const e3 = j.pageContext.fileuploadInfo.findIndex((e4) => e4.uuid === j.configure.uuid);
50
- -1 !== e3 && j.pageContext.fileuploadInfo.splice(e3, 1);
51
- }
52
- j.pageContext.fileuploadInfo;
53
- }
54
- function ee(e3) {
55
- Z();
56
- }
57
- V(J);
58
- const le = (e3, l2, t2) => {
59
- var o2;
60
- Z(), oe(), o2 = { response: e3, uploadFile: l2, uploadFiles: t2 }, w(j.pageContext, j.configure, o2);
61
- }, te = (e3) => {
62
- const l2 = (t2 = { file: e3 }, x(j.pageContext, j.configure, t2));
63
- var t2;
64
- (l2 || void 0 === l2) && (oe(), function(e4) {
65
- b(j.pageContext, j.configure, e4);
66
- }({ file: e3 }));
67
- }, oe = () => {
68
- const e3 = [], l2 = [];
69
- if (F.value.limit && M.value.length > F.value.limit) {
70
- const e4 = M.value.length - F.value.limit;
71
- for (let l3 = 0; l3 < e4; l3++) M.value.shift();
72
- }
73
- for (let t2 = 0; t2 < M.value.length; t2++) e3.push(M.value[t2].showName), l2.push(M.value[t2].serverPath);
74
- h(j.pageContext.entity, E, l2.join(",")), h(j.pageContext.entity, U, e3.join(",")), l2.length > 0 && (z.value = "");
75
- }, ie = l(null), ae = l(null);
76
- return o(() => {
77
- P.$on(H.value + "-pickFileDone", (e3) => {
78
- H.value, K.value.pickFileDone(e3);
79
- }), i(() => {
80
- const e3 = g($, E), l2 = { showName: g($, U), serverPath: e3 };
81
- y(l2, j.pageContext, j.configure, { formItemRef: ie.value, componentRef: K.value, titleRef: ae.value, value: l2, entity: j.pageContext.entity.data, pageData: j.pageContext.entity.page });
82
- });
83
- }), a(() => {
84
- P.$off(H.value + "-pickFileDone");
85
- }), _2({ addRequiredClass: function() {
86
- z.value = N();
87
- } }), (l2, t2) => {
88
- const o2 = n("el-form-item");
89
- return F.value.tittleShow ? (p(), u(o2, { key: 0, ref_key: "formItemRef", ref: ie, required: F.value.required, class: d(f(O) + (z.value ? " " + z.value : "")), "label-width": F.value.labelWidth, style: s(f(D)) }, { label: v(() => [F.value.tittleShow ? (p(), m("div", { key: 0, ref_key: "titleRef", ref: ae, style: s({ ...f(q), ...f(W) }) }, c(f(S)(F.value.title)), 5)) : r("", true)]), default: v(() => [L.value ? (p(), u(f(I), { key: 0, ref_key: "fileUploadRef", ref: K, style: { width: "100%" }, disabled: "disabled" === F.value.state, displayType: F.value.displayType, accept: F.value.accept, multiple: F.value.multiple, placeholder: F.value.placeholder, limit: F.value.limit, "limit-file-size": F.value.limitFileSize, "disabled-no-preview": F.value.disabledNoPreview, "disabled-no-download": F.value.disabledNoDownload, openCameraOrChoosePhoto: F.value.openCameraOrChoosePhoto, "sort-type": F.value.sortType, "file-info": Q.value, "file-list": M.value, "system-code": e2.pageContext.systemCode, componentId: H.value, watermark: f(B), "on-success": le, "on-remove": te, "before-upload": Y, "on-error": ee, pageContext: e2.pageContext, "file-show-type": F.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"])) : r("", true)]), _: 1 }, 8, ["required", "class", "label-width", "style"])) : L.value ? (p(), u(f(I), { key: 1, ref_key: "fileUploadRef", ref: K, style: { width: "100%" }, disabled: "disabled" === F.value.state, displayType: F.value.displayType, accept: F.value.accept, multiple: F.value.multiple, placeholder: F.value.placeholder, limit: F.value.limit, "limit-file-size": F.value.limitFileSize, "disabled-no-preview": F.value.disabledNoPreview, "disabled-no-download": F.value.disabledNoDownload, openCameraOrChoosePhoto: F.value.openCameraOrChoosePhoto, "sort-type": F.value.sortType, "file-info": Q.value, "file-list": M.value, "system-code": e2.pageContext.systemCode, componentId: H.value, watermark: f(B), "on-success": le, "on-remove": te, "before-upload": Y, "on-error": ee, pageContext: e2.pageContext, "file-show-type": F.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"])) : r("", true);
90
- };
91
- } });
92
- export {
93
- _ as default
94
- };
@@ -1,4 +0,0 @@
1
- import e from "./input-number-runtime.vue2.js";
2
- export {
3
- e as default
4
- };
@@ -1,28 +0,0 @@
1
- import { defineComponent as e, ref as t, computed as l, onMounted as o, nextTick as a, resolveComponent as n, createBlock as u, openBlock as i, normalizeStyle as r, normalizeClass as s, unref as p, withCtx as m, createVNode as f, createElementBlock as c, createCommentVNode as d, Fragment as v, createTextVNode as g, toDisplayString as y } from "vue";
2
- import { getFormModelFields as x } from "../../../../utils/page-init-util.js";
3
- import { setVariableValue as C, getVariableValue as h } from "../../../../utils/page-helper-util.js";
4
- import { handleAfterInitEvent as b, handleFormEvent as R } from "../../../../utils/events/event-util.js";
5
- import j from "../common/title-suffix-element.vue.js";
6
- import { $t as k } from "../../../../utils/i18n-util.js";
7
- import { addRequiredClassUtil as _ } from "../../../../utils/common-util.js";
8
- const q = e({ __name: "input-number-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: q2 }) {
9
- const w = e2, z = t(null), S = w.pageContext.entity ? w.pageContext.entity : {};
10
- let V = x(w.pageContext, w.configure);
11
- const B = l({ get: () => h(S, V), set(e3) {
12
- C(S, V, e3), null != e3 && (z.value = "");
13
- } }), I = w.configure.runtime ? w.configure.runtime : {}, D = I.style, E = I.class, F = I.headerStyle, T = I.titleExceedStyle, U = t(I.props ? I.props : {}), W = t(null), A = t(null), G = t(null);
14
- return o(() => {
15
- a(() => {
16
- const e3 = B.value;
17
- b(e3, w.pageContext, w.configure, { formItemRef: W.value, componentRef: A.value, titleRef: G.value, value: e3, entity: w.pageContext.entity.data, pageData: w.pageContext.entity.page });
18
- });
19
- }), q2({ addRequiredClass: function() {
20
- z.value = _();
21
- } }), (t2, l2) => {
22
- const o2 = n("el-input-number"), a2 = n("el-form-item");
23
- return i(), u(a2, { ref_key: "formItemRef", ref: W, required: U.value.required, class: s(p(E) + (z.value ? " " + z.value : "")), "label-width": U.value.labelWidth, style: r(p(D)) }, { label: m(() => [U.value.tittleShow ? (i(), c("div", { key: 0, ref_key: "titleRef", ref: G, style: r({ ...p(F), ...p(T) }) }, [U.value.prefixType ? (i(), u(j, { key: 0, pageContext: e2.pageContext, property: U.value }, null, 8, ["pageContext", "property"])) : (i(), c(v, { key: 1 }, [g(y(p(k)(U.value.title)), 1)], 64))], 4)) : d("", true)]), default: m(() => [f(o2, { ref_key: "componentRef", ref: A, disabled: "disabled" === U.value.state, readonly: "readonly" === U.value.state, controls: U.value.showButton, size: U.value.size, placeholder: U.value.placeholder, modelValue: B.value, "onUpdate:modelValue": l2[0] || (l2[0] = (e3) => B.value = e3), precision: U.value.precision, step: U.value.step, min: U.value.min, max: U.value.max, onChange: l2[1] || (l2[1] = (t3) => p(R)(t3, e2.pageContext, e2.configure, "change")), onBlur: l2[2] || (l2[2] = (t3) => p(R)(t3, e2.pageContext, e2.configure, "blur")), onFocus: l2[3] || (l2[3] = (t3) => p(R)(t3, e2.pageContext, e2.configure, "focus")) }, null, 8, ["disabled", "readonly", "controls", "size", "placeholder", "modelValue", "precision", "step", "min", "max"])]), _: 1 }, 8, ["required", "class", "label-width", "style"]);
24
- };
25
- } });
26
- export {
27
- q as default
28
- };
@@ -1,4 +0,0 @@
1
- import t from "./inputtext-runtime.vue2.js";
2
- export {
3
- t as default
4
- };
@@ -1,82 +0,0 @@
1
- import { defineComponent as e, ref as t, computed as l, onMounted as n, nextTick as o, onUnmounted as a, watch as u, resolveComponent as i, createBlock as r, openBlock as s, normalizeStyle as p, normalizeClass as c, unref as v, withCtx as f, createVNode as y, createCommentVNode as g, createSlots as m, createTextVNode as d, toDisplayString as x, createElementBlock as C, Fragment as I } from "vue";
2
- import { SuperIcon as T } from "agilebuilder-ui";
3
- import { getFormModelFields as k } from "../../../../utils/page-init-util.js";
4
- import { getModelFieldFromPageContext as w, isNumberDataType as V, setVariableValue as h, getVariableValue as b } from "../../../../utils/page-helper-util.js";
5
- import { handleFormEvent as _, handleAfterInitEvent as S, doSuffixOrPrefixClickEvent as j } from "../../../../utils/events/event-util.js";
6
- import { formatScanRuleSets as R, analysisScanValue as O, setScanAnalysisValue as N } from "../../../../utils/form/scan-util.js";
7
- import P from "../common/title-suffix-element.vue.js";
8
- import { isMobileBrowser as q } from "agilebuilder-ui/src/utils/common-util";
9
- import D from "../../../../utils/eventBus.js";
10
- import { $t as J } from "../../../../utils/i18n-util.js";
11
- import { addRequiredClassUtil as M } from "../../../../utils/common-util.js";
12
- const z = e({ __name: "inputtext-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: z2 }) {
13
- var _a, _b, _c;
14
- const L = e2, B = L.pageContext.entity ? L.pageContext.entity : {}, F = t("text");
15
- let $ = k(L.pageContext, L.configure);
16
- if (L.pageContext.modelFieldsMap) {
17
- const e3 = w($, L.pageContext);
18
- e3 && (F.value = V(e3.dataType) ? "number" : "text");
19
- }
20
- const A = t(q()), E = L.pageContext.code, H = t($ && $.length > 0 ? E + "__" + $.join("__") : null), U = t(null), W = l({ get: () => b(B, $), set(e3) {
21
- h(B, $, e3), null != e3 && "" !== e3 && (U.value = "");
22
- } }), G = t(null), K = t(null), Q = t(null), X = L.configure.runtime ? L.configure.runtime : {}, Y = t(X.props ? X.props : {}), Z = t(!!((_a = Y.value.scan) == null ? void 0 : _a.enable));
23
- let ee = false;
24
- const te = window.localStorage.getItem("auth_source");
25
- te && "dingtalk" === te && (ee = true);
26
- let le = "";
27
- const ne = navigator.userAgent;
28
- le = ne.indexOf("Html5Plus") > 0 ? "app" : "browser";
29
- const oe = !(!A.value || !le || "app" !== le), ae = t(!!((oe || ee) && Z.value || A.value && Z.value && "https:" === window.location.protocol));
30
- let ue = {};
31
- ((_b = Y.value.scan) == null ? void 0 : _b.enable) && ((_c = Y.value.scan.ruleList) == null ? void 0 : _c.length) > 0 && (R(Y.value.scan.ruleList).then((e3) => {
32
- ue = e3;
33
- }), u(() => W.value, (e3) => {
34
- e3 = e3.trim();
35
- const t2 = O(e3, ue);
36
- t2 && N(L.pageContext, t2.scanSet, t2.params);
37
- }));
38
- const ie = X.style, re = X.class, se = X.headerStyle, pe = X.titleExceedStyle;
39
- function ce(e3) {
40
- return h(B, $, e3);
41
- }
42
- n(() => {
43
- D.$on(H.value + "-scanDone", (e3) => {
44
- H.value, JSON.stringify(e3), ce(e3.result), _(e3.result, L.pageContext, L.configure, "afterScanDone");
45
- }), o(() => {
46
- var _a2;
47
- const e3 = W.value;
48
- S(e3, L.pageContext, L.configure, { formItemRef: G.value, componentRef: K.value, titleRef: Q.value, value: e3, entity: L.pageContext.entity.data, pageData: L.pageContext.entity.page }), ae.value && ((_a2 = Y.value.scan) == null ? void 0 : _a2.autoOpen) && fe();
49
- });
50
- }), a(() => {
51
- D.$off(H.value + "-scanDone");
52
- });
53
- const ve = t(false);
54
- function fe() {
55
- if (oe || ee) {
56
- const e3 = { type: "scan", componentId: H.value, systemCode: L.pageContext.systemCode };
57
- ee && (e3.type = "dingTalkScan"), window.parent.parent ? (window.parent.parent, window.parent.parent.postMessage(JSON.stringify(e3), "*")) : window.parent && (window.parent, window.parent.postMessage(JSON.stringify(e3), "*"));
58
- } else if (A.value) if ("https:" === window.location.protocol) ve.value = true;
59
- else {
60
- const e3 = { type: "scan", componentId: H.value, systemCode: L.pageContext.systemCode };
61
- window.parent.postMessage(JSON.stringify(e3), "*");
62
- }
63
- else ve.value = true;
64
- }
65
- function ye(e3) {
66
- ve.value = false, ce(e3);
67
- }
68
- return z2({ getValue: function() {
69
- return b(B, $);
70
- }, setValue: ce, scanClick: fe, addRequiredClass: function() {
71
- U.value = M();
72
- } }), (t2, l2) => {
73
- const n2 = i("el-input"), o2 = i("scan-code-input-browser"), a2 = i("el-form-item");
74
- return s(), r(a2, { ref_key: "formItemRef", ref: G, required: !!Y.value.required, class: c(v(re) + (U.value ? " " + U.value : "")), "label-width": Y.value.labelWidth, style: p(v(ie)) }, { label: f(() => [Y.value.tittleShow ? (s(), C("div", { key: 0, ref_key: "titleRef", ref: Q, style: p({ ...v(se), ...v(pe) }) }, [Y.value.prefixType ? (s(), r(P, { key: 0, pageContext: e2.pageContext, property: Y.value }, null, 8, ["pageContext", "property"])) : (s(), C(I, { key: 1 }, [d(x(v(J)(Y.value.title)), 1)], 64))], 4)) : g("", true)]), default: f(() => [y(n2, { ref_key: "componentRef", ref: K, disabled: "disabled" === Y.value.state, readonly: "readonly" === Y.value.state, size: Y.value.size, clearable: Y.value.clearable, placeholder: Y.value.placeholder, maxlength: Y.value.maxLength, "show-word-limit": Y.value.showInputNum, type: F.value, modelValue: W.value, "onUpdate:modelValue": l2[5] || (l2[5] = (e3) => W.value = e3), onInput: l2[6] || (l2[6] = (t3) => v(_)(t3, e2.pageContext, e2.configure, "input")), onChange: l2[7] || (l2[7] = (t3) => v(_)(t3, e2.pageContext, e2.configure, "change")), onBlur: l2[8] || (l2[8] = (e3) => function(e4) {
75
- let t3 = b(B, $);
76
- null != t3 && (t3 = t3.trim()), h(B, $, t3), _(e4, L.pageContext, L.configure, "blur");
77
- }(e3)), onFocus: l2[9] || (l2[9] = (t3) => v(_)(t3, e2.pageContext, e2.configure, "focus")), onClick: l2[10] || (l2[10] = (t3) => v(_)(t3, e2.pageContext, e2.configure, "click")), onClear: l2[11] || (l2[11] = (t3) => v(_)(t3, e2.pageContext, e2.configure, "clear")) }, m({ _: 2 }, ["outer" != Y.value.iconPosition && (Y.value.preIconType && Y.value.preIconValue || Y.value.preText) ? { name: "prefix", fn: f(() => [Y.value.preIconType && Y.value.preIconValue ? (s(), r(v(T), { key: 0, style: { cursor: "pointer" }, iconType: Y.value.preIconType, iconValue: Y.value.preIconValue, onClick: l2[0] || (l2[0] = (t3) => v(j)(W.value, e2.pageContext, e2.configure, "prefixClick")) }, null, 8, ["iconType", "iconValue"])) : g("", true), d(" " + x(v(J)(Y.value.preText)), 1)]), key: "0" } : void 0, "outer" == Y.value.iconPosition && (Y.value.preIconType && Y.value.preIconValue || Y.value.preText) ? { name: "prepend", fn: f(() => [Y.value.preIconType && Y.value.preIconValue ? (s(), r(v(T), { key: 0, style: { cursor: "pointer" }, iconType: Y.value.preIconType, iconValue: Y.value.preIconValue, onClick: l2[1] || (l2[1] = (t3) => v(j)(W.value, e2.pageContext, e2.configure, "prefixClick")) }, null, 8, ["iconType", "iconValue"])) : g("", true), d(" " + x(v(J)(Y.value.preText)), 1)]), key: "1" } : void 0, "outer" != Y.value.iconPosition && (Y.value.sufIconType && Y.value.sufIconValue || Y.value.sufText) ? { name: "suffix", fn: f(() => [Y.value.sufIconType && Y.value.sufIconValue ? (s(), r(v(T), { key: 0, style: { cursor: "pointer" }, iconType: Y.value.sufIconType, iconValue: Y.value.sufIconValue, onClick: l2[2] || (l2[2] = (t3) => v(j)(W.value, e2.pageContext, e2.configure, "suffixClick")) }, null, 8, ["iconType", "iconValue"])) : g("", true), d(" " + x(v(J)(Y.value.sufText)), 1)]), key: "2" } : void 0, ae.value || "outer" == Y.value.iconPosition && (Y.value.sufIconType && Y.value.sufIconValue || Y.value.sufText) ? { name: "append", fn: f(() => [ae.value ? (s(), r(v(T), { key: 0, style: { cursor: "pointer" }, iconValue: "fa-barcode", onClick: l2[3] || (l2[3] = (e3) => fe()) })) : g("", true), Y.value.sufIconType && Y.value.sufIconValue ? (s(), r(v(T), { key: 1, style: { cursor: "pointer" }, iconType: Y.value.sufIconType, iconValue: Y.value.sufIconValue, onClick: l2[4] || (l2[4] = (t3) => v(j)(W.value, e2.pageContext, e2.configure, "suffixClick")) }, null, 8, ["iconType", "iconValue"])) : g("", true), d(" " + x(v(J)(Y.value.sufText)), 1)]), key: "3" } : void 0]), 1032, ["disabled", "readonly", "size", "clearable", "placeholder", "maxlength", "show-word-limit", "type", "modelValue"]), ve.value ? (s(), r(o2, { key: 0, onClose: ye })) : g("", true)]), _: 1 }, 8, ["required", "class", "label-width", "style"]);
78
- };
79
- } });
80
- export {
81
- z as default
82
- };
@@ -1,7 +0,0 @@
1
- import e from "./label-runtime.vue2.js";
2
- /* empty css */
3
- import r from "../../../../../../_virtual/_plugin-vue_export-helper.js";
4
- const t = r(e, [["__scopeId", "data-v-2ffad4a6"]]);
5
- export {
6
- t as default
7
- };