@wfrog/vc-ui 1.9.16 → 1.9.18
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.mjs +28 -9
- package/dist/es/components/explorer-column-table/explorer-column-table.vue.d.ts +19 -0
- package/dist/es/components/explorer-filter/explorer-filter.mjs +2 -2
- package/dist/es/components/explorer-filter/index.css +3 -2
- package/dist/es/components/explorer-form/explorer-form.mjs +8 -8
- package/dist/es/components/explorer-form/explorer-form.vue.d.ts +3 -1
- package/dist/es/components/explorer-form/index.css +11 -10
- package/dist/es/components/explorer-modal-form/explorer-modal-form.mjs +2 -2
- package/dist/es/components/explorer-modal-form/index.css +5 -4
- package/dist/es/components/explorer-tools/components/column-setter.vue.d.ts +30 -2
- package/dist/es/index.mjs +1 -1
- package/dist/index.css +19 -16
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ import { a as ElCheckbox } from '../../chunk/DBf73TLo.mjs';
|
|
|
6
6
|
import '../../chunk/BH1e_-Fa.mjs';
|
|
7
7
|
import '../../chunk/CqhShW5K.mjs';
|
|
8
8
|
/* empty css */
|
|
9
|
-
import { defineComponent, useTemplateRef, useCssModule, shallowRef, computed, createBlock, openBlock, normalizeClass,
|
|
9
|
+
import { defineComponent, useTemplateRef, useCssModule, shallowRef, computed, ref, watch, onBeforeUnmount, createBlock, createCommentVNode, unref, openBlock, normalizeClass, createSlots, withCtx, renderSlot, createElementVNode, createVNode, nextTick } from 'vue';
|
|
10
10
|
import { useDraggable } from 'vue-draggable-plus';
|
|
11
11
|
import { C as Component$3 } from '../choice/choice.mjs';
|
|
12
12
|
import { C as Component$2 } from '../iconify-icon/iconify-icon.mjs';
|
|
@@ -61,15 +61,18 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
61
61
|
{ label: "左", value: "left" },
|
|
62
62
|
{ label: "右", value: "right" }
|
|
63
63
|
];
|
|
64
|
-
const widthConfig =
|
|
64
|
+
const widthConfig = ref({ width: 240, data: 160, fixed: 120, truncate: 60 });
|
|
65
|
+
const widthConfigWatch = watch(() => props.size, () => {
|
|
65
66
|
if (props.size === "small") {
|
|
66
|
-
|
|
67
|
+
widthConfig.value = { width: 210, data: 140, fixed: 100, truncate: 50 };
|
|
68
|
+
return;
|
|
67
69
|
}
|
|
68
70
|
if (props.size === "default") {
|
|
69
|
-
|
|
71
|
+
widthConfig.value = { width: 240, data: 160, fixed: 120, truncate: 60 };
|
|
72
|
+
return;
|
|
70
73
|
}
|
|
71
|
-
|
|
72
|
-
});
|
|
74
|
+
widthConfig.value = { width: 260, data: 200, fixed: 140, truncate: 76 };
|
|
75
|
+
}, { immediate: true });
|
|
73
76
|
const isFullMode = computed(() => props.mode === "full");
|
|
74
77
|
function getLabel(row) {
|
|
75
78
|
if (row.label) {
|
|
@@ -120,13 +123,29 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
120
123
|
// 可选:指定拖拽手柄
|
|
121
124
|
});
|
|
122
125
|
}
|
|
123
|
-
|
|
126
|
+
const tableVisible = ref(true);
|
|
127
|
+
async function rerender() {
|
|
128
|
+
sortable.value?.destroy();
|
|
129
|
+
tableVisible.value = false;
|
|
130
|
+
await nextTick();
|
|
131
|
+
tableVisible.value = true;
|
|
132
|
+
}
|
|
133
|
+
__expose({
|
|
134
|
+
init,
|
|
135
|
+
tableRef,
|
|
136
|
+
rerender,
|
|
137
|
+
setWidthConfig: (params) => {
|
|
138
|
+
widthConfig.value = params;
|
|
139
|
+
}
|
|
140
|
+
});
|
|
141
|
+
onBeforeUnmount(() => widthConfigWatch.stop());
|
|
124
142
|
return (_ctx, _cache) => {
|
|
125
143
|
const _component_ElCheckbox = ElCheckbox;
|
|
126
144
|
const _component_ElTableColumn = ElTableColumn;
|
|
127
145
|
const _component_el_checkbox = ElCheckbox;
|
|
128
146
|
const _component_ElTable = ElTable;
|
|
129
|
-
return openBlock(), createBlock(_component_ElTable, {
|
|
147
|
+
return unref(tableVisible) ? (openBlock(), createBlock(_component_ElTable, {
|
|
148
|
+
key: 0,
|
|
130
149
|
ref_key: "tableRef",
|
|
131
150
|
ref: tableRef,
|
|
132
151
|
data: unref(myData),
|
|
@@ -333,7 +352,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
333
352
|
]),
|
|
334
353
|
key: "0"
|
|
335
354
|
} : void 0
|
|
336
|
-
]), 1032, ["data", "size", "height", "class"]);
|
|
355
|
+
]), 1032, ["data", "size", "height", "class"])) : createCommentVNode("", true);
|
|
337
356
|
};
|
|
338
357
|
}
|
|
339
358
|
});
|
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
import { IColumnConfig, IExplorerColumnTableProps } from './explorer-column-table';
|
|
2
|
+
declare const widthConfig: globalThis.Ref<{
|
|
3
|
+
width: number;
|
|
4
|
+
data: number;
|
|
5
|
+
fixed: number;
|
|
6
|
+
truncate: number;
|
|
7
|
+
}, {
|
|
8
|
+
width: number;
|
|
9
|
+
data: number;
|
|
10
|
+
fixed: number;
|
|
11
|
+
truncate: number;
|
|
12
|
+
} | {
|
|
13
|
+
width: number;
|
|
14
|
+
data: number;
|
|
15
|
+
fixed: number;
|
|
16
|
+
truncate: number;
|
|
17
|
+
}>;
|
|
2
18
|
declare function init(): void;
|
|
19
|
+
declare function rerender(): Promise<void>;
|
|
3
20
|
declare function __VLS_template(): {
|
|
4
21
|
attrs: Partial<{}>;
|
|
5
22
|
slots: {
|
|
@@ -2953,6 +2970,8 @@ declare const __VLS_component: import('vue').DefineComponent<IExplorerColumnTabl
|
|
|
2953
2970
|
nativeScrollbar: boolean;
|
|
2954
2971
|
preserveExpandedContent: boolean;
|
|
2955
2972
|
}> | null>>;
|
|
2973
|
+
rerender: typeof rerender;
|
|
2974
|
+
setWidthConfig: (params: typeof widthConfig.value) => void;
|
|
2956
2975
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
2957
2976
|
"update:data": (data: IColumnConfig[]) => any;
|
|
2958
2977
|
}, string, import('vue').PublicProps, Readonly<IExplorerColumnTableProps> & Readonly<{
|
|
@@ -21,7 +21,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
21
21
|
emits: ["filter", "create"],
|
|
22
22
|
setup(__props, { emit: __emit }) {
|
|
23
23
|
useCssVars((_ctx) => ({
|
|
24
|
-
"
|
|
24
|
+
"cd3fe400": `${_ctx.paddingBottom}px`
|
|
25
25
|
}));
|
|
26
26
|
const props = __props;
|
|
27
27
|
const emits = __emit;
|
|
@@ -65,7 +65,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
65
65
|
});
|
|
66
66
|
|
|
67
67
|
/* unplugin-vue-components disabled */const style0 = {
|
|
68
|
-
"explorer-filter": "_explorer-
|
|
68
|
+
"explorer-filter": "_explorer-filter_fuuuf_1"
|
|
69
69
|
};
|
|
70
70
|
|
|
71
71
|
const cssModules = {
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
/* source: src/components/explorer-filter/explorer-filter.vue */
|
|
2
|
-
._explorer-
|
|
3
|
-
padding-bottom: var(--
|
|
2
|
+
._explorer-filter_fuuuf_1 {
|
|
3
|
+
padding-bottom: var(--cd3fe400);
|
|
4
4
|
display: flex;
|
|
5
5
|
column-gap: 8px;
|
|
6
6
|
border-bottom: 1px solid var(--el-border-color-lighter);
|
|
7
|
+
margin-bottom: 8px;
|
|
7
8
|
}
|
|
@@ -135,7 +135,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
135
135
|
class: _ctx.$style.form
|
|
136
136
|
}), {
|
|
137
137
|
default: withCtx(() => [
|
|
138
|
-
renderSlot(_ctx.$slots, "default")
|
|
138
|
+
renderSlot(_ctx.$slots, "default", { isEditing: unref(isEditing) })
|
|
139
139
|
]),
|
|
140
140
|
_: 3
|
|
141
141
|
}, 16, ["model", "rules", "disabled", "label-position", "class"])
|
|
@@ -149,15 +149,15 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
149
149
|
}
|
|
150
150
|
});
|
|
151
151
|
|
|
152
|
-
/* unplugin-vue-components disabled */const header = "
|
|
153
|
-
const icon = "
|
|
154
|
-
const actions = "
|
|
155
|
-
const form = "
|
|
156
|
-
const scrollbar = "
|
|
152
|
+
/* unplugin-vue-components disabled */const header = "_header_msrkk_8";
|
|
153
|
+
const icon = "_icon_msrkk_25";
|
|
154
|
+
const actions = "_actions_msrkk_31";
|
|
155
|
+
const form = "_form_msrkk_40";
|
|
156
|
+
const scrollbar = "_scrollbar_msrkk_51";
|
|
157
157
|
const style0 = {
|
|
158
|
-
"explorer-form": "_explorer-
|
|
158
|
+
"explorer-form": "_explorer-form_msrkk_1",
|
|
159
159
|
header: header,
|
|
160
|
-
"header-container": "_header-
|
|
160
|
+
"header-container": "_header-container_msrkk_21",
|
|
161
161
|
icon: icon,
|
|
162
162
|
actions: actions,
|
|
163
163
|
form: form,
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/* source: src/components/explorer-form/explorer-form.vue */
|
|
2
|
-
._explorer-
|
|
2
|
+
._explorer-form_msrkk_1 {
|
|
3
3
|
display: flex;
|
|
4
4
|
flex-direction: column;
|
|
5
5
|
flex-grow: 1;
|
|
6
6
|
height: 100px;
|
|
7
7
|
}
|
|
8
|
-
.
|
|
8
|
+
._header_msrkk_8 {
|
|
9
9
|
display: flex;
|
|
10
10
|
align-items: center;
|
|
11
11
|
justify-content: space-between;
|
|
@@ -17,31 +17,32 @@
|
|
|
17
17
|
flex-wrap: wrap;
|
|
18
18
|
row-gap: 8px;
|
|
19
19
|
}
|
|
20
|
-
._header-
|
|
20
|
+
._header-container_msrkk_21 {
|
|
21
21
|
font-size: var(--el-font-size-medium);
|
|
22
22
|
}
|
|
23
|
-
.
|
|
23
|
+
._icon_msrkk_25 {
|
|
24
24
|
margin-right: 4px;
|
|
25
25
|
font-size: var(--el-font-size-extra-large);
|
|
26
26
|
transform: translateY(1px);
|
|
27
27
|
}
|
|
28
|
-
.
|
|
28
|
+
._actions_msrkk_31 {
|
|
29
29
|
display: flex;
|
|
30
30
|
align-items: center;
|
|
31
31
|
gap: 8px;
|
|
32
32
|
}
|
|
33
|
-
.
|
|
33
|
+
._actions_msrkk_31 .el-button {
|
|
34
34
|
margin-left: 0 !important;
|
|
35
35
|
}
|
|
36
|
-
.
|
|
36
|
+
._form_msrkk_40 {
|
|
37
37
|
display: flex;
|
|
38
38
|
flex-grow: 1;
|
|
39
39
|
align-items: flex-start;
|
|
40
|
+
flex-direction: column;
|
|
40
41
|
}
|
|
41
|
-
.
|
|
42
|
-
|
|
42
|
+
._form_msrkk_40 > .el-row {
|
|
43
|
+
width: 100%;
|
|
43
44
|
margin: 0 !important;
|
|
44
45
|
}
|
|
45
|
-
.
|
|
46
|
+
._scrollbar_msrkk_51 {
|
|
46
47
|
margin: 0 -8px;
|
|
47
48
|
}
|
|
@@ -152,8 +152,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
152
152
|
}
|
|
153
153
|
});
|
|
154
154
|
|
|
155
|
-
/* unplugin-vue-components disabled */const icon = "
|
|
156
|
-
const form = "
|
|
155
|
+
/* unplugin-vue-components disabled */const icon = "_icon_1tmmn_1";
|
|
156
|
+
const form = "_form_1tmmn_6";
|
|
157
157
|
const style0 = {
|
|
158
158
|
icon: icon,
|
|
159
159
|
form: form
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
/* source: src/components/explorer-modal-form/explorer-modal-form.vue */
|
|
2
|
-
.
|
|
2
|
+
._icon_1tmmn_1 {
|
|
3
3
|
margin-right: 4px;
|
|
4
4
|
font-size: var(--el-font-size-extra-large);
|
|
5
5
|
}
|
|
6
|
-
.
|
|
6
|
+
._form_1tmmn_6 {
|
|
7
7
|
display: flex;
|
|
8
8
|
flex-grow: 1;
|
|
9
9
|
align-items: flex-start;
|
|
10
|
+
flex-direction: column;
|
|
10
11
|
}
|
|
11
|
-
.
|
|
12
|
-
|
|
12
|
+
._form_1tmmn_6 > .el-row {
|
|
13
|
+
width: 100%;
|
|
13
14
|
margin: 0 !important;
|
|
14
15
|
}
|
|
@@ -2977,6 +2977,13 @@ declare function __VLS_template(): {
|
|
|
2977
2977
|
nativeScrollbar: boolean;
|
|
2978
2978
|
preserveExpandedContent: boolean;
|
|
2979
2979
|
}> | null>>;
|
|
2980
|
+
rerender: () => Promise<void>;
|
|
2981
|
+
setWidthConfig: (params: {
|
|
2982
|
+
width: number;
|
|
2983
|
+
data: number;
|
|
2984
|
+
fixed: number;
|
|
2985
|
+
truncate: number;
|
|
2986
|
+
}) => void;
|
|
2980
2987
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
2981
2988
|
"update:data": (data: import('../../explorer-column-table/explorer-column-table').IColumnConfig[]) => any;
|
|
2982
2989
|
}, string, {
|
|
@@ -3015,7 +3022,7 @@ declare function __VLS_template(): {
|
|
|
3015
3022
|
emptyColumn: boolean;
|
|
3016
3023
|
}> & Omit<Readonly<import('../../explorer-column-table/explorer-column-table').IExplorerColumnTableProps> & Readonly<{
|
|
3017
3024
|
"onUpdate:data"?: ((data: import('../../explorer-column-table/explorer-column-table').IColumnConfig[]) => any) | undefined;
|
|
3018
|
-
}>, "init" | ("mode" | "size" | "height" | "editable" | "highlightCurrent" | "emptyColumn") | "tableRef"> & import('vue').ShallowUnwrapRef<{
|
|
3025
|
+
}>, "init" | ("mode" | "size" | "height" | "editable" | "highlightCurrent" | "emptyColumn") | "tableRef" | "rerender" | "setWidthConfig"> & import('vue').ShallowUnwrapRef<{
|
|
3019
3026
|
init: () => void;
|
|
3020
3027
|
tableRef: Readonly<globalThis.ShallowRef<import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
3021
3028
|
data: {
|
|
@@ -4487,6 +4494,13 @@ declare function __VLS_template(): {
|
|
|
4487
4494
|
nativeScrollbar: boolean;
|
|
4488
4495
|
preserveExpandedContent: boolean;
|
|
4489
4496
|
}> | null>>;
|
|
4497
|
+
rerender: () => Promise<void>;
|
|
4498
|
+
setWidthConfig: (params: {
|
|
4499
|
+
width: number;
|
|
4500
|
+
data: number;
|
|
4501
|
+
fixed: number;
|
|
4502
|
+
truncate: number;
|
|
4503
|
+
}) => void;
|
|
4490
4504
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
4491
4505
|
$slots: {
|
|
4492
4506
|
default?(_: {}): any;
|
|
@@ -7480,6 +7494,13 @@ declare const __VLS_component: import('vue').DefineComponent<IColumnSetterProps,
|
|
|
7480
7494
|
nativeScrollbar: boolean;
|
|
7481
7495
|
preserveExpandedContent: boolean;
|
|
7482
7496
|
}> | null>>;
|
|
7497
|
+
rerender: () => Promise<void>;
|
|
7498
|
+
setWidthConfig: (params: {
|
|
7499
|
+
width: number;
|
|
7500
|
+
data: number;
|
|
7501
|
+
fixed: number;
|
|
7502
|
+
truncate: number;
|
|
7503
|
+
}) => void;
|
|
7483
7504
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
7484
7505
|
"update:data": (data: import('../../explorer-column-table/explorer-column-table').IColumnConfig[]) => any;
|
|
7485
7506
|
}, string, {
|
|
@@ -7518,7 +7539,7 @@ declare const __VLS_component: import('vue').DefineComponent<IColumnSetterProps,
|
|
|
7518
7539
|
emptyColumn: boolean;
|
|
7519
7540
|
}> & Omit<Readonly<import('../../explorer-column-table/explorer-column-table').IExplorerColumnTableProps> & Readonly<{
|
|
7520
7541
|
"onUpdate:data"?: ((data: import('../../explorer-column-table/explorer-column-table').IColumnConfig[]) => any) | undefined;
|
|
7521
|
-
}>, "init" | ("mode" | "size" | "height" | "editable" | "highlightCurrent" | "emptyColumn") | "tableRef"> & import('vue').ShallowUnwrapRef<{
|
|
7542
|
+
}>, "init" | ("mode" | "size" | "height" | "editable" | "highlightCurrent" | "emptyColumn") | "tableRef" | "rerender" | "setWidthConfig"> & import('vue').ShallowUnwrapRef<{
|
|
7522
7543
|
init: () => void;
|
|
7523
7544
|
tableRef: Readonly<globalThis.ShallowRef<import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
7524
7545
|
data: {
|
|
@@ -8990,6 +9011,13 @@ declare const __VLS_component: import('vue').DefineComponent<IColumnSetterProps,
|
|
|
8990
9011
|
nativeScrollbar: boolean;
|
|
8991
9012
|
preserveExpandedContent: boolean;
|
|
8992
9013
|
}> | null>>;
|
|
9014
|
+
rerender: () => Promise<void>;
|
|
9015
|
+
setWidthConfig: (params: {
|
|
9016
|
+
width: number;
|
|
9017
|
+
data: number;
|
|
9018
|
+
fixed: number;
|
|
9019
|
+
truncate: number;
|
|
9020
|
+
}) => void;
|
|
8993
9021
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
8994
9022
|
$slots: {
|
|
8995
9023
|
default?(_: {}): any;
|
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.18";
|
|
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
|
@@ -630,11 +630,12 @@ div._main_k37nc_1 ._header_k37nc_48 {
|
|
|
630
630
|
margin: 0 -8px;
|
|
631
631
|
}
|
|
632
632
|
/* source: src/components/explorer-filter/explorer-filter.vue */
|
|
633
|
-
._explorer-
|
|
634
|
-
padding-bottom: var(--
|
|
633
|
+
._explorer-filter_fuuuf_1 {
|
|
634
|
+
padding-bottom: var(--cd3fe400);
|
|
635
635
|
display: flex;
|
|
636
636
|
column-gap: 8px;
|
|
637
637
|
border-bottom: 1px solid var(--el-border-color-lighter);
|
|
638
|
+
margin-bottom: 8px;
|
|
638
639
|
}
|
|
639
640
|
/* source: src/components/explorer-footer/explorer-footer.vue */
|
|
640
641
|
._explorer-footer_ntz3b_1 {
|
|
@@ -644,13 +645,13 @@ div._main_k37nc_1 ._header_k37nc_48 {
|
|
|
644
645
|
padding-top: var(--v42199fad);
|
|
645
646
|
}
|
|
646
647
|
/* source: src/components/explorer-form/explorer-form.vue */
|
|
647
|
-
._explorer-
|
|
648
|
+
._explorer-form_msrkk_1 {
|
|
648
649
|
display: flex;
|
|
649
650
|
flex-direction: column;
|
|
650
651
|
flex-grow: 1;
|
|
651
652
|
height: 100px;
|
|
652
653
|
}
|
|
653
|
-
.
|
|
654
|
+
._header_msrkk_8 {
|
|
654
655
|
display: flex;
|
|
655
656
|
align-items: center;
|
|
656
657
|
justify-content: space-between;
|
|
@@ -662,32 +663,33 @@ div._main_k37nc_1 ._header_k37nc_48 {
|
|
|
662
663
|
flex-wrap: wrap;
|
|
663
664
|
row-gap: 8px;
|
|
664
665
|
}
|
|
665
|
-
._header-
|
|
666
|
+
._header-container_msrkk_21 {
|
|
666
667
|
font-size: var(--el-font-size-medium);
|
|
667
668
|
}
|
|
668
|
-
.
|
|
669
|
+
._icon_msrkk_25 {
|
|
669
670
|
margin-right: 4px;
|
|
670
671
|
font-size: var(--el-font-size-extra-large);
|
|
671
672
|
transform: translateY(1px);
|
|
672
673
|
}
|
|
673
|
-
.
|
|
674
|
+
._actions_msrkk_31 {
|
|
674
675
|
display: flex;
|
|
675
676
|
align-items: center;
|
|
676
677
|
gap: 8px;
|
|
677
678
|
}
|
|
678
|
-
.
|
|
679
|
+
._actions_msrkk_31 .el-button {
|
|
679
680
|
margin-left: 0 !important;
|
|
680
681
|
}
|
|
681
|
-
.
|
|
682
|
+
._form_msrkk_40 {
|
|
682
683
|
display: flex;
|
|
683
684
|
flex-grow: 1;
|
|
684
685
|
align-items: flex-start;
|
|
686
|
+
flex-direction: column;
|
|
685
687
|
}
|
|
686
|
-
.
|
|
687
|
-
|
|
688
|
+
._form_msrkk_40 > .el-row {
|
|
689
|
+
width: 100%;
|
|
688
690
|
margin: 0 !important;
|
|
689
691
|
}
|
|
690
|
-
.
|
|
692
|
+
._scrollbar_msrkk_51 {
|
|
691
693
|
margin: 0 -8px;
|
|
692
694
|
}
|
|
693
695
|
/* source: src/components/explorer-list/explorer-list.vue */
|
|
@@ -749,17 +751,18 @@ div._main_k37nc_1 ._header_k37nc_48 {
|
|
|
749
751
|
margin: 0 -8px;
|
|
750
752
|
}
|
|
751
753
|
/* source: src/components/explorer-modal-form/explorer-modal-form.vue */
|
|
752
|
-
.
|
|
754
|
+
._icon_1tmmn_1 {
|
|
753
755
|
margin-right: 4px;
|
|
754
756
|
font-size: var(--el-font-size-extra-large);
|
|
755
757
|
}
|
|
756
|
-
.
|
|
758
|
+
._form_1tmmn_6 {
|
|
757
759
|
display: flex;
|
|
758
760
|
flex-grow: 1;
|
|
759
761
|
align-items: flex-start;
|
|
762
|
+
flex-direction: column;
|
|
760
763
|
}
|
|
761
|
-
.
|
|
762
|
-
|
|
764
|
+
._form_1tmmn_6 > .el-row {
|
|
765
|
+
width: 100%;
|
|
763
766
|
margin: 0 !important;
|
|
764
767
|
}
|
|
765
768
|
/* source: src/components/explorer-panel/explorer-panel.vue */
|