super-page-runtime 1.0.16 → 1.3.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (632) hide show
  1. package/dist/es/_virtual/_plugin-vue_export-helper.js +8 -0
  2. package/dist/es/assets/chart-themes/theme1.d.ts +4 -0
  3. package/dist/es/assets/chart-themes/theme1.js +4 -0
  4. package/dist/es/assets/chart-themes/theme2.d.ts +4 -0
  5. package/dist/es/assets/chart-themes/theme2.js +4 -0
  6. package/dist/es/assets/chart-themes/theme3.d.ts +4 -0
  7. package/dist/es/assets/chart-themes/theme3.js +4 -0
  8. package/dist/es/assets/file.png.js +4 -0
  9. package/dist/es/assets/folder.png.js +4 -0
  10. package/dist/es/components/runtime/index.d.ts +5 -0
  11. package/dist/es/components/runtime/utils/api/api-util.d.ts +1 -0
  12. package/dist/es/components/runtime/utils/api/api-util.js +4 -0
  13. package/dist/es/components/runtime/utils/api/page-expose-util.d.ts +1 -0
  14. package/dist/es/components/runtime/utils/api/page-expose-util.js +159 -0
  15. package/dist/es/components/runtime/utils/assemblys-config.js +20 -0
  16. package/dist/es/components/runtime/utils/barcode-util.d.ts +8 -0
  17. package/dist/es/components/runtime/utils/barcode-util.js +12 -0
  18. package/dist/es/components/runtime/utils/charts/chart-columnline-util.js +140 -0
  19. package/dist/es/components/runtime/utils/charts/chart-gauge-util.js +37 -0
  20. package/dist/es/components/runtime/utils/charts/chart-pie-util.js +81 -0
  21. package/dist/es/components/runtime/utils/charts/chart-radar-util.js +55 -0
  22. package/dist/es/components/runtime/utils/charts/chart-scatter-util.js +46 -0
  23. package/dist/es/components/runtime/utils/charts/chart-util.d.ts +113 -0
  24. package/dist/es/components/runtime/utils/charts/chart-util.js +274 -0
  25. package/dist/es/components/runtime/utils/common-util.d.ts +33 -0
  26. package/dist/es/components/runtime/utils/common-util.js +120 -0
  27. package/dist/es/components/runtime/utils/eventBus.d.ts +7 -0
  28. package/dist/es/components/runtime/utils/eventBus.js +5 -0
  29. package/{lib/src → dist/es/components/runtime}/utils/events/event-util.d.ts +45 -1
  30. package/dist/es/components/runtime/utils/events/event-util.js +403 -0
  31. package/dist/es/components/runtime/utils/events/print-label.d.ts +5 -0
  32. package/dist/es/components/runtime/utils/events/print-label.js +100 -0
  33. package/{lib/src → dist/es/components/runtime}/utils/events/standard-event.d.ts +29 -3
  34. package/dist/es/components/runtime/utils/events/standard-event.js +971 -0
  35. package/dist/es/components/runtime/utils/events/validator-util.d.ts +25 -0
  36. package/dist/es/components/runtime/utils/events/validator-util.js +309 -0
  37. package/dist/es/components/runtime/utils/form/date-shortcuts.d.ts +7 -0
  38. package/dist/es/components/runtime/utils/form/date-shortcuts.js +36 -0
  39. package/dist/es/components/runtime/utils/form/scan-util.js +93 -0
  40. package/{lib/src → dist/es/components/runtime}/utils/global-refs.d.ts +6 -0
  41. package/dist/es/components/runtime/utils/global-refs.js +57 -0
  42. package/dist/es/components/runtime/utils/i18n-util.d.ts +1 -0
  43. package/dist/es/components/runtime/utils/i18n-util.js +14 -0
  44. package/{lib/src → dist/es/components/runtime}/utils/interfaces/page-design-types.d.ts +32 -6
  45. package/dist/es/components/runtime/utils/interfaces/page-design-types.js +4 -0
  46. package/dist/es/components/runtime/utils/page-helper-util.d.ts +174 -0
  47. package/dist/es/components/runtime/utils/page-helper-util.js +386 -0
  48. package/{lib/src → dist/es/components/runtime}/utils/page-init-util.d.ts +12 -2
  49. package/dist/es/components/runtime/utils/page-init-util.js +203 -0
  50. package/dist/es/components/runtime/utils/page-permission-util.d.ts +26 -0
  51. package/dist/es/components/runtime/utils/page-permission-util.js +30 -0
  52. package/dist/es/components/runtime/utils/page-store.d.ts +46 -0
  53. package/dist/es/components/runtime/utils/page-store.js +26 -0
  54. package/dist/es/components/runtime/utils/store-util.js +13 -0
  55. package/dist/es/components/runtime/utils/store.js +4 -0
  56. package/dist/es/components/runtime/utils/table-utils.d.ts +34 -0
  57. package/dist/es/components/runtime/utils/table-utils.js +80 -0
  58. package/dist/es/components/runtime/utils/tree-utils.js +73 -0
  59. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue.js +4 -0
  60. package/dist/es/components/runtime/views/assemblys/button/button/button-runtime.vue2.js +27 -0
  61. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +7 -0
  62. package/dist/es/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +21 -0
  63. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +4 -0
  64. package/dist/es/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +41 -0
  65. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue.js +4 -0
  66. package/dist/es/components/runtime/views/assemblys/button/export-pdf/exportpdf-runtime.vue2.js +6 -0
  67. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue.js +4 -0
  68. package/dist/es/components/runtime/views/assemblys/button/print-label/printlabel-runtime.vue2.js +21 -0
  69. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +7 -0
  70. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +53 -0
  71. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue.js +14 -0
  72. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-breadcrumb.vue2.js +4 -0
  73. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +13 -0
  74. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.js +4 -0
  75. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +60 -0
  76. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.js +4 -0
  77. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue.js +7 -0
  78. package/dist/es/components/runtime/views/assemblys/chart/common/common-homepage-search.vue2.js +63 -0
  79. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +7 -0
  80. package/dist/es/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +35 -0
  81. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +7 -0
  82. package/dist/es/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +46 -0
  83. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +7 -0
  84. package/dist/es/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +35 -0
  85. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +7 -0
  86. package/dist/es/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +35 -0
  87. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.d.ts +121 -0
  88. package/dist/es/components/runtime/views/assemblys/chart/table/chart-table-util.js +419 -0
  89. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue.js +6 -0
  90. package/dist/es/components/runtime/views/assemblys/chart/table/group-column-item.vue2.js +4 -0
  91. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue.js +10 -0
  92. package/dist/es/components/runtime/views/assemblys/chart/table/group-column.vue2.js +4 -0
  93. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue.js +45 -0
  94. package/dist/es/components/runtime/views/assemblys/chart/table/normal-column.vue2.js +4 -0
  95. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue.js +15 -0
  96. package/dist/es/components/runtime/views/assemblys/chart/table/table-pageination.vue2.js +4 -0
  97. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue.js +4 -0
  98. package/dist/es/components/runtime/views/assemblys/chart/table/table-runtime.vue2.js +255 -0
  99. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +28 -0
  100. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +36 -0
  101. package/dist/es/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +4 -0
  102. package/{lib → dist/es}/components/runtime/views/assemblys/common/remove-signer-dialog.vue.d.ts +5 -5
  103. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue.js +24 -0
  104. package/dist/es/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +4 -0
  105. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.d.ts +31 -0
  106. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue.js +35 -0
  107. package/dist/es/components/runtime/views/assemblys/common/save-chart-condition-dialog.vue2.js +4 -0
  108. package/{lib → dist/es}/components/runtime/views/assemblys/common/task-informition-dialog.vue.d.ts +5 -5
  109. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue.js +19 -0
  110. package/dist/es/components/runtime/views/assemblys/common/task-informition-dialog.vue2.js +4 -0
  111. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.js +7 -0
  112. package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +29 -0
  113. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +4 -0
  114. package/dist/es/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +21 -0
  115. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue.js +4 -0
  116. package/dist/es/components/runtime/views/assemblys/container/container/container-runtime.vue2.js +18 -0
  117. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue.js +7 -0
  118. package/dist/es/components/runtime/views/assemblys/container/fixed/FixedBox.vue2.js +29 -0
  119. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.d.ts +94 -0
  120. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.js +7 -0
  121. package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue2.js +81 -0
  122. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +4 -0
  123. package/dist/es/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +25 -0
  124. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue.js +4 -0
  125. package/dist/es/components/runtime/views/assemblys/container/form/form-runtime.vue2.js +20 -0
  126. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +4 -0
  127. package/dist/es/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +14 -0
  128. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +7 -0
  129. package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +96 -0
  130. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.js +7 -0
  131. package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +35 -0
  132. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue.js +4 -0
  133. package/dist/es/components/runtime/views/assemblys/data/bar-code/barcode-runtime.vue2.js +69 -0
  134. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +378 -0
  135. package/dist/es/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +4 -0
  136. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +300 -0
  137. package/dist/es/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +4 -0
  138. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue.js +4 -0
  139. package/dist/es/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +82 -0
  140. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +7 -0
  141. package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +134 -0
  142. package/{lib → dist/es}/components/runtime/views/assemblys/error-render.vue.d.ts +4 -4
  143. package/dist/es/components/runtime/views/assemblys/error-render.vue.js +5 -0
  144. package/dist/es/components/runtime/views/assemblys/error-render.vue2.js +4 -0
  145. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +4 -0
  146. package/dist/es/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +50 -0
  147. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue.js +38 -0
  148. package/dist/es/components/runtime/views/assemblys/form/common/title-suffix-element.vue2.js +4 -0
  149. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue.js +4 -0
  150. package/dist/es/components/runtime/views/assemblys/form/custom/custom-runtime.vue2.js +69 -0
  151. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +4 -0
  152. package/dist/es/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +90 -0
  153. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +4 -0
  154. package/dist/es/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +55 -0
  155. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +4 -0
  156. package/dist/es/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +24 -0
  157. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +4 -0
  158. package/dist/es/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +75 -0
  159. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +4 -0
  160. package/dist/es/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +28 -0
  161. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +4 -0
  162. package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +82 -0
  163. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue.js +4 -0
  164. package/dist/es/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +37 -0
  165. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue.js +4 -0
  166. package/dist/es/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +32 -0
  167. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +7 -0
  168. package/dist/es/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +16 -0
  169. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +4 -0
  170. package/dist/es/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +73 -0
  171. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +4 -0
  172. package/dist/es/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +102 -0
  173. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue.js +4 -0
  174. package/dist/es/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +97 -0
  175. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue.js +4 -0
  176. package/dist/es/components/runtime/views/assemblys/form/separatelabel/separatelabel-runtime.vue2.js +16 -0
  177. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +4 -0
  178. package/dist/es/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +36 -0
  179. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +4 -0
  180. package/dist/es/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +44 -0
  181. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +4 -0
  182. package/dist/es/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +28 -0
  183. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.d.ts +17 -0
  184. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue.js +83 -0
  185. package/dist/es/components/runtime/views/assemblys/home-chart-render.vue2.js +4 -0
  186. package/dist/es/components/runtime/views/assemblys/object-render.vue.d.ts +17 -0
  187. package/dist/es/components/runtime/views/assemblys/object-render.vue.js +129 -0
  188. package/dist/es/components/runtime/views/assemblys/object-render.vue2.js +4 -0
  189. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue.js +4 -0
  190. package/dist/es/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-runtime.vue2.js +20 -0
  191. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue.js +4 -0
  192. package/dist/es/components/runtime/views/assemblys/workflow/text-history/textflow-runtime.vue2.js +23 -0
  193. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +7 -0
  194. package/dist/es/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +24 -0
  195. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue.js +4 -0
  196. package/dist/es/components/runtime/views/assemblys/workflow/workflow-node/workflownode-runtime.vue2.js +18 -0
  197. package/dist/es/components/runtime/views/home-chart.vue.d.ts +23 -0
  198. package/dist/es/components/runtime/views/home-chart.vue.js +47 -0
  199. package/dist/es/components/runtime/views/home-chart.vue2.js +4 -0
  200. package/{lib/components/super-page-dialog → dist/es/components/runtime/views}/super-page-dialog.vue.d.ts +7 -3
  201. package/dist/es/components/runtime/views/super-page-dialog.vue.js +26 -0
  202. package/dist/es/components/runtime/views/super-page-dialog.vue3.js +5 -0
  203. package/{lib → dist/es}/components/runtime/views/super-page.vue.d.ts +43 -10
  204. package/dist/es/components/runtime/views/super-page.vue.js +7 -0
  205. package/dist/es/components/runtime/views/super-page.vue2.js +262 -0
  206. package/dist/es/i18n/langs/cn.js +4 -0
  207. package/dist/es/i18n/langs/en.js +4 -0
  208. package/dist/es/index.d.ts +16 -0
  209. package/dist/es/index.js +30 -0
  210. package/dist/es/style.css +633 -0
  211. package/package.json +74 -67
  212. package/.eslintrc.cjs +0 -26
  213. package/.prettierrc.json +0 -8
  214. package/App.vue +0 -9
  215. package/components/index.ts +0 -17
  216. package/components/runtime/index.ts +0 -2
  217. package/components/runtime/utils/assemblys-config.js +0 -294
  218. package/components/runtime/views/assemblys/button/button/button-runtime.vue +0 -49
  219. package/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue +0 -26
  220. package/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue +0 -93
  221. package/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue +0 -59
  222. package/components/runtime/views/assemblys/chart/common/common-attr-assistant.vue +0 -32
  223. package/components/runtime/views/assemblys/chart/common/common-attr-base.vue +0 -60
  224. package/components/runtime/views/assemblys/chart/common/common-attr-drill.vue +0 -39
  225. package/components/runtime/views/assemblys/chart/common/common-attr-groupby.vue +0 -104
  226. package/components/runtime/views/assemblys/chart/common/common-attr-serieslist.vue +0 -145
  227. package/components/runtime/views/assemblys/chart/common/common-attr-sortby.vue +0 -119
  228. package/components/runtime/views/assemblys/chart/common/common-style-custom.vue +0 -28
  229. package/components/runtime/views/assemblys/chart/common/common-style-datazoom.vue +0 -45
  230. package/components/runtime/views/assemblys/chart/common/common-style-font-subtitle.vue +0 -78
  231. package/components/runtime/views/assemblys/chart/common/common-style-font-title.vue +0 -56
  232. package/components/runtime/views/assemblys/chart/common/common-style-grid.vue +0 -70
  233. package/components/runtime/views/assemblys/chart/common/common-style-legend.vue +0 -70
  234. package/components/runtime/views/assemblys/chart/common/common-style-tooltip.vue +0 -140
  235. package/components/runtime/views/assemblys/chart/common/common-style-xaxis.vue +0 -58
  236. package/components/runtime/views/assemblys/chart/common/common-style-yaxis.vue +0 -125
  237. package/components/runtime/views/assemblys/chart/common-series/common-attr-dataset.vue +0 -67
  238. package/components/runtime/views/assemblys/chart/common-series/common-attr-dynamic.vue +0 -57
  239. package/components/runtime/views/assemblys/chart/common-series/common-attr-testdatas.vue +0 -23
  240. package/components/runtime/views/assemblys/chart/common-series/common-style-label.vue +0 -209
  241. package/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue +0 -46
  242. package/components/runtime/views/assemblys/chart/pie/pie-runtime.vue +0 -56
  243. package/components/runtime/views/assemblys/chart/radar/radar-runtime.vue +0 -55
  244. package/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue +0 -57
  245. package/components/runtime/views/assemblys/common/common-attr-cursor.vue +0 -23
  246. package/components/runtime/views/assemblys/common/common-attr-size.vue +0 -54
  247. package/components/runtime/views/assemblys/common/common-select-table.vue +0 -287
  248. package/components/runtime/views/assemblys/common/common-style-background.vue +0 -46
  249. package/components/runtime/views/assemblys/common/common-style-border.vue +0 -37
  250. package/components/runtime/views/assemblys/common/common-style-custom.vue +0 -35
  251. package/components/runtime/views/assemblys/common/common-style-font-head.vue +0 -53
  252. package/components/runtime/views/assemblys/common/common-style-font.vue +0 -53
  253. package/components/runtime/views/assemblys/common/common-style-margin.vue +0 -34
  254. package/components/runtime/views/assemblys/common/common-style-padding.vue +0 -34
  255. package/components/runtime/views/assemblys/common/common-style-position.vue +0 -39
  256. package/components/runtime/views/assemblys/common/common-style-shadow.vue +0 -37
  257. package/components/runtime/views/assemblys/common/export-form-report-dialog.vue +0 -108
  258. package/components/runtime/views/assemblys/common/remove-signer-dialog.vue +0 -99
  259. package/components/runtime/views/assemblys/common/task-informition-dialog.vue +0 -69
  260. package/components/runtime/views/assemblys/common-attr-events.vue +0 -46
  261. package/components/runtime/views/assemblys/container/card/card-runtime.vue +0 -59
  262. package/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue +0 -59
  263. package/components/runtime/views/assemblys/container/container/container-runtime.vue +0 -41
  264. package/components/runtime/views/assemblys/container/flex/flex-runtime.vue +0 -35
  265. package/components/runtime/views/assemblys/container/form/form-runtime.vue +0 -37
  266. package/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue +0 -32
  267. package/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue +0 -54
  268. package/components/runtime/views/assemblys/container/tools/tools-runtime.vue +0 -99
  269. package/components/runtime/views/assemblys/data/bar-code/barcode-attr-base.vue +0 -117
  270. package/components/runtime/views/assemblys/data/bar-code/barcode-attr-event.vue +0 -14
  271. package/components/runtime/views/assemblys/data/bar-code/barcode-attr-style.vue +0 -25
  272. package/components/runtime/views/assemblys/data/bar-code/barcode-attr.vue +0 -28
  273. package/components/runtime/views/assemblys/data/bar-code/barcode-design.vue +0 -103
  274. package/components/runtime/views/assemblys/data/component/attr-header.vue +0 -69
  275. package/components/runtime/views/assemblys/data/component/attr-style.vue +0 -64
  276. package/components/runtime/views/assemblys/data/component/column-config.vue +0 -171
  277. package/components/runtime/views/assemblys/data/component/combinedHeader.vue +0 -96
  278. package/components/runtime/views/assemblys/data/component/composite-header.vue +0 -257
  279. package/components/runtime/views/assemblys/data/component/configuration-value.vue +0 -206
  280. package/components/runtime/views/assemblys/data/component/data-origin-tree.vue +0 -117
  281. package/components/runtime/views/assemblys/data/component/data-origin.vue +0 -260
  282. package/components/runtime/views/assemblys/data/component/formatting.vue +0 -200
  283. package/components/runtime/views/assemblys/data/component/in-parameter.vue +0 -56
  284. package/components/runtime/views/assemblys/data/component/querySetting.vue +0 -52
  285. package/components/runtime/views/assemblys/data/component/return-set-table.vue +0 -91
  286. package/components/runtime/views/assemblys/data/component/row-backgroud-color.vue +0 -58
  287. package/components/runtime/views/assemblys/data/component/select-data-table.vue +0 -86
  288. package/components/runtime/views/assemblys/data/table/main-table-runtime.vue +0 -858
  289. package/components/runtime/views/assemblys/data/table/sub-table-runtime.vue +0 -625
  290. package/components/runtime/views/assemblys/data/table/table-runtime.vue +0 -93
  291. package/components/runtime/views/assemblys/data/tree/tree-attr-base.vue +0 -137
  292. package/components/runtime/views/assemblys/data/tree/tree-attr-event.vue +0 -14
  293. package/components/runtime/views/assemblys/data/tree/tree-attr-style.vue +0 -55
  294. package/components/runtime/views/assemblys/data/tree/tree-attr.vue +0 -28
  295. package/components/runtime/views/assemblys/data/tree/tree-design.vue +0 -125
  296. package/components/runtime/views/assemblys/error-attr.vue +0 -15
  297. package/components/runtime/views/assemblys/error-render.vue +0 -17
  298. package/components/runtime/views/assemblys/form/cascader/cascader-design.vue +0 -288
  299. package/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue +0 -198
  300. package/components/runtime/views/assemblys/form/colors/colors-design.vue +0 -16
  301. package/components/runtime/views/assemblys/form/common/analytic-rule.vue +0 -148
  302. package/components/runtime/views/assemblys/form/common/attr-event.vue +0 -82
  303. package/components/runtime/views/assemblys/form/common/attr-header.vue +0 -54
  304. package/components/runtime/views/assemblys/form/common/attr-style.vue +0 -44
  305. package/components/runtime/views/assemblys/form/common/bar-code-rule.vue +0 -104
  306. package/components/runtime/views/assemblys/form/common/condition.vue +0 -147
  307. package/components/runtime/views/assemblys/form/common/data-origin.vue +0 -81
  308. package/components/runtime/views/assemblys/form/common/data-orign-in-parameter.vue +0 -64
  309. package/components/runtime/views/assemblys/form/common/dataorigin-input-table.vue +0 -106
  310. package/components/runtime/views/assemblys/form/common/default-value-setting.vue +0 -362
  311. package/components/runtime/views/assemblys/form/common/dimension-input.vue +0 -68
  312. package/components/runtime/views/assemblys/form/common/dynamic-data-source-setting.vue +0 -115
  313. package/components/runtime/views/assemblys/form/common/formatting-label.vue +0 -81
  314. package/components/runtime/views/assemblys/form/common/grid-num-select.vue +0 -43
  315. package/components/runtime/views/assemblys/form/common/icon-set-dialog.vue +0 -144
  316. package/components/runtime/views/assemblys/form/common/linkage.vue +0 -21
  317. package/components/runtime/views/assemblys/form/common/overall-height.vue +0 -20
  318. package/components/runtime/views/assemblys/form/common/overall-width.vue +0 -48
  319. package/components/runtime/views/assemblys/form/common/pre-suffix.vue +0 -33
  320. package/components/runtime/views/assemblys/form/common/rich-text.vue +0 -100
  321. package/components/runtime/views/assemblys/form/common/row-ul-li.vue +0 -55
  322. package/components/runtime/views/assemblys/form/common/setoption-table.vue +0 -86
  323. package/components/runtime/views/assemblys/form/common/size-input.vue +0 -65
  324. package/components/runtime/views/assemblys/form/common/suffixmodule.vue +0 -82
  325. package/components/runtime/views/assemblys/form/common/title.vue +0 -20
  326. package/components/runtime/views/assemblys/form/common/uploading.vue +0 -34
  327. package/components/runtime/views/assemblys/form/common/verification.vue +0 -79
  328. package/components/runtime/views/assemblys/form/common/voluntarily.vue +0 -27
  329. package/components/runtime/views/assemblys/form/custom/custom-attr-base.vue +0 -81
  330. package/components/runtime/views/assemblys/form/custom/custom-attr-event.vue +0 -14
  331. package/components/runtime/views/assemblys/form/custom/custom-attr-style.vue +0 -14
  332. package/components/runtime/views/assemblys/form/custom/custom-attr.vue +0 -28
  333. package/components/runtime/views/assemblys/form/custom/custom-design.vue +0 -57
  334. package/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue +0 -80
  335. package/components/runtime/views/assemblys/form/datetime/datetime-design.vue +0 -19
  336. package/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue +0 -60
  337. package/components/runtime/views/assemblys/form/divider/divider-runtime.vue +0 -44
  338. package/components/runtime/views/assemblys/form/file-picture/picture-design.vue +0 -80
  339. package/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue +0 -79
  340. package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-attr-base.vue +0 -142
  341. package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-attr-event.vue +0 -14
  342. package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-attr-style.vue +0 -14
  343. package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-attr.vue +0 -28
  344. package/components/runtime/views/assemblys/form/image-thumbnail/imagethumbnail-design.vue +0 -104
  345. package/components/runtime/views/assemblys/form/image-upload/imageupload-attr-base.vue +0 -75
  346. package/components/runtime/views/assemblys/form/image-upload/imageupload-attr-event.vue +0 -13
  347. package/components/runtime/views/assemblys/form/image-upload/imageupload-attr-style.vue +0 -14
  348. package/components/runtime/views/assemblys/form/image-upload/imageupload-attr.vue +0 -28
  349. package/components/runtime/views/assemblys/form/image-upload/imageupload-design.vue +0 -76
  350. package/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue +0 -62
  351. package/components/runtime/views/assemblys/form/input-show/input-show-attr-base.vue +0 -68
  352. package/components/runtime/views/assemblys/form/input-show/input-show-attr-event.vue +0 -14
  353. package/components/runtime/views/assemblys/form/input-show/input-show-attr-style.vue +0 -70
  354. package/components/runtime/views/assemblys/form/input-show/input-show-attr.vue +0 -28
  355. package/components/runtime/views/assemblys/form/input-show/input-show-design.vue +0 -155
  356. package/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue +0 -142
  357. package/components/runtime/views/assemblys/form/label/label-runtime.vue +0 -143
  358. package/components/runtime/views/assemblys/form/link/link-runtime.vue +0 -70
  359. package/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue +0 -24
  360. package/components/runtime/views/assemblys/form/radio/radio-runtime.vue +0 -203
  361. package/components/runtime/views/assemblys/form/rate/rate-design.vue +0 -16
  362. package/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue +0 -169
  363. package/components/runtime/views/assemblys/form/select/select-runtime.vue +0 -247
  364. package/components/runtime/views/assemblys/form/slider/slider-design.vue +0 -16
  365. package/components/runtime/views/assemblys/form/switch/switch-runtime.vue +0 -63
  366. package/components/runtime/views/assemblys/form/tag/tag-runtime.vue +0 -65
  367. package/components/runtime/views/assemblys/form/text/text-design.vue +0 -19
  368. package/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue +0 -63
  369. package/components/runtime/views/assemblys/form/transfer/transfer-design.vue +0 -32
  370. package/components/runtime/views/assemblys/object-render.vue +0 -176
  371. package/components/runtime/views/assemblys/page/page-attr-base-20240429-1.vue +0 -179
  372. package/components/runtime/views/assemblys/page/page-attr-base.vue +0 -259
  373. package/components/runtime/views/assemblys/page/page-attr-events.vue +0 -50
  374. package/components/runtime/views/assemblys/page/page-attr-style.vue +0 -25
  375. package/components/runtime/views/assemblys/page/page-attr.vue +0 -84
  376. package/components/runtime/views/assemblys/page/variable-dialog.vue +0 -242
  377. package/components/runtime/views/assemblys/workflow/component/combination.vue +0 -206
  378. package/components/runtime/views/assemblys/workflow/component/condition-dialog.vue +0 -99
  379. package/components/runtime/views/assemblys/workflow/component/event-dialog.vue +0 -278
  380. package/components/runtime/views/assemblys/workflow/component/journal-set-dialog.vue +0 -174
  381. package/components/runtime/views/assemblys/workflow/component/logical-setup-dialog.vue +0 -155
  382. package/components/runtime/views/assemblys/workflow/component/rule-dialog.vue +0 -47
  383. package/components/runtime/views/assemblys/workflow/component/set-dialog.vue +0 -130
  384. package/components/runtime/views/assemblys/workflow/component/task-trigger-dialog.vue +0 -96
  385. package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-attr-base.vue +0 -43
  386. package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-attr-event.vue +0 -14
  387. package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-attr-style.vue +0 -27
  388. package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-attr.vue +0 -28
  389. package/components/runtime/views/assemblys/workflow/picture-flow/pictureflow-design.vue +0 -17
  390. package/components/runtime/views/assemblys/workflow/text-history/texthistory-attr-base.vue +0 -60
  391. package/components/runtime/views/assemblys/workflow/text-history/texthistory-attr-event.vue +0 -14
  392. package/components/runtime/views/assemblys/workflow/text-history/texthistory-attr-style.vue +0 -27
  393. package/components/runtime/views/assemblys/workflow/text-history/texthistory-attr.vue +0 -28
  394. package/components/runtime/views/assemblys/workflow/text-history/texthistory-design.vue +0 -17
  395. package/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue +0 -64
  396. package/components/runtime/views/render/page-view.vue +0 -80
  397. package/components/runtime/views/super-page copy.vue +0 -61
  398. package/components/runtime/views/super-page.vue +0 -667
  399. package/components/super-page-dialog/index.ts +0 -2
  400. package/components/super-page-dialog/super-page-dialog.vue +0 -267
  401. package/components/wf-editor/index.ts +0 -2
  402. package/components/wf-editor/wf-editor.vue +0 -15
  403. package/cypress/e2e/example.cy.ts +0 -8
  404. package/cypress/e2e/tsconfig.json +0 -10
  405. package/cypress/fixtures/example.json +0 -5
  406. package/cypress/support/commands.ts +0 -39
  407. package/cypress/support/e2e.ts +0 -20
  408. package/cypress.config.ts +0 -8
  409. package/env.d.ts +0 -1
  410. package/index.html +0 -13
  411. package/lib/_virtual/_plugin-vue_export-helper.js +0 -9
  412. package/lib/components/index.d.ts +0 -5
  413. package/lib/components/runtime/index.d.ts +0 -3
  414. package/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +0 -24
  415. package/lib/components/runtime/views/assemblys/object-render.vue.d.ts +0 -17
  416. package/lib/components/super-page-dialog/index.d.ts +0 -3
  417. package/lib/components/wf-editor/index.d.ts +0 -3
  418. package/lib/components/wf-editor/wf-editor.vue.d.ts +0 -2
  419. package/lib/index.js +0 -8
  420. package/lib/runtime/index.js +0 -3
  421. package/lib/runtime/utils/assemblys-config.js +0 -258
  422. package/lib/runtime/views/assemblys/button/button/button-runtime.vue.js +0 -3
  423. package/lib/runtime/views/assemblys/button/button/button-runtime.vue2.js +0 -54
  424. package/lib/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +0 -3
  425. package/lib/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +0 -35
  426. package/lib/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +0 -3
  427. package/lib/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +0 -110
  428. package/lib/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +0 -3
  429. package/lib/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +0 -53
  430. package/lib/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +0 -3
  431. package/lib/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +0 -42
  432. package/lib/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +0 -3
  433. package/lib/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +0 -50
  434. package/lib/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +0 -3
  435. package/lib/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +0 -50
  436. package/lib/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +0 -3
  437. package/lib/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +0 -51
  438. package/lib/runtime/views/assemblys/common/export-form-report-dialog.vue.js +0 -141
  439. package/lib/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +0 -3
  440. package/lib/runtime/views/assemblys/common/remove-signer-dialog.vue.js +0 -127
  441. package/lib/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +0 -3
  442. package/lib/runtime/views/assemblys/common/task-informition-dialog.vue.js +0 -104
  443. package/lib/runtime/views/assemblys/common/task-informition-dialog.vue2.js +0 -3
  444. package/lib/runtime/views/assemblys/container/card/card-runtime.vue.js +0 -3
  445. package/lib/runtime/views/assemblys/container/card/card-runtime.vue2.js +0 -72
  446. package/lib/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +0 -3
  447. package/lib/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +0 -73
  448. package/lib/runtime/views/assemblys/container/container/container-runtime.vue.js +0 -3
  449. package/lib/runtime/views/assemblys/container/container/container-runtime.vue2.js +0 -78
  450. package/lib/runtime/views/assemblys/container/flex/flex-runtime.vue.js +0 -3
  451. package/lib/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +0 -42
  452. package/lib/runtime/views/assemblys/container/form/form-runtime.vue.js +0 -3
  453. package/lib/runtime/views/assemblys/container/form/form-runtime.vue2.js +0 -43
  454. package/lib/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +0 -3
  455. package/lib/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +0 -29
  456. package/lib/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +0 -3
  457. package/lib/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +0 -68
  458. package/lib/runtime/views/assemblys/container/tools/tools-runtime.vue.js +0 -3
  459. package/lib/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +0 -74
  460. package/lib/runtime/views/assemblys/data/table/main-table-runtime.vue.js +0 -640
  461. package/lib/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +0 -3
  462. package/lib/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +0 -452
  463. package/lib/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +0 -3
  464. package/lib/runtime/views/assemblys/data/table/table-runtime.vue.js +0 -3
  465. package/lib/runtime/views/assemblys/data/table/table-runtime.vue2.js +0 -82
  466. package/lib/runtime/views/assemblys/error-render.vue.js +0 -22
  467. package/lib/runtime/views/assemblys/error-render.vue2.js +0 -3
  468. package/lib/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +0 -3
  469. package/lib/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +0 -156
  470. package/lib/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +0 -3
  471. package/lib/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +0 -82
  472. package/lib/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +0 -3
  473. package/lib/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +0 -59
  474. package/lib/runtime/views/assemblys/form/divider/divider-runtime.vue.js +0 -3
  475. package/lib/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +0 -40
  476. package/lib/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +0 -3
  477. package/lib/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +0 -74
  478. package/lib/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +0 -3
  479. package/lib/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +0 -63
  480. package/lib/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +0 -3
  481. package/lib/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +0 -127
  482. package/lib/runtime/views/assemblys/form/label/label-runtime.vue.js +0 -3
  483. package/lib/runtime/views/assemblys/form/label/label-runtime.vue2.js +0 -133
  484. package/lib/runtime/views/assemblys/form/link/link-runtime.vue.js +0 -3
  485. package/lib/runtime/views/assemblys/form/link/link-runtime.vue2.js +0 -77
  486. package/lib/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +0 -3
  487. package/lib/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +0 -29
  488. package/lib/runtime/views/assemblys/form/radio/radio-runtime.vue.js +0 -3
  489. package/lib/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +0 -157
  490. package/lib/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +0 -3
  491. package/lib/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +0 -174
  492. package/lib/runtime/views/assemblys/form/select/select-runtime.vue.js +0 -3
  493. package/lib/runtime/views/assemblys/form/select/select-runtime.vue2.js +0 -201
  494. package/lib/runtime/views/assemblys/form/switch/switch-runtime.vue.js +0 -3
  495. package/lib/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +0 -63
  496. package/lib/runtime/views/assemblys/form/tag/tag-runtime.vue.js +0 -3
  497. package/lib/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +0 -63
  498. package/lib/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +0 -3
  499. package/lib/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +0 -65
  500. package/lib/runtime/views/assemblys/object-render.vue.js +0 -142
  501. package/lib/runtime/views/assemblys/object-render.vue2.js +0 -3
  502. package/lib/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +0 -3
  503. package/lib/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +0 -61
  504. package/lib/runtime/views/super-page.vue.js +0 -479
  505. package/lib/runtime/views/super-page.vue2.js +0 -3
  506. package/lib/src/assets/chart-themes/theme1.js +0 -7
  507. package/lib/src/assets/chart-themes/theme2.js +0 -7
  508. package/lib/src/assets/chart-themes/theme3.js +0 -7
  509. package/lib/src/utils/api/api-util.d.ts +0 -11
  510. package/lib/src/utils/api/api-util.js +0 -128
  511. package/lib/src/utils/charts/chart-util.js +0 -15
  512. package/lib/src/utils/common-util.d.ts +0 -11
  513. package/lib/src/utils/common-util.js +0 -81
  514. package/lib/src/utils/events/event-util.js +0 -525
  515. package/lib/src/utils/events/standard-event.js +0 -1623
  516. package/lib/src/utils/events/validator-util.d.ts +0 -4
  517. package/lib/src/utils/events/validator-util.js +0 -389
  518. package/lib/src/utils/global-refs.js +0 -65
  519. package/lib/src/utils/interfaces/page-design-types.js +0 -9
  520. package/lib/src/utils/page-helper-util.d.ts +0 -87
  521. package/lib/src/utils/page-helper-util.js +0 -503
  522. package/lib/src/utils/page-init-util.js +0 -200
  523. package/lib/src/utils/store-util.js +0 -17
  524. package/lib/src/utils/store.js +0 -3
  525. package/lib/src/utils/table-utils.js +0 -23
  526. package/lib/super-page-dialog/index.js +0 -3
  527. package/lib/super-page-dialog/super-page-dialog.vue.js +0 -73
  528. package/lib/super-page-dialog/super-page-dialog.vue2.js +0 -3
  529. package/lib/wf-editor/index.js +0 -3
  530. package/lib/wf-editor/wf-editor.css +0 -4
  531. package/lib/wf-editor/wf-editor.vue.js +0 -15
  532. package/main.ts +0 -11
  533. package/package-ws.json +0 -70
  534. package/public/favicon.ico +0 -0
  535. package/src/assets/base.css +0 -86
  536. package/src/assets/chart-themes/theme1.ts +0 -6
  537. package/src/assets/chart-themes/theme2.ts +0 -6
  538. package/src/assets/chart-themes/theme3.ts +0 -6
  539. package/src/assets/images/button/button-group.png +0 -0
  540. package/src/assets/images/button/button.png +0 -0
  541. package/src/assets/images/chart/chart-column.png +0 -0
  542. package/src/assets/images/chart/chart-gauge.png +0 -0
  543. package/src/assets/images/chart/chart-pie.png +0 -0
  544. package/src/assets/images/chart/chart-radar.png +0 -0
  545. package/src/assets/images/chart/chart-scatter.png +0 -0
  546. package/src/assets/images/container/container-card.png +0 -0
  547. package/src/assets/images/container/container-collapse.png +0 -0
  548. package/src/assets/images/container/container-container.png +0 -0
  549. package/src/assets/images/container/container-flex.png +0 -0
  550. package/src/assets/images/container/container-form.png +0 -0
  551. package/src/assets/images/container/container-iframe.png +0 -0
  552. package/src/assets/images/container/container-normal.png +0 -0
  553. package/src/assets/images/container/container-tabs.png +0 -0
  554. package/src/assets/images/container/container-tools.png +0 -0
  555. package/src/assets/images/data/data-process.png +0 -0
  556. package/src/assets/images/data/data-step.png +0 -0
  557. package/src/assets/images/data/data-table-column.png +0 -0
  558. package/src/assets/images/data/data-table.png +0 -0
  559. package/src/assets/images/data/data-timeline.png +0 -0
  560. package/src/assets/images/data/data-tree.png +0 -0
  561. package/src/assets/images/form/form-cascader.png +0 -0
  562. package/src/assets/images/form/form-check.png +0 -0
  563. package/src/assets/images/form/form-color.png +0 -0
  564. package/src/assets/images/form/form-count.png +0 -0
  565. package/src/assets/images/form/form-custom.png +0 -0
  566. package/src/assets/images/form/form-date.png +0 -0
  567. package/src/assets/images/form/form-dept.png +0 -0
  568. package/src/assets/images/form/form-divider.png +0 -0
  569. package/src/assets/images/form/form-file.png +0 -0
  570. package/src/assets/images/form/form-image-upload.png +0 -0
  571. package/src/assets/images/form/form-img.png +0 -0
  572. package/src/assets/images/form/form-input.png +0 -0
  573. package/src/assets/images/form/form-label.png +0 -0
  574. package/src/assets/images/form/form-link.png +0 -0
  575. package/src/assets/images/form/form-radio.png +0 -0
  576. package/src/assets/images/form/form-scan.png +0 -0
  577. package/src/assets/images/form/form-score.png +0 -0
  578. package/src/assets/images/form/form-select.png +0 -0
  579. package/src/assets/images/form/form-slider.png +0 -0
  580. package/src/assets/images/form/form-space.png +0 -0
  581. package/src/assets/images/form/form-switch.png +0 -0
  582. package/src/assets/images/form/form-text.png +0 -0
  583. package/src/assets/images/form/form-textarea.png +0 -0
  584. package/src/assets/images/form/form-transfer.png +0 -0
  585. package/src/assets/images/form/form-zoom.png +0 -0
  586. package/src/assets/images/group-button.png +0 -0
  587. package/src/assets/images/group-chart.png +0 -0
  588. package/src/assets/images/group-container.png +0 -0
  589. package/src/assets/images/group-data.png +0 -0
  590. package/src/assets/images/group-form.png +0 -0
  591. package/src/assets/images/group-workflow.png +0 -0
  592. package/src/assets/images/workflow/workflow-button.png +0 -0
  593. package/src/assets/images/workflow/workflow-history-texts.png +0 -0
  594. package/src/assets/images/workflow/workflow-history.png +0 -0
  595. package/src/assets/images/workflow/workflow-imagehistory.png +0 -0
  596. package/src/assets/images/workflow/workflow-texthistory .png +0 -0
  597. package/src/assets/logo.svg +0 -1
  598. package/src/assets/main.css +0 -1
  599. package/src/i18n/langs/cn.js +0 -52
  600. package/src/i18n/langs/en.js +0 -52
  601. package/src/stores/counter.ts +0 -12
  602. package/src/utils/api/api-util.ts +0 -176
  603. package/src/utils/charts/chart-util.ts +0 -41
  604. package/src/utils/common-util.ts +0 -96
  605. package/src/utils/container-style-util.ts +0 -237
  606. package/src/utils/eventBus.ts +0 -14
  607. package/src/utils/events/event-util.ts +0 -790
  608. package/src/utils/events/jump-page-util.ts +0 -0
  609. package/src/utils/events/standard-event.ts +0 -2075
  610. package/src/utils/events/validator-util.ts +0 -474
  611. package/src/utils/global-refs.ts +0 -160
  612. package/src/utils/interfaces/page-design-types.ts +0 -259
  613. package/src/utils/page-helper-util.ts +0 -850
  614. package/src/utils/page-init-util.ts +0 -291
  615. package/src/utils/page-permission-util.ts +0 -521
  616. package/src/utils/store-util.ts +0 -41
  617. package/src/utils/store.ts +0 -3
  618. package/src/utils/table-utils.ts +0 -31
  619. package/tsconfig copy.json +0 -17
  620. package/tsconfig.app copy.json +0 -14
  621. package/tsconfig.app.json +0 -14
  622. package/tsconfig.json +0 -17
  623. package/tsconfig.node copy.json +0 -19
  624. package/tsconfig.node.json +0 -19
  625. package/tsconfig.vitest copy.json +0 -11
  626. package/tsconfig.vitest.json +0 -11
  627. package/vite.config copy.ts +0 -109
  628. package/vite.config.ts +0 -86
  629. package/vitest.config.ts +0 -14
  630. /package/{lib/src → dist/es/components/runtime}/utils/store-util.d.ts +0 -0
  631. /package/{lib/src → dist/es/components/runtime}/utils/store.d.ts +0 -0
  632. /package/{lib → dist/es}/favicon.ico +0 -0
