@wfrog/vc-ui 1.9.9 → 1.9.11
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-column-table/explorer-column-table.d.ts +2 -0
- package/dist/es/components/explorer-column-table/explorer-column-table.mjs +61 -40
- package/dist/es/components/explorer-column-table/index.css +17 -16
- package/dist/es/components/explorer-table/explorer-table.mjs +1 -1
- package/dist/es/index.mjs +1 -1
- package/dist/index.css +17 -16
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export interface IColumnConfig {
|
|
2
|
+
id: string | number;
|
|
2
3
|
prop: string;
|
|
3
4
|
label: string;
|
|
4
5
|
width?: number;
|
|
@@ -7,6 +8,7 @@ export interface IColumnConfig {
|
|
|
7
8
|
fixed?: 'left' | 'right';
|
|
8
9
|
align?: 'left' | 'center' | 'right';
|
|
9
10
|
showOverflowTooltip?: boolean;
|
|
11
|
+
disabled?: boolean;
|
|
10
12
|
widthType?: 'width' | 'minWidth';
|
|
11
13
|
formFixed?: ('left' | 'right')[];
|
|
12
14
|
}
|
|
@@ -7,8 +7,9 @@ import '../../chunk/BH1e_-Fa.mjs';
|
|
|
7
7
|
import '../../chunk/CqhShW5K.mjs';
|
|
8
8
|
/* empty css */
|
|
9
9
|
import { defineComponent, useTemplateRef, useCssModule, shallowRef, computed, createBlock, openBlock, normalizeClass, unref, createSlots, withCtx, createCommentVNode, renderSlot, createElementVNode, createVNode } from 'vue';
|
|
10
|
-
import { C as Component$
|
|
11
|
-
import { C as Component$
|
|
10
|
+
import { C as Component$3 } from '../choice/choice.mjs';
|
|
11
|
+
import { C as Component$2 } from '../iconify-icon/iconify-icon.mjs';
|
|
12
|
+
import { C as Component$4 } from '../input-number/input-number.mjs';
|
|
12
13
|
import { C as Component$1 } from '../input/input.mjs';
|
|
13
14
|
import { _ as _export_sfc } from '../../chunk/pcqpp-6-.mjs';
|
|
14
15
|
|
|
@@ -2777,8 +2778,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
2777
2778
|
}
|
|
2778
2779
|
sortable.value = new Sortable(el, {
|
|
2779
2780
|
animation: 150,
|
|
2780
|
-
handle: `.${$style.
|
|
2781
|
+
handle: `.${$style.handle}`,
|
|
2781
2782
|
// 可选:指定拖拽手柄
|
|
2783
|
+
// filter: '.el-input', // 导致 input 无法聚焦
|
|
2782
2784
|
onEnd: (evt) => {
|
|
2783
2785
|
const { newIndex, oldIndex } = evt;
|
|
2784
2786
|
if (newIndex !== void 0 && oldIndex !== void 0) {
|
|
@@ -2799,7 +2801,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
2799
2801
|
ref_key: "tableRef",
|
|
2800
2802
|
ref: tableRef,
|
|
2801
2803
|
data: unref(myData),
|
|
2802
|
-
"row-key": "
|
|
2804
|
+
"row-key": "id",
|
|
2803
2805
|
border: "",
|
|
2804
2806
|
size: __props.size,
|
|
2805
2807
|
height: __props.height,
|
|
@@ -2816,7 +2818,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
2816
2818
|
}, {
|
|
2817
2819
|
default: withCtx(({ row }) => [
|
|
2818
2820
|
createElementVNode("div", {
|
|
2819
|
-
class: normalizeClass(unref($style).label)
|
|
2821
|
+
class: normalizeClass([unref($style).label, unref($style).handle])
|
|
2820
2822
|
}, [
|
|
2821
2823
|
createVNode(_component_ElCheckbox, {
|
|
2822
2824
|
modelValue: row.visible,
|
|
@@ -2835,21 +2837,31 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
2835
2837
|
"min-width": 200
|
|
2836
2838
|
}, {
|
|
2837
2839
|
default: withCtx(({ row }) => [
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2840
|
+
createElementVNode("div", {
|
|
2841
|
+
class: normalizeClass(unref($style).label)
|
|
2842
|
+
}, [
|
|
2843
|
+
createVNode(_component_ElCheckbox, {
|
|
2844
|
+
modelValue: row.visible,
|
|
2845
|
+
"onUpdate:modelValue": ($event) => row.visible = $event,
|
|
2846
|
+
size: __props.size
|
|
2847
|
+
}, {
|
|
2848
|
+
default: withCtx(() => [
|
|
2849
|
+
createVNode(Component$1, {
|
|
2850
|
+
modelValue: row.label,
|
|
2851
|
+
"onUpdate:modelValue": ($event) => row.label = $event,
|
|
2852
|
+
block: "",
|
|
2853
|
+
size: __props.size,
|
|
2854
|
+
disabled: row.disabled
|
|
2855
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "disabled"])
|
|
2856
|
+
]),
|
|
2857
|
+
_: 2
|
|
2858
|
+
}, 1032, ["modelValue", "onUpdate:modelValue", "size"]),
|
|
2859
|
+
createVNode(Component$2, {
|
|
2860
|
+
class: normalizeClass(unref($style).handle),
|
|
2861
|
+
name: "carbon:draggable",
|
|
2862
|
+
size: "30px"
|
|
2863
|
+
}, null, 8, ["class"])
|
|
2864
|
+
], 2)
|
|
2853
2865
|
]),
|
|
2854
2866
|
_: 1
|
|
2855
2867
|
})) : createCommentVNode("", true),
|
|
@@ -2864,8 +2876,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
2864
2876
|
modelValue: row.prop,
|
|
2865
2877
|
"onUpdate:modelValue": ($event) => row.prop = $event,
|
|
2866
2878
|
block: "",
|
|
2867
|
-
size: __props.size
|
|
2868
|
-
|
|
2879
|
+
size: __props.size,
|
|
2880
|
+
disabled: row.disabled
|
|
2881
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "disabled"])
|
|
2869
2882
|
]),
|
|
2870
2883
|
_: 1
|
|
2871
2884
|
})) : createCommentVNode("", true),
|
|
@@ -2879,30 +2892,33 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
2879
2892
|
createElementVNode("div", {
|
|
2880
2893
|
class: normalizeClass(unref($style)["item-container"])
|
|
2881
2894
|
}, [
|
|
2882
|
-
createVNode(Component$
|
|
2895
|
+
createVNode(Component$3, {
|
|
2883
2896
|
modelValue: row.widthType,
|
|
2884
2897
|
"onUpdate:modelValue": ($event) => row.widthType = $event,
|
|
2885
2898
|
options: widthOptions,
|
|
2886
2899
|
size: __props.size,
|
|
2900
|
+
disabled: row.disabled,
|
|
2887
2901
|
onChange: ($event) => handleWidthChange(row)
|
|
2888
|
-
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "onChange"]),
|
|
2889
|
-
row.widthType === "width" ? (openBlock(), createBlock(Component$
|
|
2902
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "disabled", "onChange"]),
|
|
2903
|
+
row.widthType === "width" ? (openBlock(), createBlock(Component$4, {
|
|
2890
2904
|
key: 0,
|
|
2891
2905
|
modelValue: row.width,
|
|
2892
2906
|
"onUpdate:modelValue": ($event) => row.width = $event,
|
|
2893
2907
|
min: 0,
|
|
2894
2908
|
size: __props.size,
|
|
2895
2909
|
controls: false,
|
|
2896
|
-
"input-width": "50px"
|
|
2897
|
-
|
|
2910
|
+
"input-width": "50px",
|
|
2911
|
+
disabled: row.disabled
|
|
2912
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "disabled"])) : (openBlock(), createBlock(Component$4, {
|
|
2898
2913
|
key: 1,
|
|
2899
2914
|
modelValue: row.minWidth,
|
|
2900
2915
|
"onUpdate:modelValue": ($event) => row.minWidth = $event,
|
|
2901
2916
|
min: 0,
|
|
2902
2917
|
size: __props.size,
|
|
2903
2918
|
controls: false,
|
|
2904
|
-
"input-width": "50px"
|
|
2905
|
-
|
|
2919
|
+
"input-width": "50px",
|
|
2920
|
+
disabled: row.disabled
|
|
2921
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "disabled"]))
|
|
2906
2922
|
], 2)
|
|
2907
2923
|
]),
|
|
2908
2924
|
_: 1
|
|
@@ -2917,12 +2933,13 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
2917
2933
|
createElementVNode("div", {
|
|
2918
2934
|
class: normalizeClass(unref($style)["item-container"])
|
|
2919
2935
|
}, [
|
|
2920
|
-
createVNode(Component$
|
|
2936
|
+
createVNode(Component$3, {
|
|
2921
2937
|
modelValue: row.align,
|
|
2922
2938
|
"onUpdate:modelValue": ($event) => row.align = $event,
|
|
2923
2939
|
options: alignOptions,
|
|
2924
|
-
size: __props.size
|
|
2925
|
-
|
|
2940
|
+
size: __props.size,
|
|
2941
|
+
disabled: row.disabled
|
|
2942
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "disabled"])
|
|
2926
2943
|
], 2)
|
|
2927
2944
|
]),
|
|
2928
2945
|
_: 1
|
|
@@ -2937,14 +2954,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
2937
2954
|
createElementVNode("div", {
|
|
2938
2955
|
class: normalizeClass(unref($style)["item-container"])
|
|
2939
2956
|
}, [
|
|
2940
|
-
createVNode(Component$
|
|
2957
|
+
createVNode(Component$3, {
|
|
2941
2958
|
modelValue: row.formFixed,
|
|
2942
2959
|
"onUpdate:modelValue": ($event) => row.formFixed = $event,
|
|
2943
2960
|
multiple: "",
|
|
2944
2961
|
options: fixedOptions,
|
|
2945
2962
|
size: __props.size,
|
|
2963
|
+
disabled: row.disabled,
|
|
2946
2964
|
onChange: ($event) => handleFixedChange(row)
|
|
2947
|
-
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "onChange"])
|
|
2965
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "disabled", "onChange"])
|
|
2948
2966
|
], 2)
|
|
2949
2967
|
]),
|
|
2950
2968
|
_: 1
|
|
@@ -2964,8 +2982,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
2964
2982
|
"onUpdate:modelValue": ($event) => row.showOverflowTooltip = $event,
|
|
2965
2983
|
size: __props.size,
|
|
2966
2984
|
border: "",
|
|
2967
|
-
class: normalizeClass(unref($style).truncate)
|
|
2968
|
-
|
|
2985
|
+
class: normalizeClass(unref($style).truncate),
|
|
2986
|
+
disabled: row.disabled
|
|
2987
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "class", "disabled"])
|
|
2969
2988
|
], 2)
|
|
2970
2989
|
]),
|
|
2971
2990
|
_: 1
|
|
@@ -2990,13 +3009,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
2990
3009
|
}
|
|
2991
3010
|
});
|
|
2992
3011
|
|
|
2993
|
-
/* unplugin-vue-components disabled */const table = "
|
|
2994
|
-
const label = "
|
|
2995
|
-
const
|
|
3012
|
+
/* unplugin-vue-components disabled */const table = "_table_oyix4_1";
|
|
3013
|
+
const label = "_label_oyix4_8";
|
|
3014
|
+
const handle = "_handle_oyix4_29";
|
|
3015
|
+
const truncate = "_truncate_oyix4_45";
|
|
2996
3016
|
const style0 = {
|
|
2997
3017
|
table: table,
|
|
2998
3018
|
label: label,
|
|
2999
|
-
|
|
3019
|
+
handle: handle,
|
|
3020
|
+
"item-container": "_item-container_oyix4_33",
|
|
3000
3021
|
truncate: truncate
|
|
3001
3022
|
};
|
|
3002
3023
|
|
|
@@ -1,33 +1,34 @@
|
|
|
1
1
|
/* source: src/components/explorer-column-table/explorer-column-table.vue */
|
|
2
|
-
.el-table-column--selection .cell{padding-left:14px;padding-right:14px}.el-table-filter{background-color:#ffffff;border:1px solid var(--el-border-color-lighter);border-radius:2px;box-shadow:var(--el-box-shadow-light);box-sizing:border-box}.el-table-filter__list{list-style:none;margin:0;min-width:100px;outline:none;padding:5px 0}.el-table-filter__list-item{cursor:pointer;font-size:var(--el-font-size-base);line-height:36px;outline:none;padding:0 10px}.el-table-filter__list-item:focus,.el-table-filter__list-item:hover{background-color:var(--el-color-primary-light-9);color:var(--el-color-primary)}.el-table-filter__list-item.is-active{background-color:var(--el-color-primary);color:#ffffff}.el-table-filter__multiple{outline:none}.el-table-filter__content{min-width:100px}.el-table-filter__bottom{border-top:1px solid var(--el-border-color-lighter);padding:8px}.el-table-filter__bottom button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;border-radius:var(--el-border-radius-base);cursor:pointer;margin:0;outline:none;padding:0;transition:transform var(--el-transition-duration-fast) ease-in-out}.el-table-filter__bottom button:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:2px}.el-table-filter__bottom button{color:var(--el-text-color-regular);font-size:var(--el-font-size-small);padding:0 3px}.el-table-filter__bottom button:hover{color:var(--el-color-primary)}.el-table-filter__bottom button.is-disabled{color:var(--el-disabled-text-color);cursor:not-allowed}.el-table-filter__wrap{max-height:280px}.el-table-filter__checkbox-group{padding:10px}.el-table-filter__checkbox-group label.el-checkbox{align-items:center;display:flex;height:unset;margin-bottom:12px;margin-left:5px;margin-right:5px}.el-table-filter__checkbox-group .el-checkbox:last-child{margin-bottom:0}div.
|
|
2
|
+
.el-table-column--selection .cell{padding-left:14px;padding-right:14px}.el-table-filter{background-color:#ffffff;border:1px solid var(--el-border-color-lighter);border-radius:2px;box-shadow:var(--el-box-shadow-light);box-sizing:border-box}.el-table-filter__list{list-style:none;margin:0;min-width:100px;outline:none;padding:5px 0}.el-table-filter__list-item{cursor:pointer;font-size:var(--el-font-size-base);line-height:36px;outline:none;padding:0 10px}.el-table-filter__list-item:focus,.el-table-filter__list-item:hover{background-color:var(--el-color-primary-light-9);color:var(--el-color-primary)}.el-table-filter__list-item.is-active{background-color:var(--el-color-primary);color:#ffffff}.el-table-filter__multiple{outline:none}.el-table-filter__content{min-width:100px}.el-table-filter__bottom{border-top:1px solid var(--el-border-color-lighter);padding:8px}.el-table-filter__bottom button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;border-radius:var(--el-border-radius-base);cursor:pointer;margin:0;outline:none;padding:0;transition:transform var(--el-transition-duration-fast) ease-in-out}.el-table-filter__bottom button:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:2px}.el-table-filter__bottom button{color:var(--el-text-color-regular);font-size:var(--el-font-size-small);padding:0 3px}.el-table-filter__bottom button:hover{color:var(--el-color-primary)}.el-table-filter__bottom button.is-disabled{color:var(--el-disabled-text-color);cursor:not-allowed}.el-table-filter__wrap{max-height:280px}.el-table-filter__checkbox-group{padding:10px}.el-table-filter__checkbox-group label.el-checkbox{align-items:center;display:flex;height:unset;margin-bottom:12px;margin-left:5px;margin-right:5px}.el-table-filter__checkbox-group .el-checkbox:last-child{margin-bottom:0}div._table_oyix4_1 {
|
|
3
3
|
flex-grow: 1;
|
|
4
4
|
height: 100px;
|
|
5
5
|
--el-table-header-bg-color: var(--el-color-info-light-9);
|
|
6
6
|
--el-table-row-hover-bg-color: var(--el-color-primary-light-9);
|
|
7
7
|
}
|
|
8
|
-
.
|
|
8
|
+
._label_oyix4_8 {
|
|
9
9
|
display: inline-flex;
|
|
10
10
|
width: 100%;
|
|
11
|
+
align-items: center;
|
|
11
12
|
}
|
|
12
|
-
.
|
|
13
|
+
._label_oyix4_8 .el-checkbox {
|
|
13
14
|
width: 100%;
|
|
14
15
|
display: flex;
|
|
15
16
|
align-items: center;
|
|
16
|
-
cursor: move;
|
|
17
|
-
}
|
|
18
|
-
._label_1lou3_8 .el-checkbox > span {
|
|
19
|
-
display: inline-flex;
|
|
20
|
-
align-items: center;
|
|
21
|
-
height: 100%;
|
|
22
17
|
}
|
|
23
|
-
.
|
|
18
|
+
._label_oyix4_8 .el-checkbox__label {
|
|
24
19
|
min-width: 0;
|
|
25
20
|
overflow: hidden;
|
|
26
21
|
text-overflow: ellipsis;
|
|
27
22
|
white-space: nowrap;
|
|
28
|
-
|
|
23
|
+
flex-grow: 1;
|
|
24
|
+
}
|
|
25
|
+
._label_oyix4_8 .iconify {
|
|
26
|
+
margin-left: 4px;
|
|
27
|
+
}
|
|
28
|
+
._handle_oyix4_29 {
|
|
29
|
+
cursor: move;
|
|
29
30
|
}
|
|
30
|
-
._item-
|
|
31
|
+
._item-container_oyix4_33 {
|
|
31
32
|
display: inline-flex;
|
|
32
33
|
align-items: center;
|
|
33
34
|
column-gap: 4px;
|
|
@@ -35,15 +36,15 @@
|
|
|
35
36
|
line-height: 0;
|
|
36
37
|
vertical-align: middle;
|
|
37
38
|
}
|
|
38
|
-
._item-
|
|
39
|
+
._item-container_oyix4_33 > div {
|
|
39
40
|
vertical-align: middle;
|
|
40
41
|
}
|
|
41
|
-
.
|
|
42
|
+
._truncate_oyix4_45 {
|
|
42
43
|
padding: 0 9px !important;
|
|
43
44
|
}
|
|
44
|
-
.
|
|
45
|
+
._truncate_oyix4_45.el-checkbox--small {
|
|
45
46
|
padding: 0 7px !important;
|
|
46
47
|
}
|
|
47
|
-
.
|
|
48
|
+
._truncate_oyix4_45.el-checkbox--large {
|
|
48
49
|
padding: 0 11px !important;
|
|
49
50
|
}
|
|
@@ -49,7 +49,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
49
49
|
}, { deep: true, immediate: true });
|
|
50
50
|
function onHeaderDragend(newWidth, _oldWidth, column) {
|
|
51
51
|
const item = state.columnConfig.value.find((item2) => item2.prop === column.property);
|
|
52
|
-
if (item) {
|
|
52
|
+
if (item && !item.disabled) {
|
|
53
53
|
item.width = newWidth;
|
|
54
54
|
item.widthType = "width";
|
|
55
55
|
delete item.minWidth;
|
package/dist/es/index.mjs
CHANGED
|
@@ -156,7 +156,7 @@ const __vite_glob_0_47 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.definePr
|
|
|
156
156
|
default: _sfc_main$8
|
|
157
157
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
158
158
|
|
|
159
|
-
const version = "1.9.
|
|
159
|
+
const version = "1.9.10";
|
|
160
160
|
|
|
161
161
|
const modules = /* #__PURE__ */ Object.assign({"./components/awesome-icon/awesome-icon.vue": __vite_glob_0_0,"./components/backbottom/backbottom.vue": __vite_glob_0_1,"./components/button/button.vue": __vite_glob_0_2,"./components/chat-container/chat-container.vue": __vite_glob_0_3,"./components/choice-boolean/choice-boolean.vue": __vite_glob_0_4,"./components/choice/choice.vue": __vite_glob_0_5,"./components/color-switcher/color-switcher.vue": __vite_glob_0_6,"./components/config-provider/config-provider.vue": __vite_glob_0_7,"./components/cropper/cropper.vue": __vite_glob_0_8,"./components/currency/currency.vue": __vite_glob_0_9,"./components/dark-switcher/dark-switcher.vue": __vite_glob_0_10,"./components/daterange-picker/daterange-picker.vue": __vite_glob_0_11,"./components/dialog-camera-upload/dialog-camera-upload.vue": __vite_glob_0_12,"./components/dialog-map-point/dialog-map-point.vue": __vite_glob_0_13,"./components/dialog-upload-images/dialog-upload-images.vue": __vite_glob_0_14,"./components/dialog/dialog.vue": __vite_glob_0_15,"./components/drag-verify/drag-verify.vue": __vite_glob_0_16,"./components/drawer/drawer.vue": __vite_glob_0_17,"./components/easy-pagination/easy-pagination.vue": __vite_glob_0_18,"./components/el-icon/el-icon.vue": __vite_glob_0_19,"./components/explorer-column-table/explorer-column-table.vue": __vite_glob_0_20,"./components/explorer-container/explorer-container.vue": __vite_glob_0_21,"./components/explorer-filter/explorer-filter.vue": __vite_glob_0_22,"./components/explorer-footer/explorer-footer.vue": __vite_glob_0_23,"./components/explorer-form/explorer-form.vue": __vite_glob_0_24,"./components/explorer-list/explorer-list.vue": __vite_glob_0_25,"./components/explorer-modal-form/explorer-modal-form.vue": __vite_glob_0_26,"./components/explorer-panel/explorer-panel.vue": __vite_glob_0_27,"./components/explorer-query/explorer-query.vue": __vite_glob_0_28,"./components/explorer-table/explorer-table.vue": __vite_glob_0_29,"./components/explorer-tools/explorer-tools.vue": __vite_glob_0_30,"./components/explorer-tree/explorer-tree.vue": __vite_glob_0_31,"./components/explorer/explorer.vue": __vite_glob_0_32,"./components/flag/flag.vue": __vite_glob_0_33,"./components/icon-picker/icon-picker.vue": __vite_glob_0_34,"./components/icon/icon.vue": __vite_glob_0_35,"./components/iconify-icon/iconify-icon.vue": __vite_glob_0_36,"./components/image/image.vue": __vite_glob_0_37,"./components/input-number/input-number.vue": __vite_glob_0_38,"./components/input/input.vue": __vite_glob_0_39,"./components/pca-picker/pca-picker.vue": __vite_glob_0_40,"./components/qr-code/qr-code.vue": __vite_glob_0_41,"./components/screenfull/screenfull.vue": __vite_glob_0_42,"./components/scrollbar/scrollbar.vue": __vite_glob_0_43,"./components/select/select.vue": __vite_glob_0_44,"./components/single-player/single-player.vue": __vite_glob_0_45,"./components/splitter-panel/splitter-panel.vue": __vite_glob_0_46,"./components/splitter/splitter.vue": __vite_glob_0_47,"./components/svg-icon/svg-icon.vue": __vite_glob_0_48,"./components/switch/switch.vue": __vite_glob_0_49,"./components/sync-scroll-container/sync-scroll-container.vue": __vite_glob_0_50,"./components/tags/tags.vue": __vite_glob_0_51,"./components/text-ellipsis/text-ellipsis.vue": __vite_glob_0_52,"./components/thousand-input/thousand-input.vue": __vite_glob_0_53,"./components/tinymce/tinymce.vue": __vite_glob_0_54,"./components/transfer-panel/transfer-panel.vue": __vite_glob_0_55,"./components/transfer/transfer.vue": __vite_glob_0_56,"./components/tree-picker/tree-picker.vue": __vite_glob_0_57,"./components/upload-file/upload-file.vue": __vite_glob_0_58});
|
|
162
162
|
const upper = (_, letter) => letter.toUpperCase();
|
package/dist/index.css
CHANGED
|
@@ -552,35 +552,36 @@ div._main_k37nc_1 ._header_k37nc_48 {
|
|
|
552
552
|
|
|
553
553
|
.fade-in-linear-enter-active,.fade-in-linear-leave-active{transition:var(--el-transition-fade-linear)}.fade-in-linear-enter-from,.fade-in-linear-leave-to{opacity:0}.el-fade-in-linear-enter-active,.el-fade-in-linear-leave-active{transition:var(--el-transition-fade-linear)}.el-fade-in-linear-enter-from,.el-fade-in-linear-leave-to{opacity:0}.el-fade-in-enter-active,.el-fade-in-leave-active{transition:all var(--el-transition-duration) cubic-bezier(.55,0,.1,1)}.el-fade-in-enter-from,.el-fade-in-leave-active{opacity:0}.el-zoom-in-center-enter-active,.el-zoom-in-center-leave-active{transition:all var(--el-transition-duration) cubic-bezier(.55,0,.1,1)}.el-zoom-in-center-enter-from,.el-zoom-in-center-leave-active{opacity:0;transform:scaleX(0)}.el-zoom-in-top-enter-active,.el-zoom-in-top-leave-active{opacity:1;transform:scaleY(1);transform-origin:center top;transition:var(--el-transition-md-fade)}.el-zoom-in-top-enter-active[data-popper-placement^=top],.el-zoom-in-top-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.el-zoom-in-top-enter-from,.el-zoom-in-top-leave-active{opacity:0;transform:scaleY(0)}.el-zoom-in-bottom-enter-active,.el-zoom-in-bottom-leave-active{opacity:1;transform:scaleY(1);transform-origin:center bottom;transition:var(--el-transition-md-fade)}.el-zoom-in-bottom-enter-from,.el-zoom-in-bottom-leave-active{opacity:0;transform:scaleY(0)}.el-zoom-in-left-enter-active,.el-zoom-in-left-leave-active{opacity:1;transform:scale(1);transform-origin:top left;transition:var(--el-transition-md-fade)}.el-zoom-in-left-enter-from,.el-zoom-in-left-leave-active{opacity:0;transform:scale(.45)}.collapse-transition{transition:var(--el-transition-duration) height ease-in-out,var(--el-transition-duration) padding-top ease-in-out,var(--el-transition-duration) padding-bottom ease-in-out}.el-collapse-transition-enter-active,.el-collapse-transition-leave-active{transition:var(--el-transition-duration) max-height ease-in-out,var(--el-transition-duration) padding-top ease-in-out,var(--el-transition-duration) padding-bottom ease-in-out}.horizontal-collapse-transition{transition:var(--el-transition-duration) width ease-in-out,var(--el-transition-duration) padding-left ease-in-out,var(--el-transition-duration) padding-right ease-in-out}.el-list-enter-active,.el-list-leave-active{transition:all 1s}.el-list-enter-from,.el-list-leave-to{opacity:0;transform:translateY(-30px)}.el-list-leave-active{position:absolute!important}.el-opacity-transition{transition:opacity var(--el-transition-duration) cubic-bezier(.55,0,.1,1)}.el-tree{--el-tree-node-content-height:26px;--el-tree-node-hover-bg-color:var(--el-fill-color-light);--el-tree-text-color:var(--el-text-color-regular);--el-tree-expand-icon-color:var(--el-text-color-placeholder);background:var(--el-fill-color-blank);color:var(--el-tree-text-color);cursor:default;font-size:var(--el-font-size-base);position:relative}.el-tree__empty-block{height:100%;min-height:60px;position:relative;text-align:center;width:100%}.el-tree__empty-text{color:var(--el-text-color-secondary);font-size:var(--el-font-size-base);left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.el-tree__drop-indicator{background-color:var(--el-color-primary);height:1px;left:0;position:absolute;right:0}.el-tree-node{outline:none;white-space:nowrap}.el-tree-node:focus>.el-tree-node__content{background-color:var(--el-tree-node-hover-bg-color)}.el-tree-node.is-drop-inner>.el-tree-node__content .el-tree-node__label{background-color:var(--el-color-primary);color:#fff}.el-tree-node__content{--el-checkbox-height:var(--el-tree-node-content-height);align-items:center;cursor:pointer;display:flex;height:var(--el-tree-node-content-height)}.el-tree-node__content>.el-tree-node__expand-icon{box-sizing:content-box;padding:6px}.el-tree-node__content>label.el-checkbox{margin-right:8px}.el-tree-node__content:hover{background-color:var(--el-tree-node-hover-bg-color)}.el-tree.is-dragging .el-tree-node__content{cursor:move}.el-tree.is-dragging .el-tree-node__content *{pointer-events:none}.el-tree.is-dragging.is-drop-not-allow .el-tree-node__content{cursor:not-allowed}.el-tree-node__expand-icon{color:var(--el-tree-expand-icon-color);cursor:pointer;font-size:12px;transform:rotate(0deg);transition:transform var(--el-transition-duration) ease-in-out}.el-tree-node__expand-icon.expanded{transform:rotate(90deg)}.el-tree-node__expand-icon.is-leaf{color:transparent;cursor:default;visibility:hidden}.el-tree-node__expand-icon.is-hidden{visibility:hidden}.el-tree-node__loading-icon{color:var(--el-tree-expand-icon-color);font-size:var(--el-font-size-base);margin-right:8px}.el-tree-node>.el-tree-node__children{background-color:transparent;overflow:hidden}.el-tree-node.is-expanded>.el-tree-node__children{display:block}.el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content{background-color:var(--el-color-primary-light-9)}
|
|
554
554
|
/* source: src/components/explorer-column-table/explorer-column-table.vue */
|
|
555
|
-
.el-table-column--selection .cell{padding-left:14px;padding-right:14px}.el-table-filter{background-color:#ffffff;border:1px solid var(--el-border-color-lighter);border-radius:2px;box-shadow:var(--el-box-shadow-light);box-sizing:border-box}.el-table-filter__list{list-style:none;margin:0;min-width:100px;outline:none;padding:5px 0}.el-table-filter__list-item{cursor:pointer;font-size:var(--el-font-size-base);line-height:36px;outline:none;padding:0 10px}.el-table-filter__list-item:focus,.el-table-filter__list-item:hover{background-color:var(--el-color-primary-light-9);color:var(--el-color-primary)}.el-table-filter__list-item.is-active{background-color:var(--el-color-primary);color:#ffffff}.el-table-filter__multiple{outline:none}.el-table-filter__content{min-width:100px}.el-table-filter__bottom{border-top:1px solid var(--el-border-color-lighter);padding:8px}.el-table-filter__bottom button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;border-radius:var(--el-border-radius-base);cursor:pointer;margin:0;outline:none;padding:0;transition:transform var(--el-transition-duration-fast) ease-in-out}.el-table-filter__bottom button:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:2px}.el-table-filter__bottom button{color:var(--el-text-color-regular);font-size:var(--el-font-size-small);padding:0 3px}.el-table-filter__bottom button:hover{color:var(--el-color-primary)}.el-table-filter__bottom button.is-disabled{color:var(--el-disabled-text-color);cursor:not-allowed}.el-table-filter__wrap{max-height:280px}.el-table-filter__checkbox-group{padding:10px}.el-table-filter__checkbox-group label.el-checkbox{align-items:center;display:flex;height:unset;margin-bottom:12px;margin-left:5px;margin-right:5px}.el-table-filter__checkbox-group .el-checkbox:last-child{margin-bottom:0}div.
|
|
555
|
+
.el-table-column--selection .cell{padding-left:14px;padding-right:14px}.el-table-filter{background-color:#ffffff;border:1px solid var(--el-border-color-lighter);border-radius:2px;box-shadow:var(--el-box-shadow-light);box-sizing:border-box}.el-table-filter__list{list-style:none;margin:0;min-width:100px;outline:none;padding:5px 0}.el-table-filter__list-item{cursor:pointer;font-size:var(--el-font-size-base);line-height:36px;outline:none;padding:0 10px}.el-table-filter__list-item:focus,.el-table-filter__list-item:hover{background-color:var(--el-color-primary-light-9);color:var(--el-color-primary)}.el-table-filter__list-item.is-active{background-color:var(--el-color-primary);color:#ffffff}.el-table-filter__multiple{outline:none}.el-table-filter__content{min-width:100px}.el-table-filter__bottom{border-top:1px solid var(--el-border-color-lighter);padding:8px}.el-table-filter__bottom button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;border:none;border-radius:var(--el-border-radius-base);cursor:pointer;margin:0;outline:none;padding:0;transition:transform var(--el-transition-duration-fast) ease-in-out}.el-table-filter__bottom button:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:2px}.el-table-filter__bottom button{color:var(--el-text-color-regular);font-size:var(--el-font-size-small);padding:0 3px}.el-table-filter__bottom button:hover{color:var(--el-color-primary)}.el-table-filter__bottom button.is-disabled{color:var(--el-disabled-text-color);cursor:not-allowed}.el-table-filter__wrap{max-height:280px}.el-table-filter__checkbox-group{padding:10px}.el-table-filter__checkbox-group label.el-checkbox{align-items:center;display:flex;height:unset;margin-bottom:12px;margin-left:5px;margin-right:5px}.el-table-filter__checkbox-group .el-checkbox:last-child{margin-bottom:0}div._table_oyix4_1 {
|
|
556
556
|
flex-grow: 1;
|
|
557
557
|
height: 100px;
|
|
558
558
|
--el-table-header-bg-color: var(--el-color-info-light-9);
|
|
559
559
|
--el-table-row-hover-bg-color: var(--el-color-primary-light-9);
|
|
560
560
|
}
|
|
561
|
-
.
|
|
561
|
+
._label_oyix4_8 {
|
|
562
562
|
display: inline-flex;
|
|
563
563
|
width: 100%;
|
|
564
|
+
align-items: center;
|
|
564
565
|
}
|
|
565
|
-
.
|
|
566
|
+
._label_oyix4_8 .el-checkbox {
|
|
566
567
|
width: 100%;
|
|
567
568
|
display: flex;
|
|
568
569
|
align-items: center;
|
|
569
|
-
cursor: move;
|
|
570
|
-
}
|
|
571
|
-
._label_1lou3_8 .el-checkbox > span {
|
|
572
|
-
display: inline-flex;
|
|
573
|
-
align-items: center;
|
|
574
|
-
height: 100%;
|
|
575
570
|
}
|
|
576
|
-
.
|
|
571
|
+
._label_oyix4_8 .el-checkbox__label {
|
|
577
572
|
min-width: 0;
|
|
578
573
|
overflow: hidden;
|
|
579
574
|
text-overflow: ellipsis;
|
|
580
575
|
white-space: nowrap;
|
|
581
|
-
|
|
576
|
+
flex-grow: 1;
|
|
577
|
+
}
|
|
578
|
+
._label_oyix4_8 .iconify {
|
|
579
|
+
margin-left: 4px;
|
|
580
|
+
}
|
|
581
|
+
._handle_oyix4_29 {
|
|
582
|
+
cursor: move;
|
|
582
583
|
}
|
|
583
|
-
._item-
|
|
584
|
+
._item-container_oyix4_33 {
|
|
584
585
|
display: inline-flex;
|
|
585
586
|
align-items: center;
|
|
586
587
|
column-gap: 4px;
|
|
@@ -588,16 +589,16 @@ div._main_k37nc_1 ._header_k37nc_48 {
|
|
|
588
589
|
line-height: 0;
|
|
589
590
|
vertical-align: middle;
|
|
590
591
|
}
|
|
591
|
-
._item-
|
|
592
|
+
._item-container_oyix4_33 > div {
|
|
592
593
|
vertical-align: middle;
|
|
593
594
|
}
|
|
594
|
-
.
|
|
595
|
+
._truncate_oyix4_45 {
|
|
595
596
|
padding: 0 9px !important;
|
|
596
597
|
}
|
|
597
|
-
.
|
|
598
|
+
._truncate_oyix4_45.el-checkbox--small {
|
|
598
599
|
padding: 0 7px !important;
|
|
599
600
|
}
|
|
600
|
-
.
|
|
601
|
+
._truncate_oyix4_45.el-checkbox--large {
|
|
601
602
|
padding: 0 11px !important;
|
|
602
603
|
}
|
|
603
604
|
/* source: src/components/explorer-container/explorer-container.vue */
|