super-page-designer 2.1.58 → 2.1.63

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 (30) 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/view/components/i18n-setting-page.vue.js +1 -1
  26. package/dist/es/components/design/views/design/view/components/i18n-setting-page.vue2.js +0 -2
  27. package/dist/es/components/design/views/design/view/components/quick-add-dialog.vue.js +5 -0
  28. package/dist/es/components/design/views/design/view/view-design-display.vue.js +3 -0
  29. package/dist/es/style.css +128 -128
  30. 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,7 @@
1
1
  import _sfc_main from "./i18n-setting-page.vue2.js";
2
2
  import "./i18n-setting-page.vue3.js";
3
3
  import _export_sfc from "../../../../../../_virtual/_plugin-vue_export-helper.js";
4
- const i18nSettingPage = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-1aa6f1ab"]]);
4
+ const i18nSettingPage = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-3c4dc496"]]);
5
5
  export {
6
6
  i18nSettingPage as default
7
7
  };
@@ -206,7 +206,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
206
206
  createElementVNode("div", _hoisted_1, [
207
207
  withDirectives((openBlock(), createBlock(_component_el_button, {
208
208
  align: "left",
209
- type: "primary",
210
209
  class: "button--default",
211
210
  icon: unref(Plus),
212
211
  onClick: add
@@ -220,7 +219,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
220
219
  ]),
221
220
  withDirectives((openBlock(), createBlock(_component_el_button, {
222
221
  align: "left",
223
- type: "primary",
224
222
  class: "button--default",
225
223
  icon: unref(Reading),
226
224
  onClick: translateCodes
@@ -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) {
@@ -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
@@ -1292,10 +1292,6 @@ fieldset.amb-design-item-selected {
1292
1292
  padding: 10px;
1293
1293
  font-weight: bold;
1294
1294
  }
1295
-
1296
- .el-switch.is-disabled .el-switch__core, .el-switch.is-disabled .el-switch__label{
1297
- cursor: default;
1298
- }
1299
1295
  .el-tree-node__content {
1300
1296
  height: 34px !important;
1301
1297
  }
@@ -3150,10 +3146,6 @@ fieldset.amb-design-item-selected {
3150
3146
  padding: 10px;
3151
3147
  font-weight: bold;
3152
3148
  }
3153
-
3154
- .el-select__wrapper.is-disabled{
3155
- cursor: default;
3156
- }
3157
3149
  .el-tree-node__content {
3158
3150
  height: 34px !important;
3159
3151
  }
@@ -5626,6 +5618,14 @@ fieldset.amb-design-item-selected {
5626
5618
  padding: 10px;
5627
5619
  font-weight: bold;
5628
5620
  }
5621
+
5622
+ .el-switch.is-disabled .el-switch__core, .el-switch.is-disabled .el-switch__label{
5623
+ cursor: default;
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
  }
@@ -9334,6 +9334,56 @@ fieldset.amb-design-item-selected {
9334
9334
  padding: 10px;
9335
9335
  font-weight: bold;
9336
9336
  }
9337
+
9338
+ /*不显示列样式*/
9339
+ .hiddenBorder {
9340
+ border-right: solid 1px #ebebeb !important;
9341
+ border-left: solid 1px #ebebeb !important;
9342
+ background-color: #ebebeb !important;
9343
+ }
9344
+ /*选中列样式*/
9345
+ .addBorder {
9346
+ border-right: solid 1px #5893ef !important;
9347
+ border-left: solid 1px #5893ef !important;
9348
+ background-color: #5893ef !important;
9349
+ color: #ffffff;
9350
+ }
9351
+ .ghost {
9352
+ opacity: 0.5;
9353
+ background: #c8ebfb;
9354
+ }
9355
+
9356
+ li[data-v-5581ec9f] {
9357
+ color: #333;
9358
+ }
9359
+ .context-menu[data-v-5581ec9f] {
9360
+ position: fixed;
9361
+ background: #fff;
9362
+ z-index: 999;
9363
+ padding: 5px;
9364
+ margin: 0;
9365
+ margin-top: 30px;
9366
+ }
9367
+ .context-menu li[data-v-5581ec9f] {
9368
+ min-width: 75px;
9369
+ height: 28px;
9370
+ line-height: 28px;
9371
+ text-align: left;
9372
+ color: #1a1a1a;
9373
+ cursor: pointer;
9374
+ }
9375
+ .context-menu li[data-v-5581ec9f]:hover {
9376
+ background: #5893ef;
9377
+ color: #fff;
9378
+ }
9379
+ .context-menu[data-v-5581ec9f] {
9380
+ border: 1px solid #eee;
9381
+ box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
9382
+ border-radius: 5px;
9383
+ }
9384
+ li[data-v-5581ec9f] {
9385
+ list-style-type: none;
9386
+ }
9337
9387
  .el-tree-node__content {
9338
9388
  height: 34px !important;
9339
9389
  }
@@ -9952,56 +10002,6 @@ fieldset.amb-design-item-selected {
9952
10002
  padding: 10px;
9953
10003
  font-weight: bold;
9954
10004
  }
9955
-
9956
- /*不显示列样式*/
9957
- .hiddenBorder {
9958
- border-right: solid 1px #ebebeb !important;
9959
- border-left: solid 1px #ebebeb !important;
9960
- background-color: #ebebeb !important;
9961
- }
9962
- /*选中列样式*/
9963
- .addBorder {
9964
- border-right: solid 1px #5893ef !important;
9965
- border-left: solid 1px #5893ef !important;
9966
- background-color: #5893ef !important;
9967
- color: #ffffff;
9968
- }
9969
- .ghost {
9970
- opacity: 0.5;
9971
- background: #c8ebfb;
9972
- }
9973
-
9974
- li[data-v-5581ec9f] {
9975
- color: #333;
9976
- }
9977
- .context-menu[data-v-5581ec9f] {
9978
- position: fixed;
9979
- background: #fff;
9980
- z-index: 999;
9981
- padding: 5px;
9982
- margin: 0;
9983
- margin-top: 30px;
9984
- }
9985
- .context-menu li[data-v-5581ec9f] {
9986
- min-width: 75px;
9987
- height: 28px;
9988
- line-height: 28px;
9989
- text-align: left;
9990
- color: #1a1a1a;
9991
- cursor: pointer;
9992
- }
9993
- .context-menu li[data-v-5581ec9f]:hover {
9994
- background: #5893ef;
9995
- color: #fff;
9996
- }
9997
- .context-menu[data-v-5581ec9f] {
9998
- border: 1px solid #eee;
9999
- box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
10000
- border-radius: 5px;
10001
- }
10002
- li[data-v-5581ec9f] {
10003
- list-style-type: none;
10004
- }
10005
10005
  .el-tree-node__content {
10006
10006
  height: 34px !important;
10007
10007
  }
@@ -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,15 +17511,15 @@ fieldset.amb-design-item-selected {
17511
17511
  padding-bottom: 5px;
17512
17512
  }
17513
17513
 
17514
+ [data-v-3528c938] .el-cascader-menu {
17515
+ min-width: 120px !important;
17516
+ }
17517
+
17514
17518
  .seleteSort[data-v-8aacbe0c] {
17515
17519
  border-radius: 5px;
17516
17520
  border: 1px solid rgba(88, 147, 239);
17517
17521
  }
17518
17522
 
17519
- [data-v-3528c938] .el-cascader-menu {
17520
- min-width: 120px !important;
17521
- }
17522
-
17523
17523
  .editorTool[data-v-39d5d5cf] {
17524
17524
  margin-left: auto;
17525
17525
  }
@@ -17575,6 +17575,14 @@ fieldset.amb-design-item-selected {
17575
17575
  border: 1px solid rgba(88, 147, 239);
17576
17576
  }
17577
17577
 
17578
+ .seleteSort[data-v-1dada466] {
17579
+ border-radius: 5px;
17580
+ border: 1px solid rgba(88, 147, 239);
17581
+ }
17582
+ [data-v-1dada466] .el-select__selection{
17583
+ display: inline-block;
17584
+ }
17585
+
17578
17586
  li[data-v-4fd4369c] {
17579
17587
  color: #333;
17580
17588
  }
@@ -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
  }
@@ -17637,10 +17637,6 @@ li[data-v-4fd4369c] {
17637
17637
  border: 1px solid rgba(88, 147, 239);
17638
17638
  }
17639
17639
 
17640
- [data-v-1aa6f1ab] .centered-input .el-input__inner {
17641
- text-align: center;
17642
- }
17643
-
17644
17640
  .row-backgroud-header-tittle[data-v-b203475d]{
17645
17641
  display: flex;
17646
17642
  justify-content: space-between;
@@ -17650,6 +17646,10 @@ li[data-v-4fd4369c] {
17650
17646
  width: 100%
17651
17647
  }
17652
17648
 
17649
+ [data-v-3c4dc496] .centered-input .el-input__inner {
17650
+ text-align: center;
17651
+ }
17652
+
17653
17653
  .input-with-select .el-input-group__append {
17654
17654
  background-color: var(--el-fill-color-blank);
17655
17655
  }
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.63",
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.62",
45
45
  "uuid": "^9.0.1",
46
46
  "vite": "^5.1.6",
47
47
  "vite-plugin-node-stdlib-browser": "^0.2.1",