super-page-runtime 2.2.51-sit4 → 2.2.52
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.
- package/dist/es/assets/file.png.js +4 -0
- package/dist/es/assets/folder.png.js +4 -0
- package/dist/es/components/runtime/utils/events/standard-event.d.ts +1 -1
- package/dist/es/components/runtime/utils/events/standard-event.js +82 -78
- package/dist/es/components/runtime/utils/page-helper-util.d.ts +2 -0
- package/dist/es/components/runtime/utils/page-helper-util.js +14 -0
- package/dist/es/components/runtime/utils/tree-utils.js +49 -15
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue.js +1 -1
- package/dist/es/components/runtime/views/assemblys/container/card/card-runtime.vue2.js +1 -1
- package/dist/es/components/runtime/views/assemblys/container/fixed/YxAffix.vue.d.ts +94 -0
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue.js +4 -1
- package/dist/es/components/runtime/views/assemblys/container/tabs/tabs-runtime.vue2.js +3 -3
- package/dist/es/components/runtime/views/assemblys/container/tools/tools-runtime.vue.js +1 -1
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue.js +4 -1
- package/dist/es/components/runtime/views/assemblys/data/tree/tree-runtime.vue2.js +113 -45
- package/dist/es/components/runtime/views/assemblys/form/input-text/inputtext-runtime.vue2.js +57 -53
- package/dist/es/components/runtime/views/super-page.vue.js +1 -1
- package/dist/es/index.d.ts +2 -1
- package/dist/es/index.js +2 -0
- package/dist/es/style.css +359 -36
- package/package.json +2 -2
package/dist/es/style.css
CHANGED
|
@@ -1,22 +1,294 @@
|
|
|
1
|
-
.runtime-page-container[data-v-
|
|
1
|
+
.runtime-page-container[data-v-392af192] {
|
|
2
2
|
overflow: auto;
|
|
3
3
|
height: 100%;
|
|
4
4
|
max-height: 100vh;
|
|
5
5
|
padding: var(--runtime-page-container-padding, 15px);
|
|
6
6
|
}
|
|
7
|
-
|
|
7
|
+
@media (max-width: 768px) {
|
|
8
|
+
.runtime-page-container[data-v-392af192] .el-col-1 {
|
|
9
|
+
flex: 0 0 100%;
|
|
10
|
+
max-width: 100%;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
.runtime-page-container[data-v-392af192] .el-col-1 > .el-form-item:only-child {
|
|
14
|
+
margin-bottom: 0;
|
|
15
|
+
}
|
|
16
|
+
.runtime-page-container[data-v-392af192] .el-col-2 {
|
|
17
|
+
flex: 0 0 calc(2 / 24 * (100% - (24 / 2 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
18
|
+
max-width: calc(2 / 24 * (100% - (24 / 2 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
19
|
+
}
|
|
20
|
+
@media (max-width: 768px) {
|
|
21
|
+
.runtime-page-container[data-v-392af192] .el-col-2 {
|
|
22
|
+
flex: 0 0 100%;
|
|
23
|
+
max-width: 100%;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
.runtime-page-container[data-v-392af192] .el-col-2 > .el-form-item:only-child {
|
|
27
|
+
margin-bottom: 0;
|
|
28
|
+
}
|
|
29
|
+
@media (max-width: 768px) {
|
|
30
|
+
.runtime-page-container[data-v-392af192] .el-col-3 {
|
|
31
|
+
flex: 0 0 100%;
|
|
32
|
+
max-width: 100%;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
.runtime-page-container[data-v-392af192] .el-col-3 > .el-form-item:only-child {
|
|
36
|
+
margin-bottom: 0;
|
|
37
|
+
}
|
|
38
|
+
.runtime-page-container[data-v-392af192] .el-col-4 {
|
|
39
|
+
flex: 0 0 calc(4 / 24 * (100% - (24 / 4 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
40
|
+
max-width: calc(4 / 24 * (100% - (24 / 4 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
41
|
+
}
|
|
42
|
+
@media (max-width: 768px) {
|
|
43
|
+
.runtime-page-container[data-v-392af192] .el-col-4 {
|
|
44
|
+
flex: 0 0 100%;
|
|
45
|
+
max-width: 100%;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
.runtime-page-container[data-v-392af192] .el-col-4 > .el-form-item:only-child {
|
|
49
|
+
margin-bottom: 0;
|
|
50
|
+
}
|
|
51
|
+
@media (max-width: 768px) {
|
|
52
|
+
.runtime-page-container[data-v-392af192] .el-col-5 {
|
|
53
|
+
flex: 0 0 100%;
|
|
54
|
+
max-width: 100%;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
.runtime-page-container[data-v-392af192] .el-col-5 > .el-form-item:only-child {
|
|
58
|
+
margin-bottom: 0;
|
|
59
|
+
}
|
|
60
|
+
.runtime-page-container[data-v-392af192] .el-col-6 {
|
|
61
|
+
flex: 0 0 calc(6 / 24 * (100% - (24 / 6 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
62
|
+
max-width: calc(6 / 24 * (100% - (24 / 6 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
63
|
+
}
|
|
64
|
+
@media (max-width: 768px) {
|
|
65
|
+
.runtime-page-container[data-v-392af192] .el-col-6 {
|
|
66
|
+
flex: 0 0 100%;
|
|
67
|
+
max-width: 100%;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
.runtime-page-container[data-v-392af192] .el-col-6 > .el-form-item:only-child {
|
|
71
|
+
margin-bottom: 0;
|
|
72
|
+
}
|
|
73
|
+
@media (max-width: 768px) {
|
|
74
|
+
.runtime-page-container[data-v-392af192] .el-col-7 {
|
|
75
|
+
flex: 0 0 100%;
|
|
76
|
+
max-width: 100%;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
.runtime-page-container[data-v-392af192] .el-col-7 > .el-form-item:only-child {
|
|
80
|
+
margin-bottom: 0;
|
|
81
|
+
}
|
|
82
|
+
.runtime-page-container[data-v-392af192] .el-col-8 {
|
|
83
|
+
flex: 0 0 calc(8 / 24 * (100% - (24 / 8 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
84
|
+
max-width: calc(8 / 24 * (100% - (24 / 8 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
85
|
+
}
|
|
86
|
+
@media (max-width: 768px) {
|
|
87
|
+
.runtime-page-container[data-v-392af192] .el-col-8 {
|
|
88
|
+
flex: 0 0 100%;
|
|
89
|
+
max-width: 100%;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
.runtime-page-container[data-v-392af192] .el-col-8 > .el-form-item:only-child {
|
|
93
|
+
margin-bottom: 0;
|
|
94
|
+
}
|
|
95
|
+
@media (max-width: 768px) {
|
|
96
|
+
.runtime-page-container[data-v-392af192] .el-col-9 {
|
|
97
|
+
flex: 0 0 100%;
|
|
98
|
+
max-width: 100%;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
.runtime-page-container[data-v-392af192] .el-col-9 > .el-form-item:only-child {
|
|
102
|
+
margin-bottom: 0;
|
|
103
|
+
}
|
|
104
|
+
@media (max-width: 768px) {
|
|
105
|
+
.runtime-page-container[data-v-392af192] .el-col-10 {
|
|
106
|
+
flex: 0 0 100%;
|
|
107
|
+
max-width: 100%;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
.runtime-page-container[data-v-392af192] .el-col-10 > .el-form-item:only-child {
|
|
111
|
+
margin-bottom: 0;
|
|
112
|
+
}
|
|
113
|
+
@media (max-width: 768px) {
|
|
114
|
+
.runtime-page-container[data-v-392af192] .el-col-11 {
|
|
115
|
+
flex: 0 0 100%;
|
|
116
|
+
max-width: 100%;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
.runtime-page-container[data-v-392af192] .el-col-11 > .el-form-item:only-child {
|
|
120
|
+
margin-bottom: 0;
|
|
121
|
+
}
|
|
122
|
+
.runtime-page-container[data-v-392af192] .el-col-12 {
|
|
123
|
+
flex: 0 0 calc(12 / 24 * (100% - (24 / 12 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
124
|
+
max-width: calc(12 / 24 * (100% - (24 / 12 - 1) * var(--layout-form-flex-gap, 15px)));
|
|
125
|
+
}
|
|
126
|
+
@media (max-width: 768px) {
|
|
127
|
+
.runtime-page-container[data-v-392af192] .el-col-12 {
|
|
128
|
+
flex: 0 0 100%;
|
|
129
|
+
max-width: 100%;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
.runtime-page-container[data-v-392af192] .el-col-12 > .el-form-item:only-child {
|
|
133
|
+
margin-bottom: 0;
|
|
134
|
+
}
|
|
135
|
+
@media (max-width: 768px) {
|
|
136
|
+
.runtime-page-container[data-v-392af192] .el-col-13 {
|
|
137
|
+
flex: 0 0 100%;
|
|
138
|
+
max-width: 100%;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
.runtime-page-container[data-v-392af192] .el-col-13 > .el-form-item:only-child {
|
|
142
|
+
margin-bottom: 0;
|
|
143
|
+
}
|
|
144
|
+
.runtime-page-container[data-v-392af192] .el-col-14 {
|
|
145
|
+
flex: 0 0 calc(14 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
146
|
+
max-width: calc(14 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
147
|
+
}
|
|
148
|
+
@media (max-width: 768px) {
|
|
149
|
+
.runtime-page-container[data-v-392af192] .el-col-14 {
|
|
150
|
+
flex: 0 0 100%;
|
|
151
|
+
max-width: 100%;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
.runtime-page-container[data-v-392af192] .el-col-14 > .el-form-item:only-child {
|
|
155
|
+
margin-bottom: 0;
|
|
156
|
+
}
|
|
157
|
+
@media (max-width: 768px) {
|
|
158
|
+
.runtime-page-container[data-v-392af192] .el-col-15 {
|
|
159
|
+
flex: 0 0 100%;
|
|
160
|
+
max-width: 100%;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
.runtime-page-container[data-v-392af192] .el-col-15 > .el-form-item:only-child {
|
|
164
|
+
margin-bottom: 0;
|
|
165
|
+
}
|
|
166
|
+
.runtime-page-container[data-v-392af192] .el-col-16 {
|
|
167
|
+
flex: 0 0 calc(16 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
168
|
+
max-width: calc(16 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
169
|
+
}
|
|
170
|
+
@media (max-width: 768px) {
|
|
171
|
+
.runtime-page-container[data-v-392af192] .el-col-16 {
|
|
172
|
+
flex: 0 0 100%;
|
|
173
|
+
max-width: 100%;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
.runtime-page-container[data-v-392af192] .el-col-16 > .el-form-item:only-child {
|
|
177
|
+
margin-bottom: 0;
|
|
178
|
+
}
|
|
179
|
+
@media (max-width: 768px) {
|
|
180
|
+
.runtime-page-container[data-v-392af192] .el-col-17 {
|
|
181
|
+
flex: 0 0 100%;
|
|
182
|
+
max-width: 100%;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
.runtime-page-container[data-v-392af192] .el-col-17 > .el-form-item:only-child {
|
|
186
|
+
margin-bottom: 0;
|
|
187
|
+
}
|
|
188
|
+
.runtime-page-container[data-v-392af192] .el-col-18 {
|
|
189
|
+
flex: 0 0 calc(18 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
190
|
+
max-width: calc(18 / 24 * (100% - 1 * var(--layout-form-flex-gap, 15px)));
|
|
191
|
+
}
|
|
192
|
+
@media (max-width: 768px) {
|
|
193
|
+
.runtime-page-container[data-v-392af192] .el-col-18 {
|
|
194
|
+
flex: 0 0 100%;
|
|
195
|
+
max-width: 100%;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
.runtime-page-container[data-v-392af192] .el-col-18 > .el-form-item:only-child {
|
|
199
|
+
margin-bottom: 0;
|
|
200
|
+
}
|
|
201
|
+
@media (max-width: 768px) {
|
|
202
|
+
.runtime-page-container[data-v-392af192] .el-col-19 {
|
|
203
|
+
flex: 0 0 100%;
|
|
204
|
+
max-width: 100%;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
.runtime-page-container[data-v-392af192] .el-col-19 > .el-form-item:only-child {
|
|
208
|
+
margin-bottom: 0;
|
|
209
|
+
}
|
|
210
|
+
@media (max-width: 768px) {
|
|
211
|
+
.runtime-page-container[data-v-392af192] .el-col-20 {
|
|
212
|
+
flex: 0 0 100%;
|
|
213
|
+
max-width: 100%;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
.runtime-page-container[data-v-392af192] .el-col-20 > .el-form-item:only-child {
|
|
217
|
+
margin-bottom: 0;
|
|
218
|
+
}
|
|
219
|
+
@media (max-width: 768px) {
|
|
220
|
+
.runtime-page-container[data-v-392af192] .el-col-21 {
|
|
221
|
+
flex: 0 0 100%;
|
|
222
|
+
max-width: 100%;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
.runtime-page-container[data-v-392af192] .el-col-21 > .el-form-item:only-child {
|
|
226
|
+
margin-bottom: 0;
|
|
227
|
+
}
|
|
228
|
+
@media (max-width: 768px) {
|
|
229
|
+
.runtime-page-container[data-v-392af192] .el-col-22 {
|
|
230
|
+
flex: 0 0 100%;
|
|
231
|
+
max-width: 100%;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
.runtime-page-container[data-v-392af192] .el-col-22 > .el-form-item:only-child {
|
|
235
|
+
margin-bottom: 0;
|
|
236
|
+
}
|
|
237
|
+
@media (max-width: 768px) {
|
|
238
|
+
.runtime-page-container[data-v-392af192] .el-col-23 {
|
|
239
|
+
flex: 0 0 100%;
|
|
240
|
+
max-width: 100%;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
.runtime-page-container[data-v-392af192] .el-col-23 > .el-form-item:only-child {
|
|
244
|
+
margin-bottom: 0;
|
|
245
|
+
}
|
|
246
|
+
@media (max-width: 768px) {
|
|
247
|
+
.runtime-page-container[data-v-392af192] .el-col-24 {
|
|
248
|
+
flex: 0 0 100%;
|
|
249
|
+
max-width: 100%;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
.runtime-page-container[data-v-392af192] .el-col-24 > .el-form-item:only-child {
|
|
253
|
+
margin-bottom: 0;
|
|
254
|
+
}
|
|
255
|
+
.runtime-page-container[data-v-392af192] .runtime-page-container-view {
|
|
8
256
|
display: flex;
|
|
9
257
|
flex-direction: column;
|
|
10
|
-
align-
|
|
11
|
-
height: 100%;
|
|
258
|
+
align-content: flex-start;
|
|
12
259
|
gap: var(--runtime-page-container-view-gap, 15px);
|
|
260
|
+
min-height: 100%;
|
|
261
|
+
height: auto;
|
|
13
262
|
}
|
|
14
|
-
.runtime-page-container[data-v-
|
|
263
|
+
.runtime-page-container[data-v-392af192] .runtime-page-container-view .el-form {
|
|
264
|
+
width: 100%;
|
|
265
|
+
display: flex;
|
|
266
|
+
flex-wrap: wrap;
|
|
267
|
+
gap: var(--runtime-page-container-view-gap, 15px);
|
|
268
|
+
}
|
|
269
|
+
.runtime-page-container[data-v-392af192] .runtime-page-container-view .el-form > div {
|
|
270
|
+
width: 100%;
|
|
271
|
+
}
|
|
272
|
+
.runtime-page-container[data-v-392af192] .runtime-page-container-view > div {
|
|
273
|
+
width: 100%;
|
|
274
|
+
}
|
|
275
|
+
.runtime-page-container[data-v-392af192] .runtime-page-container-view > .el-row[class*=el-col-] {
|
|
15
276
|
flex: none;
|
|
16
|
-
}
|
|
277
|
+
}
|
|
278
|
+
.runtime-page-container[data-v-392af192] .runtime-page-container-view .el-row {
|
|
279
|
+
gap: var(--layout-form-flex-gap, 15px);
|
|
280
|
+
}.yx-affix[data-v-d053fb6d]:has(.yx-affix-content:empty) {
|
|
281
|
+
display: none;
|
|
282
|
+
}
|
|
283
|
+
.yx-affix .yx-affix-content.is-fixed.is-top > .yx-fixed-box-container[data-v-d053fb6d] {
|
|
284
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
285
|
+
}
|
|
286
|
+
.yx-affix .yx-affix-content.is-fixed.is-bottom > .yx-fixed-box-container[data-v-d053fb6d] {
|
|
287
|
+
box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
|
|
288
|
+
}.yx-card-box-view-main[data-v-fc66efb1] > .el-card__header {
|
|
17
289
|
position: relative;
|
|
18
290
|
}
|
|
19
|
-
.yx-card-box-view-main .yx-card-box-view-header[data-v-
|
|
291
|
+
.yx-card-box-view-main .yx-card-box-view-header[data-v-fc66efb1] {
|
|
20
292
|
display: flex;
|
|
21
293
|
flex-direction: row;
|
|
22
294
|
justify-content: space-between;
|
|
@@ -24,12 +296,12 @@
|
|
|
24
296
|
gap: 15px;
|
|
25
297
|
flex: 1 1 auto;
|
|
26
298
|
}
|
|
27
|
-
.yx-card-box-view-main .yx-card-box-view-title[data-v-
|
|
299
|
+
.yx-card-box-view-main .yx-card-box-view-title[data-v-fc66efb1] {
|
|
28
300
|
position: relative;
|
|
29
301
|
z-index: 2;
|
|
30
302
|
flex: 1 1 auto;
|
|
31
303
|
}
|
|
32
|
-
.yx-card-box-view-main .yx-card-box-view-title[data-v-
|
|
304
|
+
.yx-card-box-view-main .yx-card-box-view-title[data-v-fc66efb1]::after {
|
|
33
305
|
content: " ";
|
|
34
306
|
position: absolute;
|
|
35
307
|
left: 0;
|
|
@@ -38,40 +310,42 @@
|
|
|
38
310
|
right: 0;
|
|
39
311
|
z-index: 0;
|
|
40
312
|
}
|
|
41
|
-
.yx-card-box-view-main[data-collapse=false][data-v-
|
|
313
|
+
.yx-card-box-view-main[data-collapse=false][data-v-fc66efb1] > .el-card__body {
|
|
42
314
|
display: none;
|
|
43
315
|
}
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
316
|
+
.yx-card-box-view-context[data-v-fc66efb1] {
|
|
317
|
+
gap: var(--layout-form-flex-gap, 15px);
|
|
318
|
+
}
|
|
319
|
+
.yx-card-box-view-context[data-v-fc66efb1] > div {
|
|
320
|
+
width: 100%;
|
|
321
|
+
}
|
|
322
|
+
.yx-card-box-view-context[data-v-fc66efb1] > .el-form-item {
|
|
323
|
+
margin: 0;
|
|
324
|
+
}
|
|
325
|
+
.yx-card-box-view-context[data-v-fc66efb1] > .el-form-item[class*=el-col-8] {
|
|
326
|
+
flex: 0 0 calc((100% - var(--layout-form-flex-gap, 15px) * 2) / 3);
|
|
327
|
+
}
|
|
328
|
+
@media (max-width: 768px) {
|
|
329
|
+
.yx-card-box-view-context[data-v-fc66efb1] > .el-form-item[class*=el-col-8] {
|
|
47
330
|
max-width: none;
|
|
48
|
-
flex: 0 0
|
|
331
|
+
flex: 0 0 calc((100% - var(--layout-form-flex-gap, 15px) * 1) / 2);
|
|
49
332
|
}
|
|
50
333
|
}
|
|
51
334
|
@media (max-width: 600px) {
|
|
52
|
-
.yx-card-box-view-context[data-v-
|
|
335
|
+
.yx-card-box-view-context[data-v-fc66efb1] > .el-form-item[class*=el-col-8] {
|
|
53
336
|
width: 100%;
|
|
54
337
|
max-width: none;
|
|
55
338
|
flex: auto;
|
|
56
339
|
}
|
|
340
|
+
}.runtime-page-container-tabs-view[data-v-f38fed66] > .el-tabs__content > .el-tab-pane {
|
|
341
|
+
display: flex;
|
|
342
|
+
flex-direction: column;
|
|
343
|
+
align-content: flex-start;
|
|
344
|
+
gap: var(--runtime-page-container-view-gap, 15px);
|
|
57
345
|
}
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
}
|
|
62
|
-
.yx-card-box-view-context[data-v-799b1858] .el-form-item .el-form-item__label {
|
|
63
|
-
width: 100% !important;
|
|
64
|
-
justify-content: flex-start;
|
|
65
|
-
text-align: left;
|
|
66
|
-
}
|
|
67
|
-
}.yx-affix[data-v-d053fb6d]:has(.yx-affix-content:empty) {
|
|
68
|
-
display: none;
|
|
69
|
-
}
|
|
70
|
-
.yx-affix .yx-affix-content.is-fixed.is-top > .yx-fixed-box-container[data-v-d053fb6d] {
|
|
71
|
-
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
72
|
-
}
|
|
73
|
-
.yx-affix .yx-affix-content.is-fixed.is-bottom > .yx-fixed-box-container[data-v-d053fb6d] {
|
|
74
|
-
box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
|
|
346
|
+
.runtime-page-container-tabs-view[data-v-f38fed66] > .el-tabs__content > .el-tab-pane > div {
|
|
347
|
+
width: 100%;
|
|
348
|
+
max-width: 100%;
|
|
75
349
|
}.yx-fixed-box-main[data-v-9b488f43]:has(.yx-fixed-box-container:empty) {
|
|
76
350
|
display: none;
|
|
77
351
|
}
|
|
@@ -87,21 +361,24 @@
|
|
|
87
361
|
left: 0 !important;
|
|
88
362
|
right: 0 !important;
|
|
89
363
|
}
|
|
90
|
-
}.amb-widget-tools-parent[data-v-
|
|
364
|
+
}.amb-widget-tools-parent[data-v-445a411e]:empty {
|
|
91
365
|
display: none;
|
|
92
366
|
}
|
|
93
|
-
.amb-widget-tools-parent[data-v-
|
|
367
|
+
.amb-widget-tools-parent[data-v-445a411e] .amb-widget-container-tool {
|
|
94
368
|
display: flex;
|
|
95
369
|
flex-wrap: wrap;
|
|
96
370
|
gap: var(--amb-widget-container-tool-gap, 10px);
|
|
97
371
|
}
|
|
98
|
-
.amb-widget-tools-parent[data-v-
|
|
372
|
+
.amb-widget-tools-parent[data-v-445a411e] .amb-widget-container-tool:empty {
|
|
99
373
|
display: none;
|
|
100
374
|
}
|
|
101
|
-
.amb-widget-tools-parent[data-v-
|
|
375
|
+
.amb-widget-tools-parent[data-v-445a411e] .amb-widget-container-tool > .page-runtime-header-btn:has(> .page-runtime-header-btn) {
|
|
102
376
|
display: flex;
|
|
103
377
|
flex-wrap: wrap;
|
|
104
378
|
gap: inherit;
|
|
379
|
+
}
|
|
380
|
+
.amb-widget-tools-parent[data-v-445a411e] .amb-widget-container-tool > .el-form-item {
|
|
381
|
+
margin-bottom: 0;
|
|
105
382
|
}.el-form-item[data-v-96fc65d8] {
|
|
106
383
|
margin-bottom: 0px;
|
|
107
384
|
}
|
|
@@ -110,3 +387,49 @@
|
|
|
110
387
|
}
|
|
111
388
|
|
|
112
389
|
|
|
390
|
+
|
|
391
|
+
/** 右键菜单样式 */
|
|
392
|
+
.context-menu[data-v-c18f2291] {
|
|
393
|
+
position: absolute;
|
|
394
|
+
background: #fff;
|
|
395
|
+
z-index: 999;
|
|
396
|
+
margin: 5;
|
|
397
|
+
padding: 8px 8px;
|
|
398
|
+
box-shadow: 0 5px 7px 1px rgba(0, 0, 0, 0.1);
|
|
399
|
+
border: 1px solid #bbbbbb;
|
|
400
|
+
border-radius: 10px;
|
|
401
|
+
font-size: 14px;
|
|
402
|
+
}
|
|
403
|
+
.context-menu li[data-v-c18f2291] {
|
|
404
|
+
list-style-type: none;
|
|
405
|
+
min-width: 75px;
|
|
406
|
+
line-height: 28px;
|
|
407
|
+
text-align: left;
|
|
408
|
+
border-radius: 5px;
|
|
409
|
+
padding-left: 5px;
|
|
410
|
+
cursor: pointer;
|
|
411
|
+
}
|
|
412
|
+
.context-menu li[data-v-c18f2291]:hover {
|
|
413
|
+
background: #0165e1;
|
|
414
|
+
color: #fff;
|
|
415
|
+
}
|
|
416
|
+
/** 右键菜单样式 */
|
|
417
|
+
.custom-tree-node[data-v-c18f2291] {
|
|
418
|
+
flex: 1;
|
|
419
|
+
display: flex;
|
|
420
|
+
align-items: center;
|
|
421
|
+
justify-content: space-between;
|
|
422
|
+
font-size: 14px;
|
|
423
|
+
padding-right: 8px;
|
|
424
|
+
}
|
|
425
|
+
.item-side {
|
|
426
|
+
&[data-v-c18f2291] {
|
|
427
|
+
display: flex;
|
|
428
|
+
align-items: center;
|
|
429
|
+
}
|
|
430
|
+
.file[data-v-c18f2291] {
|
|
431
|
+
width: 17px;
|
|
432
|
+
height: 17px;
|
|
433
|
+
margin-right: 5px;
|
|
434
|
+
}
|
|
435
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "super-page-runtime",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.52",
|
|
4
4
|
"description": "AgileBuilder super page runtime",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/es/index.js",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@vitejs/plugin-vue-jsx": "^3.1.0",
|
|
49
49
|
"@vue/eslint-config-prettier": "^8.0.0",
|
|
50
50
|
"@vue/test-utils": "^2.4.4",
|
|
51
|
-
"agilebuilder-ui": "1.1.
|
|
51
|
+
"agilebuilder-ui": "1.1.20",
|
|
52
52
|
"axios": "^1.6.8",
|
|
53
53
|
"cypress": "^13.6.6",
|
|
54
54
|
"element-plus": "^2.6.1",
|