super-page-designer 2.1.58 → 2.1.61

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 (31) hide show
  1. package/dist/es/components/design/utils/assemblys-config.js +94 -5
  2. package/dist/es/components/design/utils/form-design-util.d.ts +1 -0
  3. package/dist/es/components/design/utils/form-design-util.js +5 -0
  4. package/dist/es/components/design/utils/page-i18n-util.d.ts +1 -1
  5. package/dist/es/components/design/utils/page-i18n-util.js +18 -4
  6. package/dist/es/components/design/utils/page-table-util.js +2 -3
  7. package/dist/es/components/design/views/assemblys/button/button/button-attr-advanced.vue.js +50 -43
  8. package/dist/es/components/design/views/assemblys/button/button/button-attr-base.vue.js +26 -3
  9. package/dist/es/components/design/views/assemblys/chart/statistical-table/component/link-table.vue.js +213 -0
  10. package/dist/es/components/design/views/assemblys/chart/statistical-table/component/link-table.vue2.js +4 -0
  11. package/dist/es/components/design/views/assemblys/chart/statistical-table/component/style-table.vue.js +9 -3
  12. package/dist/es/components/design/views/assemblys/chart/statistical-table/component/table-showcondition.vue.js +17 -2
  13. package/dist/es/components/design/views/assemblys/chart/statistical-table/statisticalTable-attr-base.vue.js +26 -15
  14. package/dist/es/components/design/views/assemblys/common/common-advanced-basic-showcondition.vue.js +6 -14
  15. package/dist/es/components/design/views/assemblys/common/common-variable-bind.vue.js +2 -2
  16. package/dist/es/components/design/views/assemblys/common/common-variable-bind.vue2.js +738 -1
  17. package/dist/es/components/design/views/assemblys/common/common-variable-bind.vue3.js +1 -738
  18. package/dist/es/components/design/views/assemblys/container/tabs/tabs-attr-base.vue.js +12 -0
  19. package/dist/es/components/design/views/assemblys/data/table/table-attr-base.vue.js +1 -1
  20. package/dist/es/components/design/views/assemblys/form/common/data-format.vue.js +1 -1
  21. package/dist/es/components/design/views/assemblys/form/common/parameter-table.vue.js +8 -2
  22. package/dist/es/components/design/views/assemblys/form/common/suffixmodule.vue.js +10 -1
  23. package/dist/es/components/design/views/assemblys/form/custom/custom-attr-base.vue.js +12 -29
  24. package/dist/es/components/design/views/assemblys/page/page-attr-advanced.vue.js +1 -1
  25. package/dist/es/components/design/views/design/page-event/config.vue.js +1 -7
  26. package/dist/es/components/design/views/design/page-event/config.vue2.js +7 -1
  27. package/dist/es/components/design/views/design/page-event/page-event-content.vue.js +1 -1
  28. package/dist/es/components/design/views/design/view/components/quick-add-dialog.vue.js +5 -0
  29. package/dist/es/components/design/views/design/view/view-design-display.vue.js +4 -1
  30. package/dist/es/style.css +84 -84
  31. package/package.json +4 -4
@@ -252,6 +252,18 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
252
252
  ]),
253
253
  _: 1
254
254
  }),
