super-page-runtime 0.0.2-tmp7 → 1.0.2

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 (177) hide show
  1. package/dist/es/components/runtime/index.d.ts +1 -3
  2. package/dist/es/components/runtime/index.js +4 -0
  3. package/dist/es/components/runtime/utils/assemblys-config.js +1 -8
  4. package/dist/es/components/runtime/utils/charts/chart-util.js +1 -14
  5. package/dist/es/components/runtime/utils/common-util.d.ts +0 -5
  6. package/dist/es/components/runtime/utils/common-util.js +0 -13
  7. package/dist/es/components/runtime/utils/interfaces/page-design-types.d.ts +0 -2
  8. package/dist/es/components/runtime/utils/page-helper-util.d.ts +0 -19
  9. package/dist/es/components/runtime/utils/page-helper-util.js +0 -116
  10. package/dist/es/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +3 -198
  11. package/dist/es/components/runtime/views/super-page.vue.js +2 -16
  12. package/dist/es/components/super-page-dialog/index.d.ts +3 -0
  13. package/dist/es/components/{runtime/views → super-page-dialog}/super-page-dialog.vue.js +1 -1
  14. package/dist/es/components/super-page-dialog/super-page-dialog.vue2.js +4 -0
  15. package/dist/es/components/wf-editor/index.d.ts +3 -0
  16. package/dist/es/components/wf-editor/index.js +4 -0
  17. package/dist/es/components/wf-editor/wf-editor.css +4 -0
  18. package/dist/es/components/wf-editor/wf-editor.vue.js +16 -0
  19. package/dist/es/index.d.ts +4 -7
  20. package/dist/es/index.js +3 -12
  21. package/dist/favicon.ico +0 -0
  22. package/dist/lib/_virtual/_plugin-vue_export-helper.js +9 -0
  23. package/dist/lib/assets/chart-themes/theme1.js +7 -0
  24. package/dist/lib/assets/chart-themes/theme2.js +7 -0
  25. package/dist/lib/assets/chart-themes/theme3.js +7 -0
  26. package/dist/lib/components/runtime/index.d.ts +3 -0
  27. package/dist/lib/components/runtime/index.js +3 -0
  28. package/dist/lib/components/runtime/utils/api/api-util.d.ts +11 -0
  29. package/dist/lib/components/runtime/utils/api/api-util.js +128 -0
  30. package/dist/lib/components/runtime/utils/assemblys-config.js +258 -0
  31. package/dist/lib/components/runtime/utils/charts/chart-util.js +15 -0
  32. package/dist/lib/components/runtime/utils/common-util.d.ts +11 -0
  33. package/dist/lib/components/runtime/utils/common-util.js +81 -0
  34. package/dist/lib/components/runtime/utils/eventBus.d.ts +7 -0
  35. package/dist/lib/components/runtime/utils/eventBus.js +10 -0
  36. package/dist/lib/components/runtime/utils/events/event-util.d.ts +48 -0
  37. package/dist/lib/components/runtime/utils/events/event-util.js +526 -0
  38. package/dist/lib/components/runtime/utils/events/standard-event.d.ts +61 -0
  39. package/dist/lib/components/runtime/utils/events/standard-event.js +1624 -0
  40. package/dist/lib/components/runtime/utils/events/validator-util.d.ts +4 -0
  41. package/dist/lib/components/runtime/utils/events/validator-util.js +389 -0
  42. package/dist/lib/components/runtime/utils/global-refs.d.ts +59 -0
  43. package/dist/lib/components/runtime/utils/global-refs.js +65 -0
  44. package/dist/lib/components/runtime/utils/interfaces/page-design-types.d.ts +221 -0
  45. package/dist/lib/components/runtime/utils/interfaces/page-design-types.js +9 -0
  46. package/dist/lib/components/runtime/utils/page-helper-util.d.ts +87 -0
  47. package/dist/lib/components/runtime/utils/page-helper-util.js +503 -0
  48. package/dist/lib/components/runtime/utils/page-init-util.d.ts +38 -0
  49. package/dist/lib/components/runtime/utils/page-init-util.js +200 -0
  50. package/dist/lib/components/runtime/utils/store-util.d.ts +15 -0
  51. package/dist/lib/components/runtime/utils/store-util.js +17 -0
  52. package/dist/lib/components/runtime/utils/store.d.ts +2 -0
  53. package/dist/lib/components/runtime/utils/store.js +3 -0
  54. package/dist/lib/components/runtime/utils/table-utils.js +24 -0
  55. package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue.js +3 -0
  56. package/dist/lib/components/runtime/views/assemblys/button/button/button-runtime.vue2.js +54 -0
  57. package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue.js +3 -0
  58. package/dist/lib/components/runtime/views/assemblys/button/button-group/buttongroup-runtime.vue2.js +35 -0
  59. package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue.js +3 -0
  60. package/dist/lib/components/runtime/views/assemblys/button/dropdown/dropdown-runtime.vue2.js +110 -0
  61. package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue.js +3 -0
  62. package/dist/lib/components/runtime/views/assemblys/chart/column-line/column-line-runtime.vue2.js +53 -0
  63. package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue.js +3 -0
  64. package/dist/lib/components/runtime/views/assemblys/chart/gauge/gauge-runtime.vue2.js +49 -0
  65. package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue.js +3 -0
  66. package/dist/lib/components/runtime/views/assemblys/chart/pie/pie-runtime.vue2.js +50 -0
  67. package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue.js +3 -0
  68. package/dist/lib/components/runtime/views/assemblys/chart/radar/radar-runtime.vue2.js +50 -0
  69. package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue.js +3 -0
  70. package/dist/lib/components/runtime/views/assemblys/chart/scatter/scatter-runtime.vue2.js +51 -0
  71. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.d.ts +24 -0
  72. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue.js +147 -0
  73. package/dist/lib/components/runtime/views/assemblys/common/export-form-report-dialog.vue2.js +3 -0
  74. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.d.ts +35 -0
  75. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue.js +127 -0
  76. package/dist/lib/components/runtime/views/assemblys/common/remove-signer-dialog.vue2.js +3 -0
  77. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.d.ts +26 -0
  78. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue.js +104 -0
  79. package/dist/lib/components/runtime/views/assemblys/common/task-informition-dialog.vue2.js +3 -0
  80. package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue.js +3 -0
  81. package/dist/lib/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +72 -0
  82. package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue.js +3 -0
  83. package/dist/lib/components/runtime/views/assemblys/container/collapse/collapse-runtime.vue2.js +74 -0
  84. package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue.js +3 -0
  85. package/dist/lib/components/runtime/views/assemblys/container/container/container-runtime.vue2.js +79 -0
  86. package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue.js +3 -0
  87. package/dist/lib/components/runtime/views/assemblys/container/flex/flex-runtime.vue2.js +43 -0
  88. package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue.js +3 -0
  89. package/dist/lib/components/runtime/views/assemblys/container/form/form-runtime.vue2.js +44 -0
  90. package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue.js +3 -0
  91. package/dist/lib/components/runtime/views/assemblys/container/iframe/iframe-runtime.vue2.js +30 -0
  92. package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +3 -0
  93. package/dist/lib/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +69 -0
  94. package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue.js +3 -0
  95. package/dist/lib/components/runtime/views/assemblys/container/tools/tools-runtime.vue2.js +75 -0
  96. package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue.js +642 -0
  97. package/dist/lib/components/runtime/views/assemblys/data/table/main-table-runtime.vue2.js +3 -0
  98. package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue.js +453 -0
  99. package/dist/lib/components/runtime/views/assemblys/data/table/sub-table-runtime.vue2.js +3 -0
  100. package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue.js +3 -0
  101. package/dist/lib/components/runtime/views/assemblys/data/table/table-runtime.vue2.js +87 -0
  102. package/dist/lib/components/runtime/views/assemblys/error-render.vue.d.ts +22 -0
  103. package/dist/lib/components/runtime/views/assemblys/error-render.vue.js +22 -0
  104. package/dist/lib/components/runtime/views/assemblys/error-render.vue2.js +3 -0
  105. package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue.js +3 -0
  106. package/dist/lib/components/runtime/views/assemblys/form/checkbox/checkbox-runtime.vue2.js +156 -0
  107. package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue.js +3 -0
  108. package/dist/lib/components/runtime/views/assemblys/form/date-picker/datepicker-runtime.vue2.js +82 -0
  109. package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue.js +3 -0
  110. package/dist/lib/components/runtime/views/assemblys/form/dept-tree/depttree-runtime.vue2.js +63 -0
  111. package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue.js +3 -0
  112. package/dist/lib/components/runtime/views/assemblys/form/divider/divider-runtime.vue2.js +40 -0
  113. package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue.js +3 -0
  114. package/dist/lib/components/runtime/views/assemblys/form/file-upload/fileupload-runtime.vue2.js +74 -0
  115. package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue.js +3 -0
  116. package/dist/lib/components/runtime/views/assemblys/form/input-number/input-number-runtime.vue2.js +63 -0
  117. package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue.js +3 -0
  118. package/dist/lib/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +127 -0
  119. package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue.js +3 -0
  120. package/dist/lib/components/runtime/views/assemblys/form/label/label-runtime.vue2.js +127 -0
  121. package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue.js +3 -0
  122. package/dist/lib/components/runtime/views/assemblys/form/link/link-runtime.vue2.js +77 -0
  123. package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue.js +3 -0
  124. package/dist/lib/components/runtime/views/assemblys/form/placeholder/placeholder-runtime.vue2.js +29 -0
  125. package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue.js +3 -0
  126. package/dist/lib/components/runtime/views/assemblys/form/radio/radio-runtime.vue2.js +157 -0
  127. package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue.js +3 -0
  128. package/dist/lib/components/runtime/views/assemblys/form/rich-text/richtext-runtime.vue2.js +162 -0
  129. package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue.js +3 -0
  130. package/dist/lib/components/runtime/views/assemblys/form/select/select-runtime.vue2.js +201 -0
  131. package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue.js +3 -0
  132. package/dist/lib/components/runtime/views/assemblys/form/switch/switch-runtime.vue2.js +63 -0
  133. package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue.js +3 -0
  134. package/dist/lib/components/runtime/views/assemblys/form/tag/tag-runtime.vue2.js +63 -0
  135. package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue.js +3 -0
  136. package/dist/lib/components/runtime/views/assemblys/form/textarea/textarea-runtime.vue2.js +65 -0
  137. package/dist/lib/components/runtime/views/assemblys/object-render.vue.d.ts +17 -0
  138. package/dist/lib/components/runtime/views/assemblys/object-render.vue.js +142 -0
  139. package/dist/lib/components/runtime/views/assemblys/object-render.vue2.js +3 -0
  140. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue.js +3 -0
  141. package/dist/lib/components/runtime/views/assemblys/workflow/workflow-button/workflowbutton-runtime.vue2.js +61 -0
  142. package/dist/lib/components/runtime/views/super-page.vue.d.ts +91 -0
  143. package/dist/lib/components/runtime/views/super-page.vue.js +481 -0
  144. package/dist/lib/components/runtime/views/super-page.vue2.js +3 -0
  145. package/dist/lib/components/super-page-dialog/index.d.ts +3 -0
  146. package/dist/lib/components/super-page-dialog/index.js +3 -0
  147. package/dist/lib/components/super-page-dialog/super-page-dialog.vue.d.ts +36 -0
  148. package/dist/lib/components/super-page-dialog/super-page-dialog.vue.js +74 -0
  149. package/dist/lib/components/super-page-dialog/super-page-dialog.vue2.js +3 -0
  150. package/dist/lib/components/wf-editor/index.d.ts +3 -0
  151. package/dist/lib/components/wf-editor/index.js +3 -0
  152. package/dist/lib/components/wf-editor/wf-editor.css +4 -0
  153. package/dist/lib/components/wf-editor/wf-editor.vue.d.ts +2 -0
  154. package/dist/lib/components/wf-editor/wf-editor.vue.js +15 -0
  155. package/dist/lib/favicon.ico +0 -0
  156. package/dist/lib/index.d.ts +5 -0
  157. package/dist/lib/index.js +8 -0
  158. package/package.json +68 -70
  159. package/dist/es/assets/chart-themes/theme1.d.ts +0 -4
  160. package/dist/es/assets/chart-themes/theme2.d.ts +0 -4
  161. package/dist/es/assets/chart-themes/theme3.d.ts +0 -4
  162. package/dist/es/assets/images/button/button-group.png.js +0 -4
  163. package/dist/es/assets/images/button/button.png.js +0 -4
  164. package/dist/es/components/runtime/utils/charts/chart-util.d.ts +0 -11
  165. package/dist/es/components/runtime/utils/page-permission-util.d.ts +0 -26
  166. package/dist/es/components/runtime/utils/page-permission-util.js +0 -525
  167. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue.js +0 -62
  168. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header-group.vue2.js +0 -4
  169. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue.js +0 -57
  170. package/dist/es/components/runtime/views/assemblys/chart/common/common-chart-header.vue2.js +0 -4
  171. package/dist/es/components/runtime/views/wf-editor.vue.js +0 -7
  172. package/dist/es/components/runtime/views/wf-editor.vue2.js +0 -25
  173. package/dist/es/components/runtime/views/wf-editor.vue3.js +0 -1
  174. package/dist/es/style.css +0 -4
  175. /package/dist/es/components/{runtime/views/super-page-dialog.vue2.js → super-page-dialog/index.js} +0 -0
  176. /package/dist/es/components/{runtime/views → super-page-dialog}/super-page-dialog.vue.d.ts +0 -0
  177. /package/dist/es/components/{runtime/views → wf-editor}/wf-editor.vue.d.ts +0 -0
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+ const vue = require("vue");
3
+ require("element-plus");
4
+ const superPage_vue_vue_type_script_setup_true_lang = require("../runtime/views/super-page.vue.js");
5
+ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
6
+ __name: "super-page-dialog",
7
+ props: {
8
+ parentPageContext: {},
9
+ parentPageEventParams: {},
10
+ jumpPageSetting: {},
11
+ isTest: { type: Boolean }
12
+ },
13
+ emits: ["open", "opened", "close", "closed"],
14
+ setup(__props, { emit: __emit }) {
15
+ const props = __props;
16
+ const emits = __emit;
17
+ const showContent = vue.ref(true);
18
+ const myJumpPageSetting = props.jumpPageSetting ? props.jumpPageSetting : null;
19
+ const width = vue.ref(null);
20
+ const title = vue.ref(null);
21
+ const pageCode = vue.ref(null);
22
+ const dataId = vue.ref(null);
23
+ const taskId = vue.ref(null);
24
+ const pageRequest = vue.ref({});
25
+ if (myJumpPageSetting) {
26
+ title.value = myJumpPageSetting && myJumpPageSetting["jumpPageTitle"] ? myJumpPageSetting["jumpPageTitle"] : null;
27
+ width.value = myJumpPageSetting && myJumpPageSetting["jumpPageWidth"] ? myJumpPageSetting["jumpPageWidth"] : "100%";
28
+ pageCode.value = myJumpPageSetting && myJumpPageSetting["pageCode"];
29
+ dataId.value = myJumpPageSetting && myJumpPageSetting["dataId"] ? myJumpPageSetting["dataId"] : null;
30
+ taskId.value = myJumpPageSetting && myJumpPageSetting["taskId"] ? myJumpPageSetting["taskId"] : null;
31
+ if (props.parentPageEventParams) {
32
+ try {
33
+ const pageParams = JSON.parse(JSON.stringify(props.parentPageEventParams));
34
+ if (pageParams["pageContext"]) {
35
+ delete pageParams["pageContext"];
36
+ }
37
+ if (pageParams["configureObj"]) {
38
+ delete pageParams["configureObj"];
39
+ }
40
+ Object.assign(pageRequest.value, props.parentPageEventParams);
41
+ } catch (error) {
42
+ console.error(error);
43
+ }
44
+ }
45
+ pageRequest.value["id"] = dataId.value;
46
+ pageRequest.value["taskId"] = taskId.value;
47
+ }
48
+ return (_ctx, _cache) => {
49
+ const _component_el_drawer = vue.resolveComponent("el-drawer");
50
+ return vue.openBlock(), vue.createBlock(_component_el_drawer, {
51
+ modelValue: showContent.value,
52
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => showContent.value = $event),
53
+ "with-header": !title.value,
54
+ title: title.value,
55
+ direction: "btt",
56
+ size: width.value,
57
+ onOpen: _cache[1] || (_cache[1] = ($event) => emits("open")),
58
+ onOpened: _cache[2] || (_cache[2] = ($event) => emits("opened")),
59
+ onClose: _cache[3] || (_cache[3] = ($event) => emits("close")),
60
+ onClosed: _cache[4] || (_cache[4] = ($event) => emits("closed"))
61
+ }, {
62
+ default: vue.withCtx(() => [
63
+ pageCode.value ? (vue.openBlock(), vue.createBlock(superPage_vue_vue_type_script_setup_true_lang, {
64
+ key: 0,
65
+ pageCode: pageCode.value,
66
+ pageRequest: pageRequest.value
67
+ }, null, 8, ["pageCode", "pageRequest"])) : vue.createCommentVNode("", true)
68
+ ]),
69
+ _: 1
70
+ }, 8, ["modelValue", "with-header", "title", "size"]);
71
+ };
72
+ }
73
+ });
74
+ module.exports = _sfc_main;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ const superPageDialog_vue_vue_type_script_setup_true_lang = require("./super-page-dialog.vue.js");
3
+ module.exports = superPageDialog_vue_vue_type_script_setup_true_lang;
@@ -0,0 +1,3 @@
1
+ import { default as WfEditor } from './wf-editor.vue';
2
+
3
+ export default WfEditor;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ const wfEditor = require("./wf-editor.vue.js");
3
+ module.exports = wfEditor;
@@ -0,0 +1,4 @@
1
+
2
+ button[data-v-dfafa4ba] {
3
+ color: blue;
4
+ }
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ const vue = require("vue");
3
+ ;/* empty css */
4
+ const _pluginVue_exportHelper = require("../../_virtual/_plugin-vue_export-helper.js");
5
+ const _sfc_main = {};
6
+ const _withScopeId = (n) => (vue.pushScopeId("data-v-dfafa4ba"), n = n(), vue.popScopeId(), n);
7
+ const _hoisted_1 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ vue.createElementVNode("button", null, "Editoraaaaa", -1));
8
+ const _hoisted_2 = [
9
+ _hoisted_1
10
+ ];
11
+ function _sfc_render(_ctx, _cache) {
12
+ return vue.openBlock(), vue.createElementBlock("div", null, _hoisted_2);
13
+ }
14
+ const WfEditor = /* @__PURE__ */ _pluginVue_exportHelper(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-dfafa4ba"]]);
15
+ module.exports = WfEditor;
Binary file
@@ -0,0 +1,5 @@
1
+ import { default as SuperPage } from './components/runtime';
2
+ import { default as SuperPageDialog } from './components/super-page-dialog';
3
+ import { default as WfEditor } from './components/wf-editor';
4
+
5
+ export { SuperPage, SuperPageDialog, WfEditor };
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3
+ const superPage_vue_vue_type_script_setup_true_lang = require("./components/runtime/views/super-page.vue.js");
4
+ const superPageDialog_vue_vue_type_script_setup_true_lang = require("./components/super-page-dialog/super-page-dialog.vue.js");
5
+ const wfEditor = require("./components/wf-editor/wf-editor.vue.js");
6
+ exports.SuperPage = superPage_vue_vue_type_script_setup_true_lang;
7
+ exports.SuperPageDialog = superPageDialog_vue_vue_type_script_setup_true_lang;
8
+ exports.WfEditor = wfEditor;
package/package.json CHANGED
@@ -1,70 +1,68 @@
1
- {
2
- "name": "super-page-runtime",
3
- "version": "0.0.2-tmp7",
4
- "description": "AgileBuilder super page runtime",
5
- "license": "ISC",
6
- "main": "dist/es/index.js",
7
- "files": [
8
- "dist/*"
9
- ],
10
- "typings": "dist/es/index.d.ts",
11
- "scripts": {
12
- "dev": "vite",
13
- "build": "run-p type-check \"build-only {@}\" --",
14
- "preview": "vite preview",
15
- "test:unit": "vitest",
16
- "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
17
- "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
18
- "build-only": "vite build",
19
- "type-check": "vue-tsc --build --force",
20
- "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
21
- "format": "prettier --write src/"
22
- },
23
- "dependencies": {
24
- "@vueup/vue-quill": "^1.2.0",
25
- "@vueuse/core": "^10.9.0",
26
- "async-validator": "^4.2.5",
27
- "dayjs": "^1.11.11",
28
- "echarts": "^5.5.0",
29
- "jsbarcode": "^3.11.6",
30
- "nprogress": "^0.2.0",
31
- "qrcode": "^1.5.3",
32
- "quill": "^2.0.1",
33
- "uuid": "^9.0.1",
34
- "vue-awesome": "^4.5.0",
35
- "vue-codemirror": "^6.1.1",
36
- "vue-draggable-plus": "^0.3.5",
37
- "vue-echarts": "^6.6.9"
38
- },
39
- "devDependencies": {
40
- "@element-plus/icons": "^0.0.11",
41
- "@element-plus/icons-vue": "^2.3.1",
42
- "@rushstack/eslint-patch": "^1.3.3",
43
- "@types/jsdom": "^21.1.6",
44
- "@types/node": "^20.11.28",
45
- "@vitejs/plugin-vue": "^5.0.4",
46
- "@vitejs/plugin-vue-jsx": "^3.1.0",
47
- "@vue/eslint-config-prettier": "^8.0.0",
48
- "@vue/test-utils": "^2.4.4",
49
- "agilebuilder-ui": "1.0.13",
50
- "axios": "^1.6.8",
51
- "cypress": "^13.6.6",
52
- "element-plus": "^2.6.1",
53
- "eslint": "^8.49.0",
54
- "eslint-plugin-cypress": "^2.15.1",
55
- "eslint-plugin-vue": "^9.17.0",
56
- "js-cookie": "^3.0.5",
57
- "jsdom": "^24.0.0",
58
- "mitt": "^3.0.1",
59
- "saas": "^1.0.0",
60
- "sass": "^1.72.0",
61
- "start-server-and-test": "^2.0.3",
62
- "vite": "^5.1.6",
63
- "vite-plugin-dts": "^3.9.1",
64
- "vitest": "^1.3.1",
65
- "vue": "^3.4.21",
66
- "vue-i18n": "^9.10.2",
67
- "vue-router": "^4.3.0",
68
- "vuex": "^4.1.0"
69
- }
70
- }
1
+ {
2
+ "name": "super-page-runtime",
3
+ "version": "1.0.2",
4
+ "description": "AgileBuilder super page runtime",
5
+ "license": "ISC",
6
+ "main": "dist/lib/index.js",
7
+ "files": [
8
+ "dist/*"
9
+ ],
10
+ "typings": "dist/lib/index.d.ts",
11
+ "scripts": {
12
+ "dev": "vite",
13
+ "build": "run-p type-check \"build-only {@}\" --",
14
+ "preview": "vite preview",
15
+ "test:unit": "vitest",
16
+ "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
17
+ "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
18
+ "build-only": "vite build",
19
+ "type-check": "vue-tsc --build --force",
20
+ "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
21
+ "format": "prettier --write src/"
22
+ },
23
+ "dependencies": {
24
+ "@vueup/vue-quill": "^1.2.0",
25
+ "@vueuse/core": "^10.9.0",
26
+ "agilebuilder-ui": "1.0.13",
27
+ "async-validator": "^4.2.5",
28
+ "dayjs": "^1.11.11",
29
+ "echarts": "^5.5.0",
30
+ "jsbarcode": "^3.11.6",
31
+ "qrcode": "^1.5.3",
32
+ "quill": "^2.0.1",
33
+ "uuid": "^9.0.1",
34
+ "vue-awesome": "^4.5.0",
35
+ "vue-codemirror": "^6.1.1",
36
+ "vue-draggable-plus": "^0.3.5",
37
+ "vue-echarts": "^6.6.9"
38
+ },
39
+ "devDependencies": {
40
+ "@element-plus/icons": "^0.0.11",
41
+ "@element-plus/icons-vue": "^2.3.1",
42
+ "@rushstack/eslint-patch": "^1.3.3",
43
+ "@types/jsdom": "^21.1.6",
44
+ "@vitejs/plugin-vue-jsx": "^3.1.0",
45
+ "@vue/eslint-config-prettier": "^8.0.0",
46
+ "@vue/test-utils": "^2.4.4",
47
+ "axios": "^1.6.8",
48
+ "cypress": "^13.6.6",
49
+ "element-plus": "^2.6.1",
50
+ "eslint": "^8.49.0",
51
+ "eslint-plugin-cypress": "^2.15.1",
52
+ "eslint-plugin-vue": "^9.17.0",
53
+ "js-cookie": "^3.0.5",
54
+ "jsdom": "^24.0.0",
55
+ "mitt": "^3.0.1",
56
+ "saas": "^1.0.0",
57
+ "sass": "^1.72.0",
58
+ "start-server-and-test": "^2.0.3",
59
+ "typescript": "^5.4.5",
60
+ "vite": "^5.1.6",
61
+ "vite-plugin-dts": "^3.9.1",
62
+ "vitest": "^1.3.1",
63
+ "vue": "^3.4.21",
64
+ "vue-i18n": "^9.10.2",
65
+ "vue-router": "^4.3.0",
66
+ "vuex": "^4.1.0"
67
+ }
68
+ }
@@ -1,4 +0,0 @@
1
- declare const _default: {
2
- color: string[];
3
- };
4
- export default _default;
@@ -1,4 +0,0 @@
1
- declare const _default: {
2
- color: string[];
3
- };
4
- export default _default;
@@ -1,4 +0,0 @@
1
- declare const _default: {
2
- color: string[];
3
- };
4
- export default _default;
@@ -1,4 +0,0 @@
1
- const buttonGroup = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAWFJREFUOE+t0jFIAnEUBvDvnXdyBaGnB7k4NDYKLUFBQ0ujkJxO1RAtngg5FgkNjZUODg2udzRU4NLWUFBbUENDUGOSeg6Ckt7/RQ5ChXKgb37v9z4ejzBm0ZjzmAyQKjaPBHOOCLKXRAxcVuvN1E1+rtNPYBScbrXRnIkEghHXj+AoxCd6MiBfMIuEnQnf94Fk0eEvFlGFpCcA715SEKBbphYdAK6EmCRQtk0t5gX4WWqZGv0DRLu75pv2FwFuscvXkMgA+EFi6jKkFyZ30TZDe0MB6iEOGWUQddSaE+/owZKV1raMgnNMRCrAU5apbY4GFBww0yv1+A4KNgaAiyvIVLLM4PwfoNEWwDaBdoXUXfa5yjoLrtnZUCVx0lg6z4Zuk8XPhY9663lWD6za6VDlF2AUmjsgzhGggrHv5YgMnNkZTRl84kr+TY2EA4cg0j0BjEfb1E4n88peNg7rGTvBNzJ0qhGhV09OAAAAAElFTkSuQmCC";
2
- export {
3
- buttonGroup as default
4
- };
@@ -1,4 +0,0 @@
1
- const button = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAARtJREFUOE/F0rFKA0EQBuD/382BChJOGxshj6BwnaVFikMsPQsRa3OpLRQJKNgJuUBK2zuxtcgbKAi+hGKauFpFctyOGEmhXIolgttNMd/8ywwx4+OM/fgbIGq/h6ANnNKIekib1dtxgp22yUmcOQGQozRemh8DUWIkjX2n70x6fgBRYk7FYpWKRkSeQYYQOyDkBtSbxXDU0gveYdrwT8qBjrlCIfeiGGaxvxV91TlaqKAGsCvWtqhZTxv+wVRACulRY/8j5+6ch8sJIGAdQEDK03QgeeuK2EVFpV8Gj3sry+vJSIpzbVnTFbVBSN8Kgiz249IELlv4BbwOAV64ACI4zpq+930HHbNNwZoLYKHuruNqz2n3ZQP+H/gE7ReVEX+fTlwAAAAASUVORK5CYII=";
2
- export {
3
- button as default
4
- };
@@ -1,11 +0,0 @@
1
- /**
2
- * 获取主题对象
3
- * @param themeName 获取自定义的主题名称
4
- * @returns
5
- */
6
- export declare function getCustomTheme(themeName: string): any;
7
- /**
8
- * 获取所有主题对象
9
- * @returns
10
- */
11
- export declare function getCustomThemeOptions(): Array<any>;
@@ -1,26 +0,0 @@
1
- export declare enum FuncType {
2
- /**
3
- * 公用
4
- */
5
- AUTHENTICATED = "AUTHENTICATED",
6
- /**
7
- * 匿名
8
- */
9
- ANONYMOUS = "ANONYMOUS",
10
- /**
11
- * 专用
12
- */
13
- AUTHORIZED = "AUTHORIZED"
14
- }
15
- /**
16
- * 根据简码获取对应的资源信息
17
- * @param eventName 方法名
18
- * @returns
19
- */
20
- export declare function getStandPermissionInfo(eventName: string): any;
21
- /**
22
- * 获取资源信息
23
- * @param simpleCode
24
- * @returns
25
- */
26
- export declare function getFunctionInfo(simpleCode: string): any;