super-page-runtime 2.3.34 → 2.3.35-cdnTmp1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (628) hide show
  1. package/dist/es/_virtual/_plugin-vue_export-helper.mjs +8 -0
  2. package/dist/es/components/runtime/utils/ai-chat-util.mjs +16 -0
  3. package/dist/es/components/runtime/utils/anchor-util.mjs +83 -0
  4. package/dist/es/components/runtime/utils/api/page-expose-util.mjs +184 -0
  5. package/dist/es/components/runtime/utils/assemblys-config.mjs +19 -0
  6. package/dist/es/components/runtime/utils/barcode-util.mjs +12 -0
  7. package/dist/es/components/runtime/utils/charts/chart-columnline-util.mjs +169 -0
  8. package/dist/es/components/runtime/utils/charts/chart-gauge-util.mjs +38 -0
  9. package/dist/es/components/runtime/utils/charts/chart-pie-util.mjs +83 -0
  10. package/dist/es/components/runtime/utils/charts/chart-radar-util.mjs +56 -0
  11. package/dist/es/components/runtime/utils/charts/chart-scatter-util.mjs +47 -0
  12. package/dist/es/components/runtime/utils/charts/chart-util.mjs +285 -0
  13. package/dist/es/components/runtime/utils/common-util.mjs +116 -0
  14. package/dist/es/components/runtime/utils/eventBus.mjs +5 -0
  15. package/dist/es/components/runtime/utils/events/data-backfill-util.mjs +38 -0
  16. package/dist/es/components/runtime/utils/events/event-util.mjs +411 -0
  17. package/dist/es/components/runtime/utils/events/print-label.mjs +100 -0
  18. package/dist/es/components/runtime/utils/events/standard-event.mjs +1164 -0
  19. package/dist/es/components/runtime/utils/events/validator-util.mjs +308 -0
  20. package/dist/es/components/runtime/utils/form/date-shortcuts.mjs +36 -0
  21. package/dist/es/components/runtime/utils/form/scan-util.mjs +88 -0
  22. package/dist/es/components/runtime/utils/global-refs.mjs +56 -0
  23. package/dist/es/components/runtime/utils/i18n-util.mjs +14 -0
  24. package/dist/es/components/runtime/utils/interfaces/page-design-types.mjs +4 -0
  25. package/dist/es/components/runtime/utils/page-helper-util.mjs +377 -0
  26. package/dist/es/components/runtime/utils/page-init-util.mjs +260 -0
  27. package/dist/es/components/runtime/utils/{page-permission-util.js → page-permission-util.mjs} +20 -21
  28. package/dist/es/components/runtime/utils/page-store.mjs +53 -0
  29. package/dist/es/components/runtime/utils/store-util.mjs +13 -0
  30. package/dist/es/components/runtime/utils/table-utils.mjs +84 -0
  31. package/dist/es/components/runtime/utils/tree-utils.mjs +58 -0
  32. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.mjs +4 -0
  33. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.mjs +29 -0
  34. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.mjs +7 -0
  35. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.mjs +21 -0
  36. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.mjs +4 -0
  37. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.mjs +41 -0
  38. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.mjs +4 -0
  39. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.mjs +6 -0
  40. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.mjs +4 -0
  41. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.mjs +20 -0
  42. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.mjs +7 -0
  43. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.mjs +53 -0
  44. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.mjs +14 -0
  45. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.mjs +4 -0
  46. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.mjs +13 -0
  47. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.mjs +4 -0
  48. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.mjs +59 -0
  49. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.mjs +4 -0
  50. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.mjs +7 -0
  51. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.mjs +52 -0
  52. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.mjs +7 -0
  53. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.mjs +35 -0
  54. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.mjs +7 -0
  55. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.mjs +46 -0
  56. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.mjs +7 -0
  57. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.mjs +35 -0
  58. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.mjs +7 -0
  59. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.mjs +35 -0
  60. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.mjs +408 -0
  61. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.mjs +6 -0
  62. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.mjs +4 -0
  63. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.mjs +10 -0
  64. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.mjs +4 -0
  65. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.mjs +33 -0
  66. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.mjs +4 -0
  67. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.mjs +15 -0
  68. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.mjs +4 -0
  69. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.mjs +4 -0
  70. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.mjs +252 -0
  71. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.mjs +20 -0
  72. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.mjs +4 -0
  73. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.mjs +35 -0
  74. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.mjs +4 -0
  75. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.mjs +33 -0
  76. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.mjs +4 -0
  77. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.mjs +18 -0
  78. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.mjs +4 -0
  79. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.mjs +18 -0
  80. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.mjs +4 -0
  81. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.mjs +22 -0
  82. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.mjs +4 -0
  83. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.mjs +19 -0
  84. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.mjs +4 -0
  85. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.mjs +35 -0
  86. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.mjs +4 -0
  87. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.mjs +19 -0
  88. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.mjs +4 -0
  89. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.mjs +7 -0
  90. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.mjs +29 -0
  91. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.mjs +4 -0
  92. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.mjs +20 -0
  93. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.mjs +4 -0
  94. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.mjs +17 -0
  95. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.mjs +7 -0
  96. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.mjs +29 -0
  97. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.mjs +7 -0
  98. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.mjs +81 -0
  99. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.mjs +4 -0
  100. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.mjs +25 -0
  101. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.mjs +4 -0
  102. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.mjs +20 -0
  103. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.mjs +4 -0
  104. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.mjs +43 -0
  105. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.mjs +7 -0
  106. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.mjs +96 -0
  107. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.mjs +7 -0
  108. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.mjs +46 -0
  109. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.mjs +4 -0
  110. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.mjs +69 -0
  111. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.mjs +361 -0
  112. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.mjs +4 -0
  113. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.mjs +320 -0
  114. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.mjs +4 -0
  115. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.mjs +4 -0
  116. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.mjs +83 -0
  117. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.mjs +7 -0
  118. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.mjs +132 -0
  119. package/dist/es/components/runtime/views/assemblys/error-render.vue.mjs +5 -0
  120. package/dist/es/components/runtime/views/assemblys/error-render.vue2.mjs +4 -0
  121. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.mjs +4 -0
  122. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.mjs +63 -0
  123. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.mjs +36 -0
  124. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.mjs +4 -0
  125. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.mjs +4 -0
  126. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.mjs +69 -0
  127. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.mjs +4 -0
  128. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.mjs +102 -0
  129. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.mjs +4 -0
  130. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.mjs +55 -0
  131. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.mjs +4 -0
  132. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.mjs +24 -0
  133. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.mjs +4 -0
  134. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.mjs +91 -0
  135. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.mjs +4 -0
  136. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.mjs +28 -0
  137. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.mjs +4 -0
  138. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.mjs +80 -0
  139. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.mjs +7 -0
  140. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.mjs +37 -0
  141. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.mjs +4 -0
  142. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.mjs +43 -0
  143. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.mjs +7 -0
  144. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.mjs +16 -0
  145. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.mjs +4 -0
  146. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.mjs +82 -0
  147. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.mjs +8 -0
  148. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.mjs +195 -0
  149. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.mjs +7 -0
  150. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.mjs +150 -0
  151. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.mjs +4 -0
  152. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.mjs +16 -0
  153. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.mjs +4 -0
  154. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.mjs +36 -0
  155. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.mjs +4 -0
  156. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.mjs +43 -0
  157. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.mjs +4 -0
  158. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.mjs +28 -0
  159. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.mjs +72 -0
  160. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.mjs +4 -0
  161. package/dist/es/components/runtime/views/assemblys/object-render.vue.mjs +141 -0
  162. package/dist/es/components/runtime/views/assemblys/object-render.vue2.mjs +4 -0
  163. package/dist/es/components/runtime/views/assemblys/page-bottom.vue.mjs +6 -0
  164. package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.mjs +4 -0
  165. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.mjs +7 -0
  166. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.mjs +26 -0
  167. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.mjs +7 -0
  168. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.mjs +28 -0
  169. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.mjs +7 -0
  170. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.mjs +45 -0
  171. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.mjs +4 -0
  172. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.mjs +20 -0
  173. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.mjs +4 -0
  174. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.mjs +23 -0
  175. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.mjs +7 -0
  176. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.mjs +23 -0
  177. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.mjs +4 -0
  178. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.mjs +27 -0
  179. package/dist/es/components/runtime/views/home-chart.vue.mjs +46 -0
  180. package/dist/es/components/runtime/views/home-chart.vue2.mjs +4 -0
  181. package/dist/es/components/runtime/views/super-page-dialog.vue.mjs +26 -0
  182. package/dist/es/components/runtime/views/super-page-dialog.vue3.mjs +5 -0
  183. package/dist/es/components/runtime/views/super-page.vue.mjs +7 -0
  184. package/dist/es/components/runtime/views/super-page.vue2.mjs +289 -0
  185. package/dist/es/i18n/langs/{cn.js → cn.mjs} +1 -1
  186. package/dist/es/i18n/langs/{en.js → en.mjs} +1 -1
  187. package/dist/es/index.mjs +30 -0
  188. package/dist/es/style.css +1 -1019
  189. package/dist/lib/_virtual/_plugin-vue_export-helper.cjs +1 -0
  190. package/dist/lib/assets/chart-themes/bar-theme.cjs +1 -0
  191. package/dist/lib/assets/chart-themes/bar-theme.d.ts +6 -0
  192. package/dist/lib/assets/chart-themes/gauge-theme.cjs +1 -0
  193. package/dist/lib/assets/chart-themes/gauge-theme.d.ts +6 -0
  194. package/dist/lib/assets/chart-themes/pie-theme.cjs +1 -0
  195. package/dist/lib/assets/chart-themes/pie-theme.d.ts +6 -0
  196. package/dist/lib/assets/chart-themes/radar-theme.cjs +1 -0
  197. package/dist/lib/assets/chart-themes/radar-theme.d.ts +6 -0
  198. package/dist/lib/assets/chart-themes/scatter-theme.cjs +1 -0
  199. package/dist/lib/assets/chart-themes/scatter-theme.d.ts +6 -0
  200. package/dist/lib/assets/file.png.cjs +1 -0
  201. package/dist/lib/assets/folder.png.cjs +1 -0
  202. package/dist/lib/components/runtime/index.d.ts +5 -0
  203. package/dist/lib/components/runtime/utils/ai-chat-util.cjs +1 -0
  204. package/dist/lib/components/runtime/utils/anchor-util.cjs +1 -0
  205. package/dist/lib/components/runtime/utils/anchor-util.d.ts +13 -0
  206. package/dist/lib/components/runtime/utils/api/api-util.d.ts +1 -0
  207. package/dist/lib/components/runtime/utils/api/page-expose-util.cjs +1 -0
  208. package/dist/lib/components/runtime/utils/api/page-expose-util.d.ts +1 -0
  209. package/dist/lib/components/runtime/utils/assemblys-config.cjs +1 -0
  210. package/dist/lib/components/runtime/utils/barcode-util.cjs +1 -0
  211. package/dist/lib/components/runtime/utils/barcode-util.d.ts +8 -0
  212. package/dist/lib/components/runtime/utils/charts/chart-columnline-util.cjs +2 -0
  213. package/dist/lib/components/runtime/utils/charts/chart-gauge-util.cjs +1 -0
  214. package/dist/lib/components/runtime/utils/charts/chart-pie-util.cjs +2 -0
  215. package/dist/lib/components/runtime/utils/charts/chart-radar-util.cjs +1 -0
  216. package/dist/lib/components/runtime/utils/charts/chart-scatter-util.cjs +1 -0
  217. package/dist/lib/components/runtime/utils/charts/chart-util.cjs +1 -0
  218. package/dist/lib/components/runtime/utils/charts/chart-util.d.ts +115 -0
  219. package/dist/lib/components/runtime/utils/common-util.cjs +1 -0
  220. package/dist/lib/components/runtime/utils/common-util.d.ts +33 -0
  221. package/dist/lib/components/runtime/utils/eventBus.cjs +1 -0
  222. package/dist/lib/components/runtime/utils/eventBus.d.ts +7 -0
  223. package/dist/lib/components/runtime/utils/events/data-backfill-util.cjs +1 -0
  224. package/dist/lib/components/runtime/utils/events/data-backfill-util.d.ts +27 -0
  225. package/dist/lib/components/runtime/utils/events/event-util.cjs +1 -0
  226. package/dist/lib/components/runtime/utils/events/event-util.d.ts +93 -0
  227. package/dist/lib/components/runtime/utils/events/print-label.cjs +1 -0
  228. package/dist/lib/components/runtime/utils/events/print-label.d.ts +5 -0
  229. package/dist/lib/components/runtime/utils/events/standard-event.cjs +1 -0
  230. package/dist/lib/components/runtime/utils/events/standard-event.d.ts +99 -0
  231. package/dist/lib/components/runtime/utils/events/validator-util.cjs +1 -0
  232. package/dist/lib/components/runtime/utils/events/validator-util.d.ts +24 -0
  233. package/dist/lib/components/runtime/utils/form/date-shortcuts.cjs +1 -0
  234. package/dist/lib/components/runtime/utils/form/date-shortcuts.d.ts +7 -0
  235. package/dist/lib/components/runtime/utils/form/scan-util.cjs +1 -0
  236. package/dist/lib/components/runtime/utils/global-refs.cjs +1 -0
  237. package/dist/lib/components/runtime/utils/global-refs.d.ts +65 -0
  238. package/dist/lib/components/runtime/utils/i18n-util.cjs +1 -0
  239. package/dist/lib/components/runtime/utils/i18n-util.d.ts +1 -0
  240. package/dist/lib/components/runtime/utils/interfaces/page-design-types.cjs +1 -0
  241. package/dist/lib/components/runtime/utils/interfaces/page-design-types.d.ts +259 -0
  242. package/dist/lib/components/runtime/utils/page-helper-util.cjs +1 -0
  243. package/dist/lib/components/runtime/utils/page-helper-util.d.ts +174 -0
  244. package/dist/lib/components/runtime/utils/page-init-util.cjs +1 -0
  245. package/dist/lib/components/runtime/utils/page-init-util.d.ts +49 -0
  246. package/dist/lib/components/runtime/utils/page-permission-util.cjs +1 -0
  247. package/dist/lib/components/runtime/utils/page-permission-util.d.ts +26 -0
  248. package/dist/lib/components/runtime/utils/page-store.cjs +1 -0
  249. package/dist/lib/components/runtime/utils/page-store.d.ts +58 -0
  250. package/dist/lib/components/runtime/utils/store-util.cjs +1 -0
  251. package/dist/lib/components/runtime/utils/store-util.d.ts +15 -0
  252. package/dist/lib/components/runtime/utils/store.cjs +1 -0
  253. package/dist/lib/components/runtime/utils/store.d.ts +2 -0
  254. package/dist/lib/components/runtime/utils/table-utils.cjs +1 -0
  255. package/dist/lib/components/runtime/utils/table-utils.d.ts +36 -0
  256. package/dist/lib/components/runtime/utils/tree-utils.cjs +1 -0
  257. package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue.cjs +1 -0
  258. package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue2.cjs +1 -0
  259. package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.cjs +1 -0
  260. package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.cjs +1 -0
  261. package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.cjs +1 -0
  262. package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.cjs +1 -0
  263. package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.cjs +1 -0
  264. package/dist/lib/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.cjs +1 -0
  265. package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.cjs +1 -0
  266. package/dist/lib/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.cjs +1 -0
  267. package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.cjs +1 -0
  268. package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.cjs +1 -0
  269. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.cjs +1 -0
  270. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.cjs +1 -0
  271. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.cjs +1 -0
  272. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.cjs +1 -0
  273. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue.cjs +1 -0
  274. package/dist/lib/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.cjs +1 -0
  275. package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.cjs +1 -0
  276. package/dist/lib/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.cjs +1 -0
  277. package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.cjs +1 -0
  278. package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.cjs +1 -0
  279. package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.cjs +1 -0
  280. package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.cjs +1 -0
  281. package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.cjs +1 -0
  282. package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.cjs +1 -0
  283. package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.cjs +1 -0
  284. package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.cjs +1 -0
  285. package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.cjs +1 -0
  286. package/dist/lib/components/runtime/views/assemblys/chart/table/chart-table-util.d.ts +121 -0
  287. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue.cjs +1 -0
  288. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column-item.vue2.cjs +1 -0
  289. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue.cjs +1 -0
  290. package/dist/lib/components/runtime/views/assemblys/chart/table/group-column.vue2.cjs +1 -0
  291. package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue.cjs +1 -0
  292. package/dist/lib/components/runtime/views/assemblys/chart/table/normal-column.vue2.cjs +1 -0
  293. package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue.cjs +1 -0
  294. package/dist/lib/components/runtime/views/assemblys/chart/table/table-pageination.vue2.cjs +1 -0
  295. package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue.cjs +1 -0
  296. package/dist/lib/components/runtime/views/assemblys/chart/table/table-runtime.vue2.cjs +1 -0
  297. package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.cjs +1 -0
  298. package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue.d.ts +5 -0
  299. package/dist/lib/components/runtime/views/assemblys/common/event-call-component.vue2.cjs +1 -0
  300. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.cjs +1 -0
  301. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +28 -0
  302. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.cjs +1 -0
  303. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.cjs +1 -0
  304. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue.d.ts +27 -0
  305. package/dist/lib/components/runtime/views/assemblys/common/file-task-notice.vue2.cjs +1 -0
  306. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.cjs +1 -0
  307. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.d.ts +59 -0
  308. package/dist/lib/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.cjs +1 -0
  309. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.cjs +1 -0
  310. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.d.ts +35 -0
  311. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.cjs +1 -0
  312. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.cjs +1 -0
  313. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue.d.ts +26 -0
  314. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-table.vue2.cjs +1 -0
  315. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.cjs +1 -0
  316. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.d.ts +35 -0
  317. package/dist/lib/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.cjs +1 -0
  318. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.cjs +1 -0
  319. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.d.ts +31 -0
  320. package/dist/lib/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.cjs +1 -0
  321. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.cjs +1 -0
  322. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.d.ts +26 -0
  323. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue2.cjs +1 -0
  324. package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue.cjs +1 -0
  325. package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue2.cjs +1 -0
  326. package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.cjs +1 -0
  327. package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.cjs +1 -0
  328. package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue.cjs +1 -0
  329. package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue2.cjs +1 -0
  330. package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue.cjs +1 -0
  331. package/dist/lib/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.cjs +1 -0
  332. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.cjs +1 -0
  333. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue.d.ts +94 -0
  334. package/dist/lib/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.cjs +1 -0
  335. package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue.cjs +1 -0
  336. package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.cjs +1 -0
  337. package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue.cjs +1 -0
  338. package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue2.cjs +1 -0
  339. package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.cjs +1 -0
  340. package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.cjs +1 -0
  341. package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.cjs +1 -0
  342. package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.cjs +1 -0
  343. package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue.cjs +1 -0
  344. package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.cjs +1 -0
  345. package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.cjs +1 -0
  346. package/dist/lib/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.cjs +1 -0
  347. package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue.cjs +1 -0
  348. package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.cjs +1 -0
  349. package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.cjs +1 -0
  350. package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.cjs +1 -0
  351. package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue.cjs +1 -0
  352. package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue2.cjs +1 -0
  353. package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue.cjs +1 -0
  354. package/dist/lib/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.cjs +1 -0
  355. package/dist/lib/components/runtime/views/assemblys/error-render.vue.cjs +1 -0
  356. package/dist/lib/components/runtime/views/assemblys/error-render.vue.d.ts +22 -0
  357. package/dist/lib/components/runtime/views/assemblys/error-render.vue2.cjs +1 -0
  358. package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.cjs +1 -0
  359. package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.cjs +1 -0
  360. package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue.cjs +1 -0
  361. package/dist/lib/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.cjs +1 -0
  362. package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue.cjs +1 -0
  363. package/dist/lib/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.cjs +1 -0
  364. package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.cjs +1 -0
  365. package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.cjs +1 -0
  366. package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.cjs +1 -0
  367. package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.cjs +1 -0
  368. package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue.cjs +1 -0
  369. package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.cjs +1 -0
  370. package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.cjs +1 -0
  371. package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.cjs +1 -0
  372. package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.cjs +1 -0
  373. package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.cjs +1 -0
  374. package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.cjs +1 -0
  375. package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.cjs +1 -0
  376. package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue.cjs +1 -0
  377. package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue2.cjs +1 -0
  378. package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue.cjs +1 -0
  379. package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue2.cjs +1 -0
  380. package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.cjs +1 -0
  381. package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.cjs +1 -0
  382. package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue.cjs +1 -0
  383. package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.cjs +1 -0
  384. package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.cjs +1 -0
  385. package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.cjs +1 -0
  386. package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue.cjs +1 -0
  387. package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue2.cjs +1 -0
  388. package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.cjs +1 -0
  389. package/dist/lib/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.cjs +1 -0
  390. package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue.cjs +1 -0
  391. package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.cjs +1 -0
  392. package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue.cjs +1 -0
  393. package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.cjs +1 -0
  394. package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.cjs +1 -0
  395. package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.cjs +1 -0
  396. package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.cjs +1 -0
  397. package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue.d.ts +17 -0
  398. package/dist/lib/components/runtime/views/assemblys/home-chart-render.vue2.cjs +1 -0
  399. package/dist/lib/components/runtime/views/assemblys/object-render.vue.cjs +1 -0
  400. package/dist/lib/components/runtime/views/assemblys/object-render.vue.d.ts +17 -0
  401. package/dist/lib/components/runtime/views/assemblys/object-render.vue2.cjs +1 -0
  402. package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.cjs +1 -0
  403. package/dist/lib/components/runtime/views/assemblys/page-bottom.vue.d.ts +14 -0
  404. package/dist/lib/components/runtime/views/assemblys/page-bottom.vue2.cjs +1 -0
  405. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.cjs +1 -0
  406. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.d.ts +14 -0
  407. package/dist/lib/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.cjs +1 -0
  408. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.cjs +1 -0
  409. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.cjs +1 -0
  410. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.cjs +1 -0
  411. package/dist/lib/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.cjs +1 -0
  412. package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.cjs +1 -0
  413. package/dist/lib/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.cjs +1 -0
  414. package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.cjs +1 -0
  415. package/dist/lib/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.cjs +1 -0
  416. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.cjs +1 -0
  417. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.cjs +1 -0
  418. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.cjs +1 -0
  419. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.cjs +1 -0
  420. package/dist/lib/components/runtime/views/home-chart.vue.cjs +1 -0
  421. package/dist/lib/components/runtime/views/home-chart.vue.d.ts +23 -0
  422. package/dist/lib/components/runtime/views/home-chart.vue2.cjs +1 -0
  423. package/dist/lib/components/runtime/views/super-page-dialog.vue.cjs +1 -0
  424. package/dist/lib/components/runtime/views/super-page-dialog.vue.d.ts +40 -0
  425. package/dist/lib/components/runtime/views/super-page-dialog.vue3.cjs +1 -0
  426. package/dist/lib/components/runtime/views/super-page.vue.cjs +1 -0
  427. package/dist/lib/components/runtime/views/super-page.vue.d.ts +135 -0
  428. package/dist/lib/components/runtime/views/super-page.vue2.cjs +1 -0
  429. package/dist/lib/favicon.ico +0 -0
  430. package/dist/lib/i18n/langs/cn.cjs +1 -0
  431. package/dist/lib/i18n/langs/en.cjs +1 -0
  432. package/dist/lib/index.cjs +1 -0
  433. package/dist/lib/index.d.ts +16 -0
  434. package/dist/lib/style.css +1 -0
  435. package/package.json +77 -75
  436. package/dist/es/_virtual/_plugin-vue_export-helper.js +0 -8
  437. package/dist/es/components/runtime/utils/ai-chat-util.js +0 -16
  438. package/dist/es/components/runtime/utils/anchor-util.js +0 -92
  439. package/dist/es/components/runtime/utils/api/api-util.js +0 -4
  440. package/dist/es/components/runtime/utils/api/page-expose-util.js +0 -190
  441. package/dist/es/components/runtime/utils/assemblys-config.js +0 -20
  442. package/dist/es/components/runtime/utils/barcode-util.js +0 -12
  443. package/dist/es/components/runtime/utils/charts/chart-columnline-util.js +0 -166
  444. package/dist/es/components/runtime/utils/charts/chart-gauge-util.js +0 -38
  445. package/dist/es/components/runtime/utils/charts/chart-pie-util.js +0 -82
  446. package/dist/es/components/runtime/utils/charts/chart-radar-util.js +0 -56
  447. package/dist/es/components/runtime/utils/charts/chart-scatter-util.js +0 -47
  448. package/dist/es/components/runtime/utils/charts/chart-util.js +0 -288
  449. package/dist/es/components/runtime/utils/common-util.js +0 -120
  450. package/dist/es/components/runtime/utils/eventBus.js +0 -5
  451. package/dist/es/components/runtime/utils/events/data-backfill-util.js +0 -39
  452. package/dist/es/components/runtime/utils/events/event-util.js +0 -415
  453. package/dist/es/components/runtime/utils/events/print-label.js +0 -100
  454. package/dist/es/components/runtime/utils/events/standard-event.js +0 -1190
  455. package/dist/es/components/runtime/utils/events/validator-util.js +0 -326
  456. package/dist/es/components/runtime/utils/form/date-shortcuts.js +0 -36
  457. package/dist/es/components/runtime/utils/form/scan-util.js +0 -93
  458. package/dist/es/components/runtime/utils/global-refs.js +0 -57
  459. package/dist/es/components/runtime/utils/i18n-util.js +0 -14
  460. package/dist/es/components/runtime/utils/interfaces/page-design-types.js +0 -4
  461. package/dist/es/components/runtime/utils/page-helper-util.js +0 -387
  462. package/dist/es/components/runtime/utils/page-init-util.js +0 -280
  463. package/dist/es/components/runtime/utils/page-store.js +0 -53
  464. package/dist/es/components/runtime/utils/store-util.js +0 -13
  465. package/dist/es/components/runtime/utils/table-utils.js +0 -89
  466. package/dist/es/components/runtime/utils/tree-utils.js +0 -73
  467. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.js +0 -4
  468. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.js +0 -29
  469. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +0 -7
  470. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +0 -21
  471. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +0 -4
  472. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +0 -41
  473. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.js +0 -4
  474. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.js +0 -6
  475. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.js +0 -4
  476. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.js +0 -21
  477. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +0 -7
  478. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +0 -53
  479. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.js +0 -14
  480. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.js +0 -4
  481. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +0 -13
  482. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.js +0 -4
  483. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +0 -60
  484. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.js +0 -4
  485. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.js +0 -7
  486. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.js +0 -64
  487. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +0 -7
  488. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +0 -35
  489. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +0 -7
  490. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +0 -46
  491. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +0 -7
  492. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +0 -35
  493. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +0 -7
  494. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +0 -35
  495. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +0 -419
  496. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.js +0 -6
  497. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.js +0 -4
  498. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.js +0 -10
  499. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.js +0 -4
  500. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.js +0 -46
  501. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.js +0 -4
  502. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.js +0 -15
  503. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.js +0 -4
  504. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.js +0 -4
  505. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +0 -259
  506. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue.js +0 -20
  507. package/dist/es/components/runtime/views/assemblys/common/event-call-component.vue2.js +0 -4
  508. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +0 -36
  509. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +0 -4
  510. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue.js +0 -35
  511. package/dist/es/components/runtime/views/assemblys/common/file-task-notice.vue2.js +0 -4
  512. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue.js +0 -32
  513. package/dist/es/components/runtime/views/assemblys/common/format-file-task-notice-message.vue2.js +0 -4
  514. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.js +0 -17
  515. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +0 -4
  516. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue.js +0 -23
  517. package/dist/es/components/runtime/views/assemblys/common/remove-signer-table.vue2.js +0 -4
  518. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue.js +0 -18
  519. package/dist/es/components/runtime/views/assemblys/common/remove-transactor-dialog.vue2.js +0 -4
  520. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.js +0 -35
  521. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.js +0 -4
  522. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.js +0 -19
  523. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.js +0 -4
  524. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.js +0 -7
  525. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +0 -29
  526. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +0 -4
  527. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +0 -21
  528. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.js +0 -4
  529. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.js +0 -18
  530. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.js +0 -7
  531. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.js +0 -29
  532. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.js +0 -7
  533. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.js +0 -81
  534. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +0 -4
  535. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +0 -25
  536. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.js +0 -4
  537. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.js +0 -20
  538. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +0 -4
  539. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +0 -46
  540. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +0 -7
  541. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +0 -96
  542. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.js +0 -7
  543. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +0 -47
  544. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.js +0 -4
  545. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.js +0 -69
  546. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +0 -382
  547. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +0 -4
  548. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +0 -327
  549. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +0 -4
  550. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.js +0 -4
  551. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +0 -85
  552. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +0 -7
  553. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +0 -134
  554. package/dist/es/components/runtime/views/assemblys/error-render.vue.js +0 -5
  555. package/dist/es/components/runtime/views/assemblys/error-render.vue2.js +0 -4
  556. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +0 -4
  557. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +0 -64
  558. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.js +0 -38
  559. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.js +0 -4
  560. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.js +0 -4
  561. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +0 -69
  562. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +0 -4
  563. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +0 -102
  564. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +0 -4
  565. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +0 -55
  566. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +0 -4
  567. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +0 -24
  568. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +0 -4
  569. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +0 -78
  570. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +0 -4
  571. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +0 -28
  572. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +0 -4
  573. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +0 -82
  574. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.js +0 -7
  575. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +0 -38
  576. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.js +0 -4
  577. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +0 -32
  578. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +0 -7
  579. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +0 -16
  580. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +0 -4
  581. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +0 -82
  582. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +0 -8
  583. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +0 -199
  584. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.js +0 -7
  585. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +0 -156
  586. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.js +0 -4
  587. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.js +0 -16
  588. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +0 -4
  589. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +0 -36
  590. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +0 -4
  591. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +0 -44
  592. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +0 -4
  593. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +0 -28
  594. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.js +0 -83
  595. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.js +0 -4
  596. package/dist/es/components/runtime/views/assemblys/object-render.vue.js +0 -153
  597. package/dist/es/components/runtime/views/assemblys/object-render.vue2.js +0 -4
  598. package/dist/es/components/runtime/views/assemblys/page-bottom.vue.js +0 -6
  599. package/dist/es/components/runtime/views/assemblys/page-bottom.vue2.js +0 -4
  600. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue.js +0 -7
  601. package/dist/es/components/runtime/views/assemblys/workflow/component/workflow-opinion-box.vue2.js +0 -26
  602. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue.js +0 -7
  603. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime-dialog.vue2.js +0 -28
  604. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue.js +0 -7
  605. package/dist/es/components/runtime/views/assemblys/workflow/extract-workflow/extract-workflow-runtime.vue2.js +0 -45
  606. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js +0 -4
  607. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.js +0 -20
  608. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.js +0 -4
  609. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.js +0 -23
  610. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +0 -7
  611. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +0 -24
  612. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.js +0 -4
  613. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.js +0 -27
  614. package/dist/es/components/runtime/views/home-chart.vue.js +0 -47
  615. package/dist/es/components/runtime/views/home-chart.vue2.js +0 -4
  616. package/dist/es/components/runtime/views/super-page-dialog.vue.js +0 -26
  617. package/dist/es/components/runtime/views/super-page-dialog.vue3.js +0 -5
  618. package/dist/es/components/runtime/views/super-page.vue.js +0 -7
  619. package/dist/es/components/runtime/views/super-page.vue2.js +0 -296
  620. package/dist/es/index.js +0 -30
  621. /package/dist/es/assets/chart-themes/{bar-theme.js → bar-theme.mjs} +0 -0
  622. /package/dist/es/assets/chart-themes/{gauge-theme.js → gauge-theme.mjs} +0 -0
  623. /package/dist/es/assets/chart-themes/{pie-theme.js → pie-theme.mjs} +0 -0
  624. /package/dist/es/assets/chart-themes/{radar-theme.js → radar-theme.mjs} +0 -0
  625. /package/dist/es/assets/chart-themes/{scatter-theme.js → scatter-theme.mjs} +0 -0
  626. /package/dist/es/assets/{file.png.js → file.png.mjs} +0 -0
  627. /package/dist/es/assets/{folder.png.js → folder.png.mjs} +0 -0
  628. /package/dist/es/components/runtime/utils/{store.js → store.mjs} +0 -0
