super-page-designer 2.1.76 → 2.1.80

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.
@@ -53,10 +53,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
53
53
  }
54
54
  const tableList = ref([]);
55
55
  function getTableList() {
56
- if (props.pageDesign.items && props.pageDesign.items.length > 0) {
57
- tableList.value = props.pageDesign.items.filter((item) => {
58
- return item.label === "表格";
59
- });
56
+ if (props.pageDesign.tableUuids && props.pageDesign.tableUuids.length > 0) {
57
+ tableList.value = props.pageDesign.tableUuids;
60
58
  }
61
59
  }
62
60
  function queryTemplateList() {
@@ -707,14 +705,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
707
705
  "onUpdate:modelValue": _cache[23] || (_cache[23] = ($event) => __props.configure.props.base.tableUuid = $event),
708
706
  clearable: "",
709
707
  filterable: "",
708
+ "allow-create": "",
710
709
  onChange: changeTableConfig
711
710
  }, {
712
711
  default: withCtx(() => [
713
- (openBlock(true), createElementBlock(Fragment, null, renderList(tableList.value, (item) => {
712
+ (openBlock(true), createElementBlock(Fragment, null, renderList(tableList.value, (tableuuid) => {
714
713
  return openBlock(), createBlock(_component_el_option, {
715
- key: item.uuid,
716
- label: item.title,
717
- value: item.uuid
714
+ key: tableuuid,
715
+ label: tableuuid,
716
+ value: tableuuid
718
717
  }, null, 8, ["label", "value"]);
719
718
  }), 128))
720
719
  ]),
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, ref, computed, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, createTextVNode, unref, createCommentVNode, withDirectives, vShow, createElementBlock, Fragment, renderList, normalizeClass, toDisplayString, renderSlot } from "vue";
2
- import _sfc_main$1 from "../../form/common/dataorigin-input-table.vue.js";
2
+ import _sfc_main$1 from "../../form/common/dataorigin-input-table.vue2.js";
3
3
  import { Codemirror } from "vue-codemirror";
4
4
  import _sfc_main$6 from "../../workflow/component/combination.vue.js";
5
5
  import _sfc_main$5 from "./return-set-table.vue.js";
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, ref, onMounted, resolveComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, unref, createCommentVNode, withDirectives, createTextVNode, createElementBlock, Fragment, renderList, vShow, normalizeClass } from "vue";
2
- import _sfc_main$3 from "./dataorigin-input-table.vue.js";
2
+ import _sfc_main$3 from "./dataorigin-input-table.vue2.js";
3
3
  import _sfc_main$2 from "./condition.vue.js";
4
4
  import _sfc_main$1 from "./row-ul-li.vue.js";
5
5
  import "uuid";
@@ -1,155 +1,4 @@
1
- import { defineComponent, ref, watch, resolveComponent, openBlock, createElementBlock, Fragment, createVNode, withCtx, unref, createElementVNode, createTextVNode } from "vue";
2
- import { Search } from "@element-plus/icons-vue";
3
- const _hoisted_1 = { class: "dialog-footer" };
4
- const _sfc_main = /* @__PURE__ */ defineComponent({
5
- __name: "dataorigin-input-table",
6
- props: {
7
- modelValue: {
8
- type: String,
9
- default: ""
10
- }
11
- },
12
- emits: ["update:modelValue"],
13
- setup(__props, { emit: __emit }) {
14
- const props = __props;
15
- const inputValue = ref(props.modelValue);
16
- const emit = __emit;
17
- const tableData = [
18
- {
19
- id: 1,
20
- date: "2016-05-03",
21
- name: "Tom",
22
- address: "No. 189, Grove St, Los Angeles"
23
- },
24
- {
25
- id: 2,
26
- date: "2016-05-02",
27
- name: "Tom",
28
- address: "No. 189, Grove St, Los Angeles"
29
- },
30
- {
31
- id: 3,
32
- date: "2016-05-04",
33
- name: "Tom",
34
- address: "No. 189, Grove St, Los Angeles"
35
- },
36
- {
37
- id: 4,
38
- date: "2016-05-01",
39
- name: "Tom",
40
- address: "No. 189, Grove St, Los Angeles"
41
- }
42
- ];
43
- const dialogVisible = ref(false);
44
- const selectData = ref([]);
45
- watch(() => props.modelValue, (newVal) => {
46
- inputValue.value = newVal;
47
- });
48
- function confirm() {
49
- if (selectData.value.length > 0) {
50
- let str = "";
51
- selectData.value.forEach((item) => {
52
- str = str + item.name + ",";
53
- });
54
- str = str.substring(0, str.length - 1);
55
- emit("update:modelValue", str);
56
- dialogVisible.value = false;
57
- } else {
58
- dialogVisible.value = false;
59
- }
60
- }
61
- function handleSelectionChange(selection) {
62
- selectData.value = selection;
63
- }
64
- function inputClick() {
65
- dialogVisible.value = true;
66
- }
67
- return (_ctx, _cache) => {
68
- const _component_el_icon = resolveComponent("el-icon");
69
- const _component_el_input = resolveComponent("el-input");
70
- const _component_el_table_column = resolveComponent("el-table-column");
71
- const _component_el_table = resolveComponent("el-table");
72
- const _component_el_button = resolveComponent("el-button");
73
- const _component_el_dialog = resolveComponent("el-dialog");
74
- return openBlock(), createElementBlock(Fragment, null, [
75
- createVNode(_component_el_input, {
76
- modelValue: inputValue.value,
77
- "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => inputValue.value = $event),
78
- placeholder: "请选择",
79
- onClick: inputClick
80
- }, {
81
- suffix: withCtx(() => [
82
- createVNode(_component_el_icon, { onClick: inputClick }, {
83
- default: withCtx(() => [
84
- createVNode(unref(Search))
85
- ]),
86
- _: 1
87
- })
88
- ]),
89
- _: 1
90
- }, 8, ["modelValue"]),
91
- createVNode(_component_el_dialog, {
92
- modelValue: dialogVisible.value,
93
- "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => dialogVisible.value = $event),
94
- title: "Tips",
95
- width: "500"
96
- }, {
97
- footer: withCtx(() => [
98
- createElementVNode("div", _hoisted_1, [
99
- createVNode(_component_el_button, {
100
- onClick: _cache[1] || (_cache[1] = ($event) => dialogVisible.value = false)
101
- }, {
102
- default: withCtx(() => [
103
- createTextVNode("取消")
104
- ]),
105
- _: 1
106
- }),
107
- createVNode(_component_el_button, {
108
- type: "primary",
109
- onClick: confirm
110
- }, {
111
- default: withCtx(() => [
112
- createTextVNode(" 确定 ")
113
- ]),
114
- _: 1
115
- })
116
- ])
117
- ]),
118
- default: withCtx(() => [
119
- createVNode(_component_el_table, {
120
- data: tableData,
121
- style: { "width": "100%" },
122
- onSelectionChange: handleSelectionChange
123
- }, {
124
- default: withCtx(() => [
125
- createVNode(_component_el_table_column, {
126
- type: "selection",
127
- width: "55"
128
- }),
129
- createVNode(_component_el_table_column, {
130
- prop: "date",
131
- label: "Date",
132
- width: "180"
133
- }),
134
- createVNode(_component_el_table_column, {
135
- prop: "name",
136
- label: "Name",
137
- width: "180"
138
- }),
139
- createVNode(_component_el_table_column, {
140
- prop: "address",
141
- label: "Address"
142
- })
143
- ]),
144
- _: 1
145
- })
146
- ]),
147
- _: 1
148
- }, 8, ["modelValue"])
149
- ], 64);
150
- };
151
- }
152
- });
1
+ import _sfc_main from "./dataorigin-input-table.vue2.js";
153
2
  export {
154
3
  _sfc_main as default
155
4
  };
@@ -1,4 +1,155 @@
1
- import _sfc_main from "./dataorigin-input-table.vue.js";
1
+ import { defineComponent, ref, watch, resolveComponent, openBlock, createElementBlock, Fragment, createVNode, withCtx, unref, createElementVNode, createTextVNode } from "vue";
2
+ import { Search } from "@element-plus/icons-vue";
3
+ const _hoisted_1 = { class: "dialog-footer" };
4
+ const _sfc_main = /* @__PURE__ */ defineComponent({
5
+ __name: "dataorigin-input-table",
6
+ props: {
7
+ modelValue: {
8
+ type: String,
9
+ default: ""
10
+ }
11
+ },
12
+ emits: ["update:modelValue"],
13
+ setup(__props, { emit: __emit }) {
14
+ const props = __props;
15
+ const inputValue = ref(props.modelValue);
16
+ const emit = __emit;
17
+ const tableData = [
18
+ {
19
+ id: 1,
20
+ date: "2016-05-03",
21
+ name: "Tom",
22
+ address: "No. 189, Grove St, Los Angeles"
23
+ },
24
+ {
25
+ id: 2,
26
+ date: "2016-05-02",
27
+ name: "Tom",
28
+ address: "No. 189, Grove St, Los Angeles"
29
+ },
30
+ {
31
+ id: 3,
32
+ date: "2016-05-04",
33
+ name: "Tom",
34
+ address: "No. 189, Grove St, Los Angeles"
35
+ },
36
+ {
37
+ id: 4,
38
+ date: "2016-05-01",
39
+ name: "Tom",
40
+ address: "No. 189, Grove St, Los Angeles"
41
+ }
42
+ ];
43
+ const dialogVisible = ref(false);
44
+ const selectData = ref([]);
45
+ watch(() => props.modelValue, (newVal) => {
46
+ inputValue.value = newVal;
47
+ });
48
+ function confirm() {
49
+ if (selectData.value.length > 0) {
50
+ let str = "";
51
+ selectData.value.forEach((item) => {
52
+ str = str + item.name + ",";
53
+ });
54
+ str = str.substring(0, str.length - 1);
55
+ emit("update:modelValue", str);
56
+ dialogVisible.value = false;
57
+ } else {
58
+ dialogVisible.value = false;
59
+ }
60
+ }
61
+ function handleSelectionChange(selection) {
62
+ selectData.value = selection;
63
+ }
64
+ function inputClick() {
65
+ dialogVisible.value = true;
66
+ }
67
+ return (_ctx, _cache) => {
68
+ const _component_el_icon = resolveComponent("el-icon");
69
+ const _component_el_input = resolveComponent("el-input");
70
+ const _component_el_table_column = resolveComponent("el-table-column");
71
+ const _component_el_table = resolveComponent("el-table");
72
+ const _component_el_button = resolveComponent("el-button");
73
+ const _component_el_dialog = resolveComponent("el-dialog");
74
+ return openBlock(), createElementBlock(Fragment, null, [
75
+ createVNode(_component_el_input, {
76
+ modelValue: inputValue.value,
77
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => inputValue.value = $event),
78
+ placeholder: "请选择",
79
+ onClick: inputClick
80
+ }, {
81
+ suffix: withCtx(() => [
82
+ createVNode(_component_el_icon, { onClick: inputClick }, {
83
+ default: withCtx(() => [
84
+ createVNode(unref(Search))
85
+ ]),
86
+ _: 1
87
+ })
88
+ ]),
89
+ _: 1
90
+ }, 8, ["modelValue"]),
91
+ createVNode(_component_el_dialog, {
92
+ modelValue: dialogVisible.value,
93
+ "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => dialogVisible.value = $event),
94
+ title: "Tips",
95
+ width: "500"
96
+ }, {
97
+ footer: withCtx(() => [
98
+ createElementVNode("div", _hoisted_1, [
99
+ createVNode(_component_el_button, {
100
+ onClick: _cache[1] || (_cache[1] = ($event) => dialogVisible.value = false)
101
+ }, {
102
+ default: withCtx(() => [
103
+ createTextVNode("取消")
104
+ ]),
105
+ _: 1
106
+ }),
107
+ createVNode(_component_el_button, {
108
+ type: "primary",
109
+ onClick: confirm
110
+ }, {
111
+ default: withCtx(() => [
112
+ createTextVNode(" 确定 ")
113
+ ]),
114
+ _: 1
115
+ })
116
+ ])
117
+ ]),
118
+ default: withCtx(() => [
119
+ createVNode(_component_el_table, {
120
+ data: tableData,
121
+ style: { "width": "100%" },
122
+ onSelectionChange: handleSelectionChange
123
+ }, {
124
+ default: withCtx(() => [
125
+ createVNode(_component_el_table_column, {
126
+ type: "selection",
127
+ width: "55"
128
+ }),
129
+ createVNode(_component_el_table_column, {
130
+ prop: "date",
131
+ label: "Date",
132
+ width: "180"
133
+ }),
134
+ createVNode(_component_el_table_column, {
135
+ prop: "name",
136
+ label: "Name",
137
+ width: "180"
138
+ }),
139
+ createVNode(_component_el_table_column, {
140
+ prop: "address",
141
+ label: "Address"
142
+ })
143
+ ]),
144
+ _: 1
145
+ })
146
+ ]),
147
+ _: 1
148
+ }, 8, ["modelValue"])
149
+ ], 64);
150
+ };
151
+ }
152
+ });
2
153
  export {
3
154
  _sfc_main as default
4
155
  };
package/dist/es/style.css CHANGED
@@ -2528,14 +2528,6 @@ fieldset.amb-design-item-selected {
2528
2528
  padding: 10px;
2529
2529
  font-weight: bold;
2530
2530
  }
2531
-
2532
- .el-select__wrapper.is-disabled{
2533
- cursor: default;
2534
- }
2535
-
2536
- .el-switch.is-disabled .el-switch__core, .el-switch.is-disabled .el-switch__label{
2537
- cursor: default;
2538
- }
2539
2531
  .el-tree-node__content {
2540
2532
  height: 34px !important;
2541
2533
  }
@@ -4390,6 +4382,10 @@ fieldset.amb-design-item-selected {
4390
4382
  padding: 10px;
4391
4383
  font-weight: bold;
4392
4384
  }
4385
+
4386
+ .el-switch.is-disabled .el-switch__core, .el-switch.is-disabled .el-switch__label{
4387
+ cursor: default;
4388
+ }
4393
4389
  .el-tree-node__content {
4394
4390
  height: 34px !important;
4395
4391
  }
@@ -5008,6 +5004,10 @@ fieldset.amb-design-item-selected {
5008
5004
  padding: 10px;
5009
5005
  font-weight: bold;
5010
5006
  }
5007
+
5008
+ .el-select__wrapper.is-disabled{
5009
+ cursor: default;
5010
+ }
5011
5011
  .el-tree-node__content {
5012
5012
  height: 34px !important;
5013
5013
  }
@@ -9334,56 +9334,6 @@ 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
- }
9387
9337
  .el-tree-node__content {
9388
9338
  height: 34px !important;
9389
9339
  }
@@ -10002,6 +9952,56 @@ fieldset.amb-design-item-selected {
10002
9952
  padding: 10px;
10003
9953
  font-weight: bold;
10004
9954
  }
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,10 +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
16185
  .el-tree-node__content {
16190
16186
  height: 34px !important;
16191
16187
  }
@@ -16804,56 +16800,6 @@ fieldset.amb-design-item-selected {
16804
16800
  padding: 10px;
16805
16801
  font-weight: bold;
16806
16802
  }
16807
-
16808
- /*不显示列样式*/
16809
- .hiddenBorder {
16810
- border-right: solid 1px #ebebeb !important;
16811
- border-left: solid 1px #ebebeb !important;
16812
- background-color: #ebebeb !important;
16813
- }
16814
- /*选中列样式*/
16815
- .addBorder {
16816
- border-right: solid 1px #5893ef !important;
16817
- border-left: solid 1px #5893ef !important;
16818
- background-color: #5893ef !important;
16819
- color: #ffffff;
16820
- }
16821
- .ghost {
16822
- opacity: 0.5;
16823
- background: #c8ebfb;
16824
- }
16825
-
16826
- li[data-v-a555cba7] {
16827
- color: #333;
16828
- }
16829
- .context-menu[data-v-a555cba7] {
16830
- position: fixed;
16831
- background: #fff;
16832
- z-index: 999;
16833
- padding: 5px;
16834
- margin: 0;
16835
- margin-top: 30px;
16836
- }
16837
- .context-menu li[data-v-a555cba7] {
16838
- min-width: 75px;
16839
- height: 28px;
16840
- line-height: 28px;
16841
- text-align: left;
16842
- color: #1a1a1a;
16843
- cursor: pointer;
16844
- }
16845
- .context-menu li[data-v-a555cba7]:hover {
16846
- background: #5893ef;
16847
- color: #fff;
16848
- }
16849
- .context-menu[data-v-a555cba7] {
16850
- border: 1px solid #eee;
16851
- box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
16852
- border-radius: 5px;
16853
- }
16854
- li[data-v-a555cba7] {
16855
- list-style-type: none;
16856
- }
16857
16803
  .el-tree-node__content {
16858
16804
  height: 34px !important;
16859
16805
  }
@@ -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,10 +17511,28 @@ 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
+
17514
17519
  [data-v-3528c938] .el-cascader-menu {
17515
17520
  min-width: 120px !important;
17516
17521
  }
17517
17522
 
17523
+ .editorTool[data-v-bc0d50cd] {
17524
+ margin-left: auto;
17525
+ }
17526
+ .editorOption[data-v-bc0d50cd] {
17527
+ margin-right: 10px;
17528
+ cursor: pointer;
17529
+ }
17530
+ .pppp[data-v-bc0d50cd] {
17531
+ display: flex; /* 使用Flex布局 */
17532
+ justify-content: flex-start;
17533
+ align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
17534
+ }
17535
+
17518
17536
  .icon-set-center-body[data-v-181d1ce8]{
17519
17537
  display: grid;
17520
17538
  grid-template-columns:repeat(5,1fr);
@@ -17552,36 +17570,6 @@ fieldset.amb-design-item-selected {
17552
17570
  margin-bottom: 20px;
17553
17571
  }
17554
17572
 
17555
- .seleteSort[data-v-8aacbe0c] {
17556
- border-radius: 5px;
17557
- border: 1px solid rgba(88, 147, 239);
17558
- }
17559
-
17560
- .editorTool[data-v-bc0d50cd] {
17561
- margin-left: auto;
17562
- }
17563
- .editorOption[data-v-bc0d50cd] {
17564
- margin-right: 10px;
17565
- cursor: pointer;
17566
- }
17567
- .pppp[data-v-bc0d50cd] {
17568
- display: flex; /* 使用Flex布局 */
17569
- justify-content: flex-start;
17570
- align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
17571
- }
17572
-
17573
- .el-tag[data-v-665d3bf4]{
17574
- margin-left: 10px;
17575
- }
17576
-
17577
- .seleteSort[data-v-1fd3d630] {
17578
- border-radius: 5px;
17579
- border: 1px solid rgba(88, 147, 239);
17580
- }
17581
- [data-v-1fd3d630] .el-select__selection{
17582
- display: inline-block;
17583
- }
17584
-
17585
17573
  li[data-v-4fd4369c] {
17586
17574
  color: #333;
17587
17575
  }
@@ -17632,8 +17620,16 @@ li[data-v-4fd4369c] {
17632
17620
  border: 1px solid rgba(88, 147, 239);
17633
17621
  }
17634
17622
 
17635
- [data-v-8e6fbc57] .centered-input .el-input__inner {
17636
- text-align: center;
17623
+ .seleteSort[data-v-1fd3d630] {
17624
+ border-radius: 5px;
17625
+ border: 1px solid rgba(88, 147, 239);
17626
+ }
17627
+ [data-v-1fd3d630] .el-select__selection{
17628
+ display: inline-block;
17629
+ }
17630
+
17631
+ .el-tag[data-v-665d3bf4]{
17632
+ margin-left: 10px;
17637
17633
  }
17638
17634
 
17639
17635
  .seleteSort[data-v-a62867e0] {
@@ -17641,10 +17637,6 @@ li[data-v-4fd4369c] {
17641
17637
  border: 1px solid rgba(88, 147, 239);
17642
17638
  }
17643
17639
 
17644
- .input-with-select .el-input-group__append {
17645
- background-color: var(--el-fill-color-blank);
17646
- }
17647
-
17648
17640
  .row-backgroud-header-tittle[data-v-b203475d]{
17649
17641
  display: flex;
17650
17642
  justify-content: space-between;
@@ -17653,3 +17645,11 @@ li[data-v-4fd4369c] {
17653
17645
  .row-backgroud-header-tittle > div[data-v-b203475d]{
17654
17646
  width: 100%
17655
17647
  }
17648
+
17649
+ [data-v-8e6fbc57] .centered-input .el-input__inner {
17650
+ text-align: center;
17651
+ }
17652
+
17653
+ .input-with-select .el-input-group__append {
17654
+ background-color: var(--el-fill-color-blank);
17655
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "super-page-designer",
3
- "version": "2.1.76",
3
+ "version": "2.1.80",
4
4
  "description": "AgileBuilder super page designer",
5
5
  "license": "ISC",
6
6
  "main": "dist/es/index.js",
@@ -41,7 +41,7 @@
41
41
  "qrcode": "^1.5.3",
42
42
  "quill": "^2.0.1",
43
43
  "service-flow-designer": "2.1.59",
44
- "super-page-runtime": "2.1.75",
44
+ "super-page-runtime": "2.1.79",
45
45
  "uuid": "^9.0.1",
46
46
  "vite": "^5.1.6",
47
47
  "vite-plugin-node-stdlib-browser": "^0.2.1",