255
+ createVNode(_component_el_table_column, {
256
+ label: "编码",
257
+ width: "70"
258
+ }, {
259
+ default: withCtx((scope) => [
260
+ createVNode(_component_el_input, {
261
+ modelValue: scope.row.code,
262
+ "onUpdate:modelValue": ($event) => scope.row.code = $event
263
+ }, null, 8, ["modelValue", "onUpdate:modelValue"])
264
+ ]),
265
+ _: 1
266
+ }),
255
267
  createVNode(_component_el_table_column, {
256
268
  label: "操作",
257
269
  width: "90"
@@ -9,7 +9,7 @@ import "uuid";
9
9
  import "../../../../../../stores/page-store.js";
10
10
  import "../../../../../../stores/table-store.js";
11
11
  import "../../../../../../stores/statistics-table-store.js";
12
- import "../../common/common-variable-bind.vue2.js";
12
+ import "../../common/common-variable-bind.vue3.js";
13
13
  import "../../../../utils/eventBus.js";
14
14
  import _sfc_main$1 from "../../common/common-function-code.vue.js";
15
15
  const _hoisted_1 = { style: { "padding": "8px 0px 0px 0px" } };
@@ -8,7 +8,7 @@ import http from "agilebuilder-ui/src/utils/request";
8
8
  import { usePageContextStore } from "../../../../../../stores/page-store.js";
9
9
  import "../../../../../../stores/table-store.js";
10
10
  import "../../../../../../stores/statistics-table-store.js";
11
- import "../../common/common-variable-bind.vue2.js";
11
+ import "../../common/common-variable-bind.vue3.js";
12
12
  import _sfc_main$4 from "./data-origin-service-in.vue.js";
13
13
  import { queryTableFields } from "../../../../utils/page-table-util.js";
14
14
  import { getCustomFuncs } from "../../../../utils/page-event-util.js";
@@ -20,9 +20,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
20
20
  const props = __props;
21
21
  const emit = __emit;
22
22
  const rowModelOptions = ref(null);
23
- if (props.tableConfigure) {
24
- rowModelOptions.value = getModelOptionsByFields(props.tableConfigure.modelFields);
23
+ getRowModelOptions();
24
+ function getRowModelOptions() {
25
+ if (props.tableConfigure) {
26
+ rowModelOptions.value = getModelOptionsByFields(props.tableConfigure.modelFields);
27
+ }
25
28
  }
29
+ watch(() => props.tableConfigure, () => {
30
+ getRowModelOptions();
31
+ });
26
32
  const tableData = ref([]);
27
33
  tableData.value = props.data;
28
34
  if (!tableData.value || tableData.value.length == 0) {
@@ -80,11 +80,20 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
80
80
  },
81
81
  { immediate: true }
82
82
  );
83
+ watch(
84
+ () => props.tableConfigure,
85
+ (newVal) => {
86
+ changeTableConfig();
87
+ }
88
+ );
83
89
  onMounted(() => {
90
+ changeTableConfig();
91
+ });
92
+ function changeTableConfig() {
84
93
  if (props.tableConfigure && conditionRef.value) {
85
94
  conditionRef.value.changeTableFields(props.tableConfigure.modelFields);
86
95
  }
87
- });
96
+ }
88
97
  function selectPage() {
89
98
  selectPageDialog.value.openDialog();
90
99
  }
@@ -1,5 +1,5 @@
1
- import { defineComponent, ref, resolveComponent, openBlock, createBlock, withCtx, createVNode, createElementVNode, createElementBlock, Fragment, renderList, unref, createTextVNode } from "vue";
2
- import { getFormComponentOptions } from "../../../../utils/assemblys-config.js";
1
+ import { defineComponent, ref, resolveComponent, openBlock, createBlock, withCtx, createVNode, createElementVNode, createTextVNode, toDisplayString } from "vue";
2
+ import "../../../../utils/assemblys-config.js";
3
3
  import "@element-plus/icons-vue";
4
4
  import _sfc_main$4 from "../../common/common-attr-size.vue.js";
5
5
  import "../common/dimension-input.vue.js";