@@ -1,32 +0,0 @@
1
- import { defineComponent as e, ref as t, computed as l, onMounted as n, nextTick as a, resolveComponent as i, createBlock as u, openBlock as o, normalizeStyle as r, normalizeClass as s, unref as p, withCtx as f, createVNode as c, createTextVNode as d, toDisplayString as m, createElementBlock as g, createCommentVNode as v } from "vue";
2
- import { getFormModelFields as y } from "../../../../utils/page-init-util.js";
3
- import { getVariableValue as b } from "../../../../utils/page-helper-util.js";
4
- import { handleAfterInitEvent as k, handleEvent as x } from "../../../../utils/events/event-util.js";
5
- import { $t as C } from "../../../../utils/i18n-util.js";
6
- const _ = e({ __name: "link-runtime", props: { pageContext: {}, configure: {} }, setup(e2) {
7
- const _2 = e2, h = y(_2.pageContext, _2.configure), R = _2.configure.runtime ? _2.configure.runtime : {}, j = R.style, w = R.class, I = R.headerStyle, S = t(R.props ? R.props : {});
8
- S.value;
9
- let $ = S.value.formatting;
10
- const D = _2.pageContext.entity ? _2.pageContext.entity : {}, V = l(() => {
11
- let e3 = b(D, h);
12
- return e3 = null == e3 || null == e3 ? "" : e3, $ && (e3 = $.replace(/\${value}/g, e3)), e3;
13
- });
14
- let W = S.value.tooltip, q = null;
15
- W && (q = l(() => {
16
- let e3 = b(D, h);
17
- return e3 = null == e3 || null == e3 ? "" : e3, W.replace(/\${value}/g, e3);
18
- }));
19
- const z = t(null), A = t(null), B = t(null);
20
- return n(() => {
21
- a(() => {
22
- const e3 = V.value;
23
- k(e3, _2.pageContext, _2.configure, { formItemRef: z.value, componentRef: A.value, titleRef: B.value, value: e3, entity: _2.pageContext.entity.data, pageData: _2.pageContext.entity.page });
24
- });
25
- }), (t2, l2) => {
26
- const n2 = i("el-link"), a2 = i("el-tooltip"), y2 = i("el-form-item");
27
- return o(), u(y2, { ref_key: "formItemRef", ref: z, class: s(p(w)), "label-width": S.value.labelWidth, style: r(p(j)) }, { label: f(() => [S.value.tittleShow ? (o(), g("div", { key: 0, ref_key: "titleRef", ref: B, style: r({ ...p(I) }) }, m(p(C)(S.value.title)), 5)) : v("", true)]), default: f(() => [c(a2, { disabled: !p(q), content: p(q) }, { default: f(() => [c(n2, { ref_key: "componentRef", ref: A, disabled: "disabled" === S.value.state, type: S.value.type, underline: S.value.underline, onClick: l2[0] || (l2[0] = (t3) => p(x)(t3, e2.pageContext, e2.configure, "click", { skipValidate: true })) }, { default: f(() => [d(m(V.value), 1)]), _: 1 }, 8, ["disabled", "type", "underline"])]), _: 1 }, 8, ["disabled", "content"])]), _: 1 }, 8, ["class", "label-width", "style"]);
28
- };
29
- } });
30
- export {
31
- _ as default
32
- };
@@ -1,7 +0,0 @@
1
- import e from "./placeholder-runtime.vue2.js";
2
- /* empty css */
3
- import r from "../../../../../../_virtual/_plugin-vue_export-helper.js";
4
- const o = r(e, [["__scopeId", "data-v-96fc65d8"]]);
5
- export {
6
- o as default
7
- };
@@ -1,16 +0,0 @@
1
- import { defineComponent as e, ref as t, onMounted as n, nextTick as o, resolveComponent as r, createBlock as l, openBlock as a, normalizeStyle as u, normalizeClass as f, unref as s, withCtx as i, createElementVNode as m } from "vue";
2
- import { handleAfterInitEvent as p } from "../../../../utils/events/event-util.js";
3
- const c = e({ __name: "placeholder-runtime", props: { pageContext: {}, configure: {} }, setup(e2) {
4
- const c2 = e2, g = c2.configure.runtime ? c2.configure.runtime : {}, y = g.style, d = g.class, v = t(null), x = t(null);
5
- return n(() => {
6
- o(() => {
7
- p(null, c2.pageContext, c2.configure, { formItemRef: v.value, componentRef: x.value, entity: c2.pageContext.entity.data, pageData: c2.pageContext.entity.page });
8
- });
9
- }), (e3, t2) => {
10
- const n2 = r("el-form-item");
11
- return a(), l(n2, { ref_key: "formItemRef", ref: v, class: f(s(d)), style: u(s(y)) }, { default: i(() => [m("div", { ref_key: "componentRef", ref: x, style: { width: "100%", height: "100%" } }, " ", 512)]), _: 1 }, 8, ["class", "style"]);
12
- };
13
- } });
14
- export {
15
- c as default
16
- };
@@ -1,4 +0,0 @@
1
- import r from "./radio-runtime.vue2.js";
2
- export {
3
- r as default
4
- };
@@ -1,82 +0,0 @@
1
- import { defineComponent as e, ref as t, computed as l, watch as o, onUnmounted as n, onMounted as u, nextTick as a, resolveComponent as i, createBlock as r, openBlock as s, normalizeStyle as f, normalizeClass as p, unref as c, withCtx as g, createVNode as v, createElementBlock as d, Fragment as m, renderList as h, createTextVNode as y, toDisplayString as b, createCommentVNode as C } from "vue";
2
- import { setVariableValue as x, getVariableValue as k, getOptionDatasFromPage as _, autoSetAfterSelect as S, queryOptionDatasources as R } from "../../../../utils/page-helper-util.js";
3
- import { getFormModelFields as j } from "../../../../utils/page-init-util.js";
4
- import { handleFormEvent as T, handleAfterInitEvent as I } from "../../../../utils/events/event-util.js";
5
- import { $t as q } from "../../../../utils/i18n-util.js";
6
- import { addRequiredClassUtil as V } from "../../../../utils/common-util.js";
7
- const w = e({ __name: "radio-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: w2 }) {
8
- const z = e2, O = t(null), D = z.pageContext.entity ? z.pageContext.entity : {};
9
- let E = j(z.pageContext, z.configure);
10
- const M = l({ get() {
11
- let e3 = k(D, E);
12
- return null != e3 && (e3 += ""), e3;
13
- }, set(e3) {
14
- x(D, E, e3), null != e3 && (O.value = "");
15
- } }), P = z.configure.runtime ? z.configure.runtime : {}, W = P.style, F = P.class, U = P.headerStyle, $ = P.titleExceedStyle, A = t(P.props ? P.props : {}), B = t(A.value.options ? A.value.options : []), G = _(z.pageContext, z.configure);
16
- G.length > 0 && (B.value = G);
17
- const H = z.configure.props && z.configure.props.dataOrigin ? z.configure.props.dataOrigin : {}, J = H.optionValueSetType;
18
- let K = [];
19
- if (("dynamicData" == J || "dataTable" == J || "service" == J) && H.autoSets) for (let e3 of H.autoSets) e3.source && K.push(e3);
20
- z.configure && z.configure.props && z.configure.props.base && z.configure.props.base.optionProp && K.push({ source: "label", target: z.configure.props.base.optionProp }), A.value.changeMethod = function(e3) {
21
- if (K.length > 0) {
22
- let t2 = null;
23
- B.value && null != e3 && null != e3 && (t2 = B.value.filter((t3) => e3 === t3.value)), S(z.configure, z.pageContext, K, t2);
24
- }
25
- T(e3, z.pageContext, z.configure, "change");
26
- };
27
- const L = A.value.monitorFields, N = [];
28
- if (L) {
29
- const e3 = [];
30
- for (let t2 of L) if (t2.startsWith("${")) {
31
- t2 = t2.substring(2, t2.length - 1);
32
- const l2 = t2.split(".");
33
- "page" !== l2[0] && "task" !== l2[0] && "data" !== l2[0] || (N.push(l2), e3.includes(l2[0]) || e3.push(l2[0]));
34
- }
35
- for (let t2 of e3) o(D[t2], () => {
36
- ee();
37
- });
38
- }
39
- function Q() {
40
- let e3 = "";
41
- for (let t2 of N) e3 += "_" + k(D, t2);
42
- return e3;
43
- }
44
- let X = Q(), Y = false;
45
- const Z = A.value.optionconfigInfo ? A.value.optionconfigInfo : {};
46
- function ee() {
47
- Y && clearTimeout(Y), Y = setTimeout(function() {
48
- const e3 = Q();
49
- e3 != X && (X = e3, R(z.pageContext, Z, void 0).then((e4) => {
50
- }));
51
- }, 200);
52
- }
53
- n(() => {
54
- Y && clearTimeout(Y);
55
- });
56
- const te = t(null), le = t(null), oe = t(null);
57
- return u(() => {
58
- a(() => {
59
- const e3 = M.value;
60
- I(e3, z.pageContext, z.configure, { formItemRef: te.value, componentRef: le.value, titleRef: oe.value, value: e3, entity: z.pageContext.entity.data, pageData: z.pageContext.entity.page });
61
- });
62
- }), w2({ updateOptions: function(e3) {
63
- B.value = e3 || [];
64
- }, addRequiredClass: function() {
65
- O.value = V();
66
- }, getSelectItemsTitle: function() {
67
- let e3 = k(D, E);
68
- if (null == e3) return "";
69
- if (e3 = String(e3), null != e3 && "" !== e3 && e3.length > 0) {
70
- let t2 = "";
71
- return B.value.length > 0 ? (B.value.forEach((l2) => {
72
- l2.value === e3 && (t2 = t2 + l2.label + ",");
73
- }), t2 = t2.slice(0, t2.length - 1)) : t2 = e3.join(","), t2;
74
- }
75
- } }), (t2, l2) => {
76
- const o2 = i("el-radio"), n2 = i("el-radio-group"), u2 = i("el-form-item");
77
- return s(), r(u2, { ref_key: "formItemRef", ref: te, required: A.value.required, class: p(c(F) + (O.value ? " " + O.value : "")), "label-width": A.value.labelWidth, style: f(c(W)) }, { label: g(() => [A.value.tittleShow ? (s(), d("div", { key: 0, ref_key: "titleRef", ref: oe, style: f({ ...c(U), ...c($) }) }, b(c(q)(A.value.title)), 5)) : C("", true)]), default: g(() => [v(n2, { ref_key: "componentRef", ref: le, disabled: "disabled" === A.value.state, size: A.value.size, onChange: A.value.changeMethod, modelValue: M.value, "onUpdate:modelValue": l2[0] || (l2[0] = (e3) => M.value = e3) }, { default: g(() => [(s(true), d(m, null, h(B.value, (t3) => (s(), r(o2, { key: t3.value, label: t3.value, onClick: (l3) => c(T)(t3.value, e2.pageContext, e2.configure, "click", { values: M.value }) }, { default: g(() => [y(b(t3.label), 1)]), _: 2 }, 1032, ["label", "onClick"]))), 128))]), _: 1 }, 8, ["disabled", "size", "onChange", "modelValue"])]), _: 1 }, 8, ["required", "class", "label-width", "style"]);
78
- };
79
- } });
80
- export {
81
- w as default
82
- };
@@ -1,8 +0,0 @@
1
- import t from "./richtext-runtime.vue2.js";
2
- /* empty css */
3
- /* empty css */
4
- import e from "../../../../../../_virtual/_plugin-vue_export-helper.js";
5
- const r = e(t, [["__scopeId", "data-v-7f659782"]]);
6
- export {
7
- r as default
8
- };
@@ -1,199 +0,0 @@
1
- import { defineComponent as e, ref as t, watch as n, onMounted as l, nextTick as o, onBeforeUnmount as i, resolveComponent as a, createElementBlock as r, openBlock as u, Fragment as s, createVNode as c, createBlock as d, createCommentVNode as p, normalizeStyle as f, normalizeClass as m, unref as v, withCtx as g, createElementVNode as h, toDisplayString as b } from "vue";
2
- import { getFormModelFields as y } from "../../../../utils/page-init-util.js";
3
- import { getSizeConfig as x, formatVariableValue as k, getVariableValue as w, setVariableValue as C } from "../../../../utils/page-helper-util.js";
4
- import { handleAfterInitEvent as q, handleFormEvent as T } from "../../../../utils/events/event-util.js";
5
- import S from "agilebuilder-ui/src/utils/request";
6
- import { $t as E } from "../../../../utils/i18n-util.js";
7
- import { getBaseUrl as A, addRequiredClassUtil as L } from "../../../../utils/common-util.js";
8
- import H from "quill";
9
- import "quill/dist/quill.snow.css";
10
- import { ElMessage as M } from "element-plus";
11
- const N = { class: "toolbar-right-btns" }, R = ["title"], _ = { class: "richtext-statusbar" }, j = { class: "word-count" }, V = { key: 0, class: "upload-loading" }, $ = ["innerHTML"], z = e({ __name: "richtext-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: z2 }) {
12
- const B = ["12px", "14px", "16px", "18px", "20px", "24px", "28px", "32px", "36px", "48px"], F = H.import("attributors/style/size");
13
- F.whitelist = B, H.register(F, true);
14
- const U = [false, "Source Han Sans CN", "SimSun", "SimHei", "Microsoft YaHei", "KaiTi", "FangSong", "Arial", "Times New Roman", "Verdana", "Georgia", "Courier New"], D = H.import("attributors/style/font");
15
- D.whitelist = U, H.register(D, true);
16
- const W = e2, P = t(""), G = W.pageContext.entity ? W.pageContext.entity : {}, I = y(W.pageContext, W.configure), K = W.configure.runtime ? W.configure.runtime : {}, O = K.style, Y = K.class, J = K.headerStyle, Q = K.titleExceedStyle, X = t(K.props ? K.props : {});
17
- let Z = x(W.pageContext, W.configure);
18
- Z && Z.fixHeight && (O.height || (O.height = Z.fixHeight + "px"));
19
- let ee = X.value.value;
20
- const te = k(W.pageContext, ee), ne = t(null);
21
- let le = null;
22
- const oe = t(false), ie = t(0), ae = t(false), re = t(false), ue = t("");
23
- let se = null, ce = X.value.state;
24
- function de(e3) {
25
- return "readonly" == e3 || "disabled" == e3;
26
- }
27
- const pe = de(ce), fe = t({ modules: { toolbar: [["bold", "italic", "underline", "strike"], ["blockquote", "code-block"], [{ list: "ordered" }, { list: "bullet" }], [{ script: "sub" }, { script: "super" }], [{ indent: "-1" }, { indent: "+1" }], [{ direction: "rtl" }], [{ size: B }], [{ header: [1, 2, 3, 4, 5, 6, false] }], [{ color: [] }, { background: [] }], [{ font: U }], [{ align: [] }], ["clean"], ["link", "image"]] }, theme: "snow", placeholder: pe ? "" : X.value.placeholder, readOnly: pe });
28
- function me() {
29
- if (!(le == null ? void 0 : le.container)) return;
30
- const e3 = le.container.parentNode;
31
- if (!e3) return;
32
- const t2 = e3.getBoundingClientRect(), n2 = le.container.getBoundingClientRect();
33
- let l2 = t2.height - (n2.top - t2.top);
34
- l2 -= 24, le.container.style.height = Math.max(l2, 100) + "px";
35
- }
36
- n(X.value, () => {
37
- const e3 = X.value.state;
38
- if (null != e3 && e3 !== ce) {
39
- ce = e3;
40
- const t2 = de(ce);
41
- le && (le.enable(!t2), le.root.dataset.placeholder = t2 ? "" : X.value.placeholder);
42
- }
43
- });
44
- const ve = t([]), ge = t(false), he = t(null), be = t(null), ye = t(null);
45
- let xe = null;
46
- function ke(e3) {
47
- const t2 = e3.match(/serverPath=([^&"]+)/);
48
- return t2 ? t2[1] : "";
49
- }
50
- function we(e3) {
51
- if (!le) return;
52
- const t2 = function(e4) {
53
- let t3 = e4.replace(/<img data-uuid="(.*?)"/g, (e5, t4) => {
54
- const n3 = ke(t4), l2 = W.pageContext.backendUrl;
55
- return `<img src="${A(l2, W.pageContext.isTest)}/common/fs-upload/download?serverPath=${n3}&isShowWatermark=false" data-uuid="${n3}"`;
56
- });
57
- return t3 = t3.replace(/\t/g, "    "), t3 = t3.replace(/ {2}/g, "  "), t3;
58
- }(e3), n2 = le.clipboard.convertHTML(t2);
59
- le.setContents(n2.ops), o(() => {
60
- if (!le) return;
61
- le.root.querySelectorAll("img").forEach((e4) => {
62
- if (!e4.getAttribute("data-uuid")) {
63
- const t3 = ke(e4.src);
64
- e4.setAttribute("data-uuid", t3);
65
- }
66
- });
67
- });
68
- }
69
- const Ce = { bold: "加粗", italic: "斜体", underline: "下划线", strike: "删除线", blockquote: "引用", "code-block": "代码块", 'list[value="ordered"]': "有序列表", 'list[value="bullet"]': "无序列表", 'script[value="sub"]': "下标", 'script[value="super"]': "上标", 'indent[value="-1"]': "减少缩进", 'indent[value="+1"]': "增加缩进", 'direction[value="rtl"]': "文字方向", size: "字体大小", header: "标题", color: "字体颜色", background: "背景颜色", font: "字体", align: "对齐方式", clean: "清除格式", link: "链接", image: "图片" };
70
- function qe() {
71
- oe.value = !oe.value, o(() => {
72
- !oe.value && (le == null ? void 0 : le.container) && (le.container.style.height = ""), me();
73
- });
74
- }
75
- function Te() {
76
- le && (ue.value = le.root.innerHTML, re.value = true);
77
- }
78
- function Se() {
79
- if (!le) return void (ie.value = 0);
80
- const e3 = le.getText().trim();
81
- ie.value = e3.length;
82
- }
83
- function Ee() {
84
- M.error({ message: "图片上传失败,请重试", duration: 3e3 });
85
- }
86
- function Ae(e3) {
87
- "Escape" === e3.key && oe.value && (oe.value = false, o(() => {
88
- (le == null ? void 0 : le.container) && (le.container.style.height = ""), me();
89
- }));
90
- }
91
- function Le(e3) {
92
- var _a;
93
- le && (null !== e3.relatedTarget && ((_a = ne.value) == null ? void 0 : _a.contains(e3.relatedTarget)) || T(le.root.innerHTML, W.pageContext, W.configure, "change", { entity: G }));
94
- }
95
- function He(e3) {
96
- if ("img" === e3.target.localName) {
97
- ve.value = [];
98
- let t2 = e3.target.src;
99
- ve.value.push(t2), ge.value = true;
100
- }
101
- }
102
- function Me(e3) {
103
- const t2 = new FormData();
104
- t2.append("file", e3);
105
- const n2 = W.pageContext.backendUrl, l2 = A(n2, W.pageContext.isTest);
106
- return S.post(l2 + "/common/fs-upload/rich-editor-image", t2, { headers: { "Content-Type": "multipart/form-data" } });
107
- }
108
- function Ne(e3, t2) {
109
- const n2 = e3.split(","), l2 = n2[0].match(/:(.*?);/), o2 = l2 ? l2[1] : "image/png", i2 = atob(n2[1]);
110
- let a2 = i2.length;
111
- const r2 = new Uint8Array(a2);
112
- for (; a2--; ) r2[a2] = i2.charCodeAt(a2);
113
- return new File([r2], t2, { type: o2 });
114
- }
115
- return l(() => {
116
- var _a;
117
- ne.value && (le = new H(ne.value, fe.value), le.root.style.fontSize = "16px", function() {
118
- var _a2, _b;
119
- const e3 = (_b = (_a2 = ne.value) == null ? void 0 : _a2.parentElement) == null ? void 0 : _b.querySelector(".ql-toolbar");
120
- if (!e3) return;
121
- e3.querySelectorAll("button").forEach((e4) => {
122
- const t2 = e4.className.match(/ql-([\w-]+)/);
123
- if (t2) {
124
- const n2 = t2[1], l2 = `${n2}[value="${e4.value}"]`;
125
- Ce[l2] ? e4.setAttribute("data-tooltip", Ce[l2]) : Ce[n2] && e4.setAttribute("data-tooltip", Ce[n2]);
126
- }
127
- }), e3.querySelectorAll(".ql-picker").forEach((e4) => {
128
- const t2 = e4.className.match(/ql-(\w+)/);
129
- if (t2) {
130
- const n2 = t2[1];
131
- if (Ce[n2]) {
132
- const t3 = e4.querySelector(".ql-picker-label");
133
- t3 && t3.setAttribute("data-tooltip", Ce[n2]);
134
- }
135
- }
136
- });
137
- }(), function() {
138
- var _a2, _b;
139
- const e3 = (_b = (_a2 = ne.value) == null ? void 0 : _a2.parentElement) == null ? void 0 : _b.querySelector(".ql-toolbar");
140
- e3 && e3.addEventListener("mousedown", (e4) => {
141
- e4.preventDefault();
142
- });
143
- }(), we(te), (_a = ne.value) == null ? void 0 : _a.addEventListener("focusout", Le), le.on("text-change", async function(e3) {
144
- if (!le) return;
145
- const t2 = le.root.getElementsByTagName("img");
146
- for (const e4 of t2) if (!e4.getAttribute("data-uuid")) {
147
- const t3 = ke(e4.src);
148
- e4.setAttribute("data-uuid", t3);
149
- }
150
- if (e3.ops && e3.ops.length > 0) for (const t3 of e3.ops) {
151
- const e4 = t3.insert;
152
- if (e4 == null ? void 0 : e4.image) {
153
- const t4 = e4.image;
154
- if (!t4.startsWith("data:image")) continue;
155
- try {
156
- ae.value = true;
157
- const e5 = Ne(t4, "image.png"), n2 = await Me(e5);
158
- if (!le) return;
159
- const l2 = le.root.getElementsByTagName("img");
160
- for (const e6 of l2) e6.src === t4 && (e6.width = 300, e6.src = n2.url, e6.setAttribute("data-uuid", n2.uuid));
161
- } catch (e5) {
162
- console.error("上传图片失败", e5), Ee();
163
- } finally {
164
- ae.value = false;
165
- }
166
- }
167
- }
168
- !function() {
169
- se && clearTimeout(se);
170
- se = setTimeout(() => {
171
- if (!le) return;
172
- const e4 = le.root.innerHTML;
173
- C(G, I, e4), e4 && (P.value = "");
174
- }, 300);
175
- }(), Se();
176
- }), Se(), xe = le.container, xe.addEventListener("click", He), me(), o(() => {
177
- const e3 = w(G, I);
178
- q(e3, W.pageContext, W.configure, { formItemRef: he.value, componentRef: be.value, titleRef: ye.value, value: e3, entity: W.pageContext.entity.data, pageData: W.pageContext.entity.page });
179
- }));
180
- }), l(() => {
181
- document.addEventListener("keydown", Ae);
182
- }), i(() => {
183
- document.removeEventListener("keydown", Ae), se && clearTimeout(se), ne.value && ne.value.removeEventListener("focusout", Le), xe && xe.removeEventListener("click", He);
184
- }), z2({ addRequiredClass: function() {
185
- P.value = L();
186
- }, setContent: function(e3) {
187
- we(e3), Se();
188
- }, getContent: function() {
189
- return le ? le.root.innerHTML : "";
190
- } }), (e3, t2) => {
191
- const n2 = a("View"), l2 = a("el-icon"), o2 = a("FullScreen"), i2 = a("Close"), y2 = a("el-form-item"), x2 = a("el-image-viewer"), k2 = a("el-dialog");
192
- return u(), r(s, null, [c(y2, { required: X.value.required, class: m(v(Y) + (P.value ? " " + P.value : "")), "label-width": X.value.labelWidth, style: f(v(O)) }, { label: g(() => [X.value.tittleShow ? (u(), r("div", { key: 0, style: f({ ...v(J), ...v(Q) }) }, b(v(E)(X.value.title)), 5)) : p("", true)]), default: g(() => [h("div", { class: m(["richtext-wrapper", { "is-fullscreen": oe.value }]) }, [h("div", { ref_key: "quillEditorRef", ref: ne, style: { width: "100%" } }, null, 512), h("div", N, [h("button", { type: "button", class: "toolbar-btn", onClick: Te, title: "预览" }, [c(l2, null, { default: g(() => [c(n2)]), _: 1 })]), h("button", { type: "button", class: "toolbar-btn", onClick: qe, title: oe.value ? "退出全屏" : "全屏编辑" }, [oe.value ? (u(), d(l2, { key: 1 }, { default: g(() => [c(i2)]), _: 1 })) : (u(), d(l2, { key: 0 }, { default: g(() => [c(o2)]), _: 1 }))], 8, R)]), h("div", _, [h("span", j, "字数:" + b(ie.value), 1)]), ae.value ? (u(), r("div", V, [...t2[2] || (t2[2] = [h("div", { class: "loading-spinner" }, null, -1), h("span", null, "图片上传中...", -1)])])) : p("", true)], 2)]), _: 1 }, 8, ["required", "class", "label-width", "style"]), ge.value ? (u(), d(x2, { key: 0, "hide-on-click-modal": "", onClose: t2[0] || (t2[0] = () => {
193
- ge.value = false;
194
- }), "url-list": ve.value }, null, 8, ["url-list"])) : p("", true), c(k2, { modelValue: re.value, "onUpdate:modelValue": t2[1] || (t2[1] = (e4) => re.value = e4), title: "内容预览", width: "80%", "close-on-click-modal": true, "append-to-body": true, class: "richtext-preview-dialog" }, { default: g(() => [h("div", { class: "richtext-preview-content ql-editor", innerHTML: ue.value }, null, 8, $)]), _: 1 }, 8, ["modelValue"])], 64);
195
- };
196
- } });
197
- export {
198
- z as default
199
- };
@@ -1,7 +0,0 @@
1
- import e from "./select-runtime.vue2.js";
2
- /* empty css */
3
- import t from "../../../../../../_virtual/_plugin-vue_export-helper.js";
4
- const r = t(e, [["__scopeId", "data-v-68808d47"]]);
5
- export {
6
- r as default
7
- };
@@ -1,156 +0,0 @@
1
- import { defineComponent as e, ref as l, computed as t, watch as o, onUnmounted as a, onMounted as i, nextTick as n, resolveComponent as r, createBlock as u, openBlock as s, normalizeStyle as p, normalizeClass as c, unref as f, withCtx as v, createVNode as g, createElementVNode as m, withKeys as d, withModifiers as y, createCommentVNode as h, createElementBlock as b, Fragment as x, renderList as C, toDisplayString as _, createTextVNode as w } from "vue";
2
- import { setVariableValue as S, getOptionDatasFromPage as k, queryOptionDatasources as A, autoSetAfterSelect as T, getVariableValue as j } from "../../../../utils/page-helper-util.js";
3
- import { getFormModelFields as R } from "../../../../utils/page-init-util.js";
4
- import { handleFormEvent as P, handleAfterInitEvent as V } from "../../../../utils/events/event-util.js";
5
- import M from "../common/title-suffix-element.vue.js";
6
- import { $t as D } from "../../../../utils/i18n-util.js";
7
- import { addRequiredClassUtil as I } from "../../../../utils/common-util.js";
8
- import { CopyDocument as q } from "@element-plus/icons-vue";
9
- import z from "clipboard";
10
- import { ElMessage as E } from "element-plus";
11
- import { useI18n as O } from "vue-i18n";
12
- const W = { style: { "padding-left": "5px" } }, B = { style: { width: "100%", display: "flex", "align-items": "center" } }, F = { key: 0, style: { display: "flex", "flex-direction": "column" } }, G = { style: { color: "var(--el-text-color-secondary)", "font-size": "13px" } }, K = { style: { float: "left" } }, L = { style: { float: "right", color: "var(--el-text-color-secondary)" } }, U = "__amb_select_all__", $ = e({ __name: "select-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: $2 }) {
13
- const { t: H } = O(), J = e2, N = l(null), Q = l(false), X = J.pageContext.entity ? J.pageContext.entity : {};
14
- let Y = R(J.pageContext, J.configure);
15
- const Z = J.configure.runtime ? J.configure.runtime : {}, ee = Z.style, le = Z.class, te = Z.headerStyle, oe = Z.titleExceedStyle, ae = l(Z.props ? Z.props : {});
16
- let ie = l(ae.value.optionDescriptionPosition && "default" !== ae.value.optionDescriptionPosition), ne = [];
17
- const re = "copyBtn_" + J.configure.uuid + "_" + (/* @__PURE__ */ new Date()).getTime();
18
- function ue() {
19
- let e3 = j(X, Y);
20
- return null != e3 && (e3 = String(e3)), ae.value.multiple && (e3 = e3 ? String(e3).split(",") : []), e3;
21
- }
22
- const se = t({ get: () => ue(), set(e3) {
23
- const l2 = ue();
24
- ne = Array.isArray(l2) ? [...l2] : l2;
25
- let t2 = e3;
26
- if (ae.value.multiple && false !== ae.value.showSelectAll && Array.isArray(e3) && e3.includes(U)) {
27
- const e4 = (pe.value || []).map((e5) => String(e5.value)), o2 = Array.isArray(l2) ? l2.map((e5) => String(e5)) : [];
28
- t2 = e4.length > 0 && e4.every((e5) => o2.includes(e5)) ? [] : e4;
29
- }
30
- if (ae.value.multiple) {
31
- t2 = !!ae.value.arrayValue ? Array.isArray(t2) ? t2 : t2 ? String(t2).split(",") : [] : Array.isArray(t2) ? t2.length > 0 ? t2.join(",") : "" : t2 ?? "";
32
- }
33
- void 0 === t2 && (t2 = null), S(X, Y, t2), null != t2 && (N.value = "");
34
- } }), pe = l(ae.value.options ? ae.value.options : []), ce = k(J.pageContext, J.configure);
35
- ce.length > 0 && (pe.value = ce);
36
- const fe = l(false), ve = J.configure.props && J.configure.props.dataOrigin ? J.configure.props.dataOrigin : {}, ge = ve.optionValueSetType;
37
- let me = [];
38
- const de = ae.value.optionconfigInfo ? ae.value.optionconfigInfo : {};
39
- if ("dynamicData" == ge || "dataTable" == ge || "service" == ge) {
40
- if ("remote" == ve.filterType) {
41
- let e3;
42
- ae.value.filterable = true, ae.value.remote = true, ae.value.remoteShowSuffix = true, ae.value.remoteMethod = function(l2) {
43
- e3 !== l2 && (e3 = l2, fe.value = true, A(J.pageContext, de, l2).then((e4) => {
44
- fe.value = false;
45
- }).then((e4) => {
46
- fe.value = false;
47
- }));
48
- };
49
- }
50
- if (ve.autoSets) for (let e3 of ve.autoSets) e3.source && me.push(e3);
51
- }
52
- J.configure && J.configure.props && J.configure.props.base && J.configure.props.base.optionProp && me.push({ source: "label", target: J.configure.props.base.optionProp }), ae.value.changeMethod = function(e3) {
53
- var _a;
54
- let l2, t2 = null;
55
- pe.value && null != e3 && null != e3 && (((_a = ae.value) == null ? void 0 : _a.multiple) && false !== ae.value.showSelectAll && Array.isArray(e3) && e3.includes(U) && (e3 = e3.filter((e4) => e4 !== U)), t2 = pe.value.filter((l3) => Array.isArray(e3) ? e3.includes(l3.value) : e3 === l3.value));
56
- me.length > 0 && T(J.configure, J.pageContext, me, t2, [ae.value.prop]);
57
- t2 && t2.length > 0 && (l2 = t2[0]);
58
- let o2 = {};
59
- l2 && (o2.extendParams = l2);
60
- o2.options = pe.value, o2.oldValue = ne, P(e3, J.pageContext, J.configure, "change", o2);
61
- };
62
- const ye = ae.value.monitorFields, he = [];
63
- if (ye) {
64
- const e3 = [];
65
- for (let l2 of ye) if (l2.startsWith("${")) {
66
- l2 = l2.substring(2, l2.length - 1);
67
- const t2 = l2.split(".");
68
- "page" !== t2[0] && "task" !== t2[0] && "data" !== t2[0] || (he.push(t2), e3.includes(t2[0]) || e3.push(t2[0]));
69
- }
70
- for (let l2 of e3) o(X[l2], () => {
71
- Ce();
72
- });
73
- }
74
- let be = "", xe = false;
75
- function Ce() {
76
- xe && clearTimeout(xe), xe = setTimeout(function() {
77
- const e3 = function() {
78
- let e4 = [];
79
- for (let l2 of he) e4.push(j(X, l2));
80
- return e4.join(",");
81
- }();
82
- e3 != be && (be = e3, de.watchAttrValue = e3, A(J.pageContext, de, void 0).then((e4) => {
83
- fe.value = false;
84
- }));
85
- }, 200);
86
- }
87
- a(() => {
88
- xe && clearTimeout(xe);
89
- });
90
- let _e = false;
91
- const we = l(null), Se = l(null), ke = l(null);
92
- function Ae() {
93
- const e3 = ue();
94
- if (null != e3 && "" !== e3 && e3.length > 0) {
95
- let l2 = "";
96
- return "string" == typeof e3 ? pe.value.length > 0 ? pe.value.forEach((t2) => {
97
- t2.value === e3 && (l2 = t2.label);
98
- }) : l2 = e3 : pe.value.length > 0 ? (pe.value.forEach((t2) => {
99
- e3.forEach((e4) => {
100
- t2.value === e4 && (l2 = l2 + t2.label + ",");
101
- });
102
- }), l2 = l2.slice(0, l2.length - 1)) : l2 = e3.join(","), l2;
103
- }
104
- }
105
- function Te(e3) {
106
- Q.value = e3;
107
- }
108
- function je() {
109
- const e3 = Ae();
110
- e3 && navigator.clipboard && navigator.clipboard.writeText(e3).then(() => {
111
- E({ showClose: true, type: "success", message: H("superPageRuntimeMessage.copySuccess") });
112
- });
113
- }
114
- return i(() => {
115
- const e3 = new z("#" + re, { text: function() {
116
- return Ae();
117
- } });
118
- e3.on("success", () => {
119
- E({ showClose: true, type: "success", message: H("superPageRuntimeMessage.copySuccess") });
120
- }), e3.on("error", (e4) => {
121
- console.error("复制失败", e4);
122
- }), n(() => {
123
- const e4 = se.value;
124
- V(e4, J.pageContext, J.configure, { formItemRef: we.value, componentRef: Se.value, titleRef: ke.value, value: e4, entity: J.pageContext.entity.data, pageData: J.pageContext.entity.page });
125
- });
126
- }), $2({ updateOptions: function(e3) {
127
- if (pe.value = e3 || [], !_e) {
128
- const e4 = ue();
129
- if (null != e4 && "" !== e4 && pe.value.length > 0) {
130
- let l2 = false;
131
- for (let t2 of pe.value) if (t2.value == e4) {
132
- l2 = true;
133
- break;
134
- }
135
- if (!l2) {
136
- for (let l3 of pe.value) if (l3.label == e4) {
137
- se.value = l3.value;
138
- break;
139
- }
140
- }
141
- }
142
- }
143
- _e = true;
144
- }, addRequiredClass: function() {
145
- N.value = I();
146
- }, getSelectItemsTitle: Ae, getOptions: function() {
147
- return pe.value;
148
- } }), (l2, t2) => {
149
- const o2 = r("el-icon"), a2 = r("el-option"), i2 = r("el-select"), n2 = r("el-popover"), S2 = r("el-form-item");
150
- return s(), u(S2, { ref_key: "formItemRef", ref: we, required: !!ae.value.required, class: c(f(le) + (N.value ? " " + N.value : "")), "label-width": ae.value.labelWidth, style: p(f(ee)) }, { label: v(() => [ae.value.tittleShow ? (s(), b("div", { key: 0, ref_key: "titleRef", ref: ke, style: p({ ...f(te), ...f(oe) }) }, [ae.value.prefixType ? (s(), u(M, { key: 0, pageContext: e2.pageContext, property: ae.value }, null, 8, ["pageContext", "property"])) : (s(), b(x, { key: 1 }, [w(_(f(D)(ae.value.title)), 1)], 64))], 4)) : h("", true)]), default: v(() => [g(n2, { placement: "right", trigger: "hover", width: 50, "popper-class": "custom-sel-copy-tooltip", "popper-options": { modifiers: [{ name: "flip", options: { fallbackPlacements: ["left", "top", "bottom"] } }] } }, { reference: v(() => [m("div", B, [g(i2, { ref_key: "componentRef", ref: Se, style: { flex: "1", "min-width": "0" }, disabled: "disabled" === ae.value.state, size: ae.value.size, clearable: ae.value.clearable, multiple: ae.value.multiple, "collapse-tags": ae.value.collapseTags, "collapse-tags-tooltip": ae.value.collapseTagsTooltip, filterable: ae.value.filterable, "allow-create": ae.value.allowCreate, placeholder: ae.value.placeholder, "remote-show-suffix": ae.value.remoteShowSuffix, remote: ae.value.remote, "remote-method": ae.value.remoteMethod, loading: fe.value, onKeydown: t2[0] || (t2[0] = d(y(() => {
151
- }, ["stop"]), ["space"])), onChange: ae.value.changeMethod, onClear: ae.value.changeMethod, onVisibleChange: Te, modelValue: se.value, "onUpdate:modelValue": t2[1] || (t2[1] = (e3) => se.value = e3) }, { prefix: v(() => [m("span", { class: "mobile-copy-trigger", onClick: y(je, ["stop"]) }, [g(o2, { style: { cursor: "copy" } }, { default: v(() => [g(f(q))]), _: 1 })])]), default: v(() => [ae.value.multiple && false !== ae.value.showSelectAll ? (s(), u(a2, { key: 0, label: f(H)("superGrid.selectAll"), value: U, disabled: !(pe.value && pe.value.length > 0) }, null, 8, ["label", "disabled"])) : h("", true), (s(true), b(x, null, C(pe.value, (l3) => (s(), u(a2, { key: l3.value, label: l3.label, value: l3.value, class: c({ "option-description-newLine": f(ie) }), onClick: (t3) => f(P)(l3.value, e2.pageContext, e2.configure, "click", { values: se.value }) }, { default: v(() => [l3._description_ ? (s(), b(x, { key: 0 }, [f(ie) ? (s(), b("div", F, [m("span", null, _(l3.label), 1), m("span", G, _(l3._description_), 1)])) : (s(), b(x, { key: 1 }, [m("span", K, _(l3.label), 1), m("span", L, _(l3._description_), 1)], 64))], 64)) : h("", true)]), _: 2 }, 1032, ["label", "value", "class", "onClick"]))), 128))]), _: 1 }, 8, ["disabled", "size", "clearable", "multiple", "collapse-tags", "collapse-tags-tooltip", "filterable", "allow-create", "placeholder", "remote-show-suffix", "remote", "remote-method", "loading", "onChange", "onClear", "modelValue"])])]), default: v(() => [m("span", W, [g(o2, { id: re, style: { cursor: "copy" } }, { default: v(() => [g(f(q))]), _: 1 })])]), _: 1 })]), _: 1 }, 8, ["required", "class", "label-width", "style"]);
152
- };
153
- } });
154
- export {
155
- $ as default
156
- };
@@ -1,4 +0,0 @@
1
- import e from "./separatelabel-runtime.vue2.js";
2
- export {
3
- e as default
4
- };
@@ -1,16 +0,0 @@
1
- import { defineComponent as e, ref as t, onMounted as i, nextTick as o, createElementBlock as n, openBlock as r, normalizeClass as a, normalizeStyle as p, unref as l, createElementVNode as s, createBlock as u, createCommentVNode as c, createTextVNode as g, toDisplayString as f } from "vue";
2
- import { SuperIcon as m } from "agilebuilder-ui";
3
- import { $t as y } from "../../../../utils/i18n-util.js";
4
- import { handleAfterInitEvent as b } from "../../../../utils/events/event-util.js";
5
- const d = e({ __name: "separatelabel-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: d2 }) {
6
- const v = e2, x = t(null), C = v.configure.runtime ? v.configure.runtime : {}, T = C.style, V = C.class, h = C.headerStyle;
7
- return i(() => {
8
- o(() => {
9
- const e3 = y(v.configure.props.base.title);
10
- b(e3, v.pageContext, v.configure, { componentRef: x.value, value: e3, entity: v.pageContext.entity.data, pageData: v.pageContext.entity.page });
11
- });
12
- }), d2({}), (t2, i2) => (r(), n("div", { style: p(l(T)), class: a([l(V), "amb-widget-separatelabel"]), ref_key: "thisRef", ref: x }, [s("div", { class: "label", style: p(l(h)) }, [e2.configure.props.iconType && e2.configure.props.iconValue ? (r(), u(l(m), { key: 0, iconType: e2.configure.props.iconType, iconValue: e2.configure.props.iconValue, style: { "margin-right": "2px" } }, null, 8, ["iconType", "iconValue"])) : c("", true), g(" " + f(l(y)(e2.configure.props.base.title)), 1)], 4)], 6));
13
- } });
14
- export {
15
- d as default
16
- };
@@ -1,4 +0,0 @@
1
- import t from "./switch-runtime.vue2.js";
2
- export {
3
- t as default
4
- };
@@ -1,36 +0,0 @@
1
- import { defineComponent as e, ref as t, computed as l, onMounted as a, nextTick as u, resolveComponent as i, createBlock as n, openBlock as v, normalizeStyle as o, normalizeClass as r, unref as c, withCtx as s, createVNode as f, createElementBlock as p, createCommentVNode as m, toDisplayString as d } from "vue";
2
- import { getFormModelFields as g } from "../../../../utils/page-init-util.js";
3
- import { getVariableValue as V, setVariableValue as y } from "../../../../utils/page-helper-util.js";
4
- import { handleAfterInitEvent as x, handleFormEvent as h } from "../../../../utils/events/event-util.js";
5
- import { $t as C } from "../../../../utils/i18n-util.js";
6
- import { addRequiredClassUtil as b } from "../../../../utils/common-util.js";
7
- const w = e({ __name: "switch-runtime", props: { pageContext: {}, configure: {} }, setup(e2, { expose: w2 }) {
8
- const R = e2, _ = t(null), j = R.pageContext.entity ? R.pageContext.entity : {};
9
- let k = g(R.pageContext, R.configure);
10
- const q = R.configure.runtime ? R.configure.runtime : {}, S = q.style, z = q.class, I = q.headerStyle, T = q.titleExceedStyle, W = t(q.props ? q.props : {});
11
- let D = V(j, k);
12
- function E(e3) {
13
- return void 0 !== W.value[e3] && null !== W.value[e3] && "" !== W.value[e3];
14
- }
15
- null == D || "number" != typeof D || D + "" != "1" && D + "" != "0" || (E("activeValue") || (W.value.activeValue = 1), E("inactiveValue") || (W.value.inactiveValue = 0)), null != D && "boolean" == typeof D && (E("activeValue") || (W.value.activeValue = true), E("inactiveValue") || (W.value.inactiveValue = false)), E("activeValue") || (W.value.activeValue = true), E("inactiveValue") || (W.value.inactiveValue = false);
16
- const O = q.switchStyle, U = l({ get() {
17
- let e3 = V(j, k);
18
- return null != e3 && (true === W.value.activeValue ? (e3 + "" == "1" && (e3 = true), e3 + "" == "0" && (e3 = false)) : 1 === W.value.activeValue ? (e3 + "" == "true" && (e3 = 1), e3 + "" == "false" && (e3 = 0)) : e3 += ""), e3;
19
- }, set(e3) {
20
- null != e3 && (true === W.value.activeValue ? (e3 + "" == "1" && (e3 = true), e3 + "" == "0" && (e3 = false)) : 1 === W.value.activeValue ? (e3 + "" == "true" && (e3 = 1), e3 + "" == "false" && (e3 = 0)) : e3 += ""), y(j, k, e3), null != e3 && (_.value = "");
21
- } }), A = t(null), B = t(null), F = t(null);
22
- return a(() => {
23
- u(() => {
24
- const e3 = U.value;
25
- x(e3, R.pageContext, R.configure, { formItemRef: A.value, componentRef: B.value, titleRef: F.value, value: e3, entity: R.pageContext.entity.data, pageData: R.pageContext.entity.page });
26
- });
27
- }), w2({ addRequiredClass: function() {
28
- _.value = b();
29
- } }), (t2, l2) => {
30
- const a2 = i("el-switch"), u2 = i("el-form-item");
31
- return v(), n(u2, { ref_key: "formItemRef", ref: A, required: W.value.required, class: r(c(z) + (_.value ? " " + _.value : "")), "label-width": W.value.labelWidth, style: o(c(S)) }, { label: s(() => [W.value.tittleShow ? (v(), p("div", { key: 0, ref_key: "titleRef", ref: F, style: o({ ...c(I), ...c(T) }) }, d(c(C)(W.value.title)), 5)) : m("", true)]), default: s(() => [f(a2, { ref_key: "componentRef", ref: B, disabled: "disabled" === W.value.state, "active-value": W.value.activeValue, "active-text": W.value.activeText, "inactive-value": W.value.inactiveValue, "inactive-text": W.value.inactiveText, width: W.value.offOnWidth, size: W.value.size, style: o(c(O)), modelValue: U.value, "onUpdate:modelValue": l2[0] || (l2[0] = (e3) => U.value = e3), onChange: l2[1] || (l2[1] = (t3) => c(h)(t3, e2.pageContext, e2.configure, "change")) }, null, 8, ["disabled", "active-value", "active-text", "inactive-value", "inactive-text", "width", "size", "style", "modelValue"])]), _: 1 }, 8, ["required", "class", "label-width", "style"]);
32
- };
33
- } });
34
- export {
35
- w as default
36
- };
@@ -1,4 +0,0 @@
1
- import t from "./tag-runtime.vue2.js";
2
- export {
3
- t as default
4
- };