@wfrog/vc-ui 1.11.2 → 1.11.4
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-container/explorer-container.d.ts +8 -0
- package/dist/es/components/explorer-container/explorer-container.mjs +7 -6
- package/dist/es/components/explorer-table/explorer-table.d.ts +4 -2
- package/dist/es/components/explorer-table/explorer-table.mjs +85 -21
- package/dist/es/components/explorer-table/explorer-table.vue.d.ts +7 -2
- package/dist/es/components/explorer-table/index.css +14 -7
- package/dist/es/index.mjs +1 -1
- package/dist/index.css +14 -7
- package/package.json +1 -1
|
@@ -1,5 +1,13 @@
|
|
|
1
|
+
import { ScrollbarDirection, ScrollbarProps } from 'element-plus';
|
|
1
2
|
export interface IExplorerContainerProps {
|
|
2
3
|
title: string;
|
|
3
4
|
icon?: string;
|
|
4
5
|
loading?: boolean;
|
|
6
|
+
scrollbarProps?: Partial<ScrollbarProps> & {
|
|
7
|
+
onEndReached?: (direction: ScrollbarDirection) => void;
|
|
8
|
+
onScroll?: ({ scrollTop, scrollLeft }: {
|
|
9
|
+
scrollTop: number;
|
|
10
|
+
scrollLeft: number;
|
|
11
|
+
}) => void;
|
|
12
|
+
};
|
|
5
13
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import './index.css'
|
|
2
2
|
import '../../chunk/Gk1J52Yw.mjs';
|
|
3
3
|
import { v as vLoading } from '../../chunk/BTSSEFfD.mjs';
|
|
4
|
-
import { defineComponent, withDirectives, createElementBlock, openBlock, normalizeClass, createElementVNode, createVNode, createCommentVNode, createBlock, renderSlot, createTextVNode, toDisplayString, withCtx } from 'vue';
|
|
4
|
+
import { defineComponent, withDirectives, createElementBlock, openBlock, normalizeClass, createElementVNode, createVNode, createCommentVNode, createBlock, renderSlot, createTextVNode, toDisplayString, mergeProps, withCtx } from 'vue';
|
|
5
5
|
import { C as Component$1 } from '../iconify-icon/iconify-icon.mjs';
|
|
6
6
|
import { C as Component$2 } from '../scrollbar/scrollbar.mjs';
|
|
7
7
|
import { _ as _export_sfc } from '../../chunk/pcqpp-6-.mjs';
|
|
@@ -11,7 +11,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
11
11
|
props: {
|
|
12
12
|
title: {},
|
|
13
13
|
icon: { default: "carbon:information-square" },
|
|
14
|
-
loading: { type: Boolean, default: false }
|
|
14
|
+
loading: { type: Boolean, default: false },
|
|
15
|
+
scrollbarProps: {}
|
|
15
16
|
},
|
|
16
17
|
setup(__props) {
|
|
17
18
|
return (_ctx, _cache) => {
|
|
@@ -41,15 +42,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
41
42
|
renderSlot(_ctx.$slots, "action")
|
|
42
43
|
], 2)) : createCommentVNode("", true)
|
|
43
44
|
], 2),
|
|
44
|
-
createVNode(Component$2, {
|
|
45
|
+
createVNode(Component$2, mergeProps({
|
|
45
46
|
always: "",
|
|
46
|
-
class:
|
|
47
|
-
}, {
|
|
47
|
+
class: _ctx.$style.scrollbar
|
|
48
|
+
}, __props.scrollbarProps), {
|
|
48
49
|
default: withCtx(() => [
|
|
49
50
|
renderSlot(_ctx.$slots, "default")
|
|
50
51
|
]),
|
|
51
52
|
_: 3
|
|
52
|
-
},
|
|
53
|
+
}, 16, ["class"])
|
|
53
54
|
], 2)), [
|
|
54
55
|
[_directive_loading, __props.loading]
|
|
55
56
|
]);
|
|
@@ -3,7 +3,8 @@ import { IColumnConfig } from '../explorer-column-table/explorer-column-table';
|
|
|
3
3
|
export interface IExplorerTableProps {
|
|
4
4
|
data: any[];
|
|
5
5
|
selection?: boolean;
|
|
6
|
-
|
|
6
|
+
customSelection?: 'radio' | 'checkbox';
|
|
7
|
+
multipleCheckedKey?: string;
|
|
7
8
|
index?: boolean;
|
|
8
9
|
highlightCurrent?: boolean;
|
|
9
10
|
emptyText?: string;
|
|
@@ -18,6 +19,7 @@ export interface IExplorerTableProps {
|
|
|
18
19
|
}
|
|
19
20
|
export interface IExplorerTableEmits {
|
|
20
21
|
(e: 'columnEvent', column: IColumnConfig, row: Record<string, any>, value: Record<string, any>): void;
|
|
21
|
-
(e: '
|
|
22
|
+
(e: 'singleSelectionChange', row: Record<string, any>): void;
|
|
23
|
+
(e: 'multipleSelectionChange', row: Record<string, any>, values: Array<string | number>): void;
|
|
22
24
|
(e: 'selectionChange', rows: Record<string, any>[]): void;
|
|
23
25
|
}
|
|
@@ -7,7 +7,7 @@ import '../../chunk/NsldgdCh.mjs';
|
|
|
7
7
|
import '../../chunk/CoGexPPD.mjs';
|
|
8
8
|
import '../../chunk/CjLR27-a.mjs';
|
|
9
9
|
import { defineComponent, h, useCssModule, useTemplateRef, computed, ref, watch, withDirectives, createElementBlock, openBlock, normalizeClass, unref, createVNode, mergeProps, createSlots, withCtx, createBlock, createCommentVNode, renderSlot, withModifiers, isRef, Fragment, renderList, createTextVNode, toDisplayString, resolveDynamicComponent } from 'vue';
|
|
10
|
-
import { ElTableColumn, ElRadio } from 'element-plus';
|
|
10
|
+
import { ElTableColumn, ElRadio, ElCheckbox } from 'element-plus';
|
|
11
11
|
import { i as injectExplorerPanelState } from '../explorer-panel/explorer-panel2.mjs';
|
|
12
12
|
import { _ as _export_sfc } from '../../chunk/pcqpp-6-.mjs';
|
|
13
13
|
|
|
@@ -18,7 +18,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
18
18
|
props: {
|
|
19
19
|
data: {},
|
|
20
20
|
selection: { type: Boolean },
|
|
21
|
-
|
|
21
|
+
customSelection: {},
|
|
22
|
+
multipleCheckedKey: { default: "checked" },
|
|
22
23
|
index: { type: Boolean },
|
|
23
24
|
highlightCurrent: { type: Boolean, default: false },
|
|
24
25
|
emptyText: { default: "没有数据" },
|
|
@@ -31,7 +32,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
31
32
|
startIndex: { default: 0 },
|
|
32
33
|
rowKey: { type: [String, Function], default: "id" }
|
|
33
34
|
},
|
|
34
|
-
emits: ["columnEvent", "
|
|
35
|
+
emits: ["columnEvent", "singleSelectionChange", "multipleSelectionChange", "selectionChange"],
|
|
35
36
|
setup(__props, { expose: __expose, emit: __emit }) {
|
|
36
37
|
const props = __props;
|
|
37
38
|
const emits = __emit;
|
|
@@ -41,6 +42,36 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
41
42
|
const columns = computed(() => state.columnConfig.value.filter((item) => item.visible !== false));
|
|
42
43
|
const selectedValue = ref();
|
|
43
44
|
const selectedValues = ref(/* @__PURE__ */ new Set());
|
|
45
|
+
const isSingleSelection = computed(() => props.customSelection === "radio");
|
|
46
|
+
const isMultipleSelection = computed(() => props.customSelection === "checkbox");
|
|
47
|
+
const isSelectedAll = computed({
|
|
48
|
+
get() {
|
|
49
|
+
if (!isMultipleSelection.value) {
|
|
50
|
+
return false;
|
|
51
|
+
}
|
|
52
|
+
return props.data.every((row) => row[props.multipleCheckedKey]);
|
|
53
|
+
},
|
|
54
|
+
set(val) {
|
|
55
|
+
if (!isMultipleSelection.value) {
|
|
56
|
+
return;
|
|
57
|
+
}
|
|
58
|
+
if (val) {
|
|
59
|
+
const selected = new Set(props.data.map(getRowValue));
|
|
60
|
+
selectedValues.value = /* @__PURE__ */ new Set([...selectedValues.value, ...selected]);
|
|
61
|
+
} else {
|
|
62
|
+
selectedValues.value.clear();
|
|
63
|
+
}
|
|
64
|
+
props.data.forEach((row) => {
|
|
65
|
+
row.checked = val;
|
|
66
|
+
});
|
|
67
|
+
}
|
|
68
|
+
});
|
|
69
|
+
const indeterminate = computed(() => {
|
|
70
|
+
if (!isMultipleSelection.value) {
|
|
71
|
+
return false;
|
|
72
|
+
}
|
|
73
|
+
return selectedValues.value.size > 0 && selectedValues.value.size < props.data.length;
|
|
74
|
+
});
|
|
44
75
|
function getRowValue(row) {
|
|
45
76
|
if (!row || !props.rowKey)
|
|
46
77
|
return void 0;
|
|
@@ -56,12 +87,14 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
56
87
|
const value = getRowValue(row);
|
|
57
88
|
if (selectedValue.value !== value) {
|
|
58
89
|
selectedValue.value = value;
|
|
59
|
-
emits("
|
|
90
|
+
emits("singleSelectionChange", row);
|
|
60
91
|
}
|
|
61
92
|
}
|
|
62
|
-
function
|
|
63
|
-
|
|
64
|
-
|
|
93
|
+
function handleCheckboxClick(row) {
|
|
94
|
+
const value = getRowValue(row);
|
|
95
|
+
const checked = !row[props.multipleCheckedKey];
|
|
96
|
+
checked ? selectedValues.value.add(value) : selectedValues.value.delete(value);
|
|
97
|
+
emits("multipleSelectionChange", row, Array.from(selectedValues.value));
|
|
65
98
|
}
|
|
66
99
|
function columnType(item) {
|
|
67
100
|
if (item.prop.startsWith("expand")) {
|
|
@@ -102,6 +135,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
102
135
|
setSelectedValues: (values) => {
|
|
103
136
|
selectedValues.value = new Set(values);
|
|
104
137
|
},
|
|
138
|
+
selectAll: () => {
|
|
139
|
+
isSelectedAll.value = true;
|
|
140
|
+
},
|
|
141
|
+
clearSelection: () => {
|
|
142
|
+
isSelectedAll.value = false;
|
|
143
|
+
},
|
|
105
144
|
tableRef
|
|
106
145
|
});
|
|
107
146
|
return (_ctx, _cache) => {
|
|
@@ -124,8 +163,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
124
163
|
"allow-drag-last-column": true,
|
|
125
164
|
"row-key": __props.rowKey,
|
|
126
165
|
"row-class-name": rowClassName,
|
|
127
|
-
onHeaderDragend
|
|
128
|
-
onSelectionChange: handleSelectionChange
|
|
166
|
+
onHeaderDragend
|
|
129
167
|
}), createSlots({
|
|
130
168
|
empty: withCtx(() => [
|
|
131
169
|
!__props.loading && !__props.pending ? (openBlock(), createElementBlock("div", _hoisted_1, toDisplayString(__props.emptyText), 1)) : (openBlock(), createElementBlock("div", _hoisted_2))
|
|
@@ -137,23 +175,45 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
137
175
|
width: __props.size === "large" ? 50 : 40,
|
|
138
176
|
align: "center"
|
|
139
177
|
}, null, 8, ["width"])) : createCommentVNode("", true),
|
|
140
|
-
__props.
|
|
178
|
+
__props.customSelection ? (openBlock(), createBlock(unref(ElTableColumn), {
|
|
141
179
|
key: 1,
|
|
142
180
|
width: __props.size === "large" ? 50 : 40,
|
|
143
181
|
align: "center",
|
|
144
|
-
fixed: "left"
|
|
145
|
-
|
|
182
|
+
fixed: "left",
|
|
183
|
+
"class-name": unref($style).selection
|
|
184
|
+
}, createSlots({
|
|
146
185
|
default: withCtx(({ row }) => [
|
|
147
|
-
|
|
186
|
+
unref(isSingleSelection) ? (openBlock(), createBlock(unref(ElRadio), {
|
|
187
|
+
key: 0,
|
|
148
188
|
modelValue: unref(selectedValue),
|
|
149
|
-
"onUpdate:modelValue": _cache[
|
|
189
|
+
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => isRef(selectedValue) ? selectedValue.value = $event : null),
|
|
150
190
|
value: getRowValue(row),
|
|
151
191
|
class: normalizeClass(unref($style).radio),
|
|
152
192
|
onClick: withModifiers(($event) => handleRadioClick(row), ["stop"])
|
|
153
|
-
}, null, 8, ["modelValue", "value", "class", "onClick"])
|
|
193
|
+
}, null, 8, ["modelValue", "value", "class", "onClick"])) : createCommentVNode("", true),
|
|
194
|
+
unref(isMultipleSelection) ? (openBlock(), createBlock(unref(ElCheckbox), {
|
|
195
|
+
key: 1,
|
|
196
|
+
modelValue: row[__props.multipleCheckedKey],
|
|
197
|
+
"onUpdate:modelValue": ($event) => row[__props.multipleCheckedKey] = $event,
|
|
198
|
+
class: normalizeClass(unref($style).checkbox),
|
|
199
|
+
onClick: withModifiers(($event) => handleCheckboxClick(row), ["stop"])
|
|
200
|
+
}, null, 8, ["modelValue", "onUpdate:modelValue", "class", "onClick"])) : createCommentVNode("", true)
|
|
154
201
|
]),
|
|
155
|
-
_:
|
|
156
|
-
},
|
|
202
|
+
_: 2
|
|
203
|
+
}, [
|
|
204
|
+
unref(isMultipleSelection) ? {
|
|
205
|
+
name: "header",
|
|
206
|
+
fn: withCtx(() => [
|
|
207
|
+
createVNode(unref(ElCheckbox), {
|
|
208
|
+
modelValue: unref(isSelectedAll),
|
|
209
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(isSelectedAll) ? isSelectedAll.value = $event : null),
|
|
210
|
+
indeterminate: unref(indeterminate),
|
|
211
|
+
class: normalizeClass(unref($style).checkbox)
|
|
212
|
+
}, null, 8, ["modelValue", "indeterminate", "class"])
|
|
213
|
+
]),
|
|
214
|
+
key: "0"
|
|
215
|
+
} : void 0
|
|
216
|
+
]), 1032, ["width", "class-name"])) : createCommentVNode("", true),
|
|
157
217
|
unref(columns).length ? (openBlock(true), createElementBlock(Fragment, { key: 2 }, renderList(unref(columns), (item) => {
|
|
158
218
|
return openBlock(), createBlock(unref(ElTableColumn), mergeProps({
|
|
159
219
|
key: item.prop
|
|
@@ -212,13 +272,17 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
212
272
|
}
|
|
213
273
|
});
|
|
214
274
|
|
|
215
|
-
/* unplugin-vue-components disabled */const table = "
|
|
216
|
-
const
|
|
275
|
+
/* unplugin-vue-components disabled */const table = "_table_1fnpe_7";
|
|
276
|
+
const selection = "_selection_1fnpe_20";
|
|
277
|
+
const radio = "_radio_1fnpe_25";
|
|
278
|
+
const checkbox = "_checkbox_1fnpe_32";
|
|
217
279
|
const style0 = {
|
|
218
|
-
"explorer-table": "_explorer-
|
|
280
|
+
"explorer-table": "_explorer-table_1fnpe_1",
|
|
219
281
|
table: table,
|
|
282
|
+
selection: selection,
|
|
220
283
|
radio: radio,
|
|
221
|
-
|
|
284
|
+
checkbox: checkbox,
|
|
285
|
+
"selected-row": "_selected-row_1fnpe_36"
|
|
222
286
|
};
|
|
223
287
|
|
|
224
288
|
const cssModules = {
|
|
@@ -1492,6 +1492,8 @@ declare const __VLS_component: import('vue').DefineComponent<IExplorerTableProps
|
|
|
1492
1492
|
setColumns: (columns: IColumnConfig[]) => void;
|
|
1493
1493
|
setSelectedValue: (value: any) => void;
|
|
1494
1494
|
setSelectedValues: (values: any[]) => void;
|
|
1495
|
+
selectAll: () => void;
|
|
1496
|
+
clearSelection: () => void;
|
|
1495
1497
|
tableRef: Readonly<globalThis.ShallowRef<import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
1496
1498
|
data: {
|
|
1497
1499
|
type: import('vue').PropType<any[]>;
|
|
@@ -2964,11 +2966,13 @@ declare const __VLS_component: import('vue').DefineComponent<IExplorerTableProps
|
|
|
2964
2966
|
}> | null>>;
|
|
2965
2967
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
2966
2968
|
columnEvent: (column: IColumnConfig, row: Record<string, any>, value: Record<string, any>) => any;
|
|
2967
|
-
|
|
2969
|
+
singleSelectionChange: (row: Record<string, any>) => any;
|
|
2970
|
+
multipleSelectionChange: (row: Record<string, any>, values: (string | number)[]) => any;
|
|
2968
2971
|
selectionChange: (rows: Record<string, any>[]) => any;
|
|
2969
2972
|
}, string, import('vue').PublicProps, Readonly<IExplorerTableProps> & Readonly<{
|
|
2970
2973
|
onColumnEvent?: ((column: IColumnConfig, row: Record<string, any>, value: Record<string, any>) => any) | undefined;
|
|
2971
|
-
|
|
2974
|
+
onSingleSelectionChange?: ((row: Record<string, any>) => any) | undefined;
|
|
2975
|
+
onMultipleSelectionChange?: ((row: Record<string, any>, values: (string | number)[]) => any) | undefined;
|
|
2972
2976
|
onSelectionChange?: ((rows: Record<string, any>[]) => any) | undefined;
|
|
2973
2977
|
}>, {
|
|
2974
2978
|
loading: boolean;
|
|
@@ -2976,6 +2980,7 @@ declare const __VLS_component: import('vue').DefineComponent<IExplorerTableProps
|
|
|
2976
2980
|
emptyText: string;
|
|
2977
2981
|
highlightCurrent: boolean;
|
|
2978
2982
|
rowKey: string | ((row: any) => string);
|
|
2983
|
+
multipleCheckedKey: string;
|
|
2979
2984
|
columnRender: (column: IColumnConfig, row: Record<string, any>, emits: IExplorerTableEmits, index: number) => VNode;
|
|
2980
2985
|
startIndex: number;
|
|
2981
2986
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
@@ -1,27 +1,34 @@
|
|
|
1
1
|
/* source: src/components/explorer-table/explorer-table.vue */
|
|
2
|
-
._explorer-
|
|
2
|
+
._explorer-table_1fnpe_1 {
|
|
3
3
|
display: flex;
|
|
4
4
|
flex-direction: column;
|
|
5
5
|
flex-grow: 1;
|
|
6
6
|
}
|
|
7
|
-
div.
|
|
7
|
+
div._table_1fnpe_7 {
|
|
8
8
|
flex-grow: 1;
|
|
9
9
|
height: 100px;
|
|
10
10
|
--el-table-header-bg-color: var(--el-color-info-light-9);
|
|
11
11
|
--el-table-row-hover-bg-color: var(--el-color-primary-light-9);
|
|
12
12
|
}
|
|
13
|
-
div.
|
|
13
|
+
div._table_1fnpe_7 .el-table__header-wrapper .el-table__cell:hover {
|
|
14
14
|
border-right-color: var(--el-color-primary-light-5) !important;
|
|
15
15
|
}
|
|
16
|
-
div.
|
|
16
|
+
div._table_1fnpe_7 .el-table__column-resize-proxy {
|
|
17
17
|
border-color: var(--el-color-primary);
|
|
18
18
|
}
|
|
19
|
-
.
|
|
19
|
+
._selection_1fnpe_20 .cell {
|
|
20
|
+
display: flex;
|
|
21
|
+
align-items: center;
|
|
22
|
+
}
|
|
23
|
+
._radio_1fnpe_25 {
|
|
20
24
|
height: unset;
|
|
21
25
|
}
|
|
22
|
-
.
|
|
26
|
+
._radio_1fnpe_25 .el-radio__label {
|
|
23
27
|
display: none;
|
|
24
28
|
}
|
|
25
|
-
.
|
|
29
|
+
._checkbox_1fnpe_32 {
|
|
30
|
+
height: unset;
|
|
31
|
+
}
|
|
32
|
+
._selected-row_1fnpe_36 td.el-table__cell {
|
|
26
33
|
background-color: var(--el-color-primary-light-9) !important;
|
|
27
34
|
}
|
package/dist/es/index.mjs
CHANGED
|
@@ -160,7 +160,7 @@ const __vite_glob_0_49 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.definePr
|
|
|
160
160
|
default: _sfc_main$8
|
|
161
161
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
162
162
|
|
|
163
|
-
const version = "1.11.
|
|
163
|
+
const version = "1.11.4";
|
|
164
164
|
|
|
165
165
|
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-switch/color-switch.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-switch/dark-switch.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/form-item/form-item.vue": __vite_glob_0_34,"./components/icon-picker/icon-picker.vue": __vite_glob_0_35,"./components/icon/icon.vue": __vite_glob_0_36,"./components/iconify-icon/iconify-icon.vue": __vite_glob_0_37,"./components/image/image.vue": __vite_glob_0_38,"./components/info-tooltip/info-tooltip.vue": __vite_glob_0_39,"./components/input-number/input-number.vue": __vite_glob_0_40,"./components/input/input.vue": __vite_glob_0_41,"./components/pca-picker/pca-picker.vue": __vite_glob_0_42,"./components/qr-code/qr-code.vue": __vite_glob_0_43,"./components/screenfull/screenfull.vue": __vite_glob_0_44,"./components/scrollbar/scrollbar.vue": __vite_glob_0_45,"./components/select/select.vue": __vite_glob_0_46,"./components/single-player/single-player.vue": __vite_glob_0_47,"./components/splitter-panel/splitter-panel.vue": __vite_glob_0_48,"./components/splitter/splitter.vue": __vite_glob_0_49,"./components/svg-icon/svg-icon.vue": __vite_glob_0_50,"./components/switch/switch.vue": __vite_glob_0_51,"./components/sync-scroll-container/sync-scroll-container.vue": __vite_glob_0_52,"./components/tags/tags.vue": __vite_glob_0_53,"./components/text-ellipsis/text-ellipsis.vue": __vite_glob_0_54,"./components/thousand-input/thousand-input.vue": __vite_glob_0_55,"./components/tinymce/tinymce.vue": __vite_glob_0_56,"./components/transfer-panel/transfer-panel.vue": __vite_glob_0_57,"./components/transfer/transfer.vue": __vite_glob_0_58,"./components/tree-picker/tree-picker.vue": __vite_glob_0_59,"./components/upload-file/upload-file.vue": __vite_glob_0_60});
|
|
166
166
|
const upper = (_, letter) => letter.toUpperCase();
|
package/dist/index.css
CHANGED
|
@@ -833,30 +833,37 @@ div._main_k37nc_1 ._header_k37nc_48 {
|
|
|
833
833
|
margin-left: 0;
|
|
834
834
|
}
|
|
835
835
|
/* source: src/components/explorer-table/explorer-table.vue */
|
|
836
|
-
._explorer-
|
|
836
|
+
._explorer-table_1fnpe_1 {
|
|
837
837
|
display: flex;
|
|
838
838
|
flex-direction: column;
|
|
839
839
|
flex-grow: 1;
|
|
840
840
|
}
|
|
841
|
-
div.
|
|
841
|
+
div._table_1fnpe_7 {
|
|
842
842
|
flex-grow: 1;
|
|
843
843
|
height: 100px;
|
|
844
844
|
--el-table-header-bg-color: var(--el-color-info-light-9);
|
|
845
845
|
--el-table-row-hover-bg-color: var(--el-color-primary-light-9);
|
|
846
846
|
}
|
|
847
|
-
div.
|
|
847
|
+
div._table_1fnpe_7 .el-table__header-wrapper .el-table__cell:hover {
|
|
848
848
|
border-right-color: var(--el-color-primary-light-5) !important;
|
|
849
849
|
}
|
|
850
|
-
div.
|
|
850
|
+
div._table_1fnpe_7 .el-table__column-resize-proxy {
|
|
851
851
|
border-color: var(--el-color-primary);
|
|
852
852
|
}
|
|
853
|
-
.
|
|
853
|
+
._selection_1fnpe_20 .cell {
|
|
854
|
+
display: flex;
|
|
855
|
+
align-items: center;
|
|
856
|
+
}
|
|
857
|
+
._radio_1fnpe_25 {
|
|
854
858
|
height: unset;
|
|
855
859
|
}
|
|
856
|
-
.
|
|
860
|
+
._radio_1fnpe_25 .el-radio__label {
|
|
857
861
|
display: none;
|
|
858
862
|
}
|
|
859
|
-
.
|
|
863
|
+
._checkbox_1fnpe_32 {
|
|
864
|
+
height: unset;
|
|
865
|
+
}
|
|
866
|
+
._selected-row_1fnpe_36 td.el-table__cell {
|
|
860
867
|
background-color: var(--el-color-primary-light-9) !important;
|
|
861
868
|
}
|
|
862
869
|
/* source: src/components/explorer-tools/components/column-setter.vue,src/components/explorer-tools/explorer-tools.vue */
|