super-page-designer 2.1.73 → 2.1.76
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/components/design/utils/assemblys-config.js +2 -0
- package/dist/es/components/design/utils/form-design-util.js +2 -0
- package/dist/es/components/design/utils/page-table-util.d.ts +1 -0
- package/dist/es/components/design/utils/page-table-util.js +18 -0
- package/dist/es/components/design/views/assemblys/button/button/button-attr-base.vue.js +41 -31
- package/dist/es/components/design/views/assemblys/chart/statistical-table/component/link-table.vue.js +33 -7
- package/dist/es/components/design/views/assemblys/chart/statistical-table/component/style-table.vue.js +2 -2
- package/dist/es/components/design/views/assemblys/chart/statistical-table/component/table-showcondition.vue.js +17 -3
- package/dist/es/components/design/views/assemblys/chart/statistical-table/statisticalTable-attr-base.vue.js +33 -10
- package/dist/es/components/design/views/assemblys/chart/statistical-table/statisticalTable-design.vue2.js +1 -0
- package/dist/es/components/design/views/assemblys/common/common-advanced-basic-showcondition.vue.js +3 -2
- package/dist/es/components/design/views/assemblys/common/common-variable-bind.vue.js +2 -2
- package/dist/es/components/design/views/assemblys/common/common-variable-bind.vue2.js +738 -1
- package/dist/es/components/design/views/assemblys/common/common-variable-bind.vue3.js +1 -738
- package/dist/es/components/design/views/assemblys/data/component/table-children-column.vue.js +1 -0
- package/dist/es/components/design/views/assemblys/data/table/table-attr-base.vue.js +63 -5
- package/dist/es/components/design/views/assemblys/data/table/table-design.vue2.js +1 -0
- package/dist/es/components/design/views/assemblys/data/tree/tree-attr-base.vue.js +54 -25
- package/dist/es/components/design/views/assemblys/data/tree/tree-design.vue2.js +3 -0
- package/dist/es/components/design/views/assemblys/form/common/data-format.vue.js +1 -1
- package/dist/es/components/design/views/assemblys/form/common/hyperlink-mult-config.vue.js +4 -0
- package/dist/es/components/design/views/assemblys/form/common/suffixmodule.vue.js +17 -1
- package/dist/es/components/design/views/assemblys/object-design.vue.js +9 -7
- package/dist/es/components/design/views/design/page-event/config.vue.js +7 -1
- package/dist/es/components/design/views/design/page-event/config.vue2.js +1 -7
- package/dist/es/components/design/views/design/page-event/page-event-content.vue.js +1 -1
- package/dist/es/components/design/views/design/view/view-design-display.vue.js +2 -1
- package/dist/es/stores/page-store.js +1 -1
- package/dist/es/style.css +177 -177
- package/package.json +3 -3
package/dist/es/style.css
CHANGED
|
@@ -674,14 +674,6 @@ fieldset.amb-design-item-selected {
|
|
|
674
674
|
[data-v-511b453b]::-webkit-scrollbar-thumb:hover {
|
|
675
675
|
background-color: grey;
|
|
676
676
|
}
|
|
677
|
-
|
|
678
|
-
.el-switch.is-disabled .el-switch__core, .el-switch.is-disabled .el-switch__label{
|
|
679
|
-
cursor: default;
|
|
680
|
-
}
|
|
681
|
-
|
|
682
|
-
.el-select__wrapper.is-disabled{
|
|
683
|
-
cursor: default;
|
|
684
|
-
}
|
|
685
677
|
.el-tree-node__content {
|
|
686
678
|
height: 34px !important;
|
|
687
679
|
}
|
|
@@ -2536,6 +2528,14 @@ fieldset.amb-design-item-selected {
|
|
|
2536
2528
|
padding: 10px;
|
|
2537
2529
|
font-weight: bold;
|
|
2538
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
2539
|
.el-tree-node__content {
|
|
2540
2540
|
height: 34px !important;
|
|
2541
2541
|
}
|
|
@@ -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
|
}
|
|
@@ -16804,6 +16804,56 @@ fieldset.amb-design-item-selected {
|
|
|
16804
16804
|
padding: 10px;
|
|
16805
16805
|
font-weight: bold;
|
|
16806
16806
|
}
|
|
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
|
+
}
|
|
16807
16857
|
.el-tree-node__content {
|
|
16808
16858
|
height: 34px !important;
|
|
16809
16859
|
}
|
|
@@ -17422,56 +17472,6 @@ fieldset.amb-design-item-selected {
|
|
|
17422
17472
|
padding: 10px;
|
|
17423
17473
|
font-weight: bold;
|
|
17424
17474
|
}
|
|
17425
|
-
|
|
17426
|
-
/*不显示列样式*/
|
|
17427
|
-
.hiddenBorder {
|
|
17428
|
-
border-right: solid 1px #ebebeb !important;
|
|
17429
|
-
border-left: solid 1px #ebebeb !important;
|
|
17430
|
-
background-color: #ebebeb !important;
|
|
17431
|
-
}
|
|
17432
|
-
/*选中列样式*/
|
|
17433
|
-
.addBorder {
|
|
17434
|
-
border-right: solid 1px #5893ef !important;
|
|
17435
|
-
border-left: solid 1px #5893ef !important;
|
|
17436
|
-
background-color: #5893ef !important;
|
|
17437
|
-
color: #ffffff;
|
|
17438
|
-
}
|
|
17439
|
-
.ghost {
|
|
17440
|
-
opacity: 0.5;
|
|
17441
|
-
background: #c8ebfb;
|
|
17442
|
-
}
|
|
17443
|
-
|
|
17444
|
-
li[data-v-a555cba7] {
|
|
17445
|
-
color: #333;
|
|
17446
|
-
}
|
|
17447
|
-
.context-menu[data-v-a555cba7] {
|
|
17448
|
-
position: fixed;
|
|
17449
|
-
background: #fff;
|
|
17450
|
-
z-index: 999;
|
|
17451
|
-
padding: 5px;
|
|
17452
|
-
margin: 0;
|
|
17453
|
-
margin-top: 30px;
|
|
17454
|
-
}
|
|
17455
|
-
.context-menu li[data-v-a555cba7] {
|
|
17456
|
-
min-width: 75px;
|
|
17457
|
-
height: 28px;
|
|
17458
|
-
line-height: 28px;
|
|
17459
|
-
text-align: left;
|
|
17460
|
-
color: #1a1a1a;
|
|
17461
|
-
cursor: pointer;
|
|
17462
|
-
}
|
|
17463
|
-
.context-menu li[data-v-a555cba7]:hover {
|
|
17464
|
-
background: #5893ef;
|
|
17465
|
-
color: #fff;
|
|
17466
|
-
}
|
|
17467
|
-
.context-menu[data-v-a555cba7] {
|
|
17468
|
-
border: 1px solid #eee;
|
|
17469
|
-
box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
|
|
17470
|
-
border-radius: 5px;
|
|
17471
|
-
}
|
|
17472
|
-
li[data-v-a555cba7] {
|
|
17473
|
-
list-style-type: none;
|
|
17474
|
-
}
|
|
17475
17475
|
|
|
17476
17476
|
.amb-design-attr-header[data-v-226997f7] {
|
|
17477
17477
|
position: sticky;
|
|
@@ -17504,11 +17504,6 @@ li[data-v-a555cba7] {
|
|
|
17504
17504
|
border: 1px solid rgba(88, 147, 239);
|
|
17505
17505
|
}
|
|
17506
17506
|
|
|
17507
|
-
.seleteSort[data-v-3336d6c5] {
|
|
17508
|
-
border-radius: 5px;
|
|
17509
|
-
border: 1px solid rgba(88, 147, 239);
|
|
17510
|
-
}
|
|
17511
|
-
|
|
17512
17507
|
.event-item[data-v-c7ab7527] {
|
|
17513
17508
|
font-size: 12px;
|
|
17514
17509
|
border-bottom: 2px dashed #f5f6f8;
|
|
@@ -17520,11 +17515,73 @@ li[data-v-a555cba7] {
|
|
|
17520
17515
|
min-width: 120px !important;
|
|
17521
17516
|
}
|
|
17522
17517
|
|
|
17518
|
+
.icon-set-center-body[data-v-181d1ce8]{
|
|
17519
|
+
display: grid;
|
|
17520
|
+
grid-template-columns:repeat(5,1fr);
|
|
17521
|
+
grid-column-gap: 1px;
|
|
17522
|
+
}
|
|
17523
|
+
.icon-set-center-item[data-v-181d1ce8]{
|
|
17524
|
+
width: 100%;
|
|
17525
|
+
height: 80px;
|
|
17526
|
+
display: flex;
|
|
17527
|
+
align-items: center;
|
|
17528
|
+
flex-direction: column;
|
|
17529
|
+
justify-content: center;
|
|
17530
|
+
cursor: pointer;
|
|
17531
|
+
border: 1px solid #eeeeee;
|
|
17532
|
+
}
|
|
17533
|
+
.icon-set-center-creation[data-v-181d1ce8]{
|
|
17534
|
+
width: 100%;
|
|
17535
|
+
display: flex;
|
|
17536
|
+
align-items: center;
|
|
17537
|
+
justify-content: center;
|
|
17538
|
+
cursor: pointer;
|
|
17539
|
+
border: 1px solid #eeeeee;
|
|
17540
|
+
}
|
|
17541
|
+
.icon-set-center-item[data-v-181d1ce8]:hover{
|
|
17542
|
+
background-color: #f2f6fc;
|
|
17543
|
+
}
|
|
17544
|
+
.icon-set-center-creation[data-v-181d1ce8]:hover{
|
|
17545
|
+
background-color: #f2f6fc;
|
|
17546
|
+
}
|
|
17547
|
+
.icon-set-center-item-border[data-v-181d1ce8]{
|
|
17548
|
+
border: 1px solid #5893ef;
|
|
17549
|
+
z-index: 1;
|
|
17550
|
+
}
|
|
17551
|
+
.el-form-item[data-v-181d1ce8]{
|
|
17552
|
+
margin-bottom: 20px;
|
|
17553
|
+
}
|
|
17554
|
+
|
|
17523
17555
|
.seleteSort[data-v-8aacbe0c] {
|
|
17524
17556
|
border-radius: 5px;
|
|
17525
17557
|
border: 1px solid rgba(88, 147, 239);
|
|
17526
17558
|
}
|
|
17527
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
|
+
|
|
17528
17585
|
li[data-v-4fd4369c] {
|
|
17529
17586
|
color: #333;
|
|
17530
17587
|
}
|
|
@@ -17570,66 +17627,9 @@ li[data-v-4fd4369c] {
|
|
|
17570
17627
|
color: #7b7b7b;
|
|
17571
17628
|
}
|
|
17572
17629
|
|
|
17573
|
-
.seleteSort[data-v-
|
|
17574
|
-
|
|
17575
|
-
|
|
17576
|
-
}
|
|
17577
|
-
[data-v-1fd3d630] .el-select__selection{
|
|
17578
|
-
display: inline-block;
|
|
17579
|
-
}
|
|
17580
|
-
|
|
17581
|
-
.editorTool[data-v-bc0d50cd] {
|
|
17582
|
-
margin-left: auto;
|
|
17583
|
-
}
|
|
17584
|
-
.editorOption[data-v-bc0d50cd] {
|
|
17585
|
-
margin-right: 10px;
|
|
17586
|
-
cursor: pointer;
|
|
17587
|
-
}
|
|
17588
|
-
.pppp[data-v-bc0d50cd] {
|
|
17589
|
-
display: flex; /* 使用Flex布局 */
|
|
17590
|
-
justify-content: flex-start;
|
|
17591
|
-
align-items: center; /* 子元素在交叉轴(垂直方向)上居中对齐 */
|
|
17592
|
-
}
|
|
17593
|
-
|
|
17594
|
-
.icon-set-center-body[data-v-181d1ce8]{
|
|
17595
|
-
display: grid;
|
|
17596
|
-
grid-template-columns:repeat(5,1fr);
|
|
17597
|
-
grid-column-gap: 1px;
|
|
17598
|
-
}
|
|
17599
|
-
.icon-set-center-item[data-v-181d1ce8]{
|
|
17600
|
-
width: 100%;
|
|
17601
|
-
height: 80px;
|
|
17602
|
-
display: flex;
|
|
17603
|
-
align-items: center;
|
|
17604
|
-
flex-direction: column;
|
|
17605
|
-
justify-content: center;
|
|
17606
|
-
cursor: pointer;
|
|
17607
|
-
border: 1px solid #eeeeee;
|
|
17608
|
-
}
|
|
17609
|
-
.icon-set-center-creation[data-v-181d1ce8]{
|
|
17610
|
-
width: 100%;
|
|
17611
|
-
display: flex;
|
|
17612
|
-
align-items: center;
|
|
17613
|
-
justify-content: center;
|
|
17614
|
-
cursor: pointer;
|
|
17615
|
-
border: 1px solid #eeeeee;
|
|
17616
|
-
}
|
|
17617
|
-
.icon-set-center-item[data-v-181d1ce8]:hover{
|
|
17618
|
-
background-color: #f2f6fc;
|
|
17619
|
-
}
|
|
17620
|
-
.icon-set-center-creation[data-v-181d1ce8]:hover{
|
|
17621
|
-
background-color: #f2f6fc;
|
|
17622
|
-
}
|
|
17623
|
-
.icon-set-center-item-border[data-v-181d1ce8]{
|
|
17624
|
-
border: 1px solid #5893ef;
|
|
17625
|
-
z-index: 1;
|
|
17626
|
-
}
|
|
17627
|
-
.el-form-item[data-v-181d1ce8]{
|
|
17628
|
-
margin-bottom: 20px;
|
|
17629
|
-
}
|
|
17630
|
-
|
|
17631
|
-
.el-tag[data-v-665d3bf4]{
|
|
17632
|
-
margin-left: 10px;
|
|
17630
|
+
.seleteSort[data-v-3336d6c5] {
|
|
17631
|
+
border-radius: 5px;
|
|
17632
|
+
border: 1px solid rgba(88, 147, 239);
|
|
17633
17633
|
}
|
|
17634
17634
|
|
|
17635
17635
|
[data-v-8e6fbc57] .centered-input .el-input__inner {
|
|
@@ -17641,6 +17641,10 @@ li[data-v-4fd4369c] {
|
|
|
17641
17641
|
border: 1px solid rgba(88, 147, 239);
|
|
17642
17642
|
}
|
|
17643
17643
|
|
|
17644
|
+
.input-with-select .el-input-group__append {
|
|
17645
|
+
background-color: var(--el-fill-color-blank);
|
|
17646
|
+
}
|
|
17647
|
+
|
|
17644
17648
|
.row-backgroud-header-tittle[data-v-b203475d]{
|
|
17645
17649
|
display: flex;
|
|
17646
17650
|
justify-content: space-between;
|
|
@@ -17649,7 +17653,3 @@ li[data-v-4fd4369c] {
|
|
|
17649
17653
|
.row-backgroud-header-tittle > div[data-v-b203475d]{
|
|
17650
17654
|
width: 100%
|
|
17651
17655
|
}
|
|
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.
|
|
3
|
+
"version": "2.1.76",
|
|
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.
|
|
44
|
+
"super-page-runtime": "2.1.75",
|
|
45
45
|
"uuid": "^9.0.1",
|
|
46
46
|
"vite": "^5.1.6",
|
|
47
47
|
"vite-plugin-node-stdlib-browser": "^0.2.1",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"vue-echarts": "^6.6.9",
|
|
53
53
|
"vue-router": "^4.3.0",
|
|
54
54
|
"vuex": "^4.1.0",
|
|
55
|
-
"workflow-editor": "0.0.
|
|
55
|
+
"workflow-editor": "0.0.48-up"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@codemirror/autocomplete": "^6.16.0",
|