@@ -0,0 +1,633 @@
1
+ .amb-super-page-runtime-dialog-view .el-dialog__body iframe,
2
+ .amb-super-page-runtime-dialog-view .el-dialog__body .amb-super-page-runtime-dialog-iframe {
3
+ width: calc(100% + var(--el-dialog-padding-primary, 16px) * 2);
4
+ height: calc(100vh - 40px - var(--el-dialog-padding-primary, 16px) * 1);
5
+ margin: 0;
6
+ padding: 0;
7
+ border: 0;
8
+ display: block;
9
+ margin-left: calc(var(--el-dialog-padding-primary, 16px) * -1);
10
+ margin-bottom: calc(var(--el-dialog-padding-primary, 16px) * -1);
11
+ margin-right: calc(var(--el-dialog-padding-primary, 16px) * -1);
12
+ }
13
+ .amb-super-page-runtime-dialog-view .el-dialog__body .runtime-page-container {
14
+ height: auto;
15
+ max-height: calc(100vh - 40px - var(--el-dialog-padding-primary, 16px) * 2);
16
+ }
17
+ .amb-super-page-runtime-dialog-view:not(.is-fullscreen):not(.is-align-center) {
18
+ margin-top: 15px;
19
+ margin-bottom: 15px;
20
+ }
21
+ .amb-super-page-runtime-dialog-view:not(.is-fullscreen) .el-dialog__body iframe,
22
+ .amb-super-page-runtime-dialog-view:not(.is-fullscreen) .el-dialog__body .amb-super-page-runtime-dialog-iframe {
23
+ width: calc(100% + var(--el-dialog-padding-primary, 16px) * 2);
24
+ height: calc(100vh - 40px - 30px - var(--el-dialog-padding-primary, 16px) * 1);
25
+ margin: 0;
26
+ padding: 0;
27
+ border: 0;
28
+ display: block;
29
+ margin-left: calc(var(--el-dialog-padding-primary, 16px) * -1);
30
+ margin-bottom: calc(var(--el-dialog-padding-primary, 16px) * -1);
31
+ margin-right: calc(var(--el-dialog-padding-primary, 16px) * -1);
32
+ }
33
+ .amb-super-page-runtime-dialog-view:not(.is-fullscreen) .el-dialog__body .runtime-page-container {
34
+ max-height: calc(100vh - 40px - 30px - var(--el-dialog-padding-primary, 16px) * 2);
35
+ }
36
+ .amb-super-page-runtime-drawer-view > .el-drawer__header {
37
+ padding-top: 0;
38
+ padding-bottom: 0;
39
+ min-height: 40px;
40
+ display: flex;
41
+ align-items: center;
42
+ gap: 15px;
43
+ }
44
+ .amb-super-page-runtime-drawer-view .el-drawer__body iframe,
45
+ .amb-super-page-runtime-drawer-view .el-drawer__body .amb-super-page-runtime-drawer-iframe {
46
+ width: calc(100% + var(--el-drawer-padding-primary, 16px) * 2);
47
+ height: calc(100vh - 40px - var(--el-drawer-padding-primary, 16px) * 1);
48
+ margin: 0;
49
+ padding: 0;
50
+ border: 0;
51
+ display: block;
52
+ margin-left: calc(var(--el-drawer-padding-primary, 16px) * -1);
53
+ margin-bottom: calc(var(--el-drawer-padding-primary, 16px) * -1);
54
+ margin-right: calc(var(--el-drawer-padding-primary, 16px) * -1);
55
+ }
56
+ .amb-super-page-runtime-drawer-view .el-drawer__body .runtime-page-container {
57
+ max-height: calc(100vh - 40px - var(--el-drawer-padding-primary, 16px) * 2);
58
+ }.runtime-page-container[data-v-8e808d13] {
59
+ overflow: auto;
60
+ max-height: 100vh;
61
+ padding: var(--app-main-padding, 15px);
62
+ background-color: #fff;
63
+ height: calc(100vh - var(--dec-page-main-padding, 15px) * 2);
64
+ }
65
+ @media (max-width: 768px) {
66
+ .runtime-page-container[data-v-8e808d13] .el-col-1 {
67
+ flex: 0 0 100%;
68
+ max-width: 100%;
69
+ }
70
+ }
71
+ .runtime-page-container[data-v-8e808d13] .el-col-1 > .el-form-item:only-child {
72
+ margin-bottom: 0;
73
+ }
74
+ .runtime-page-container[data-v-8e808d13] .el-col-2 {
75
+ flex: 0 0 calc(2 / 24 * (100% - (24 / 2 - 1) * var(--layout-form-flex-gap, 15px)));
76
+ max-width: calc(2 / 24 * (100% - (24 / 2 - 1) * var(--layout-form-flex-gap, 15px)));
77
+ }
78
+ @media (max-width: 768px) {
79
+ .runtime-page-container[data-v-8e808d13] .el-col-2 {
80
+ flex: 0 0 100%;
81
+ max-width: 100%;
82
+ }
83
+ }
84
+ .runtime-page-container[data-v-8e808d13] .el-col-2 > .el-form-item:only-child {
85
+ margin-bottom: 0;
86
+ }
87
+ @media (max-width: 768px) {
88
+ .runtime-page-container[data-v-8e808d13] .el-col-3 {
89
+ flex: 0 0 100%;
90
+ max-width: 100%;
91
+ }
92
+ }
93
+ .runtime-page-container[data-v-8e808d13] .el-col-3 > .el-form-item:only-child {
94
+ margin-bottom: 0;
95
+ }
96
+ .runtime-page-container[data-v-8e808d13] .el-col-4 {
97
+ flex: 0 0 calc(4 / 24 * (100% - (24 / 4 - 1) * var(--layout-form-flex-gap, 15px)));
98
+ max-width: calc(4 / 24 * (100% - (24 / 4 - 1) * var(--layout-form-flex-gap, 15px)));
99
+ }
100
+ @media (max-width: 768px) {
101
+ .runtime-page-container[data-v-8e808d13] .el-col-4 {
102
+ flex: 0 0 100%;
103
+ max-width: 100%;
104
+ }
105
+ }
106
+ .runtime-page-container[data-v-8e808d13] .el-col-4 > .el-form-item:only-child {
107
+ margin-bottom: 0;
108
+ }
109
+ @media (max-width: 768px) {
110
+ .runtime-page-container[data-v-8e808d13] .el-col-5 {
111
+ flex: 0 0 100%;
112
+ max-width: 100%;
113
+ }
114
+ }
115
+ .runtime-page-container[data-v-8e808d13] .el-col-5 > .el-form-item:only-child {
116
+ margin-bottom: 0;
117
+ }
118
+ .runtime-page-container[data-v-8e808d13] .el-col-6 {
119
+ flex: 0 0 calc(6 / 24 * (100% - (24 / 6 - 1) * var(--layout-form-flex-gap, 15px)));
120
+ max-width: calc(6 / 24 * (100% - (24 / 6 - 1) * var(--layout-form-flex-gap, 15px)));
121
+ }
122
+ @media (max-width: 768px) {
123
+ .runtime-page-container[data-v-8e808d13] .el-col-6 {
124
+ flex: 0 0 100%;
125
+ max-width: 100%;
126
+ }
127
+ }
128
+ .runtime-page-container[data-v-8e808d13] .el-col-6 > .el-form-item:only-child {
129
+ margin-bottom: 0;
130
+ }
131
+ @media (max-width: 768px) {
132
+ .runtime-page-container[data-v-8e808d13] .el-col-7 {
133
+ flex: 0 0 100%;
134
+ max-width: 100%;
135
+ }
136
+ }
137
+ .runtime-page-container[data-v-8e808d13] .el-col-7 > .el-form-item:only-child {
138
+ margin-bottom: 0;
139
+ }
140
+ .runtime-page-container[data-v-8e808d13] .el-col-8 {
141
+ flex: 0 0 calc(8 / 24 * (100% - (24 / 8 - 1) * var(--layout-form-flex-gap, 15px)));
142
+ max-width: calc(8 / 24 * (100% - (24 / 8 - 1) * var(--layout-form-flex-gap, 15px)));
143
+ }
144
+ @media (max-width: 768px) {
145
+ .runtime-page-container[data-v-8e808d13] .el-col-8 {
146
+ flex: 0 0 100%;
147
+ max-width: 100%;
148
+ }
149
+ }
150
+ .runtime-page-container[data-v-8e808d13] .el-col-8 > .el-form-item:only-child {
151
+ margin-bottom: 0;
152
+ }
153
+ @media (max-width: 768px) {
154
+ .runtime-page-container[data-v-8e808d13] .el-col-9 {
155
+ flex: 0 0 100%;
156
+ max-width: 100%;
157
+ }
158
+ }
159
+ .runtime-page-container[data-v-8e808d13] .el-col-9 > .el-form-item:only-child {
160
+ margin-bottom: 0;
161
+ }
162
+ .runtime-page-container[data-v-8e808d13] .el-col-10 {
163
+ flex: 0 0 calc(10 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
164
+ max-width: calc(10 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
165
+ }
166
+ @media (max-width: 768px) {
167
+ .runtime-page-container[data-v-8e808d13] .el-col-10 {
168
+ flex: 0 0 100%;
169
+ max-width: 100%;
170
+ }
171
+ }
172
+ .runtime-page-container[data-v-8e808d13] .el-col-10 > .el-form-item:only-child {
173
+ margin-bottom: 0;
174
+ }
175
+ @media (max-width: 768px) {
176
+ .runtime-page-container[data-v-8e808d13] .el-col-11 {
177
+ flex: 0 0 100%;
178
+ max-width: 100%;
179
+ }
180
+ }
181
+ .runtime-page-container[data-v-8e808d13] .el-col-11 > .el-form-item:only-child {
182
+ margin-bottom: 0;
183
+ }
184
+ .runtime-page-container[data-v-8e808d13] .el-col-12 {
185
+ flex: 0 0 calc(12 / 24 * (100% - (24 / 12 - 1) * var(--layout-form-flex-gap, 15px)));
186
+ max-width: calc(12 / 24 * (100% - (24 / 12 - 1) * var(--layout-form-flex-gap, 15px)));
187
+ }
188
+ @media (max-width: 768px) {
189
+ .runtime-page-container[data-v-8e808d13] .el-col-12 {
190
+ flex: 0 0 100%;
191
+ max-width: 100%;
192
+ }
193
+ }
194
+ .runtime-page-container[data-v-8e808d13] .el-col-12 > .el-form-item:only-child {
195
+ margin-bottom: 0;
196
+ }
197
+ @media (max-width: 768px) {
198
+ .runtime-page-container[data-v-8e808d13] .el-col-13 {
199
+ flex: 0 0 100%;
200
+ max-width: 100%;
201
+ }
202
+ }
203
+ .runtime-page-container[data-v-8e808d13] .el-col-13 > .el-form-item:only-child {
204
+ margin-bottom: 0;
205
+ }
206
+ .runtime-page-container[data-v-8e808d13] .el-col-14 {
207
+ flex: 0 0 calc(14 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
208
+ max-width: calc(14 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
209
+ }
210
+ @media (max-width: 768px) {
211
+ .runtime-page-container[data-v-8e808d13] .el-col-14 {
212
+ flex: 0 0 100%;
213
+ max-width: 100%;
214
+ }
215
+ }
216
+ .runtime-page-container[data-v-8e808d13] .el-col-14 > .el-form-item:only-child {
217
+ margin-bottom: 0;
218
+ }
219
+ @media (max-width: 768px) {
220
+ .runtime-page-container[data-v-8e808d13] .el-col-15 {
221
+ flex: 0 0 100%;
222
+ max-width: 100%;
223
+ }
224
+ }
225
+ .runtime-page-container[data-v-8e808d13] .el-col-15 > .el-form-item:only-child {
226
+ margin-bottom: 0;
227
+ }
228
+ .runtime-page-container[data-v-8e808d13] .el-col-16 {
229
+ flex: 0 0 calc(16 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
230
+ max-width: calc(16 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
231
+ }
232
+ @media (max-width: 768px) {
233
+ .runtime-page-container[data-v-8e808d13] .el-col-16 {
234
+ flex: 0 0 100%;
235
+ max-width: 100%;
236
+ }
237
+ }
238
+ .runtime-page-container[data-v-8e808d13] .el-col-16 > .el-form-item:only-child {
239
+ margin-bottom: 0;
240
+ }
241
+ @media (max-width: 768px) {
242
+ .runtime-page-container[data-v-8e808d13] .el-col-17 {
243
+ flex: 0 0 100%;
244
+ max-width: 100%;
245
+ }
246
+ }
247
+ .runtime-page-container[data-v-8e808d13] .el-col-17 > .el-form-item:only-child {
248
+ margin-bottom: 0;
249
+ }
250
+ .runtime-page-container[data-v-8e808d13] .el-col-18 {
251
+ flex: 0 0 calc(18 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
252
+ max-width: calc(18 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
253
+ }
254
+ @media (max-width: 768px) {
255
+ .runtime-page-container[data-v-8e808d13] .el-col-18 {
256
+ flex: 0 0 100%;
257
+ max-width: 100%;
258
+ }
259
+ }
260
+ .runtime-page-container[data-v-8e808d13] .el-col-18 > .el-form-item:only-child {
261
+ margin-bottom: 0;
262
+ }
263
+ @media (max-width: 768px) {
264
+ .runtime-page-container[data-v-8e808d13] .el-col-19 {
265
+ flex: 0 0 100%;
266
+ max-width: 100%;
267
+ }
268
+ }
269
+ .runtime-page-container[data-v-8e808d13] .el-col-19 > .el-form-item:only-child {
270
+ margin-bottom: 0;
271
+ }
272
+ .runtime-page-container[data-v-8e808d13] .el-col-20 {
273
+ flex: 0 0 calc(20 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
274
+ max-width: calc(20 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
275
+ }
276
+ @media (max-width: 768px) {
277
+ .runtime-page-container[data-v-8e808d13] .el-col-20 {
278
+ flex: 0 0 100%;
279
+ max-width: 100%;
280
+ }
281
+ }
282
+ .runtime-page-container[data-v-8e808d13] .el-col-20 > .el-form-item:only-child {
283
+ margin-bottom: 0;
284
+ }
285
+ @media (max-width: 768px) {
286
+ .runtime-page-container[data-v-8e808d13] .el-col-21 {
287
+ flex: 0 0 100%;
288
+ max-width: 100%;
289
+ }
290
+ }
291
+ .runtime-page-container[data-v-8e808d13] .el-col-21 > .el-form-item:only-child {
292
+ margin-bottom: 0;
293
+ }
294
+ .runtime-page-container[data-v-8e808d13] .el-col-22 {
295
+ flex: 0 0 calc(22 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
296
+ max-width: calc(22 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
297
+ }
298
+ @media (max-width: 768px) {
299
+ .runtime-page-container[data-v-8e808d13] .el-col-22 {
300
+ flex: 0 0 100%;
301
+ max-width: 100%;
302
+ }
303
+ }
304
+ .runtime-page-container[data-v-8e808d13] .el-col-22 > .el-form-item:only-child {
305
+ margin-bottom: 0;
306
+ }
307
+ @media (max-width: 768px) {
308
+ .runtime-page-container[data-v-8e808d13] .el-col-23 {
309
+ flex: 0 0 100%;
310
+ max-width: 100%;
311
+ }
312
+ }
313
+ .runtime-page-container[data-v-8e808d13] .el-col-23 > .el-form-item:only-child {
314
+ margin-bottom: 0;
315
+ }
316
+ @media (max-width: 768px) {
317
+ .runtime-page-container[data-v-8e808d13] .el-col-24 {
318
+ flex: 0 0 100%;
319
+ max-width: 100%;
320
+ }
321
+ }
322
+ .runtime-page-container[data-v-8e808d13] .el-col-24 > .el-form-item:only-child {
323
+ margin-bottom: 0;
324
+ }
325
+ .runtime-page-container[data-v-8e808d13] .el-input-group > .el-input-group__append > .el-button + .el-button {
326
+ margin-left: 12px;
327
+ }
328
+ .runtime-page-container[data-v-8e808d13] .runtime-page-container-view, .runtime-page-container[data-v-8e808d13] .el-container > .el-main, .runtime-page-container[data-v-8e808d13] .el-container > .el-aside {
329
+ display: flex;
330
+ flex-direction: row;
331
+ align-items: flex-start;
332
+ align-content: flex-start;
333
+ flex-wrap: wrap;
334
+ gap: var(--runtime-page-container-view-gap, 15px);
335
+ min-height: 100%;
336
+ height: auto;
337
+ }
338
+ .runtime-page-container[data-v-8e808d13] .runtime-page-container-view[style*="padding: 10px"], .runtime-page-container[data-v-8e808d13] .el-container > [style*="padding: 10px"].el-main, .runtime-page-container[data-v-8e808d13] .el-container > [style*="padding: 10px"].el-aside {
339
+ padding: 0 !important;
340
+ }
341
+ .runtime-page-container[data-v-8e808d13] .runtime-page-container-view .el-form, .runtime-page-container[data-v-8e808d13] .el-container > .el-main .el-form, .runtime-page-container[data-v-8e808d13] .el-container > .el-aside .el-form {
342
+ width: 100%;
343
+ display: flex;
344
+ flex-wrap: wrap;
345
+ gap: var(--runtime-page-container-view-gap, 15px);
346
+ }
347
+ .runtime-page-container[data-v-8e808d13] .runtime-page-container-view .el-form > div, .runtime-page-container[data-v-8e808d13] .el-container > .el-main .el-form > div, .runtime-page-container[data-v-8e808d13] .el-container > .el-aside .el-form > div {
348
+ width: 100%;
349
+ }
350
+ .runtime-page-container[data-v-8e808d13] .runtime-page-container-view .el-form > div[style*="display: inline-block"], .runtime-page-container[data-v-8e808d13] .el-container > .el-main .el-form > div[style*="display: inline-block"], .runtime-page-container[data-v-8e808d13] .el-container > .el-aside .el-form > div[style*="display: inline-block"] {
351
+ width: auto;
352
+ }
353
+ .runtime-page-container[data-v-8e808d13] .runtime-page-container-view > div, .runtime-page-container[data-v-8e808d13] .el-container > .el-main > div, .runtime-page-container[data-v-8e808d13] .el-container > .el-aside > div {
354
+ width: 100%;
355
+ }
356
+ .runtime-page-container[data-v-8e808d13] .runtime-page-container-view > div[style*="display: inline-block"], .runtime-page-container[data-v-8e808d13] .el-container > .el-main > div[style*="display: inline-block"], .runtime-page-container[data-v-8e808d13] .el-container > .el-aside > div[style*="display: inline-block"] {
357
+ width: auto;
358
+ }
359
+ .runtime-page-container[data-v-8e808d13] .runtime-page-container-view > div[class*=el-col-], .runtime-page-container[data-v-8e808d13] .el-container > .el-main > div[class*=el-col-], .runtime-page-container[data-v-8e808d13] .el-container > .el-aside > div[class*=el-col-], .runtime-page-container[data-v-8e808d13] .runtime-page-container-view > div[style="flex:"], .runtime-page-container[data-v-8e808d13] .el-container > .el-main > div[style="flex:"], .runtime-page-container[data-v-8e808d13] .el-container > .el-aside > div[style="flex:"] {
360
+ flex: none !important;
361
+ }
362
+ .runtime-page-container[data-v-8e808d13] .runtime-page-container-view > [style*="display: inline-block"], .runtime-page-container[data-v-8e808d13] .el-container > .el-main > [style*="display: inline-block"], .runtime-page-container[data-v-8e808d13] .el-container > .el-aside > [style*="display: inline-block"] {
363
+ width: auto;
364
+ }
365
+ .runtime-page-container[data-v-8e808d13] .runtime-page-container-view > .el-row[class*=el-col-], .runtime-page-container[data-v-8e808d13] .el-container > .el-main > .el-row[class*=el-col-], .runtime-page-container[data-v-8e808d13] .el-container > .el-aside > .el-row[class*=el-col-] {
366
+ flex: none;
367
+ }
368
+ .runtime-page-container[data-v-8e808d13] .runtime-page-container-view .el-row, .runtime-page-container[data-v-8e808d13] .el-container > .el-main .el-row, .runtime-page-container[data-v-8e808d13] .el-container > .el-aside .el-row {
369
+ gap: var(--layout-form-flex-gap, 15px);
370
+ }
371
+ .runtime-page-container[data-v-8e808d13] .runtime-page-container-view .el-row > div, .runtime-page-container[data-v-8e808d13] .el-container > .el-main .el-row > div, .runtime-page-container[data-v-8e808d13] .el-container > .el-aside .el-row > div {
372
+ width: 100%;
373
+ }
374
+ .runtime-page-container[data-v-8e808d13] .runtime-page-container-view .el-row > div[style*="display: inline-block"], .runtime-page-container[data-v-8e808d13] .el-container > .el-main .el-row > div[style*="display: inline-block"], .runtime-page-container[data-v-8e808d13] .el-container > .el-aside .el-row > div[style*="display: inline-block"] {
375
+ width: auto;
376
+ }
377
+ .runtime-page-container[data-v-8e808d13] .el-container {
378
+ gap: var(--runtime-page-container-view-gap, 15px);
379
+ }
380
+ .runtime-page-container[data-v-8e808d13] .el-container > .el-main, .runtime-page-container[data-v-8e808d13] .el-container > .el-aside {
381
+ padding: 0;
382
+ }.yx-affix[data-v-a994b02d]:empty {
383
+ display: none;
384
+ }
385
+ .yx-affix .yx-affix-content[data-v-a994b02d]:empty {
386
+ display: none;
387
+ }
388
+ .yx-affix .yx-affix-content.is-fixed.is-top[data-v-a994b02d] {
389
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
390
+ }
391
+ .yx-affix .yx-affix-content.is-fixed.is-bottom[data-v-a994b02d] {
392
+ box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
393
+ }.yx-card-box-view-main[data-v-26138226] > .el-card__header {
394
+ position: relative;
395
+ }
396
+ .yx-card-box-view-main .yx-card-box-view-header[data-v-26138226] {
397
+ display: flex;
398
+ flex-direction: row;
399
+ justify-content: space-between;
400
+ align-items: center;
401
+ gap: 15px;
402
+ flex: 1 1 auto;
403
+ }
404
+ .yx-card-box-view-main .yx-card-box-view-title[data-v-26138226] {
405
+ position: relative;
406
+ z-index: 2;
407
+ flex: 1 1 auto;
408
+ }
409
+ .yx-card-box-view-main .yx-card-box-view-title[data-v-26138226]::after {
410
+ content: " ";
411
+ position: absolute;
412
+ left: 0;
413
+ top: 0;
414
+ bottom: 0;
415
+ right: 0;
416
+ z-index: 0;
417
+ }
418
+ .yx-card-box-view-main[data-collapse=false][data-v-26138226] > .el-card__body {
419
+ display: none;
420
+ }
421
+ .yx-card-box-view-context[data-v-26138226] {
422
+ gap: var(--layout-form-flex-gap, 15px);
423
+ }
424
+ .yx-card-box-view-context[data-v-26138226] > div {
425
+ width: 100%;
426
+ }
427
+ .yx-card-box-view-context[data-v-26138226] > div[style*="display: inline-block"] {
428
+ width: auto;
429
+ }
430
+ .yx-card-box-view-context[data-v-26138226] > .el-form-item {
431
+ margin: 0;
432
+ }
433
+ .yx-card-box-view-context[data-v-26138226] > .el-form-item[class*=el-col-8] {
434
+ flex: 0 0 calc((100% - var(--layout-form-flex-gap, 15px) * 2) / 3);
435
+ }
436
+ @media (max-width: 768px) {
437
+ .yx-card-box-view-context[data-v-26138226] > .el-form-item[class*=el-col-8] {
438
+ max-width: none;
439
+ flex: 0 0 calc((100% - var(--layout-form-flex-gap, 15px) * 1) / 2);
440
+ }
441
+ }
442
+ @media (max-width: 600px) {
443
+ .yx-card-box-view-context[data-v-26138226] > .el-form-item[class*=el-col-8] {
444
+ width: 100%;
445
+ max-width: none;
446
+ flex: auto;
447
+ }
448
+ }.runtime-page-container-tabs-view[data-v-df9efce2] > .el-tabs__header > .el-tabs__new-tab {
449
+ border: 0px !important;
450
+ }
451
+ .runtime-page-container-tabs-view[data-v-df9efce2] > .el-tabs__header .el-tabs__item:has(.tab-hidden) {
452
+ display: none !important;
453
+ }
454
+ .runtime-page-container-tabs-view[data-v-df9efce2] > .el-tabs__content > .el-tab-pane {
455
+ display: flex;
456
+ flex-direction: row;
457
+ align-items: flex-start;
458
+ align-content: flex-start;
459
+ flex-wrap: wrap;
460
+ gap: var(--runtime-page-container-view-gap, 15px);
461
+ }
462
+ .runtime-page-container-tabs-view[data-v-df9efce2] > .el-tabs__content > .el-tab-pane > div {
463
+ width: 100%;
464
+ }
465
+ .runtime-page-container-tabs-view[data-v-df9efce2] > .el-tabs__content > .el-tab-pane > div[style*="display: inline-block"] {
466
+ width: auto;
467
+ }
468
+ .runtime-page-container-tabs-view[data-v-df9efce2] > .el-tabs__content > .el-tab-pane > [style*="display: inline-block"] {
469
+ width: auto;
470
+ }
471
+ .runtime-page-container-tabs-view[data-v-df9efce2] > .el-tabs__content > .el-tab-pane > .amb-design-item-default {
472
+ display: flex;
473
+ flex-direction: row;
474
+ align-items: flex-start;
475
+ align-content: flex-start;
476
+ flex-wrap: wrap;
477
+ gap: var(--runtime-page-container-view-gap, 15px);
478
+ }
479
+ .runtime-page-container-tabs-view[data-v-df9efce2] > .el-tabs__content > .el-tab-pane > .amb-design-item-default > div {
480
+ width: 100%;
481
+ }
482
+ .runtime-page-container-tabs-view[data-v-df9efce2] > .el-tabs__content > .el-tab-pane > .amb-design-item-default > div[style*="display: inline-block"] {
483
+ width: auto;
484
+ }
485
+ .runtime-page-container-tabs-view[data-v-df9efce2] > .el-tabs__content > .el-tab-pane > .amb-design-item-default > [style*="display: inline-block"] {
486
+ width: auto;
487
+ }
488
+ .tab-hidden[data-v-df9efce2] {
489
+ display: none !important;
490
+ }.yx-fixed-box-main[data-v-9b488f43]:has(.yx-fixed-box-container:empty) {
491
+ display: none;
492
+ }
493
+ .yx-fixed-box-main.is-top > .yx-fixed-box-container[data-v-9b488f43] {
494
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
495
+ }
496
+ .yx-fixed-box-main.is-bottom > .yx-fixed-box-container[data-v-9b488f43] {
497
+ box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
498
+ }
499
+ @media (max-width: 768px) {
500
+ .yx-fixed-box-main > .yx-fixed-box-container[data-v-9b488f43] {
501
+ width: 100% !important;
502
+ left: 0 !important;
503
+ right: 0 !important;
504
+ }
505
+ }.amb-widget-tools-parent[data-v-03be39c3]:empty {
506
+ display: none;
507
+ }
508
+ .amb-widget-tools-parent[data-v-03be39c3] .amb-widget-container-tool {
509
+ display: flex;
510
+ flex-wrap: wrap;
511
+ gap: var(--amb-widget-container-tool-gap, 10px);
512
+ padding: 0;
513
+ }
514
+ .amb-widget-tools-parent[data-v-03be39c3] .amb-widget-container-tool .el-button {
515
+ margin: 0;
516
+ }
517
+ .amb-widget-tools-parent[data-v-03be39c3] .amb-widget-container-tool:empty {
518
+ display: none;
519
+ }
520
+ .amb-widget-tools-parent[data-v-03be39c3] .amb-widget-container-tool > .page-runtime-header-btn:has(> .page-runtime-header-btn) {
521
+ display: flex;
522
+ flex-wrap: wrap;
523
+ gap: inherit;
524
+ }
525
+ .amb-widget-tools-parent[data-v-03be39c3] .amb-widget-container-tool > .el-form-item {
526
+ margin-bottom: 0;
527
+ }.el-form-item[data-v-96fc65d8] {
528
+ margin-bottom: 0px;
529
+ }.amb-button-group-main[data-v-9d55ce0b] {
530
+ display: flex;
531
+ min-height: 2em;
532
+ flex-wrap: wrap;
533
+ gap: var(--amb-widget-container-tool-gap, 10px);
534
+ }
535
+ .amb-button-group-main[data-v-9d55ce0b]::after, .amb-button-group-main[data-v-9d55ce0b]::before {
536
+ display: none;
537
+ }
538
+ .amb-button-group-main > div[data-v-9d55ce0b] {
539
+ width: auto;
540
+ }.amb-workflowbutton-runtime-view[data-v-2de5813c] {
541
+ min-height: 32px;
542
+ display: flex;
543
+ flex-wrap: wrap;
544
+ gap: var(--amb-widget-container-tool-gap, 10px);
545
+ }
546
+ .amb-workflowbutton-runtime-view[data-v-2de5813c]::after, .amb-workflowbutton-runtime-view[data-v-2de5813c]::before {
547
+ display: none;
548
+ }
549
+ .amb-workflowbutton-runtime-view > div[data-v-2de5813c] {
550
+ width: auto;
551
+ }
552
+ [data-v-57964c4a] .el-empty {
553
+ padding: 0;
554
+ }
555
+
556
+
557
+
558
+ .amb-chart-container[data-v-e1cf60d6] {
559
+ display: flex;
560
+ flex-direction: column;
561
+ height: 100%;
562
+ }
563
+
564
+ .amb-chart-container[data-v-17d626a7] {
565
+ display: flex;
566
+ flex-direction: column;
567
+ height: 100%;
568
+ }
569
+
570
+ .amb-chart-container[data-v-807f72b1] {
571
+ display: flex;
572
+ flex-direction: column;
573
+ height: 100%;
574
+ }
575
+
576
+ .amb-chart-container[data-v-a4e2d500] {
577
+ display: flex;
578
+ flex-direction: column;
579
+ height: 100%;
580
+ }
581
+
582
+ .amb-chart-container[data-v-a924cb6f] {
583
+ display: flex;
584
+ flex-direction: column;
585
+ height: 100%;
586
+ }
587
+
588
+ /** 右键菜单样式 */
589
+ .context-menu[data-v-89330064] {
590
+ position: fixed;
591
+ background: #fff;
592
+ z-index: 999;
593
+ margin: 0;
594
+ padding: 8px 8px;
595
+ box-shadow: 0 5px 7px 1px rgba(0, 0, 0, 0.1);
596
+ border: 1px solid #bbbbbb;
597
+ border-radius: 10px;
598
+ font-size: 14px;
599
+ display: none; /* 默认隐藏 */
600
+ }
601
+ .context-menu li[data-v-89330064] {
602
+ list-style-type: none;
603
+ min-width: 75px;
604
+ line-height: 28px;
605
+ text-align: left;
606
+ border-radius: 5px;
607
+ padding-left: 5px;
608
+ cursor: pointer;
609
+ }
610
+ .context-menu li[data-v-89330064]:hover {
611
+ background: #0165e1;
612
+ color: #fff;
613
+ }
614
+ /** 右键菜单样式 */
615
+ .custom-tree-node[data-v-89330064] {
616
+ flex: 1;
617
+ display: flex;
618
+ align-items: center;
619
+ justify-content: space-between;
620
+ font-size: 14px;
621
+ padding-right: 8px;
622
+ }
623
+ .item-side {
624
+ &[data-v-89330064] {
625
+ display: flex;
626
+ align-items: center;
627
+ }
628
+ .file[data-v-89330064] {
629
+ width: 17px;
630
+ height: 17px;
631
+ margin-right: 5px;
632
+ }
633
+ }