@@ -27,8 +27,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
27
27
  setup(__props) {
28
28
  const openCollapseItems = ref([]);
29
29
  return (_ctx, _cache) => {
30
- const _component_el_option = resolveComponent("el-option");
31
- const _component_el_select = resolveComponent("el-select");
32
30
  const _component_el_form_item = resolveComponent("el-form-item");
33
31
  const _component_el_input = resolveComponent("el-input");
34
32
  const _component_el_radio = resolveComponent("el-radio");
@@ -44,7 +42,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
44
42
  default: withCtx(() => [
45
43
  createVNode(_component_el_collapse, {
46
44
  modelValue: openCollapseItems.value,
47
- "onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => openCollapseItems.value = $event),
45
+ "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => openCollapseItems.value = $event),
48
46
  style: { "margin-top": "6px" }
49
47
  }, {
50
48
  default: withCtx(() => [
@@ -60,22 +58,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
60
58
  class: "amb-design-attr-item"
61
59
  }, {
62
60
  default: withCtx(() => [
63
- createVNode(_component_el_select, {
64
- modelValue: __props.configure.name,
65
- "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => __props.configure.name = $event),
66
- placeholder: "请选择"
67
- }, {
68
- default: withCtx(() => [
69
- (openBlock(true), createElementBlock(Fragment, null, renderList(unref(getFormComponentOptions)(), (item) => {
70
- return openBlock(), createBlock(_component_el_option, {
71
- key: item.name,
72
- label: item.label,
73
- value: item.name
74
- }, null, 8, ["label", "value"]);
75
- }), 128))
76
- ]),
77
- _: 1
78
- }, 8, ["modelValue"])
61
+ createTextVNode(toDisplayString(__props.configure.label) + "(" + toDisplayString(__props.configure.name) + ") ", 1)
79
62
  ]),
80
63
  _: 1
81
64
  }),
@@ -85,8 +68,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
85
68
  }, {
86
69
  default: withCtx(() => [
87
70
  createVNode(_component_el_input, {
88
- modelValue: __props.configure.props.base.customControl,
89
- "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => __props.configure.props.base.customControl = $event),
71
+ modelValue: __props.configure.props.base.name,
72
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => __props.configure.props.base.name = $event),
90
73
  placeholder: "请输入"
91
74
  }, null, 8, ["modelValue"])
92
75
  ]),
@@ -99,7 +82,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
99
82
  default: withCtx(() => [
100
83
  createVNode(_component_el_input, {
101
84
  modelValue: __props.configure.props.base.prop,
102
- "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => __props.configure.props.base.prop = $event),
85
+ "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => __props.configure.props.base.prop = $event),
103
86
  placeholder: "请输入"
104
87
  }, null, 8, ["modelValue"])
105
88
  ]),
@@ -112,7 +95,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
112
95
  default: withCtx(() => [
113
96
  createVNode(_sfc_main$1, {
114
97
  modelValue: __props.configure.props.base.title,
115
- "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.base.title = $event)
98
+ "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => __props.configure.props.base.title = $event)
116
99
  }, null, 8, ["modelValue"])
117
100
  ]),
118
101
  _: 1
@@ -124,7 +107,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
124
107
  default: withCtx(() => [
125
108
  createVNode(_component_el_input, {
126
109
  modelValue: __props.configure.props.base.titleWidth,
127
- "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => __props.configure.props.base.titleWidth = $event),
110
+ "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => __props.configure.props.base.titleWidth = $event),
128
111
  placeholder: "请输入"
129
112
  }, null, 8, ["modelValue"])
130
113
  ]),
@@ -137,7 +120,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
137
120
  default: withCtx(() => [
138
121
  createVNode(_component_el_radio_group, {
139
122
  modelValue: __props.configure.props.base.tittleShow,
140
- "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.base.tittleShow = $event),
123
+ "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => __props.configure.props.base.tittleShow = $event),
141
124
  class: "ml-4"
142
125
  }, {
143
126
  default: withCtx(() => [
@@ -166,7 +149,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
166
149
  default: withCtx(() => [
167
150
  createVNode(_component_el_radio_group, {
168
151
  modelValue: __props.configure.props.base.state,
169
- "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => __props.configure.props.base.state = $event),
152
+ "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => __props.configure.props.base.state = $event),
170
153
  class: "ml-4"
171
154
  }, {
172
155
  default: withCtx(() => [
@@ -226,7 +209,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
226
209
  default: withCtx(() => [
227
210
  createVNode(_component_el_checkbox, {
228
211
  modelValue: __props.configure.props.verification.required,
229
- "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => __props.configure.props.verification.required = $event),
212
+ "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => __props.configure.props.verification.required = $event),
230
213
  label: "必填"
231
214
  }, null, 8, ["modelValue"])
232
215
  ]),
@@ -146,7 +146,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
146
146
  }, {
147
147
  default: withCtx(() => [
148
148
  createVNode(_component_el_collapse_item, {
149
- title: "表单编号规则",
149
+ title: "高级配置",
150
150
  name: "formNumber",
151
151
  class: "amb-design-attr-group-header"
152
152
  }, {
@@ -1,7 +1 @@
1
- import _sfc_main from "./config.vue3.js";
2
- import "./config.vue2.js";
3
- import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.js";
4
- const config = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-39d5d5cf"]]);
5
- export {
6
- config as default
7
- };
1
+
@@ -1 +1,7 @@
1
-
1
+ import _sfc_main from "./config.vue3.js";
2
+ import "./config.vue.js";
3
+ import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.js";
4
+ const config = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-39d5d5cf"]]);
5
+ export {
6
+ config as default
7
+ };
@@ -1,6 +1,6 @@
1
1
  import { defineComponent, ref, onMounted, onUnmounted, watch, resolveComponent, openBlock, createElementBlock, createElementVNode, createVNode, withCtx, withDirectives, vShow, unref, createTextVNode, toDisplayString, Fragment, renderList, createBlock } from "vue";
2
2
  import { ElMessageBox, ElMessage } from "element-plus";
3
- import config from "./config.vue.js";
3
+ import config from "./config.vue2.js";
4
4
  import { standardButtonOperations } from "../../../utils/assemblys-config.js";
5
5
  import { findDesignItemByUuid, getUuidv4, deepCopy } from "../../../utils/common-util.js";
6
6
  import { usePageContextStore } from "../../../../../stores/page-store.js";
@@ -343,6 +343,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
343
343
  for (let item of items) {
344
344
  pageDesign.items.push(item);
345
345
  }
346
+ if (items) {
347
+ for (let item of items) {
348
+ setPagetemI18nKey(item, props.pageDesign);
349
+ }
350
+ }
346
351
  pageDesign.pageType = model.pageType;
347
352
  }
348
353
  function generateListOperateColumn(gridConf) {
@@ -16,7 +16,7 @@ import "@codemirror/autocomplete";
16
16
  import "@codemirror/language";
17
17
  import "@codemirror/search";
18
18
  import "js-beautify";
19
- import "../page-event/config.vue2.js";
19
+ import "../page-event/config.vue.js";
20
20
  import "../../../utils/assemblys-config.js";
21
21
  import "../../../../../stores/page-store.js";
22
22
  import "../../../../../stores/event-undo-redo-store.js";
@@ -162,6 +162,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
162
162
  }
163
163
  });
164
164
  function saveForm() {
165
+ if (props.configure.i18nKeys && props.configure.i18nKeys.length > 0) {
166
+ props.configure.i18nKeys = Array.from(new Set(props.configure.i18nKeys));
167
+ }
165
168
  const configureCopy = JSON.parse(JSON.stringify(props.configure));
166
169
  configureCopy.tableRuntimes = {};
167
170
  beforeSaveForm(configureCopy);
package/dist/es/style.css CHANGED
@@ -3150,10 +3150,6 @@ fieldset.amb-design-item-selected {
3150
3150
  padding: 10px;
3151
3151
  font-weight: bold;
3152
3152
  }
3153
-
3154
- .el-select__wrapper.is-disabled{
3155
- cursor: default;
3156
- }
3157
3153
  .el-tree-node__content {
3158
3154
  height: 34px !important;
3159
3155
  }
@@ -5626,6 +5622,10 @@ fieldset.amb-design-item-selected {
5626
5622
  padding: 10px;
5627
5623
  font-weight: bold;
5628
5624
  }
5625
+
5626
+ .el-select__wrapper.is-disabled{
5627
+ cursor: default;
5628
+ }
5629
5629
  .el-tree-node__content {
5630
5630
  height: 34px !important;
5631
5631
  }
@@ -16182,60 +16182,6 @@ fieldset.amb-design-item-selected {
16182
16182
  padding: 10px;
16183
16183
  font-weight: bold;
16184
16184
  }
16185
-
16186
- [data-v-bab42532] .el-form-item__label {
16187
- padding: 0;
16188
- }
16189
-
16190
- /*不显示列样式*/
16191
- .hiddenBorder {
16192
- border-right: solid 1px #ebebeb !important;
16193
- border-left: solid 1px #ebebeb !important;
16194
- background-color: #ebebeb !important;
16195
- }
16196
- /*选中列样式*/
16197
- .addBorder {
16198
- border-right: solid 1px #5893ef !important;
16199
- border-left: solid 1px #5893ef !important;
16200
- background-color: #5893ef !important;
16201
- color: #ffffff;
16202
- }
16203
- .ghost {
16204
- opacity: 0.5;
16205
- background: #c8ebfb;
16206
- }
16207
-
16208
- li[data-v-a555cba7] {
16209
- color: #333;
16210
- }
16211
- .context-menu[data-v-a555cba7] {
16212
- position: fixed;
16213
- background: #fff;
16214
- z-index: 999;
16215
- padding: 5px;
16216
- margin: 0;
16217
- margin-top: 30px;
16218
- }
16219
- .context-menu li[data-v-a555cba7] {
16220
- min-width: 75px;
16221
- height: 28px;
16222
- line-height: 28px;
16223
- text-align: left;
16224
- color: #1a1a1a;
16225
- cursor: pointer;
16226
- }
16227
- .context-menu li[data-v-a555cba7]:hover {
16228
- background: #5893ef;
16229
- color: #fff;
16230
- }
16231
- .context-menu[data-v-a555cba7] {
16232
- border: 1px solid #eee;
16233
- box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
16234
- border-radius: 5px;
16235
- }
16236
- li[data-v-a555cba7] {
16237
- list-style-type: none;
16238
- }
16239
16185
  .el-tree-node__content {
16240
16186
  height: 34px !important;
16241
16187
  }
@@ -17472,6 +17418,60 @@ fieldset.amb-design-item-selected {
17472
17418
  padding: 10px;
17473
17419
  font-weight: bold;
17474
17420
  }
17421
+
17422
+ /*不显示列样式*/
17423
+ .hiddenBorder {
17424
+ border-right: solid 1px #ebebeb !important;
17425
+ border-left: solid 1px #ebebeb !important;
17426
+ background-color: #ebebeb !important;
17427
+ }
17428
+ /*选中列样式*/
17429
+ .addBorder {
17430
+ border-right: solid 1px #5893ef !important;
17431
+ border-left: solid 1px #5893ef !important;
17432
+ background-color: #5893ef !important;
17433
+ color: #ffffff;
17434
+ }
17435
+ .ghost {
17436
+ opacity: 0.5;
17437
+ background: #c8ebfb;
17438
+ }
17439
+
17440
+ li[data-v-a555cba7] {
17441
+ color: #333;
17442
+ }
17443
+ .context-menu[data-v-a555cba7] {
17444
+ position: fixed;
17445
+ background: #fff;
17446
+ z-index: 999;
17447
+ padding: 5px;
17448
+ margin: 0;
17449
+ margin-top: 30px;
17450
+ }
17451
+ .context-menu li[data-v-a555cba7] {
17452
+ min-width: 75px;
17453
+ height: 28px;
17454
+ line-height: 28px;
17455
+ text-align: left;
17456
+ color: #1a1a1a;
17457
+ cursor: pointer;
17458
+ }
17459
+ .context-menu li[data-v-a555cba7]:hover {
17460
+ background: #5893ef;
17461
+ color: #fff;
17462
+ }
17463
+ .context-menu[data-v-a555cba7] {
17464
+ border: 1px solid #eee;
17465
+ box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
17466
+ border-radius: 5px;
17467
+ }
17468
+ li[data-v-a555cba7] {
17469
+ list-style-type: none;
17470
+ }
17471
+
17472
+ [data-v-bab42532] .el-form-item__label {
17473
+ padding: 0;
17474
+ }
17475
17475
 
17476
17476
  .amb-design-attr-header[data-v-226997f7] {
17477
17477
  position: sticky;
@@ -17511,28 +17511,10 @@ fieldset.amb-design-item-selected {
17511
17511
  padding-bottom: 5px;
17512
17512
  }
17513
17513
 
17514
- .seleteSort[data-v-8aacbe0c] {
17515
- border-radius: 5px;
17516
- border: 1px solid rgba(88, 147, 239);
17517
- }
17518
-
17519
17514
  [data-v-3528c938] .el-cascader-menu {
17520
17515
  min-width: 120px !important;
17521
17516
  }
17522
17517
 
17523
- .editorTool[data-v-39d5d5cf] {
17524
- margin-left: auto;
17525
- }
17526
- .editorOption[data-v-39d5d5cf] {
17527
- margin-right: 10px;
17528
- cursor: pointer;
17529
- }
17530
- .pppp[data-v-39d5d5cf] {
17531
- display: flex; /* 使用Flex布局 */
17532
- justify-content: flex-start;
17533
- align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
17534
- }
17535
-
17536
17518
  .icon-set-center-body[data-v-181d1ce8]{
17537
17519
  display: grid;
17538
17520
  grid-template-columns:repeat(5,1fr);
@@ -17570,6 +17552,32 @@ fieldset.amb-design-item-selected {
17570
17552
  margin-bottom: 20px;
17571
17553
  }
17572
17554
 
17555
+ .editorTool[data-v-39d5d5cf] {
17556
+ margin-left: auto;
17557
+ }
17558
+ .editorOption[data-v-39d5d5cf] {
17559
+ margin-right: 10px;
17560
+ cursor: pointer;
17561
+ }
17562
+ .pppp[data-v-39d5d5cf] {
17563
+ display: flex; /* 使用Flex布局 */
17564
+ justify-content: flex-start;
17565
+ align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
17566
+ }
17567
+
17568
+ .seleteSort[data-v-8aacbe0c] {
17569
+ border-radius: 5px;
17570
+ border: 1px solid rgba(88, 147, 239);
17571
+ }
17572
+
17573
+ .seleteSort[data-v-1dada466] {
17574
+ border-radius: 5px;
17575
+ border: 1px solid rgba(88, 147, 239);
17576
+ }
17577
+ [data-v-1dada466] .el-select__selection{
17578
+ display: inline-block;
17579
+ }
17580
+
17573
17581
  .seleteSort[data-v-3336d6c5] {
17574
17582
  border-radius: 5px;
17575
17583
  border: 1px solid rgba(88, 147, 239);
@@ -17620,14 +17628,6 @@ li[data-v-4fd4369c] {
17620
17628
  color: #7b7b7b;
17621
17629
  }
17622
17630
 
17623
- .seleteSort[data-v-1dada466] {
17624
- border-radius: 5px;
17625
- border: 1px solid rgba(88, 147, 239);
17626
- }
17627
- [data-v-1dada466] .el-select__selection{
17628
- display: inline-block;
17629
- }
17630
-
17631
17631
  .el-tag[data-v-665d3bf4]{
17632
17632
  margin-left: 10px;
17633
17633
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "super-page-designer",
3
- "version": "2.1.58",
3
+ "version": "2.1.61",
4
4
  "description": "AgileBuilder super page designer",
5
5
  "license": "ISC",
6
6
  "main": "dist/es/index.js",
@@ -29,7 +29,7 @@
29
29
  "@vitejs/plugin-vue": "^5.0.4",
30
30
  "@vueuse/core": "^10.9.0",
31
31
  "agilebuilder-private-libs": "1.0.26",
32
- "agilebuilder-ui": "1.0.89",
32
+ "agilebuilder-ui": "1.0.90",
33
33
  "echarts": "^5.5.0",
34
34
  "element-plus": "^2.6.1",
35
35
  "font-awesome": "^4.7.0",
@@ -40,8 +40,8 @@
40
40
  "pinia": "^2.1.7",
41
41
  "qrcode": "^1.5.3",
42
42
  "quill": "^2.0.1",
43
- "service-flow-designer": "2.1.56",
44
- "super-page-runtime": "2.1.57",
43
+ "service-flow-designer": "2.1.59",
44
+ "super-page-runtime": "2.1.60",
45
45
  "uuid": "^9.0.1",
46
46
  "vite": "^5.1.6",
47
47
  "vite-plugin-node-stdlib-browser": "^0.2.1",