@wfrog/vc-ui 1.9.20 → 1.10.1
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/{color-switcher/color-switcher.d.ts → color-switch/color-switch.d.ts} +2 -2
- package/dist/es/components/{color-switcher/color-switcher.mjs → color-switch/color-switch.mjs} +3 -3
- package/dist/es/components/{color-switcher/color-switcher.vue.d.ts → color-switch/color-switch.vue.d.ts} +3 -3
- package/dist/es/components/{color-switcher → color-switch}/index.css +2 -2
- package/dist/es/components/color-switch/index.d.ts +4 -0
- package/dist/es/components/color-switch/index.mjs +6 -0
- package/dist/es/components/{dark-switcher/dark-switcher.d.ts → dark-switch/dark-switch.d.ts} +2 -2
- package/dist/es/components/{dark-switcher/dark-switcher.mjs → dark-switch/dark-switch.mjs} +3 -3
- package/dist/es/components/{dark-switcher/dark-switcher.vue.d.ts → dark-switch/dark-switch.vue.d.ts} +3 -3
- package/dist/es/components/{dark-switcher → dark-switch}/index.css +2 -2
- package/dist/es/components/dark-switch/index.d.ts +4 -0
- package/dist/es/components/dark-switch/index.mjs +6 -0
- package/dist/es/components/explorer-column-table/explorer-column-table.mjs +2 -2
- package/dist/es/components/explorer-list/explorer-list.mjs +54 -47
- package/dist/es/components/explorer-list/explorer-list.vue.d.ts +9 -1
- package/dist/es/components/explorer-list/index.css +13 -13
- package/dist/es/components/explorer-tree/explorer-tree.mjs +57 -51
- package/dist/es/components/explorer-tree/explorer-tree.vue.d.ts +10 -2
- package/dist/es/components/explorer-tree/index.css +16 -16
- package/dist/es/index.d.ts +2 -2
- package/dist/es/index.mjs +6 -6
- package/dist/global.d.ts +2 -2
- package/dist/index.css +33 -33
- package/package.json +1 -1
- package/dist/es/components/cdn-tag.vue.d.ts +0 -5
- package/dist/es/components/color-switcher/index.d.ts +0 -4
- package/dist/es/components/color-switcher/index.mjs +0 -6
- package/dist/es/components/dark-switcher/index.d.ts +0 -4
- package/dist/es/components/dark-switcher/index.mjs +0 -6
package/dist/es/components/{color-switcher/color-switcher.d.ts → color-switch/color-switch.d.ts}
RENAMED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export interface
|
|
1
|
+
export interface IColorSwitchProps {
|
|
2
2
|
darkStorageKey?: string;
|
|
3
3
|
storageKey?: string;
|
|
4
4
|
size?: string | number;
|
|
5
5
|
}
|
|
6
|
-
export interface
|
|
6
|
+
export interface IColorSwitchEmits {
|
|
7
7
|
(e: 'change', value: string): void;
|
|
8
8
|
}
|
|
9
9
|
export declare const PRESET_COLORS: readonly ["#409EFF", "#8B5CF6", "#EC4899", "#EAB308", "#0EA5E9", "#22C55E", "#52525B", "#14B8A6", "#1D4ED8", "#F97316", "#E11D48", "#262626", "#475569", "#6B7280"];
|
package/dist/es/components/{color-switcher/color-switcher.mjs → color-switch/color-switch.mjs}
RENAMED
|
@@ -1145,7 +1145,7 @@ function useTheme(storageKey, darkStorageKey) {
|
|
|
1145
1145
|
}
|
|
1146
1146
|
|
|
1147
1147
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
1148
|
-
__name: "color-
|
|
1148
|
+
__name: "color-switch",
|
|
1149
1149
|
props: {
|
|
1150
1150
|
darkStorageKey: { default: "vc-dark" },
|
|
1151
1151
|
storageKey: { default: "vc-primary-color" },
|
|
@@ -1173,7 +1173,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1173
1173
|
}, {
|
|
1174
1174
|
reference: withCtx(() => [
|
|
1175
1175
|
createElementVNode("i", {
|
|
1176
|
-
class: normalizeClass(_ctx.$style["color-
|
|
1176
|
+
class: normalizeClass(_ctx.$style["color-switch"])
|
|
1177
1177
|
}, [
|
|
1178
1178
|
createVNode(Component$1, {
|
|
1179
1179
|
name: "carbon:color-palette",
|
|
@@ -1199,7 +1199,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
1199
1199
|
});
|
|
1200
1200
|
|
|
1201
1201
|
/* unplugin-vue-components disabled */const style0 = {
|
|
1202
|
-
"color-
|
|
1202
|
+
"color-switch": "_color-switch_1qps0_1"
|
|
1203
1203
|
};
|
|
1204
1204
|
|
|
1205
1205
|
const cssModules = {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
declare const _default: import('vue').DefineComponent<
|
|
1
|
+
import { IColorSwitchProps } from './color-switch';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<IColorSwitchProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
3
3
|
change: (value: string) => any;
|
|
4
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
4
|
+
}, string, import('vue').PublicProps, Readonly<IColorSwitchProps> & Readonly<{
|
|
5
5
|
onChange?: ((value: string) => any) | undefined;
|
|
6
6
|
}>, {
|
|
7
7
|
size: string | number;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/* source: src/components/color-
|
|
2
|
-
.el-color-picker-panel{--el-colorpicker-bg-color:var(--el-bg-color-overlay);--el-fill-color-blank:var(--el-colorpicker-bg-color);background:var(--el-colorpicker-bg-color);box-sizing:content-box;padding:12px;width:300px}.el-color-picker-panel.is-border{border:1px solid var(--el-border-color-lighter);border-radius:4px}.el-color-picker-panel__wrapper{margin-bottom:6px}.el-color-picker-panel__footer{display:flex;justify-content:space-between;margin-top:12px;text-align:right}.el-color-picker-panel__footer .el-input{color:#000000;font-size:12px;line-height:26px;width:160px}.el-color-picker-panel.is-disabled .el-color-hue-slider,.el-color-picker-panel.is-disabled .el-color-svpanel{cursor:not-allowed;opacity:.3}.el-color-picker-panel.is-disabled .el-color-hue-slider__thumb{cursor:not-allowed}.el-color-picker-panel.is-disabled .el-color-alpha-slider,.el-color-picker-panel.is-disabled .el-color-predefine .el-color-predefine__color-selector{cursor:not-allowed;opacity:.3}.el-color-predefine{display:flex;font-size:12px;margin-top:8px;width:280px}.el-color-predefine__colors{display:flex;flex:1;flex-wrap:wrap;gap:8px}.el-color-predefine__color-selector{border:none;border-radius:var(--el-border-radius-base);cursor:pointer;height:20px;outline:none;overflow:hidden;padding:0;width:20px}.el-color-predefine__color-selector.selected{box-shadow:0 0 3px 2px var(--el-color-primary)}.el-color-predefine__color-selector:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:2px}.el-color-predefine__color-selector>div{display:flex;height:100%}.el-color-predefine__color-selector.is-alpha{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.el-color-hue-slider{background-color:#f00;box-sizing:border-box;float:right;height:12px;padding:0 2px;position:relative;width:280px}.el-color-hue-slider__bar{background:linear-gradient(90deg,#f00 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,#f00);height:100%;position:relative}.el-color-hue-slider__thumb{background:#fff;border:1px solid var(--el-border-color-lighter);border-radius:1px;box-shadow:0 0 2px rgba(0,0,0,.6);box-sizing:border-box;cursor:pointer;height:100%;left:0;position:absolute;top:0;width:4px;z-index:1}.el-color-hue-slider__thumb:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:1px}.el-color-hue-slider.is-vertical{height:180px;padding:2px 0;width:12px}.el-color-hue-slider.is-vertical .el-color-hue-slider__bar{background:linear-gradient(180deg,#f00 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,#f00)}.el-color-hue-slider.is-vertical .el-color-hue-slider__thumb{height:4px;left:0;top:0;width:100%}.el-color-svpanel{background-image:linear-gradient(0deg,#000,rgba(0,0,0,0)),linear-gradient(90deg,#fff,rgba(255,255,255,0));height:180px;position:relative;width:280px}.el-color-svpanel__cursor{border-radius:50%;box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);cursor:pointer;height:4px;position:absolute;transform:translate(-2px,-2px);width:4px}.el-color-svpanel__cursor:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:2px}.el-color-alpha-slider{background-image:linear-gradient(45deg,var(--el-color-picker-alpha-bg-a) 25%,var(--el-color-picker-alpha-bg-b) 25%),linear-gradient(135deg,var(--el-color-picker-alpha-bg-a) 25%,var(--el-color-picker-alpha-bg-b) 25%),linear-gradient(45deg,var(--el-color-picker-alpha-bg-b) 75%,var(--el-color-picker-alpha-bg-a) 75%),linear-gradient(135deg,var(--el-color-picker-alpha-bg-b) 75%,var(--el-color-picker-alpha-bg-a) 75%);background-position:0 0,6px 0,6px -6px,0 6px;background-size:12px 12px;box-sizing:border-box;height:12px;position:relative;width:280px}.el-color-alpha-slider.is-disabled .el-color-alpha-slider__thumb{cursor:not-allowed}.el-color-alpha-slider__bar{background:linear-gradient(to right,rgba(255,255,255,0) 0,var(--el-bg-color) 100%);height:100%;position:relative}.el-color-alpha-slider__thumb{background:#fff;border:1px solid var(--el-border-color-lighter);border-radius:1px;box-shadow:0 0 2px rgba(0,0,0,.6);box-sizing:border-box;cursor:pointer;height:100%;left:0;position:absolute;top:0;width:4px;z-index:1}.el-color-alpha-slider__thumb:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:1px}.el-color-alpha-slider.is-vertical{height:180px;width:20px}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__bar{background:linear-gradient(180deg,rgba(255,255,255,0) 0,rgb(255,255,255))}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__thumb{height:4px;left:0;top:0;width:100%}.el-color-picker-panel{--el-color-picker-alpha-bg-a:#ccc;--el-color-picker-alpha-bg-b:transparent}.dark .el-color-picker-panel{--el-color-picker-alpha-bg-a:#333333}._color-
|
|
1
|
+
/* source: src/components/color-switch/color-switch.vue */
|
|
2
|
+
.el-color-picker-panel{--el-colorpicker-bg-color:var(--el-bg-color-overlay);--el-fill-color-blank:var(--el-colorpicker-bg-color);background:var(--el-colorpicker-bg-color);box-sizing:content-box;padding:12px;width:300px}.el-color-picker-panel.is-border{border:1px solid var(--el-border-color-lighter);border-radius:4px}.el-color-picker-panel__wrapper{margin-bottom:6px}.el-color-picker-panel__footer{display:flex;justify-content:space-between;margin-top:12px;text-align:right}.el-color-picker-panel__footer .el-input{color:#000000;font-size:12px;line-height:26px;width:160px}.el-color-picker-panel.is-disabled .el-color-hue-slider,.el-color-picker-panel.is-disabled .el-color-svpanel{cursor:not-allowed;opacity:.3}.el-color-picker-panel.is-disabled .el-color-hue-slider__thumb{cursor:not-allowed}.el-color-picker-panel.is-disabled .el-color-alpha-slider,.el-color-picker-panel.is-disabled .el-color-predefine .el-color-predefine__color-selector{cursor:not-allowed;opacity:.3}.el-color-predefine{display:flex;font-size:12px;margin-top:8px;width:280px}.el-color-predefine__colors{display:flex;flex:1;flex-wrap:wrap;gap:8px}.el-color-predefine__color-selector{border:none;border-radius:var(--el-border-radius-base);cursor:pointer;height:20px;outline:none;overflow:hidden;padding:0;width:20px}.el-color-predefine__color-selector.selected{box-shadow:0 0 3px 2px var(--el-color-primary)}.el-color-predefine__color-selector:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:2px}.el-color-predefine__color-selector>div{display:flex;height:100%}.el-color-predefine__color-selector.is-alpha{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.el-color-hue-slider{background-color:#f00;box-sizing:border-box;float:right;height:12px;padding:0 2px;position:relative;width:280px}.el-color-hue-slider__bar{background:linear-gradient(90deg,#f00 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,#f00);height:100%;position:relative}.el-color-hue-slider__thumb{background:#fff;border:1px solid var(--el-border-color-lighter);border-radius:1px;box-shadow:0 0 2px rgba(0,0,0,.6);box-sizing:border-box;cursor:pointer;height:100%;left:0;position:absolute;top:0;width:4px;z-index:1}.el-color-hue-slider__thumb:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:1px}.el-color-hue-slider.is-vertical{height:180px;padding:2px 0;width:12px}.el-color-hue-slider.is-vertical .el-color-hue-slider__bar{background:linear-gradient(180deg,#f00 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,#f00)}.el-color-hue-slider.is-vertical .el-color-hue-slider__thumb{height:4px;left:0;top:0;width:100%}.el-color-svpanel{background-image:linear-gradient(0deg,#000,rgba(0,0,0,0)),linear-gradient(90deg,#fff,rgba(255,255,255,0));height:180px;position:relative;width:280px}.el-color-svpanel__cursor{border-radius:50%;box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);cursor:pointer;height:4px;position:absolute;transform:translate(-2px,-2px);width:4px}.el-color-svpanel__cursor:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:2px}.el-color-alpha-slider{background-image:linear-gradient(45deg,var(--el-color-picker-alpha-bg-a) 25%,var(--el-color-picker-alpha-bg-b) 25%),linear-gradient(135deg,var(--el-color-picker-alpha-bg-a) 25%,var(--el-color-picker-alpha-bg-b) 25%),linear-gradient(45deg,var(--el-color-picker-alpha-bg-b) 75%,var(--el-color-picker-alpha-bg-a) 75%),linear-gradient(135deg,var(--el-color-picker-alpha-bg-b) 75%,var(--el-color-picker-alpha-bg-a) 75%);background-position:0 0,6px 0,6px -6px,0 6px;background-size:12px 12px;box-sizing:border-box;height:12px;position:relative;width:280px}.el-color-alpha-slider.is-disabled .el-color-alpha-slider__thumb{cursor:not-allowed}.el-color-alpha-slider__bar{background:linear-gradient(to right,rgba(255,255,255,0) 0,var(--el-bg-color) 100%);height:100%;position:relative}.el-color-alpha-slider__thumb{background:#fff;border:1px solid var(--el-border-color-lighter);border-radius:1px;box-shadow:0 0 2px rgba(0,0,0,.6);box-sizing:border-box;cursor:pointer;height:100%;left:0;position:absolute;top:0;width:4px;z-index:1}.el-color-alpha-slider__thumb:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:1px}.el-color-alpha-slider.is-vertical{height:180px;width:20px}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__bar{background:linear-gradient(180deg,rgba(255,255,255,0) 0,rgb(255,255,255))}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__thumb{height:4px;left:0;top:0;width:100%}.el-color-picker-panel{--el-color-picker-alpha-bg-a:#ccc;--el-color-picker-alpha-bg-b:transparent}.dark .el-color-picker-panel{--el-color-picker-alpha-bg-a:#333333}._color-switch_1qps0_1 {
|
|
3
3
|
display: inline-flex;
|
|
4
4
|
cursor: pointer;
|
|
5
5
|
}
|
package/dist/es/components/{dark-switcher/dark-switcher.d.ts → dark-switch/dark-switch.d.ts}
RENAMED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { BasicColorSchema } from '@vueuse/core';
|
|
2
|
-
export interface
|
|
2
|
+
export interface IDarkSwitchProps {
|
|
3
3
|
initialValue?: globalThis.MaybeRefOrGetter<BasicColorSchema>;
|
|
4
4
|
size?: string | number;
|
|
5
5
|
storageKey?: string;
|
|
6
6
|
duration?: number;
|
|
7
7
|
}
|
|
8
|
-
export interface
|
|
8
|
+
export interface IDarkSwitchEmits {
|
|
9
9
|
(e: 'change', value: boolean): void;
|
|
10
10
|
}
|
|
@@ -5,7 +5,7 @@ import { C as Component$1 } from '../iconify-icon/iconify-icon.mjs';
|
|
|
5
5
|
import { _ as _export_sfc } from '../../chunk/pcqpp-6-.mjs';
|
|
6
6
|
|
|
7
7
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8
|
-
__name: "dark-
|
|
8
|
+
__name: "dark-switch",
|
|
9
9
|
props: {
|
|
10
10
|
initialValue: { default: "auto" },
|
|
11
11
|
size: { default: 28 },
|
|
@@ -58,7 +58,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
58
58
|
}
|
|
59
59
|
return (_ctx, _cache) => {
|
|
60
60
|
return openBlock(), createElementBlock("i", {
|
|
61
|
-
class: normalizeClass(_ctx.$style["dark-
|
|
61
|
+
class: normalizeClass(_ctx.$style["dark-switch"])
|
|
62
62
|
}, [
|
|
63
63
|
createVNode(Component$1, {
|
|
64
64
|
name: unref(iconName),
|
|
@@ -71,7 +71,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
71
71
|
});
|
|
72
72
|
|
|
73
73
|
/* unplugin-vue-components disabled */const style0 = {
|
|
74
|
-
"dark-
|
|
74
|
+
"dark-switch": "_dark-switch_jfj90_9"
|
|
75
75
|
};
|
|
76
76
|
|
|
77
77
|
const cssModules = {
|
package/dist/es/components/{dark-switcher/dark-switcher.vue.d.ts → dark-switch/dark-switch.vue.d.ts}
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
declare const _default: import('vue').DefineComponent<
|
|
1
|
+
import { IDarkSwitchProps } from './dark-switch';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<IDarkSwitchProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
3
3
|
change: (value: boolean) => any;
|
|
4
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
4
|
+
}, string, import('vue').PublicProps, Readonly<IDarkSwitchProps> & Readonly<{
|
|
5
5
|
onChange?: ((value: boolean) => any) | undefined;
|
|
6
6
|
}>, {
|
|
7
7
|
size: string | number;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* source: src/components/dark-
|
|
1
|
+
/* source: src/components/dark-switch/dark-switch.vue */
|
|
2
2
|
html.dark::view-transition-old(root) {
|
|
3
3
|
z-index: 10000;
|
|
4
4
|
}
|
|
5
5
|
::view-transition-new(root), ::view-transition-old(root) {
|
|
6
6
|
animation: none !important;
|
|
7
7
|
}
|
|
8
|
-
._dark-
|
|
8
|
+
._dark-switch_jfj90_9 {
|
|
9
9
|
display: inline-flex;
|
|
10
10
|
cursor: pointer;
|
|
11
11
|
}
|
|
@@ -258,7 +258,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
258
258
|
min: 0,
|
|
259
259
|
size: __props.size,
|
|
260
260
|
controls: false,
|
|
261
|
-
|
|
261
|
+
width: "80px",
|
|
262
262
|
disabled: row.disabled
|
|
263
263
|
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "disabled"])) : (openBlock(), createBlock(Component$4, {
|
|
264
264
|
key: 1,
|
|
@@ -267,7 +267,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
267
267
|
min: 0,
|
|
268
268
|
size: __props.size,
|
|
269
269
|
controls: false,
|
|
270
|
-
|
|
270
|
+
width: "80px",
|
|
271
271
|
disabled: row.disabled
|
|
272
272
|
}, null, 8, ["modelValue", "onUpdate:modelValue", "size", "disabled"]))
|
|
273
273
|
], 2)
|
|
@@ -71,45 +71,54 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
71
71
|
class: normalizeClass([_ctx.$style.item, { [_ctx.$style.active]: unref(actived) === item.value }]),
|
|
72
72
|
onClick: (e) => handleClick(item, e)
|
|
73
73
|
}, [
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
74
|
+
renderSlot(_ctx.$slots, "item", {
|
|
75
|
+
data: item,
|
|
76
|
+
index
|
|
77
|
+
}, () => [
|
|
78
|
+
createElementVNode("div", {
|
|
79
|
+
class: normalizeClass(_ctx.$style.label)
|
|
80
|
+
}, [
|
|
81
|
+
renderSlot(_ctx.$slots, "label", {
|
|
82
|
+
data: item,
|
|
83
|
+
index
|
|
84
|
+
}, () => [
|
|
85
|
+
item.icon ? (openBlock(), createBlock(Component$2, {
|
|
86
|
+
key: 0,
|
|
87
|
+
name: item.icon,
|
|
88
|
+
class: normalizeClass(_ctx.$style.icon)
|
|
89
|
+
}, null, 8, ["name", "class"])) : createCommentVNode("", true),
|
|
90
|
+
createTextVNode(toDisplayString(item.label), 1)
|
|
91
|
+
])
|
|
92
|
+
], 2),
|
|
93
|
+
__props.actions.length ? (openBlock(), createElementBlock("div", {
|
|
94
|
+
key: 0,
|
|
95
|
+
class: normalizeClass(_ctx.$style.actions)
|
|
96
|
+
}, [
|
|
97
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.actions, (action) => {
|
|
98
|
+
return openBlock(), createElementBlock(Fragment, { key: action }, [
|
|
99
|
+
action === "action" ? renderSlot(_ctx.$slots, "action", {
|
|
100
|
+
key: 0,
|
|
101
|
+
data: item,
|
|
102
|
+
index
|
|
103
|
+
}) : (openBlock(), createBlock(Component$3, mergeProps({
|
|
104
|
+
key: 1,
|
|
105
|
+
ref_for: true
|
|
106
|
+
}, actionsMapping[action], {
|
|
107
|
+
confirm: action === "remove" ? __props.confirmParams(item) : void 0,
|
|
108
|
+
class: action === "remove" ? _ctx.$style.remove : void 0,
|
|
109
|
+
link: "",
|
|
110
|
+
icon: { type: "el", name: actionsMapping[action].icon },
|
|
111
|
+
stop: "",
|
|
112
|
+
onClick: ($event) => emits(action, item.value, item)
|
|
113
|
+
}), null, 16, ["confirm", "class", "icon", "onClick"]))
|
|
114
|
+
], 64);
|
|
115
|
+
}), 128))
|
|
116
|
+
], 2)) : createCommentVNode("", true),
|
|
117
|
+
renderSlot(_ctx.$slots, "extra-label", {
|
|
78
118
|
data: item,
|
|
79
119
|
index
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
key: 0,
|
|
83
|
-
name: item.icon,
|
|
84
|
-
class: normalizeClass(_ctx.$style.icon)
|
|
85
|
-
}, null, 8, ["name", "class"])) : createCommentVNode("", true),
|
|
86
|
-
createTextVNode(toDisplayString(item.label), 1)
|
|
87
|
-
])
|
|
88
|
-
], 2),
|
|
89
|
-
__props.actions.length ? (openBlock(), createElementBlock("div", {
|
|
90
|
-
key: 0,
|
|
91
|
-
class: normalizeClass(_ctx.$style.actions)
|
|
92
|
-
}, [
|
|
93
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.actions, (action) => {
|
|
94
|
-
return openBlock(), createElementBlock(Fragment, { key: action }, [
|
|
95
|
-
action === "action" ? renderSlot(_ctx.$slots, "action", {
|
|
96
|
-
key: 0,
|
|
97
|
-
data: item,
|
|
98
|
-
index
|
|
99
|
-
}) : (openBlock(), createBlock(Component$3, mergeProps({
|
|
100
|
-
key: 1,
|
|
101
|
-
ref_for: true
|
|
102
|
-
}, actionsMapping[action], {
|
|
103
|
-
confirm: action === "remove" ? __props.confirmParams(item) : void 0,
|
|
104
|
-
class: action === "remove" ? _ctx.$style.remove : void 0,
|
|
105
|
-
link: "",
|
|
106
|
-
icon: { type: "el", name: actionsMapping[action].icon },
|
|
107
|
-
stop: "",
|
|
108
|
-
onClick: ($event) => emits(action, item.value, item)
|
|
109
|
-
}), null, 16, ["confirm", "class", "icon", "onClick"]))
|
|
110
|
-
], 64);
|
|
111
|
-
}), 128))
|
|
112
|
-
], 2)) : createCommentVNode("", true)
|
|
120
|
+
})
|
|
121
|
+
])
|
|
113
122
|
], 10, _hoisted_1);
|
|
114
123
|
}), 128))
|
|
115
124
|
], 512), [
|
|
@@ -138,21 +147,19 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
138
147
|
}
|
|
139
148
|
});
|
|
140
149
|
|
|
141
|
-
/* unplugin-vue-components disabled */const item = "
|
|
142
|
-
const actions = "
|
|
143
|
-
const active = "
|
|
144
|
-
const label = "
|
|
145
|
-
const
|
|
146
|
-
const
|
|
147
|
-
const
|
|
148
|
-
const
|
|
149
|
-
const scrollbar = "_scrollbar_1xtjk_61";
|
|
150
|
+
/* unplugin-vue-components disabled */const item = "_item_lodh1_1";
|
|
151
|
+
const actions = "_actions_lodh1_16";
|
|
152
|
+
const active = "_active_lodh1_20";
|
|
153
|
+
const label = "_label_lodh1_25";
|
|
154
|
+
const remove = "_remove_lodh1_47";
|
|
155
|
+
const empty = "_empty_lodh1_51";
|
|
156
|
+
const loading = "_loading_lodh1_52";
|
|
157
|
+
const scrollbar = "_scrollbar_lodh1_60";
|
|
150
158
|
const style0 = {
|
|
151
159
|
item: item,
|
|
152
160
|
actions: actions,
|
|
153
161
|
active: active,
|
|
154
162
|
label: label,
|
|
155
|
-
icon: icon,
|
|
156
163
|
remove: remove,
|
|
157
164
|
empty: empty,
|
|
158
165
|
loading: loading,
|
|
@@ -2,7 +2,11 @@ import { IExplorerListItem, IExplorerListProps } from './explorer-list';
|
|
|
2
2
|
declare function __VLS_template(): {
|
|
3
3
|
attrs: Partial<{}>;
|
|
4
4
|
slots: {
|
|
5
|
-
|
|
5
|
+
item?(_: {
|
|
6
|
+
data: IExplorerListItem<any>;
|
|
7
|
+
index: number;
|
|
8
|
+
}): any;
|
|
9
|
+
label?(_: {
|
|
6
10
|
data: IExplorerListItem<any>;
|
|
7
11
|
index: number;
|
|
8
12
|
}): any;
|
|
@@ -10,6 +14,10 @@ declare function __VLS_template(): {
|
|
|
10
14
|
data: IExplorerListItem<any>;
|
|
11
15
|
index: number;
|
|
12
16
|
}): any;
|
|
17
|
+
'extra-label'?(_: {
|
|
18
|
+
data: IExplorerListItem<any>;
|
|
19
|
+
index: number;
|
|
20
|
+
}): any;
|
|
13
21
|
};
|
|
14
22
|
refs: {};
|
|
15
23
|
rootEl: any;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* source: src/components/explorer-list/explorer-list.vue */
|
|
2
|
-
.
|
|
2
|
+
._item_lodh1_1 {
|
|
3
3
|
padding: 4px 8px;
|
|
4
4
|
cursor: pointer;
|
|
5
5
|
display: flex;
|
|
@@ -11,48 +11,48 @@
|
|
|
11
11
|
box-sizing: border-box;
|
|
12
12
|
line-height: 1;
|
|
13
13
|
}
|
|
14
|
-
.
|
|
14
|
+
._item_lodh1_1:hover {
|
|
15
15
|
background-color: var(--el-color-primary-light-9);
|
|
16
16
|
}
|
|
17
|
-
.
|
|
17
|
+
._item_lodh1_1:hover ._actions_lodh1_16 {
|
|
18
18
|
display: inline-flex;
|
|
19
19
|
align-items: flex-start;
|
|
20
20
|
}
|
|
21
|
-
.
|
|
21
|
+
._item_lodh1_1._active_lodh1_20 {
|
|
22
22
|
color: var(--el-color-primary);
|
|
23
23
|
background-color: var(--el-color-primary-light-9);
|
|
24
24
|
}
|
|
25
|
-
.
|
|
25
|
+
._label_lodh1_25 {
|
|
26
26
|
overflow: hidden;
|
|
27
27
|
text-overflow: ellipsis;
|
|
28
28
|
white-space: nowrap;
|
|
29
29
|
}
|
|
30
|
-
.
|
|
30
|
+
._label_lodh1_25 .iconify {
|
|
31
31
|
margin-right: 4px;
|
|
32
32
|
}
|
|
33
|
-
.
|
|
33
|
+
._actions_lodh1_16 {
|
|
34
34
|
display: none;
|
|
35
35
|
column-gap: 4px;
|
|
36
36
|
}
|
|
37
|
-
.
|
|
37
|
+
._actions_lodh1_16 > button {
|
|
38
38
|
margin-left: 0 !important;
|
|
39
39
|
font-size: 1.2em;
|
|
40
40
|
border: 1px solid var(--el-border-color-light) !important;
|
|
41
41
|
}
|
|
42
|
-
.
|
|
42
|
+
._actions_lodh1_16 > button:hover {
|
|
43
43
|
border-color: var(--el-border-color-dark) !important;
|
|
44
44
|
}
|
|
45
|
-
.
|
|
45
|
+
._remove_lodh1_47 {
|
|
46
46
|
transform: translateY(-1px);
|
|
47
47
|
}
|
|
48
|
-
.
|
|
49
|
-
.
|
|
48
|
+
._empty_lodh1_51,
|
|
49
|
+
._loading_lodh1_52 {
|
|
50
50
|
padding: 4px 8px;
|
|
51
51
|
display: flex;
|
|
52
52
|
align-items: center;
|
|
53
53
|
column-gap: 4px;
|
|
54
54
|
color: var(--el-text-color-secondary);
|
|
55
55
|
}
|
|
56
|
-
.
|
|
56
|
+
._scrollbar_lodh1_60 {
|
|
57
57
|
margin: 0 -8px;
|
|
58
58
|
}
|
|
@@ -3,7 +3,7 @@ import '../../chunk/Gk1J52Yw.mjs';
|
|
|
3
3
|
import { E as ElTree } from '../../chunk/eqwEsspo.mjs';
|
|
4
4
|
import '../../chunk/DBf73TLo.mjs';
|
|
5
5
|
import '../../chunk/DbhQlaOz.mjs';
|
|
6
|
-
import { defineComponent, useTemplateRef, computed, watch, createBlock, openBlock, normalizeClass, withCtx, withDirectives, createElementBlock, createCommentVNode, createVNode, mergeProps, unref,
|
|
6
|
+
import { defineComponent, useTemplateRef, computed, watch, createBlock, openBlock, normalizeClass, withCtx, withDirectives, createElementBlock, createCommentVNode, createVNode, mergeProps, unref, renderSlot, createElementVNode, createTextVNode, toDisplayString, Fragment, renderList, vShow } from 'vue';
|
|
7
7
|
import { Loading } from '@element-plus/icons-vue';
|
|
8
8
|
import { C as Component$3 } from '../button/button.mjs';
|
|
9
9
|
import { i as injectExplorerPanelState } from '../explorer-panel/explorer-panel2.mjs';
|
|
@@ -66,8 +66,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
66
66
|
});
|
|
67
67
|
__expose({
|
|
68
68
|
getTreeRef: () => treeRef.value,
|
|
69
|
-
setActive: (value) => {
|
|
70
|
-
treeRef.value?.setCurrentKey(value);
|
|
69
|
+
setActive: (value, shouldAutoExpandParent = true) => {
|
|
70
|
+
treeRef.value?.setCurrentKey(value, shouldAutoExpandParent);
|
|
71
71
|
}
|
|
72
72
|
});
|
|
73
73
|
return (_ctx, _cache) => {
|
|
@@ -87,49 +87,57 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
87
87
|
onNodeClick: handleNodeClick
|
|
88
88
|
}), {
|
|
89
89
|
default: withCtx(({ node }) => [
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
90
|
+
renderSlot(_ctx.$slots, "node", {
|
|
91
|
+
data: node.data,
|
|
92
|
+
index: node.index
|
|
93
|
+
}, () => [
|
|
93
94
|
createElementVNode("div", {
|
|
94
|
-
class: normalizeClass(_ctx.$style.
|
|
95
|
+
class: normalizeClass(_ctx.$style.node)
|
|
95
96
|
}, [
|
|
96
|
-
|
|
97
|
+
createElementVNode("div", {
|
|
98
|
+
class: normalizeClass(_ctx.$style.label)
|
|
99
|
+
}, [
|
|
100
|
+
renderSlot(_ctx.$slots, "label", {
|
|
101
|
+
data: node.data,
|
|
102
|
+
index: node.index
|
|
103
|
+
}, () => [
|
|
104
|
+
node.data.icon ? (openBlock(), createBlock(Component$2, {
|
|
105
|
+
key: 0,
|
|
106
|
+
name: node.data.icon
|
|
107
|
+
}, null, 8, ["name"])) : createCommentVNode("", true),
|
|
108
|
+
createTextVNode(toDisplayString(node.data.label), 1)
|
|
109
|
+
])
|
|
110
|
+
], 2),
|
|
111
|
+
__props.actions.length ? (openBlock(), createElementBlock("div", {
|
|
112
|
+
key: 0,
|
|
113
|
+
class: normalizeClass(["vc-actions", [_ctx.$style.actions]])
|
|
114
|
+
}, [
|
|
115
|
+
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.actions, (action) => {
|
|
116
|
+
return openBlock(), createElementBlock(Fragment, { key: action }, [
|
|
117
|
+
action === "action" ? renderSlot(_ctx.$slots, "action", {
|
|
118
|
+
key: 0,
|
|
119
|
+
data: node.data,
|
|
120
|
+
index: node.index
|
|
121
|
+
}) : (openBlock(), createBlock(Component$3, mergeProps({
|
|
122
|
+
key: 1,
|
|
123
|
+
ref_for: true
|
|
124
|
+
}, actionsMapping[action], {
|
|
125
|
+
confirm: action === "remove" ? __props.confirmParams(node) : void 0,
|
|
126
|
+
class: action === "remove" ? _ctx.$style.remove : void 0,
|
|
127
|
+
link: "",
|
|
128
|
+
icon: { type: "el", name: actionsMapping[action].icon },
|
|
129
|
+
stop: "",
|
|
130
|
+
onClick: ($event) => emits(action, node.data.value, node)
|
|
131
|
+
}), null, 16, ["confirm", "class", "icon", "onClick"]))
|
|
132
|
+
], 64);
|
|
133
|
+
}), 128))
|
|
134
|
+
], 2)) : createCommentVNode("", true),
|
|
135
|
+
renderSlot(_ctx.$slots, "extra-label", {
|
|
97
136
|
data: node.data,
|
|
98
137
|
index: node.index
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
name: node.data.icon,
|
|
103
|
-
class: normalizeClass(_ctx.$style.icon)
|
|
104
|
-
}, null, 8, ["name", "class"])) : createCommentVNode("", true),
|
|
105
|
-
createTextVNode(toDisplayString(node.data.label), 1)
|
|
106
|
-
])
|
|
107
|
-
], 2),
|
|
108
|
-
__props.actions.length ? (openBlock(), createElementBlock("div", {
|
|
109
|
-
key: 0,
|
|
110
|
-
class: normalizeClass(["vc-actions", [_ctx.$style.actions]])
|
|
111
|
-
}, [
|
|
112
|
-
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.actions, (action) => {
|
|
113
|
-
return openBlock(), createElementBlock(Fragment, { key: action }, [
|
|
114
|
-
action === "action" ? renderSlot(_ctx.$slots, "action", {
|
|
115
|
-
key: 0,
|
|
116
|
-
data: node.data,
|
|
117
|
-
index: node.index
|
|
118
|
-
}) : (openBlock(), createBlock(Component$3, mergeProps({
|
|
119
|
-
key: 1,
|
|
120
|
-
ref_for: true
|
|
121
|
-
}, actionsMapping[action], {
|
|
122
|
-
confirm: action === "remove" ? __props.confirmParams(node) : void 0,
|
|
123
|
-
class: action === "remove" ? _ctx.$style.remove : void 0,
|
|
124
|
-
link: "",
|
|
125
|
-
icon: { type: "el", name: actionsMapping[action].icon },
|
|
126
|
-
stop: "",
|
|
127
|
-
onClick: ($event) => emits(action, node.data.value, node)
|
|
128
|
-
}), null, 16, ["confirm", "class", "icon", "onClick"]))
|
|
129
|
-
], 64);
|
|
130
|
-
}), 128))
|
|
131
|
-
], 2)) : createCommentVNode("", true)
|
|
132
|
-
], 2)
|
|
138
|
+
})
|
|
139
|
+
], 2)
|
|
140
|
+
])
|
|
133
141
|
]),
|
|
134
142
|
_: 3
|
|
135
143
|
}, 16, ["class"]), [
|
|
@@ -154,19 +162,17 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
154
162
|
}
|
|
155
163
|
});
|
|
156
164
|
|
|
157
|
-
/* unplugin-vue-components disabled */const tree = "
|
|
158
|
-
const node = "
|
|
159
|
-
const label = "
|
|
160
|
-
const
|
|
161
|
-
const
|
|
162
|
-
const
|
|
163
|
-
const
|
|
164
|
-
const scrollbar = "_scrollbar_4juik_73";
|
|
165
|
+
/* unplugin-vue-components disabled */const tree = "_tree_185uk_1";
|
|
166
|
+
const node = "_node_185uk_27";
|
|
167
|
+
const label = "_label_185uk_37";
|
|
168
|
+
const actions = "_actions_185uk_47";
|
|
169
|
+
const remove = "_remove_185uk_60";
|
|
170
|
+
const loading = "_loading_185uk_64";
|
|
171
|
+
const scrollbar = "_scrollbar_185uk_72";
|
|
165
172
|
const style0 = {
|
|
166
173
|
tree: tree,
|
|
167
174
|
node: node,
|
|
168
175
|
label: label,
|
|
169
|
-
icon: icon,
|
|
170
176
|
actions: actions,
|
|
171
177
|
remove: remove,
|
|
172
178
|
loading: loading,
|
|
@@ -5,7 +5,11 @@ import { IExplorerTreeProps } from './explorer-tree';
|
|
|
5
5
|
declare function __VLS_template(): {
|
|
6
6
|
attrs: Partial<{}>;
|
|
7
7
|
slots: {
|
|
8
|
-
|
|
8
|
+
node?(_: {
|
|
9
|
+
data: any;
|
|
10
|
+
index: any;
|
|
11
|
+
}): any;
|
|
12
|
+
label?(_: {
|
|
9
13
|
data: any;
|
|
10
14
|
index: any;
|
|
11
15
|
}): any;
|
|
@@ -13,6 +17,10 @@ declare function __VLS_template(): {
|
|
|
13
17
|
data: any;
|
|
14
18
|
index: any;
|
|
15
19
|
}): any;
|
|
20
|
+
'extra-label'?(_: {
|
|
21
|
+
data: any;
|
|
22
|
+
index: any;
|
|
23
|
+
}): any;
|
|
16
24
|
};
|
|
17
25
|
refs: {
|
|
18
26
|
treeRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<globalThis.ExtractPropTypes<{
|
|
@@ -2032,7 +2040,7 @@ declare const __VLS_component: import('vue').DefineComponent<IExplorerTreeProps,
|
|
|
2032
2040
|
readonly showCheckbox: boolean;
|
|
2033
2041
|
readonly highlightCurrent: boolean;
|
|
2034
2042
|
}> | null;
|
|
2035
|
-
setActive: (value: string | number) => void;
|
|
2043
|
+
setActive: (value: string | number | null, shouldAutoExpandParent?: boolean) => void;
|
|
2036
2044
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
2037
2045
|
create: (value: string | number, node: Node) => any;
|
|
2038
2046
|
modify: (value: string | number, node: Node) => any;
|
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
/* source: src/components/explorer-tree/explorer-tree.vue */
|
|
2
|
-
.
|
|
2
|
+
._tree_185uk_1 .el-tree-node__content {
|
|
3
3
|
display: flex;
|
|
4
4
|
align-items: center;
|
|
5
5
|
}
|
|
6
|
-
.
|
|
6
|
+
._tree_185uk_1 .el-tree-node__content:hover {
|
|
7
7
|
background-color: var(--el-color-primary-light-9);
|
|
8
8
|
}
|
|
9
|
-
.
|
|
9
|
+
._tree_185uk_1 .el-tree-node__content:hover .vc-actions {
|
|
10
10
|
display: inline-flex;
|
|
11
11
|
}
|
|
12
|
-
.
|
|
12
|
+
._tree_185uk_1 .el-tree-node:focus > .el-tree-node__content {
|
|
13
13
|
background-color: var(--el-color-primary-light-9);
|
|
14
14
|
}
|
|
15
|
-
.
|
|
15
|
+
._tree_185uk_1 .is-current > .el-tree-node__content {
|
|
16
16
|
color: var(--el-color-primary);
|
|
17
17
|
background-color: var(--el-color-primary-light-9);
|
|
18
18
|
}
|
|
19
|
-
.
|
|
19
|
+
._tree_185uk_1 .el-tree__empty-block {
|
|
20
20
|
text-align: left;
|
|
21
21
|
min-height: unset;
|
|
22
22
|
padding: 4px 8px;
|
|
23
23
|
}
|
|
24
|
-
.
|
|
24
|
+
._tree_185uk_1 .el-tree__empty-text {
|
|
25
25
|
position: static;
|
|
26
26
|
}
|
|
27
|
-
.
|
|
27
|
+
._node_185uk_27 {
|
|
28
28
|
display: flex;
|
|
29
29
|
justify-content: space-between;
|
|
30
30
|
align-items: center;
|
|
@@ -33,37 +33,37 @@
|
|
|
33
33
|
box-sizing: border-box;
|
|
34
34
|
width: 100px;
|
|
35
35
|
}
|
|
36
|
-
.
|
|
36
|
+
._label_185uk_37 {
|
|
37
37
|
overflow: hidden;
|
|
38
38
|
text-overflow: ellipsis;
|
|
39
39
|
white-space: nowrap;
|
|
40
40
|
transform: translateY(-1px);
|
|
41
41
|
}
|
|
42
|
-
.
|
|
42
|
+
._label_185uk_37 .iconify {
|
|
43
43
|
margin-right: 4px;
|
|
44
44
|
}
|
|
45
|
-
.
|
|
45
|
+
._actions_185uk_47 {
|
|
46
46
|
display: none;
|
|
47
47
|
column-gap: 4px;
|
|
48
48
|
}
|
|
49
|
-
.
|
|
49
|
+
._actions_185uk_47 > button {
|
|
50
50
|
margin-left: 0 !important;
|
|
51
51
|
font-size: 1.2em;
|
|
52
52
|
border: 1px solid var(--el-border-color-light) !important;
|
|
53
53
|
}
|
|
54
|
-
.
|
|
54
|
+
._actions_185uk_47 > button:hover {
|
|
55
55
|
border-color: var(--el-border-color-dark) !important;
|
|
56
56
|
}
|
|
57
|
-
.
|
|
57
|
+
._remove_185uk_60 {
|
|
58
58
|
transform: translateY(-1px);
|
|
59
59
|
}
|
|
60
|
-
.
|
|
60
|
+
._loading_185uk_64 {
|
|
61
61
|
padding: 4px 8px;
|
|
62
62
|
display: flex;
|
|
63
63
|
align-items: center;
|
|
64
64
|
column-gap: 4px;
|
|
65
65
|
color: var(--el-text-color-secondary);
|
|
66
66
|
}
|
|
67
|
-
.
|
|
67
|
+
._scrollbar_185uk_72 {
|
|
68
68
|
margin: 0 -8px;
|
|
69
69
|
}
|
package/dist/es/index.d.ts
CHANGED
|
@@ -4,11 +4,11 @@ export { default as VcButton } from './components/button/button.vue';
|
|
|
4
4
|
export { default as VcChatContainer } from './components/chat-container/chat-container.vue';
|
|
5
5
|
export { default as VcChoiceBoolean } from './components/choice-boolean/choice-boolean.vue';
|
|
6
6
|
export { default as VcChoice } from './components/choice/choice.vue';
|
|
7
|
-
export { default as
|
|
7
|
+
export { default as VcColorSwitch } from './components/color-switch/color-switch.vue';
|
|
8
8
|
export { default as VcConfigProvider } from './components/config-provider/config-provider.vue';
|
|
9
9
|
export { default as VcCropper } from './components/cropper/cropper.vue';
|
|
10
10
|
export { default as VcCurrency } from './components/currency/currency.vue';
|
|
11
|
-
export { default as
|
|
11
|
+
export { default as VcDarkSwitch } from './components/dark-switch/dark-switch.vue';
|
|
12
12
|
export { default as VcDaterangePicker } from './components/daterange-picker/daterange-picker.vue';
|
|
13
13
|
export { default as VcDialogCameraUpload } from './components/dialog-camera-upload/dialog-camera-upload.vue';
|
|
14
14
|
export { default as VcDialogMapPoint } from './components/dialog-map-point/dialog-map-point.vue';
|
package/dist/es/index.mjs
CHANGED
|
@@ -7,15 +7,15 @@ export { C as VcChatContainer } from './components/chat-container/chat-container
|
|
|
7
7
|
import { _ as _sfc_main$3 } from './components/choice-boolean/choice-boolean.mjs';
|
|
8
8
|
import { _ as __vite_glob_0_5 } from './components/choice/choice.mjs';
|
|
9
9
|
export { C as VcChoice } from './components/choice/choice.mjs';
|
|
10
|
-
import { _ as __vite_glob_0_6 } from './components/color-
|
|
11
|
-
export { C as
|
|
10
|
+
import { _ as __vite_glob_0_6 } from './components/color-switch/color-switch.mjs';
|
|
11
|
+
export { C as VcColorSwitch } from './components/color-switch/color-switch.mjs';
|
|
12
12
|
import { _ as _sfc_main$4 } from './components/config-provider/config-provider.mjs';
|
|
13
13
|
import { _ as __vite_glob_0_8 } from './components/cropper/cropper.mjs';
|
|
14
14
|
export { C as VcCropper } from './components/cropper/cropper.mjs';
|
|
15
15
|
import { _ as __vite_glob_0_9 } from './components/currency/currency.mjs';
|
|
16
16
|
export { C as VcCurrency } from './components/currency/currency.mjs';
|
|
17
|
-
import { _ as __vite_glob_0_10 } from './components/dark-
|
|
18
|
-
export { C as
|
|
17
|
+
import { _ as __vite_glob_0_10 } from './components/dark-switch/dark-switch.mjs';
|
|
18
|
+
export { C as VcDarkSwitch } from './components/dark-switch/dark-switch.mjs';
|
|
19
19
|
import { _ as _sfc_main$6 } from './components/daterange-picker/daterange-picker.mjs';
|
|
20
20
|
import { _ as __vite_glob_0_12 } from './components/dialog-camera-upload/dialog-camera-upload.mjs';
|
|
21
21
|
export { C as VcDialogCameraUpload } from './components/dialog-camera-upload/dialog-camera-upload.mjs';
|
|
@@ -156,9 +156,9 @@ 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.
|
|
159
|
+
const version = "1.10.1";
|
|
160
160
|
|
|
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-
|
|
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-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/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();
|
|
163
163
|
function install(Vue) {
|
|
164
164
|
Object.keys(modules).forEach((key) => {
|
package/dist/global.d.ts
CHANGED
|
@@ -7,11 +7,11 @@ declare module 'vue' {
|
|
|
7
7
|
VcChatContainer: typeof import('@wfrog/vc-ui')['VcChatContainer']
|
|
8
8
|
VcChoice: typeof import('@wfrog/vc-ui')['VcChoice']
|
|
9
9
|
VcChoiceBoolean: typeof import('@wfrog/vc-ui')['VcChoiceBoolean']
|
|
10
|
-
|
|
10
|
+
VcColorSwitch: typeof import('@wfrog/vc-ui')['VcColorSwitch']
|
|
11
11
|
VcConfigProvider: typeof import('@wfrog/vc-ui')['VcConfigProvider']
|
|
12
12
|
VcCropper: typeof import('@wfrog/vc-ui')['VcCropper']
|
|
13
13
|
VcCurrency: typeof import('@wfrog/vc-ui')['VcCurrency']
|
|
14
|
-
|
|
14
|
+
VcDarkSwitch: typeof import('@wfrog/vc-ui')['VcDarkSwitch']
|
|
15
15
|
VcDaterangePicker: typeof import('@wfrog/vc-ui')['VcDaterangePicker']
|
|
16
16
|
VcDialog: typeof import('@wfrog/vc-ui')['VcDialog']
|
|
17
17
|
VcDialogCameraUpload: typeof import('@wfrog/vc-ui')['VcDialogCameraUpload']
|
package/dist/index.css
CHANGED
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
._checkbox_8th42_1 .el-checkbox-button__inner {
|
|
59
59
|
border-left: 0;
|
|
60
60
|
}
|
|
61
|
-
/* source: src/components/color-
|
|
62
|
-
.el-color-picker-panel{--el-colorpicker-bg-color:var(--el-bg-color-overlay);--el-fill-color-blank:var(--el-colorpicker-bg-color);background:var(--el-colorpicker-bg-color);box-sizing:content-box;padding:12px;width:300px}.el-color-picker-panel.is-border{border:1px solid var(--el-border-color-lighter);border-radius:4px}.el-color-picker-panel__wrapper{margin-bottom:6px}.el-color-picker-panel__footer{display:flex;justify-content:space-between;margin-top:12px;text-align:right}.el-color-picker-panel__footer .el-input{color:#000000;font-size:12px;line-height:26px;width:160px}.el-color-picker-panel.is-disabled .el-color-hue-slider,.el-color-picker-panel.is-disabled .el-color-svpanel{cursor:not-allowed;opacity:.3}.el-color-picker-panel.is-disabled .el-color-hue-slider__thumb{cursor:not-allowed}.el-color-picker-panel.is-disabled .el-color-alpha-slider,.el-color-picker-panel.is-disabled .el-color-predefine .el-color-predefine__color-selector{cursor:not-allowed;opacity:.3}.el-color-predefine{display:flex;font-size:12px;margin-top:8px;width:280px}.el-color-predefine__colors{display:flex;flex:1;flex-wrap:wrap;gap:8px}.el-color-predefine__color-selector{border:none;border-radius:var(--el-border-radius-base);cursor:pointer;height:20px;outline:none;overflow:hidden;padding:0;width:20px}.el-color-predefine__color-selector.selected{box-shadow:0 0 3px 2px var(--el-color-primary)}.el-color-predefine__color-selector:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:2px}.el-color-predefine__color-selector>div{display:flex;height:100%}.el-color-predefine__color-selector.is-alpha{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.el-color-hue-slider{background-color:#f00;box-sizing:border-box;float:right;height:12px;padding:0 2px;position:relative;width:280px}.el-color-hue-slider__bar{background:linear-gradient(90deg,#f00 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,#f00);height:100%;position:relative}.el-color-hue-slider__thumb{background:#fff;border:1px solid var(--el-border-color-lighter);border-radius:1px;box-shadow:0 0 2px rgba(0,0,0,.6);box-sizing:border-box;cursor:pointer;height:100%;left:0;position:absolute;top:0;width:4px;z-index:1}.el-color-hue-slider__thumb:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:1px}.el-color-hue-slider.is-vertical{height:180px;padding:2px 0;width:12px}.el-color-hue-slider.is-vertical .el-color-hue-slider__bar{background:linear-gradient(180deg,#f00 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,#f00)}.el-color-hue-slider.is-vertical .el-color-hue-slider__thumb{height:4px;left:0;top:0;width:100%}.el-color-svpanel{background-image:linear-gradient(0deg,#000,rgba(0,0,0,0)),linear-gradient(90deg,#fff,rgba(255,255,255,0));height:180px;position:relative;width:280px}.el-color-svpanel__cursor{border-radius:50%;box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);cursor:pointer;height:4px;position:absolute;transform:translate(-2px,-2px);width:4px}.el-color-svpanel__cursor:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:2px}.el-color-alpha-slider{background-image:linear-gradient(45deg,var(--el-color-picker-alpha-bg-a) 25%,var(--el-color-picker-alpha-bg-b) 25%),linear-gradient(135deg,var(--el-color-picker-alpha-bg-a) 25%,var(--el-color-picker-alpha-bg-b) 25%),linear-gradient(45deg,var(--el-color-picker-alpha-bg-b) 75%,var(--el-color-picker-alpha-bg-a) 75%),linear-gradient(135deg,var(--el-color-picker-alpha-bg-b) 75%,var(--el-color-picker-alpha-bg-a) 75%);background-position:0 0,6px 0,6px -6px,0 6px;background-size:12px 12px;box-sizing:border-box;height:12px;position:relative;width:280px}.el-color-alpha-slider.is-disabled .el-color-alpha-slider__thumb{cursor:not-allowed}.el-color-alpha-slider__bar{background:linear-gradient(to right,rgba(255,255,255,0) 0,var(--el-bg-color) 100%);height:100%;position:relative}.el-color-alpha-slider__thumb{background:#fff;border:1px solid var(--el-border-color-lighter);border-radius:1px;box-shadow:0 0 2px rgba(0,0,0,.6);box-sizing:border-box;cursor:pointer;height:100%;left:0;position:absolute;top:0;width:4px;z-index:1}.el-color-alpha-slider__thumb:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:1px}.el-color-alpha-slider.is-vertical{height:180px;width:20px}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__bar{background:linear-gradient(180deg,rgba(255,255,255,0) 0,rgb(255,255,255))}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__thumb{height:4px;left:0;top:0;width:100%}.el-color-picker-panel{--el-color-picker-alpha-bg-a:#ccc;--el-color-picker-alpha-bg-b:transparent}.dark .el-color-picker-panel{--el-color-picker-alpha-bg-a:#333333}._color-
|
|
61
|
+
/* source: src/components/color-switch/color-switch.vue */
|
|
62
|
+
.el-color-picker-panel{--el-colorpicker-bg-color:var(--el-bg-color-overlay);--el-fill-color-blank:var(--el-colorpicker-bg-color);background:var(--el-colorpicker-bg-color);box-sizing:content-box;padding:12px;width:300px}.el-color-picker-panel.is-border{border:1px solid var(--el-border-color-lighter);border-radius:4px}.el-color-picker-panel__wrapper{margin-bottom:6px}.el-color-picker-panel__footer{display:flex;justify-content:space-between;margin-top:12px;text-align:right}.el-color-picker-panel__footer .el-input{color:#000000;font-size:12px;line-height:26px;width:160px}.el-color-picker-panel.is-disabled .el-color-hue-slider,.el-color-picker-panel.is-disabled .el-color-svpanel{cursor:not-allowed;opacity:.3}.el-color-picker-panel.is-disabled .el-color-hue-slider__thumb{cursor:not-allowed}.el-color-picker-panel.is-disabled .el-color-alpha-slider,.el-color-picker-panel.is-disabled .el-color-predefine .el-color-predefine__color-selector{cursor:not-allowed;opacity:.3}.el-color-predefine{display:flex;font-size:12px;margin-top:8px;width:280px}.el-color-predefine__colors{display:flex;flex:1;flex-wrap:wrap;gap:8px}.el-color-predefine__color-selector{border:none;border-radius:var(--el-border-radius-base);cursor:pointer;height:20px;outline:none;overflow:hidden;padding:0;width:20px}.el-color-predefine__color-selector.selected{box-shadow:0 0 3px 2px var(--el-color-primary)}.el-color-predefine__color-selector:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:2px}.el-color-predefine__color-selector>div{display:flex;height:100%}.el-color-predefine__color-selector.is-alpha{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.el-color-hue-slider{background-color:#f00;box-sizing:border-box;float:right;height:12px;padding:0 2px;position:relative;width:280px}.el-color-hue-slider__bar{background:linear-gradient(90deg,#f00 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,#f00);height:100%;position:relative}.el-color-hue-slider__thumb{background:#fff;border:1px solid var(--el-border-color-lighter);border-radius:1px;box-shadow:0 0 2px rgba(0,0,0,.6);box-sizing:border-box;cursor:pointer;height:100%;left:0;position:absolute;top:0;width:4px;z-index:1}.el-color-hue-slider__thumb:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:1px}.el-color-hue-slider.is-vertical{height:180px;padding:2px 0;width:12px}.el-color-hue-slider.is-vertical .el-color-hue-slider__bar{background:linear-gradient(180deg,#f00 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,#f00)}.el-color-hue-slider.is-vertical .el-color-hue-slider__thumb{height:4px;left:0;top:0;width:100%}.el-color-svpanel{background-image:linear-gradient(0deg,#000,rgba(0,0,0,0)),linear-gradient(90deg,#fff,rgba(255,255,255,0));height:180px;position:relative;width:280px}.el-color-svpanel__cursor{border-radius:50%;box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);cursor:pointer;height:4px;position:absolute;transform:translate(-2px,-2px);width:4px}.el-color-svpanel__cursor:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:2px}.el-color-alpha-slider{background-image:linear-gradient(45deg,var(--el-color-picker-alpha-bg-a) 25%,var(--el-color-picker-alpha-bg-b) 25%),linear-gradient(135deg,var(--el-color-picker-alpha-bg-a) 25%,var(--el-color-picker-alpha-bg-b) 25%),linear-gradient(45deg,var(--el-color-picker-alpha-bg-b) 75%,var(--el-color-picker-alpha-bg-a) 75%),linear-gradient(135deg,var(--el-color-picker-alpha-bg-b) 75%,var(--el-color-picker-alpha-bg-a) 75%);background-position:0 0,6px 0,6px -6px,0 6px;background-size:12px 12px;box-sizing:border-box;height:12px;position:relative;width:280px}.el-color-alpha-slider.is-disabled .el-color-alpha-slider__thumb{cursor:not-allowed}.el-color-alpha-slider__bar{background:linear-gradient(to right,rgba(255,255,255,0) 0,var(--el-bg-color) 100%);height:100%;position:relative}.el-color-alpha-slider__thumb{background:#fff;border:1px solid var(--el-border-color-lighter);border-radius:1px;box-shadow:0 0 2px rgba(0,0,0,.6);box-sizing:border-box;cursor:pointer;height:100%;left:0;position:absolute;top:0;width:4px;z-index:1}.el-color-alpha-slider__thumb:focus-visible{outline:2px solid var(--el-color-primary);outline-offset:1px}.el-color-alpha-slider.is-vertical{height:180px;width:20px}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__bar{background:linear-gradient(180deg,rgba(255,255,255,0) 0,rgb(255,255,255))}.el-color-alpha-slider.is-vertical .el-color-alpha-slider__thumb{height:4px;left:0;top:0;width:100%}.el-color-picker-panel{--el-color-picker-alpha-bg-a:#ccc;--el-color-picker-alpha-bg-b:transparent}.dark .el-color-picker-panel{--el-color-picker-alpha-bg-a:#333333}._color-switch_1qps0_1 {
|
|
63
63
|
display: inline-flex;
|
|
64
64
|
cursor: pointer;
|
|
65
65
|
}
|
|
@@ -75,14 +75,14 @@
|
|
|
75
75
|
._flag_vkceh_6 {
|
|
76
76
|
margin-right: 8px;
|
|
77
77
|
}
|
|
78
|
-
/* source: src/components/dark-
|
|
78
|
+
/* source: src/components/dark-switch/dark-switch.vue */
|
|
79
79
|
html.dark::view-transition-old(root) {
|
|
80
80
|
z-index: 10000;
|
|
81
81
|
}
|
|
82
82
|
::view-transition-new(root), ::view-transition-old(root) {
|
|
83
83
|
animation: none !important;
|
|
84
84
|
}
|
|
85
|
-
._dark-
|
|
85
|
+
._dark-switch_jfj90_9 {
|
|
86
86
|
display: inline-flex;
|
|
87
87
|
cursor: pointer;
|
|
88
88
|
}
|
|
@@ -693,7 +693,7 @@ div._main_k37nc_1 ._header_k37nc_48 {
|
|
|
693
693
|
margin: 0 -8px;
|
|
694
694
|
}
|
|
695
695
|
/* source: src/components/explorer-list/explorer-list.vue */
|
|
696
|
-
.
|
|
696
|
+
._item_lodh1_1 {
|
|
697
697
|
padding: 4px 8px;
|
|
698
698
|
cursor: pointer;
|
|
699
699
|
display: flex;
|
|
@@ -705,49 +705,49 @@ div._main_k37nc_1 ._header_k37nc_48 {
|
|
|
705
705
|
box-sizing: border-box;
|
|
706
706
|
line-height: 1;
|
|
707
707
|
}
|
|
708
|
-
.
|
|
708
|
+
._item_lodh1_1:hover {
|
|
709
709
|
background-color: var(--el-color-primary-light-9);
|
|
710
710
|
}
|
|
711
|
-
.
|
|
711
|
+
._item_lodh1_1:hover ._actions_lodh1_16 {
|
|
712
712
|
display: inline-flex;
|
|
713
713
|
align-items: flex-start;
|
|
714
714
|
}
|
|
715
|
-
.
|
|
715
|
+
._item_lodh1_1._active_lodh1_20 {
|
|
716
716
|
color: var(--el-color-primary);
|
|
717
717
|
background-color: var(--el-color-primary-light-9);
|
|
718
718
|
}
|
|
719
|
-
.
|
|
719
|
+
._label_lodh1_25 {
|
|
720
720
|
overflow: hidden;
|
|
721
721
|
text-overflow: ellipsis;
|
|
722
722
|
white-space: nowrap;
|
|
723
723
|
}
|
|
724
|
-
.
|
|
724
|
+
._label_lodh1_25 .iconify {
|
|
725
725
|
margin-right: 4px;
|
|
726
726
|
}
|
|
727
|
-
.
|
|
727
|
+
._actions_lodh1_16 {
|
|
728
728
|
display: none;
|
|
729
729
|
column-gap: 4px;
|
|
730
730
|
}
|
|
731
|
-
.
|
|
731
|
+
._actions_lodh1_16 > button {
|
|
732
732
|
margin-left: 0 !important;
|
|
733
733
|
font-size: 1.2em;
|
|
734
734
|
border: 1px solid var(--el-border-color-light) !important;
|
|
735
735
|
}
|
|
736
|
-
.
|
|
736
|
+
._actions_lodh1_16 > button:hover {
|
|
737
737
|
border-color: var(--el-border-color-dark) !important;
|
|
738
738
|
}
|
|
739
|
-
.
|
|
739
|
+
._remove_lodh1_47 {
|
|
740
740
|
transform: translateY(-1px);
|
|
741
741
|
}
|
|
742
|
-
.
|
|
743
|
-
.
|
|
742
|
+
._empty_lodh1_51,
|
|
743
|
+
._loading_lodh1_52 {
|
|
744
744
|
padding: 4px 8px;
|
|
745
745
|
display: flex;
|
|
746
746
|
align-items: center;
|
|
747
747
|
column-gap: 4px;
|
|
748
748
|
color: var(--el-text-color-secondary);
|
|
749
749
|
}
|
|
750
|
-
.
|
|
750
|
+
._scrollbar_lodh1_60 {
|
|
751
751
|
margin: 0 -8px;
|
|
752
752
|
}
|
|
753
753
|
/* source: src/components/explorer-modal-form/explorer-modal-form.vue */
|
|
@@ -899,32 +899,32 @@ div._divider_8k9xf_21 {
|
|
|
899
899
|
z-index: 9999 !important;
|
|
900
900
|
}
|
|
901
901
|
/* source: src/components/explorer-tree/explorer-tree.vue */
|
|
902
|
-
.
|
|
902
|
+
._tree_185uk_1 .el-tree-node__content {
|
|
903
903
|
display: flex;
|
|
904
904
|
align-items: center;
|
|
905
905
|
}
|
|
906
|
-
.
|
|
906
|
+
._tree_185uk_1 .el-tree-node__content:hover {
|
|
907
907
|
background-color: var(--el-color-primary-light-9);
|
|
908
908
|
}
|
|
909
|
-
.
|
|
909
|
+
._tree_185uk_1 .el-tree-node__content:hover .vc-actions {
|
|
910
910
|
display: inline-flex;
|
|
911
911
|
}
|
|
912
|
-
.
|
|
912
|
+
._tree_185uk_1 .el-tree-node:focus > .el-tree-node__content {
|
|
913
913
|
background-color: var(--el-color-primary-light-9);
|
|
914
914
|
}
|
|
915
|
-
.
|
|
915
|
+
._tree_185uk_1 .is-current > .el-tree-node__content {
|
|
916
916
|
color: var(--el-color-primary);
|
|
917
917
|
background-color: var(--el-color-primary-light-9);
|
|
918
918
|
}
|
|
919
|
-
.
|
|
919
|
+
._tree_185uk_1 .el-tree__empty-block {
|
|
920
920
|
text-align: left;
|
|
921
921
|
min-height: unset;
|
|
922
922
|
padding: 4px 8px;
|
|
923
923
|
}
|
|
924
|
-
.
|
|
924
|
+
._tree_185uk_1 .el-tree__empty-text {
|
|
925
925
|
position: static;
|
|
926
926
|
}
|
|
927
|
-
.
|
|
927
|
+
._node_185uk_27 {
|
|
928
928
|
display: flex;
|
|
929
929
|
justify-content: space-between;
|
|
930
930
|
align-items: center;
|
|
@@ -933,38 +933,38 @@ div._divider_8k9xf_21 {
|
|
|
933
933
|
box-sizing: border-box;
|
|
934
934
|
width: 100px;
|
|
935
935
|
}
|
|
936
|
-
.
|
|
936
|
+
._label_185uk_37 {
|
|
937
937
|
overflow: hidden;
|
|
938
938
|
text-overflow: ellipsis;
|
|
939
939
|
white-space: nowrap;
|
|
940
940
|
transform: translateY(-1px);
|
|
941
941
|
}
|
|
942
|
-
.
|
|
942
|
+
._label_185uk_37 .iconify {
|
|
943
943
|
margin-right: 4px;
|
|
944
944
|
}
|
|
945
|
-
.
|
|
945
|
+
._actions_185uk_47 {
|
|
946
946
|
display: none;
|
|
947
947
|
column-gap: 4px;
|
|
948
948
|
}
|
|
949
|
-
.
|
|
949
|
+
._actions_185uk_47 > button {
|
|
950
950
|
margin-left: 0 !important;
|
|
951
951
|
font-size: 1.2em;
|
|
952
952
|
border: 1px solid var(--el-border-color-light) !important;
|
|
953
953
|
}
|
|
954
|
-
.
|
|
954
|
+
._actions_185uk_47 > button:hover {
|
|
955
955
|
border-color: var(--el-border-color-dark) !important;
|
|
956
956
|
}
|
|
957
|
-
.
|
|
957
|
+
._remove_185uk_60 {
|
|
958
958
|
transform: translateY(-1px);
|
|
959
959
|
}
|
|
960
|
-
.
|
|
960
|
+
._loading_185uk_64 {
|
|
961
961
|
padding: 4px 8px;
|
|
962
962
|
display: flex;
|
|
963
963
|
align-items: center;
|
|
964
964
|
column-gap: 4px;
|
|
965
965
|
color: var(--el-text-color-secondary);
|
|
966
966
|
}
|
|
967
|
-
.
|
|
967
|
+
._scrollbar_185uk_72 {
|
|
968
968
|
margin: 0 -8px;
|
|
969
969
|
}
|
|
970
970
|
/* source: src/components/explorer/explorer.vue */
|
package/package.json
CHANGED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
interface IPropType {
|
|
2
|
-
name: string;
|
|
3
|
-
}
|
|
4
|
-
declare const _default: import('vue').DefineComponent<IPropType, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<IPropType> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
5
|
-
export default _default;
|