@wfrog/vc-ui 1.13.1 → 1.13.3
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/explorer/docs/data.d.ts +15 -1
- package/dist/es/components/explorer-filter/explorer-filter.d.ts +1 -0
- package/dist/es/components/explorer-filter/explorer-filter.mjs +4 -3
- package/dist/es/components/explorer-filter/explorer-filter.vue.d.ts +1 -0
- package/dist/es/components/explorer-filter/index.css +1 -1
- package/dist/es/components/explorer-list/explorer-list.d.ts +0 -4
- package/dist/es/components/explorer-list/explorer-list.mjs +116 -126
- package/dist/es/components/explorer-list/explorer-list.vue.d.ts +3 -2
- package/dist/es/components/explorer-list/index.css +27 -35
- package/dist/es/components/explorer-table/explorer-table.d.ts +6 -1
- package/dist/es/components/explorer-table/explorer-table.mjs +197 -134
- package/dist/es/components/explorer-table/explorer-table.vue.d.ts +14 -3
- package/dist/es/components/explorer-table/index.css +25 -15
- package/dist/es/components/explorer-tree/explorer-tree.d.ts +0 -4
- package/dist/es/components/explorer-tree/explorer-tree.mjs +16 -41
- package/dist/es/components/explorer-tree/explorer-tree.vue.d.ts +0 -2
- package/dist/es/components/explorer-tree/index.css +26 -32
- package/dist/es/components/icon-picker/components/collections.vue.d.ts +42 -4
- package/dist/es/components/scrollbar/index.css +21 -7
- package/dist/es/components/scrollbar/scrollbar.d.ts +9 -0
- package/dist/es/components/scrollbar/scrollbar.mjs +95 -8
- package/dist/es/components/scrollbar/scrollbar.vue.d.ts +19 -1
- package/dist/es/index.mjs +1 -1
- package/dist/index.css +100 -90
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -605,7 +605,7 @@ div._table_1vtct_1 {
|
|
|
605
605
|
}
|
|
606
606
|
/* source: src/components/explorer-filter/explorer-filter.vue */
|
|
607
607
|
._explorer-filter_fuuuf_1 {
|
|
608
|
-
padding-bottom: var(--
|
|
608
|
+
padding-bottom: var(--v649a28c7);
|
|
609
609
|
display: flex;
|
|
610
610
|
column-gap: 8px;
|
|
611
611
|
border-bottom: 1px solid var(--el-border-color-lighter);
|
|
@@ -667,72 +667,64 @@ div._table_1vtct_1 {
|
|
|
667
667
|
margin: 0 -8px;
|
|
668
668
|
}
|
|
669
669
|
/* source: src/components/explorer-list/explorer-list.vue */
|
|
670
|
-
.
|
|
671
|
-
padding: 4px 8px;
|
|
672
|
-
cursor: var(--v7fa588cc);
|
|
673
|
-
display: flex;
|
|
674
|
-
justify-content: space-between;
|
|
670
|
+
._item_lz3jx_1 {
|
|
675
671
|
align-items: center;
|
|
676
|
-
font-size: var(--el-font-size-base);
|
|
677
|
-
color: var(--el-text-color-regular);
|
|
678
|
-
min-height: 32px;
|
|
679
672
|
box-sizing: border-box;
|
|
673
|
+
color: var(--el-text-color-regular);
|
|
674
|
+
cursor: var(--c3221704);
|
|
675
|
+
display: flex;
|
|
676
|
+
font-size: var(--el-font-size-base);
|
|
677
|
+
justify-content: space-between;
|
|
680
678
|
line-height: 1;
|
|
679
|
+
min-height: 32px;
|
|
680
|
+
padding: 4px 8px;
|
|
681
681
|
}
|
|
682
|
-
.
|
|
682
|
+
._item_lz3jx_1:hover {
|
|
683
683
|
background-color: var(--vc-highlight-bg-color, var(--el-fill-color-light));
|
|
684
684
|
}
|
|
685
|
-
.
|
|
686
|
-
display: inline-flex;
|
|
685
|
+
._item_lz3jx_1:hover ._actions_lz3jx_16 {
|
|
687
686
|
align-items: flex-start;
|
|
687
|
+
display: inline-flex;
|
|
688
688
|
}
|
|
689
|
-
.
|
|
690
|
-
color: var(--el-color-primary);
|
|
689
|
+
._item_lz3jx_1._active_lz3jx_20 {
|
|
691
690
|
background-color: var(--vc-highlight-bg-color, var(--el-fill-color-light));
|
|
691
|
+
color: var(--el-color-primary);
|
|
692
692
|
}
|
|
693
|
-
.
|
|
693
|
+
._label_lz3jx_25 {
|
|
694
694
|
overflow: hidden;
|
|
695
695
|
text-overflow: ellipsis;
|
|
696
696
|
white-space: nowrap;
|
|
697
697
|
--el-checkbox-height: 24px;
|
|
698
698
|
}
|
|
699
|
-
.
|
|
699
|
+
._label_lz3jx_25 .iconify {
|
|
700
700
|
margin-right: 4px;
|
|
701
701
|
}
|
|
702
|
-
.
|
|
702
|
+
._label_lz3jx_25 .el-checkbox {
|
|
703
703
|
width: 100%;
|
|
704
704
|
}
|
|
705
|
-
.
|
|
705
|
+
._label_lz3jx_25 .el-checkbox__label {
|
|
706
|
+
color: var(--el-text-color-regular) !important;
|
|
707
|
+
cursor: pointer !important;
|
|
706
708
|
overflow: hidden;
|
|
707
709
|
text-overflow: ellipsis;
|
|
708
710
|
white-space: nowrap;
|
|
709
|
-
color: var(--el-text-color-regular) !important;
|
|
710
|
-
cursor: pointer !important;
|
|
711
711
|
}
|
|
712
|
-
.
|
|
713
|
-
display: none;
|
|
712
|
+
._actions_lz3jx_16 {
|
|
714
713
|
column-gap: 4px;
|
|
714
|
+
display: none;
|
|
715
715
|
}
|
|
716
|
-
.
|
|
717
|
-
margin-left: 0 !important;
|
|
718
|
-
font-size: 1.2em;
|
|
716
|
+
._actions_lz3jx_16 > button {
|
|
719
717
|
border: 1px solid var(--el-border-color-light) !important;
|
|
718
|
+
font-size: 1.2em;
|
|
719
|
+
margin-left: 0 !important;
|
|
720
720
|
}
|
|
721
|
-
.
|
|
721
|
+
._actions_lz3jx_16 > button:hover {
|
|
722
722
|
border-color: var(--el-border-color-dark) !important;
|
|
723
723
|
}
|
|
724
|
-
.
|
|
724
|
+
._remove_lz3jx_58 {
|
|
725
725
|
transform: translateY(-1px);
|
|
726
726
|
}
|
|
727
|
-
.
|
|
728
|
-
._loading_14vaz_63 {
|
|
729
|
-
padding: 4px 8px;
|
|
730
|
-
display: flex;
|
|
731
|
-
align-items: center;
|
|
732
|
-
column-gap: 4px;
|
|
733
|
-
color: var(--el-text-color-secondary);
|
|
734
|
-
}
|
|
735
|
-
._scrollbar_14vaz_71 {
|
|
727
|
+
._scrollbar_lz3jx_62 {
|
|
736
728
|
margin: 0 -8px;
|
|
737
729
|
}
|
|
738
730
|
/* source: src/components/explorer-modal-form/explorer-modal-form.vue */
|
|
@@ -806,46 +798,56 @@ div._table_1vtct_1 {
|
|
|
806
798
|
margin-left: 0;
|
|
807
799
|
}
|
|
808
800
|
/* source: src/components/explorer-table/explorer-table.vue */
|
|
809
|
-
._explorer-
|
|
801
|
+
._explorer-table_10xul_1 {
|
|
810
802
|
display: flex;
|
|
811
803
|
flex-direction: column;
|
|
812
804
|
flex-grow: 1;
|
|
813
805
|
}
|
|
814
|
-
div.
|
|
806
|
+
div._table_10xul_7 {
|
|
815
807
|
flex-grow: 1;
|
|
816
808
|
height: 100px;
|
|
817
809
|
--el-table-header-bg-color: var(--el-color-info-light-9);
|
|
818
810
|
--el-table-row-hover-bg-color: var(--vc-highlight-bg-color, var(--el-fill-color-light));
|
|
819
811
|
}
|
|
820
|
-
div.
|
|
821
|
-
min-height: 100%;
|
|
812
|
+
div._table_10xul_7 .el-scrollbar__view {
|
|
822
813
|
height: 100px;
|
|
814
|
+
min-height: 100%;
|
|
823
815
|
}
|
|
824
|
-
div.
|
|
816
|
+
div._table_10xul_7 .el-table__header-wrapper .el-table__cell:hover {
|
|
825
817
|
border-right-color: var(--el-color-primary-light-5) !important;
|
|
826
818
|
}
|
|
827
|
-
div.
|
|
819
|
+
div._table_10xul_7 .el-table__column-resize-proxy {
|
|
828
820
|
border-color: var(--el-color-primary);
|
|
829
821
|
}
|
|
830
|
-
div.
|
|
831
|
-
display: var(--
|
|
822
|
+
div._table_10xul_7 .el-table__empty-block {
|
|
823
|
+
display: var(--v515e1ed0);
|
|
832
824
|
}
|
|
833
|
-
.
|
|
834
|
-
display: flex;
|
|
825
|
+
._selection_10xul_27 .cell {
|
|
835
826
|
align-items: center;
|
|
827
|
+
display: flex;
|
|
836
828
|
}
|
|
837
|
-
.
|
|
829
|
+
._radio_10xul_32 {
|
|
838
830
|
height: unset;
|
|
839
831
|
}
|
|
840
|
-
.
|
|
832
|
+
._radio_10xul_32 .el-radio__label {
|
|
841
833
|
display: none;
|
|
842
834
|
}
|
|
843
|
-
.
|
|
844
|
-
height: unset;
|
|
835
|
+
._checkbox_10xul_39 {
|
|
836
|
+
height: unset !important;
|
|
845
837
|
}
|
|
846
|
-
._selected-
|
|
838
|
+
._selected-row_10xul_43 td.el-table__cell {
|
|
847
839
|
background-color: var(--vc-highlight-bg-color, var(--el-fill-color-light)) !important;
|
|
848
840
|
}
|
|
841
|
+
._status-text_10xul_47 {
|
|
842
|
+
align-items: center;
|
|
843
|
+
column-gap: 4px;
|
|
844
|
+
display: flex;
|
|
845
|
+
justify-content: flex-start;
|
|
846
|
+
padding: 12px;
|
|
847
|
+
}
|
|
848
|
+
._sentinel_10xul_55 {
|
|
849
|
+
height: 0;
|
|
850
|
+
}
|
|
849
851
|
/* source: src/components/explorer-tools/components/column-setter.vue,src/components/explorer-tools/explorer-tools.vue */
|
|
850
852
|
._header_8k9xf_1 {
|
|
851
853
|
display: flex;
|
|
@@ -911,72 +913,66 @@ div._divider_8k9xf_21 {
|
|
|
911
913
|
height: 100% !important;
|
|
912
914
|
}
|
|
913
915
|
/* source: src/components/explorer-tree/explorer-tree.vue */
|
|
914
|
-
.
|
|
915
|
-
display: flex;
|
|
916
|
+
._tree_1vdtr_1 .el-tree-node__content {
|
|
916
917
|
align-items: center;
|
|
918
|
+
display: flex;
|
|
917
919
|
}
|
|
918
|
-
.
|
|
920
|
+
._tree_1vdtr_1 .el-tree-node__content:hover {
|
|
919
921
|
background-color: var(--vc-highlight-bg-color, var(--el-fill-color-light));
|
|
920
922
|
}
|
|
921
|
-
.
|
|
923
|
+
._tree_1vdtr_1 .el-tree-node__content:hover .vc-actions {
|
|
922
924
|
display: inline-flex;
|
|
923
925
|
}
|
|
924
|
-
.
|
|
926
|
+
._tree_1vdtr_1 .el-tree-node:focus > .el-tree-node__content {
|
|
925
927
|
background-color: var(--vc-highlight-bg-color, var(--el-fill-color-light));
|
|
926
928
|
}
|
|
927
|
-
.
|
|
928
|
-
color: var(--el-color-primary);
|
|
929
|
+
._tree_1vdtr_1 .is-current > .el-tree-node__content {
|
|
929
930
|
background-color: var(--vc-highlight-bg-color, var(--el-fill-color-light)) !important;
|
|
931
|
+
color: var(--el-color-primary);
|
|
930
932
|
}
|
|
931
|
-
.
|
|
932
|
-
|
|
933
|
+
._tree_1vdtr_1 .el-tree__empty-block {
|
|
934
|
+
box-sizing: border-box;
|
|
933
935
|
min-height: unset;
|
|
934
936
|
padding: 4px 8px;
|
|
937
|
+
text-align: left;
|
|
935
938
|
}
|
|
936
|
-
.
|
|
939
|
+
._tree_1vdtr_1 .el-tree__empty-text {
|
|
937
940
|
position: static;
|
|
938
941
|
}
|
|
939
|
-
.
|
|
940
|
-
display: flex;
|
|
941
|
-
justify-content: space-between;
|
|
942
|
+
._node_1vdtr_28 {
|
|
942
943
|
align-items: center;
|
|
944
|
+
box-sizing: border-box;
|
|
945
|
+
display: flex;
|
|
943
946
|
flex-grow: 1;
|
|
947
|
+
justify-content: space-between;
|
|
944
948
|
padding: 4px 8px 4px 0;
|
|
945
|
-
box-sizing: border-box;
|
|
946
949
|
width: 100px;
|
|
947
950
|
}
|
|
948
|
-
.
|
|
951
|
+
._label_1vdtr_38 {
|
|
949
952
|
overflow: hidden;
|
|
950
953
|
text-overflow: ellipsis;
|
|
951
|
-
white-space: nowrap;
|
|
952
954
|
transform: translateY(-1px);
|
|
955
|
+
white-space: nowrap;
|
|
953
956
|
}
|
|
954
|
-
.
|
|
957
|
+
._label_1vdtr_38 .iconify {
|
|
955
958
|
margin-right: 4px;
|
|
956
959
|
}
|
|
957
|
-
.
|
|
958
|
-
display: none;
|
|
960
|
+
._actions_1vdtr_48 {
|
|
959
961
|
column-gap: 4px;
|
|
962
|
+
display: none;
|
|
960
963
|
}
|
|
961
|
-
.
|
|
962
|
-
margin-left: 0 !important;
|
|
963
|
-
font-size: 1.2em;
|
|
964
|
+
._actions_1vdtr_48 > button {
|
|
964
965
|
border: 1px solid var(--el-border-color-light) !important;
|
|
966
|
+
font-size: 1.2em;
|
|
967
|
+
margin-left: 0 !important;
|
|
965
968
|
}
|
|
966
|
-
.
|
|
969
|
+
._actions_1vdtr_48 > button:hover {
|
|
967
970
|
border-color: var(--el-border-color-dark) !important;
|
|
968
971
|
}
|
|
969
|
-
.
|
|
972
|
+
._remove_1vdtr_61 {
|
|
970
973
|
transform: translateY(-1px);
|
|
971
974
|
}
|
|
972
|
-
.
|
|
973
|
-
padding: 4px 8px;
|
|
974
|
-
display: flex;
|
|
975
|
-
align-items: center;
|
|
976
|
-
column-gap: 4px;
|
|
977
|
-
color: var(--el-text-color-secondary);
|
|
978
|
-
}
|
|
979
|
-
._scrollbar_oy44a_72 {
|
|
975
|
+
._scrollbar_1vdtr_65 {
|
|
980
976
|
margin: 0 -8px;
|
|
981
977
|
}
|
|
982
978
|
/* source: src/components/explorer/explorer.vue */
|
|
@@ -1381,25 +1377,39 @@ div._input-width_wnpjs_1 {
|
|
|
1381
1377
|
fill: currentcolor;
|
|
1382
1378
|
}
|
|
1383
1379
|
/* source: src/components/scrollbar/scrollbar.vue */
|
|
1384
|
-
.
|
|
1380
|
+
._scrollbar_ro2ve_1 {
|
|
1385
1381
|
display: flex;
|
|
1386
1382
|
flex-direction: column;
|
|
1387
1383
|
flex-grow: 1;
|
|
1388
1384
|
}
|
|
1389
|
-
.
|
|
1390
|
-
flex-grow: 1;
|
|
1391
|
-
flex-direction: column;
|
|
1385
|
+
._scrollbar_ro2ve_1 > .el-scrollbar__wrap {
|
|
1392
1386
|
display: flex;
|
|
1387
|
+
flex-direction: column;
|
|
1388
|
+
flex-grow: 1;
|
|
1393
1389
|
}
|
|
1394
|
-
.
|
|
1390
|
+
._scrollbar_ro2ve_1 > .el-scrollbar__wrap > .el-scrollbar__view {
|
|
1395
1391
|
display: flex;
|
|
1396
1392
|
flex-direction: column;
|
|
1397
1393
|
flex-grow: 1;
|
|
1398
|
-
margin: var(--
|
|
1394
|
+
margin: var(--v64cfbc6c);
|
|
1399
1395
|
}
|
|
1400
|
-
._fill-
|
|
1396
|
+
._fill-height_ro2ve_18 {
|
|
1401
1397
|
height: 10px;
|
|
1402
1398
|
}
|
|
1399
|
+
._sentinel_ro2ve_22 {
|
|
1400
|
+
height: 0;
|
|
1401
|
+
}
|
|
1402
|
+
._loading_ro2ve_26 {
|
|
1403
|
+
align-items: center;
|
|
1404
|
+
column-gap: 4px;
|
|
1405
|
+
display: flex;
|
|
1406
|
+
justify-content: center;
|
|
1407
|
+
padding: 12px;
|
|
1408
|
+
}
|
|
1409
|
+
._status-text_ro2ve_34 {
|
|
1410
|
+
padding: 12px;
|
|
1411
|
+
text-align: center;
|
|
1412
|
+
}
|
|
1403
1413
|
/* source: src/components/select/select.vue */
|
|
1404
1414
|
._popper_jk1e7_1 .el-select-dropdown__item.is-hovering {
|
|
1405
1415
|
background-color: var(--vc-highlight-bg-color, var(--el-fill-color-light));
|