@xiaou66/u-web-ui 0.0.65 → 0.0.67
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/components/menu/ContextMenu/ContextMenu.vue.d.ts +2 -1
- package/dist/components/menu/ContextMenu/ContextMenu.vue.d.ts.map +1 -1
- package/dist/components/menu/ContextMenu/ContextMenuItem.vue.d.ts +21 -4
- package/dist/components/menu/ContextMenu/ContextMenuItem.vue.d.ts.map +1 -1
- package/dist/components/menu/ContextMenu/interface.d.ts +14 -5
- package/dist/components/menu/ContextMenu/interface.d.ts.map +1 -1
- package/dist/index.es.js +96 -97
- package/dist/u-web-ui.css +1 -1
- package/package.json +1 -4
- package/dist/components/Trigger/Trigger.vue.d.ts +0 -4
- package/dist/components/Trigger/Trigger.vue.d.ts.map +0 -1
- package/dist/components/Trigger/index.d.ts +0 -2
- package/dist/components/Trigger/index.d.ts.map +0 -1
- package/dist/components/Trigger/interface.d.ts +0 -2
- package/dist/components/Trigger/interface.d.ts.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ContextMenuProps, TriggerEvent } from './interface';
|
|
1
|
+
import { ContextMenuProps, TriggerEvent, ContextMenuSize } from './interface';
|
|
2
2
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
4
|
attrs: Partial<{}>;
|
|
@@ -18,6 +18,7 @@ declare const __VLS_component: DefineComponent<ContextMenuProps, {}, {}, {}, {},
|
|
|
18
18
|
}, string, PublicProps, Readonly<ContextMenuProps> & Readonly<{
|
|
19
19
|
onSelect?: ((value: any, event: Event) => any) | undefined;
|
|
20
20
|
}>, {
|
|
21
|
+
size: ContextMenuSize;
|
|
21
22
|
hideOnSelect: boolean;
|
|
22
23
|
trigger: TriggerEvent | TriggerEvent[];
|
|
23
24
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ContextMenu.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/menu/ContextMenu/ContextMenu.vue"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"ContextMenu.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/menu/ContextMenu/ContextMenu.vue"],"names":[],"mappings":";AA+LA,OAAO,KAAK,EAAE,gBAAgB,EAAoB,YAAY,EAAE,MAAM,aAAa,CAAA;AA8JnF,iBAAS,cAAc;WAkFT,OAAO,IAA6B;;yBAbrB,GAAG;yBACF,GAAG;;;;;;;EAiBhC;AAiBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;OASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,12 +1,29 @@
|
|
|
1
1
|
import { ContextMenuItemProps } from './interface';
|
|
2
2
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
-
declare
|
|
4
|
-
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
attrs: Partial<{}>;
|
|
5
|
+
slots: {
|
|
6
|
+
default?(_: {}): any;
|
|
7
|
+
icon?(_: {}): any;
|
|
8
|
+
label?(_: {}): any;
|
|
9
|
+
};
|
|
10
|
+
refs: {};
|
|
11
|
+
rootEl: HTMLDivElement;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
+
declare const __VLS_component: DefineComponent<ContextMenuItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
15
|
+
click: (value: string | number | undefined, event: Event) => any;
|
|
5
16
|
}, string, PublicProps, Readonly<ContextMenuItemProps> & Readonly<{
|
|
6
|
-
onClick?: ((value: string | number, event: Event) => any) | undefined;
|
|
17
|
+
onClick?: ((value: string | number | undefined, event: Event) => any) | undefined;
|
|
7
18
|
}>, {
|
|
8
19
|
disabled: boolean;
|
|
9
|
-
|
|
20
|
+
theme: "default" | "danger";
|
|
10
21
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
22
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
11
23
|
export default _default;
|
|
24
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
25
|
+
new (): {
|
|
26
|
+
$slots: S;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
12
29
|
//# sourceMappingURL=ContextMenuItem.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ContextMenuItem.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/menu/ContextMenu/ContextMenuItem.vue"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"ContextMenuItem.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/menu/ContextMenu/ContextMenuItem.vue"],"names":[],"mappings":";AA2EA,OAAO,KAAK,EAAE,oBAAoB,EAAwB,MAAM,aAAa,CAAA;AAkD7E,iBAAS,cAAc;WA+CT,OAAO,IAA6B;;yBAZrB,GAAG;sBACN,GAAG;uBACF,GAAG;;;;EAe7B;AAaD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;wFASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export type TriggerEvent = 'click' | 'context-menu';
|
|
2
|
+
export type ContextMenuSize = 'default' | 'small' | 'mini';
|
|
2
3
|
/**
|
|
3
4
|
* `ContextMenu` 组件的 Props
|
|
4
5
|
*/
|
|
@@ -15,6 +16,12 @@ export interface ContextMenuProps {
|
|
|
15
16
|
* - 可选 click: 点击 | context-menu: 右键菜单
|
|
16
17
|
*/
|
|
17
18
|
trigger?: TriggerEvent | TriggerEvent[];
|
|
19
|
+
/**
|
|
20
|
+
* 菜单大小
|
|
21
|
+
* - 默认:default
|
|
22
|
+
* - 可选 default: 默认大小 | small: 小尺寸 | mini: 迷你尺寸
|
|
23
|
+
*/
|
|
24
|
+
size?: ContextMenuSize;
|
|
18
25
|
}
|
|
19
26
|
/**
|
|
20
27
|
* `ContextMenu` 对外触发的事件
|
|
@@ -33,13 +40,15 @@ export interface ContextMenuEmits {
|
|
|
33
40
|
*/
|
|
34
41
|
export interface ContextMenuItemProps {
|
|
35
42
|
/** 菜单项显示文案 */
|
|
36
|
-
label
|
|
43
|
+
label?: string;
|
|
37
44
|
/** 菜单项值,将在 `select` 事件中原样透传 */
|
|
38
|
-
value
|
|
45
|
+
value?: string | number;
|
|
39
46
|
/** 是否禁用该项,禁用后不响应点击,默认 `false` */
|
|
40
47
|
disabled?: boolean;
|
|
41
|
-
/**
|
|
42
|
-
|
|
48
|
+
/**
|
|
49
|
+
* 菜单项主题,可选 `default` | `danger`
|
|
50
|
+
*/
|
|
51
|
+
theme: 'default' | 'danger';
|
|
43
52
|
/**
|
|
44
53
|
* 图标类名或标识(与样式体系配合使用)。
|
|
45
54
|
* 将作为类名挂载在图标容器上。
|
|
@@ -57,7 +66,7 @@ export interface ContextMenuItemEmits {
|
|
|
57
66
|
* @param value 该菜单项的值
|
|
58
67
|
* @param event 原生事件对象
|
|
59
68
|
*/
|
|
60
|
-
(e: 'click', value: string | number, event: Event): void;
|
|
69
|
+
(e: 'click', value: string | number | undefined, event: Event): void;
|
|
61
70
|
}
|
|
62
71
|
/**
|
|
63
72
|
* `ContextMenuGroup` 分组容器 Props
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interface.d.ts","sourceRoot":"","sources":["../../../../src/components/menu/ContextMenu/interface.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,GAAI,OAAO,GAAG,cAAc,CAAC;AACrD;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;;;OAIG;IACH,OAAO,CAAC,EAAE,YAAY,GAAG,YAAY,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"interface.d.ts","sourceRoot":"","sources":["../../../../src/components/menu/ContextMenu/interface.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,YAAY,GAAI,OAAO,GAAG,cAAc,CAAC;AACrD,MAAM,MAAM,eAAe,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,CAAC;AAE3D;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;;;OAIG;IACH,OAAO,CAAC,EAAE,YAAY,GAAG,YAAY,EAAE,CAAC;IACxC;;;;OAIG;IACH,IAAI,CAAC,EAAE,eAAe,CAAC;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B;;;;;OAKG;IACH,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,CAAC;CAC/C;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,cAAc;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+BAA+B;IAC/B,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB,iCAAiC;IACjC,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;OAEG;IACH,KAAK,EAAE,SAAS,GAAG,QAAQ,CAAC;IAC5B;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC;;;;;;OAMG;IACH,CAAC,CAAC,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,CAAC;CACtE;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,uBAAuB;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC,iBAAiB;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,2BAA2B;IAC3B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,oBAAoB;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC;;;;;;OAMG;IACH,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,GAAG,IAAI,CAAC;CAC/C"}
|
package/dist/index.es.js
CHANGED
|
@@ -120,7 +120,7 @@ var ge = /* @__PURE__ */ f({
|
|
|
120
120
|
_: 3
|
|
121
121
|
}));
|
|
122
122
|
}
|
|
123
|
-
}), _e =
|
|
123
|
+
}), _e = /* @__PURE__ */ f({
|
|
124
124
|
__name: "WebBaseLayout",
|
|
125
125
|
setup(e) {
|
|
126
126
|
return (e, t) => {
|
|
@@ -146,14 +146,14 @@ var ge = /* @__PURE__ */ f({
|
|
|
146
146
|
});
|
|
147
147
|
};
|
|
148
148
|
}
|
|
149
|
-
})
|
|
150
|
-
let
|
|
149
|
+
});
|
|
150
|
+
let ve = /* @__PURE__ */ function(e) {
|
|
151
151
|
return e.Refresh = "u:leftMenu:refresh", e;
|
|
152
152
|
}({});
|
|
153
|
-
const
|
|
154
|
-
window.dispatchEvent(new CustomEvent(
|
|
153
|
+
const ye = { refresh: () => {
|
|
154
|
+
window.dispatchEvent(new CustomEvent(ve.Refresh));
|
|
155
155
|
} };
|
|
156
|
-
var
|
|
156
|
+
var be = /* @__PURE__ */ f({
|
|
157
157
|
__name: "LeftMenu",
|
|
158
158
|
props: /* @__PURE__ */ h({
|
|
159
159
|
hideOperations: {
|
|
@@ -195,7 +195,7 @@ var Se = /* @__PURE__ */ f({
|
|
|
195
195
|
function _(e) {
|
|
196
196
|
return e.children ? e.children.filter((e) => e.meta?.menu) : [];
|
|
197
197
|
}
|
|
198
|
-
return r.refreshEventListener && ae(document,
|
|
198
|
+
return r.refreshEventListener && ae(document, ve.Refresh, h), n({
|
|
199
199
|
changeCollapsed: s,
|
|
200
200
|
refreshRouter: h
|
|
201
201
|
}), (t, n) => {
|
|
@@ -259,7 +259,7 @@ var Se = /* @__PURE__ */ f({
|
|
|
259
259
|
]);
|
|
260
260
|
};
|
|
261
261
|
}
|
|
262
|
-
}),
|
|
262
|
+
}), xe = /* @__PURE__ */ f({
|
|
263
263
|
__name: "ContextMenuItem",
|
|
264
264
|
props: {
|
|
265
265
|
label: {},
|
|
@@ -268,10 +268,7 @@ var Se = /* @__PURE__ */ f({
|
|
|
268
268
|
type: Boolean,
|
|
269
269
|
default: !1
|
|
270
270
|
},
|
|
271
|
-
|
|
272
|
-
type: Boolean,
|
|
273
|
-
default: !1
|
|
274
|
-
},
|
|
271
|
+
theme: { default: "default" },
|
|
275
272
|
icon: {}
|
|
276
273
|
},
|
|
277
274
|
emits: ["click"],
|
|
@@ -294,16 +291,16 @@ var Se = /* @__PURE__ */ f({
|
|
|
294
291
|
return (e, t) => (S(), o("div", {
|
|
295
292
|
class: v([N(i)(), {
|
|
296
293
|
[N(i)("disabled")]: e.disabled,
|
|
297
|
-
[N(i)("danger")]: e.danger
|
|
294
|
+
[N(i)("danger")]: e.theme === "danger"
|
|
298
295
|
}]),
|
|
299
296
|
onClick: l,
|
|
300
297
|
onContextmenu: z(u, ["prevent", "stop"])
|
|
301
|
-
}, [e.icon ? (S(), o("span", {
|
|
298
|
+
}, [D(e.$slots, "default", {}, () => [D(e.$slots, "icon", {}, () => [e.icon ? (S(), o("span", {
|
|
302
299
|
key: 0,
|
|
303
300
|
class: v([N(i)("icon"), e.icon])
|
|
304
|
-
}, A(e.icon), 3)) : a("", !0), s("span", { class: v(N(i)("label")) }, A(e.label), 3)], 34));
|
|
301
|
+
}, A(e.icon), 3)) : a("", !0)]), D(e.$slots, "label", {}, () => [s("span", { class: v(N(i)("label")) }, A(e.label), 3)])])], 34));
|
|
305
302
|
}
|
|
306
|
-
}),
|
|
303
|
+
}), Se = /* @__PURE__ */ f({
|
|
307
304
|
__name: "ContextMenuGroup",
|
|
308
305
|
props: { title: {} },
|
|
309
306
|
setup(e) {
|
|
@@ -313,12 +310,12 @@ var Se = /* @__PURE__ */ f({
|
|
|
313
310
|
class: v(N(t)("title"))
|
|
314
311
|
}, A(e.title), 3)) : a("", !0), D(e.$slots, "default")], 2));
|
|
315
312
|
}
|
|
316
|
-
}),
|
|
313
|
+
}), Ce = /* @__PURE__ */ f({
|
|
317
314
|
__name: "ContextMenuDivider",
|
|
318
315
|
setup(e) {
|
|
319
316
|
return (e, t) => (S(), o("div", { class: v(N(Y)("context-menu-divider")) }, null, 2));
|
|
320
317
|
}
|
|
321
|
-
}),
|
|
318
|
+
}), we = /* @__PURE__ */ f({
|
|
322
319
|
__name: "ContextMenuSubmenu",
|
|
323
320
|
props: {
|
|
324
321
|
label: {},
|
|
@@ -334,7 +331,7 @@ var Se = /* @__PURE__ */ f({
|
|
|
334
331
|
left: "0px",
|
|
335
332
|
top: "0px"
|
|
336
333
|
}), h = m("handleSelect", null), g = null, E = null, O = !1, k = !1, j = () => {
|
|
337
|
-
g
|
|
334
|
+
g &&= (clearTimeout(g), null), E &&= (clearTimeout(E), null);
|
|
338
335
|
}, M = () => {
|
|
339
336
|
n.disabled || !u.value || (j(), p.left = "100%", p.top = "0px", f.value = !0, _(() => {
|
|
340
337
|
F();
|
|
@@ -431,14 +428,15 @@ var Se = /* @__PURE__ */ f({
|
|
|
431
428
|
}, [D(e.$slots, "default")], 38)) : a("", !0)
|
|
432
429
|
], 34));
|
|
433
430
|
}
|
|
434
|
-
}),
|
|
431
|
+
}), Te = /* @__PURE__ */ f({
|
|
435
432
|
__name: "ContextMenu",
|
|
436
433
|
props: {
|
|
437
434
|
hideOnSelect: {
|
|
438
435
|
type: Boolean,
|
|
439
436
|
default: !0
|
|
440
437
|
},
|
|
441
|
-
trigger: { default: "context-menu" }
|
|
438
|
+
trigger: { default: "context-menu" },
|
|
439
|
+
size: { default: "default" }
|
|
442
440
|
},
|
|
443
441
|
emits: ["select"],
|
|
444
442
|
setup(r, { emit: c }) {
|
|
@@ -490,7 +488,7 @@ var Se = /* @__PURE__ */ f({
|
|
|
490
488
|
key: 0,
|
|
491
489
|
ref_key: "menuRef",
|
|
492
490
|
ref: m,
|
|
493
|
-
class: v(N(f)("menu")),
|
|
491
|
+
class: v([N(f)("menu"), N(f)(`menu-${l.size}`)]),
|
|
494
492
|
style: y(E),
|
|
495
493
|
onContextmenu: c[0] ||= z(() => {}, ["prevent"])
|
|
496
494
|
}, [D(r.$slots, "content")], 38)) : a("", !0)]),
|
|
@@ -504,12 +502,12 @@ var Se = /* @__PURE__ */ f({
|
|
|
504
502
|
}, null, 34)) : a("", !0)]))
|
|
505
503
|
], 64));
|
|
506
504
|
}
|
|
507
|
-
}),
|
|
505
|
+
}), Ee = /* @__PURE__ */ f({
|
|
508
506
|
__name: "WebLayout",
|
|
509
507
|
setup(e) {
|
|
510
508
|
return (e, t) => {
|
|
511
509
|
let n = W, r = O("router-view");
|
|
512
|
-
return S(), i(
|
|
510
|
+
return S(), i(_e, null, {
|
|
513
511
|
header: R(() => [d(n, {
|
|
514
512
|
value: "item1",
|
|
515
513
|
height: "60px"
|
|
@@ -522,13 +520,13 @@ var Se = /* @__PURE__ */ f({
|
|
|
522
520
|
fn: R(() => [D(e.$slots, "operations")]),
|
|
523
521
|
key: "1"
|
|
524
522
|
} : void 0]), 1024)]),
|
|
525
|
-
left: R(() => [D(e.$slots, "left", {}, () => [d(N(
|
|
523
|
+
left: R(() => [D(e.$slots, "left", {}, () => [d(N(be))])]),
|
|
526
524
|
default: R(() => [D(e.$slots, "default", {}, () => [s("div", { class: v([N(Y)("main-content-inner")]) }, [d(r)], 2)])]),
|
|
527
525
|
_: 3
|
|
528
526
|
});
|
|
529
527
|
};
|
|
530
528
|
}
|
|
531
|
-
}),
|
|
529
|
+
}), De = /* @__PURE__ */ f({
|
|
532
530
|
__name: "SplitPanel",
|
|
533
531
|
props: {
|
|
534
532
|
component: { default: "div" },
|
|
@@ -680,7 +678,7 @@ var Se = /* @__PURE__ */ f({
|
|
|
680
678
|
_: 3
|
|
681
679
|
}, 8, ["class"]));
|
|
682
680
|
}
|
|
683
|
-
}),
|
|
681
|
+
}), Oe = /* @__PURE__ */ f({
|
|
684
682
|
__name: "UtoolsBaseLayout",
|
|
685
683
|
setup(e) {
|
|
686
684
|
return (e, t) => {
|
|
@@ -700,12 +698,12 @@ var Se = /* @__PURE__ */ f({
|
|
|
700
698
|
});
|
|
701
699
|
};
|
|
702
700
|
}
|
|
703
|
-
})
|
|
704
|
-
const
|
|
701
|
+
});
|
|
702
|
+
const ke = { class: "utools" }, Ae = { class: "w-8 h-auto overflow-hidden" }, je = ["src"], Me = { class: "title pl-5" }, Ne = { class: "flex justify-end h-full pr-3 w-full" }, Pe = { class: "content" }, Fe = { class: "content-inner" }, Ie = {
|
|
705
703
|
class: "flex items-center justify-center",
|
|
706
704
|
style: { "font-size": "10px" }
|
|
707
705
|
};
|
|
708
|
-
var
|
|
706
|
+
var Le = /* @__PURE__ */ f({
|
|
709
707
|
__name: "UtoolsLayout",
|
|
710
708
|
props: {
|
|
711
709
|
avatar: { default: "https://www.u-tools.cn/assets/favicon.png" },
|
|
@@ -718,11 +716,11 @@ var Je = /* @__PURE__ */ f({
|
|
|
718
716
|
let t = T(), n = T(!0);
|
|
719
717
|
return (e, r) => {
|
|
720
718
|
let i = O("router-view");
|
|
721
|
-
return S(), o("div",
|
|
719
|
+
return S(), o("div", ke, [d(Oe, null, {
|
|
722
720
|
left: R(() => [s("div", { class: v(N(Y)("utools", "left-menu")) }, [s("div", {
|
|
723
721
|
class: v(["flex items-center justify-center", N(Y)("utools", "left-menu", "collapse")]),
|
|
724
722
|
onClick: r[0] ||= (e) => t.value?.changeCollapsed()
|
|
725
|
-
}, [s("div", { class: v(["w-5 h-5 font-bold", n.value ? "i-p-expandLeft" : "i-p-expandRight"]) }, null, 2)], 2), d(N(
|
|
723
|
+
}, [s("div", { class: v(["w-5 h-5 font-bold", n.value ? "i-p-expandLeft" : "i-p-expandRight"]) }, null, 2)], 2), d(N(be), g({
|
|
726
724
|
ref_key: "leftMenuRef",
|
|
727
725
|
ref: t
|
|
728
726
|
}, {
|
|
@@ -734,23 +732,23 @@ var Je = /* @__PURE__ */ f({
|
|
|
734
732
|
"onUpdate:collapsed": r[1] ||= (e) => n.value = e,
|
|
735
733
|
hideOperations: ""
|
|
736
734
|
}), {
|
|
737
|
-
logo: R(() => [s("div",
|
|
735
|
+
logo: R(() => [s("div", Ae, [s("img", {
|
|
738
736
|
class: "logo w-full h-full rounded-full",
|
|
739
737
|
src: e.avatar,
|
|
740
738
|
alt: "logo"
|
|
741
|
-
}, null, 8,
|
|
739
|
+
}, null, 8, je)]), s("div", Me, A(e.title), 1)]),
|
|
742
740
|
_: 1
|
|
743
741
|
}, 16, ["collapsed"])], 2)]),
|
|
744
742
|
default: R(() => [s("div", { class: v(N(Y)("utools", "content-wrapper")) }, [
|
|
745
|
-
s("div",
|
|
746
|
-
s("div",
|
|
747
|
-
D(e.$slots, "footer", {}, () => [s("div",
|
|
743
|
+
s("div", Ne, [D(e.$slots, "header-tips")]),
|
|
744
|
+
s("div", Pe, [s("div", Fe, [d(i)])]),
|
|
745
|
+
D(e.$slots, "footer", {}, () => [s("div", Ie, " © " + A((/* @__PURE__ */ new Date()).getFullYear()) + " [xiaou]。保留所有权利 ", 1)])
|
|
748
746
|
], 2)]),
|
|
749
747
|
_: 3
|
|
750
748
|
})]);
|
|
751
749
|
};
|
|
752
750
|
}
|
|
753
|
-
}),
|
|
751
|
+
}), Re = /* @__PURE__ */ f({
|
|
754
752
|
__name: "PageHeader",
|
|
755
753
|
props: {
|
|
756
754
|
title: { default: "" },
|
|
@@ -787,40 +785,40 @@ var Je = /* @__PURE__ */ f({
|
|
|
787
785
|
}, [D(e.$slots, "extra")], 2)) : a("", !0)], 2);
|
|
788
786
|
};
|
|
789
787
|
}
|
|
790
|
-
}),
|
|
788
|
+
}), ze = (e, t) => {
|
|
791
789
|
let n = e.__vccOpts || e;
|
|
792
790
|
for (let [e, r] of t) n[e] = r;
|
|
793
791
|
return n;
|
|
794
792
|
};
|
|
795
|
-
const
|
|
796
|
-
function
|
|
797
|
-
return S(), o("div",
|
|
793
|
+
const Be = {}, Ve = { class: "result-error-icon" };
|
|
794
|
+
function He(e, t) {
|
|
795
|
+
return S(), o("div", Ve, t[0] ||= [l("<svg width=\"240\" height=\"160\" viewBox=\"0 0 240 160\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" data-v-fc6ebdc7><g opacity=\"0.8\" data-v-fc6ebdc7><path d=\"M120 80C120 124.183 84.1828 160 40 160C-4.18278 160 -40 124.183 -40 80C-40 35.8172 -4.18278 0 40 0C84.1828 0 120 35.8172 120 80Z\" fill=\"var(--u-text-color-placeholder)\" opacity=\"0.1\" data-v-fc6ebdc7></path><path d=\"M280 80C280 124.183 244.183 160 200 160C155.817 160 120 124.183 120 80C120 35.8172 155.817 0 200 0C244.183 0 280 35.8172 280 80Z\" fill=\"var(--u-text-color-placeholder)\" opacity=\"0.1\" data-v-fc6ebdc7></path></g><rect x=\"60\" y=\"40\" width=\"120\" height=\"80\" rx=\"8\" fill=\"var(--u-bg-color-3)\" stroke=\"var(--u-text-color-placeholder)\" stroke-width=\"2\" data-v-fc6ebdc7></rect><path d=\"M90 60H150M90 80H150M90 100H130\" stroke=\"var(--u-text-color-placeholder)\" stroke-width=\"2\" stroke-linecap=\"round\" data-v-fc6ebdc7></path><circle cx=\"120\" cy=\"80\" r=\"20\" fill=\"none\" stroke=\"rgb(var(--red-6))\" stroke-width=\"3\" data-v-fc6ebdc7></circle><path d=\"M110 70L130 90M130 70L110 90\" stroke=\"rgb(var(--red-6))\" stroke-width=\"3\" stroke-linecap=\"round\" data-v-fc6ebdc7></path></svg><div class=\"result-error-text\" data-v-fc6ebdc7>403</div>", 2)]);
|
|
798
796
|
}
|
|
799
|
-
var
|
|
800
|
-
const
|
|
801
|
-
function
|
|
802
|
-
return S(), o("div",
|
|
797
|
+
var Ue = /* @__PURE__ */ ze(Be, [["render", He], ["__scopeId", "data-v-fc6ebdc7"]]);
|
|
798
|
+
const We = {}, Ge = { class: "result-error-icon" };
|
|
799
|
+
function Ke(e, t) {
|
|
800
|
+
return S(), o("div", Ge, t[0] ||= [l("<svg width=\"240\" height=\"160\" viewBox=\"0 0 240 160\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" data-v-cdc3b8a1><g opacity=\"0.8\" data-v-cdc3b8a1><path d=\"M120 80C120 124.183 84.1828 160 40 160C-4.18278 160 -40 124.183 -40 80C-40 35.8172 -4.18278 0 40 0C84.1828 0 120 35.8172 120 80Z\" fill=\"var(--u-text-color-placeholder)\" opacity=\"0.1\" data-v-cdc3b8a1></path><path d=\"M280 80C280 124.183 244.183 160 200 160C155.817 160 120 124.183 120 80C120 35.8172 155.817 0 200 0C244.183 0 280 35.8172 280 80Z\" fill=\"var(--u-text-color-placeholder)\" opacity=\"0.1\" data-v-cdc3b8a1></path></g><rect x=\"60\" y=\"40\" width=\"120\" height=\"80\" rx=\"8\" fill=\"var(--u-bg-color-3)\" stroke=\"var(--u-text-color-placeholder)\" stroke-width=\"2\" data-v-cdc3b8a1></rect><path d=\"M90 60H150M90 80H150M90 100H130\" stroke=\"var(--u-text-color-placeholder)\" stroke-width=\"2\" stroke-linecap=\"round\" data-v-cdc3b8a1></path><circle cx=\"120\" cy=\"80\" r=\"25\" fill=\"none\" stroke=\"var(--u-text-color-placeholder)\" stroke-width=\"3\" data-v-cdc3b8a1></circle><path d=\"M105 65L135 95\" stroke=\"var(--u-text-color-placeholder)\" stroke-width=\"3\" stroke-linecap=\"round\" data-v-cdc3b8a1></path><circle cx=\"110\" cy=\"75\" r=\"3\" fill=\"var(--u-text-color-placeholder)\" data-v-cdc3b8a1></circle><circle cx=\"130\" cy=\"85\" r=\"3\" fill=\"var(--u-text-color-placeholder)\" data-v-cdc3b8a1></circle></svg><div class=\"result-error-text\" data-v-cdc3b8a1>404</div>", 2)]);
|
|
803
801
|
}
|
|
804
|
-
var
|
|
805
|
-
const
|
|
806
|
-
function
|
|
807
|
-
return S(), o("div",
|
|
802
|
+
var qe = /* @__PURE__ */ ze(We, [["render", Ke], ["__scopeId", "data-v-cdc3b8a1"]]);
|
|
803
|
+
const Je = {}, Ye = { class: "result-error-icon" };
|
|
804
|
+
function Xe(e, t) {
|
|
805
|
+
return S(), o("div", Ye, t[0] ||= [l("<svg width=\"240\" height=\"160\" viewBox=\"0 0 240 160\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" data-v-cb66ef61><g opacity=\"0.8\" data-v-cb66ef61><path d=\"M120 80C120 124.183 84.1828 160 40 160C-4.18278 160 -40 124.183 -40 80C-40 35.8172 -4.18278 0 40 0C84.1828 0 120 35.8172 120 80Z\" fill=\"var(--u-text-color-placeholder)\" opacity=\"0.1\" data-v-cb66ef61></path><path d=\"M280 80C280 124.183 244.183 160 200 160C155.817 160 120 124.183 120 80C120 35.8172 155.817 0 200 0C244.183 0 280 35.8172 280 80Z\" fill=\"var(--u-text-color-placeholder)\" opacity=\"0.1\" data-v-cb66ef61></path></g><rect x=\"60\" y=\"40\" width=\"120\" height=\"80\" rx=\"8\" fill=\"var(--u-bg-color-3)\" stroke=\"var(--u-text-color-placeholder)\" stroke-width=\"2\" data-v-cb66ef61></rect><path d=\"M90 60H150M90 80H150M90 100H130\" stroke=\"var(--u-text-color-placeholder)\" stroke-width=\"2\" stroke-linecap=\"round\" data-v-cb66ef61></path><rect x=\"100\" y=\"65\" width=\"40\" height=\"30\" rx=\"4\" fill=\"none\" stroke=\"rgb(var(--red-6))\" stroke-width=\"2\" data-v-cb66ef61></rect><path d=\"M110 75L130 85M130 75L110 85\" stroke=\"rgb(var(--red-6))\" stroke-width=\"2\" stroke-linecap=\"round\" data-v-cb66ef61></path><path d=\"M115 55L125 65\" stroke=\"rgb(var(--red-6))\" stroke-width=\"2\" stroke-linecap=\"round\" data-v-cb66ef61></path><circle cx=\"118\" cy=\"52\" r=\"2\" fill=\"rgb(var(--red-6))\" data-v-cb66ef61></circle></svg><div class=\"result-error-text\" data-v-cb66ef61>500</div>", 2)]);
|
|
808
806
|
}
|
|
809
|
-
var
|
|
810
|
-
const
|
|
807
|
+
var Ze = /* @__PURE__ */ ze(Je, [["render", Xe], ["__scopeId", "data-v-cb66ef61"]]);
|
|
808
|
+
const Qe = {
|
|
811
809
|
key: 0,
|
|
812
810
|
class: "i-p-info w-12 h-12"
|
|
813
|
-
},
|
|
811
|
+
}, $e = {
|
|
814
812
|
key: 1,
|
|
815
813
|
class: "i-p-check"
|
|
816
|
-
},
|
|
814
|
+
}, et = {
|
|
817
815
|
key: 2,
|
|
818
816
|
class: "i-p-info w-12 h-12"
|
|
819
|
-
},
|
|
817
|
+
}, tt = {
|
|
820
818
|
key: 3,
|
|
821
819
|
class: "i-p-close"
|
|
822
820
|
};
|
|
823
|
-
var
|
|
821
|
+
var nt = /* @__PURE__ */ f({
|
|
824
822
|
__name: "Result",
|
|
825
823
|
props: {
|
|
826
824
|
status: { default: "info" },
|
|
@@ -844,7 +842,7 @@ var ht = /* @__PURE__ */ f({
|
|
|
844
842
|
s("div", { class: v([`${N(c)}-icon`, {
|
|
845
843
|
[`${N(c)}-icon-${e.status}`]: e.status,
|
|
846
844
|
[`${N(c)}-icon-custom`]: e.status === null
|
|
847
|
-
}]) }, [s("div", { class: v(`${N(c)}-icon-tip`) }, [D(e.$slots, "icon", {}, () => [e.status === "info" ? (S(), o("span",
|
|
845
|
+
}]) }, [s("div", { class: v(`${N(c)}-icon-tip`) }, [D(e.$slots, "icon", {}, () => [e.status === "info" ? (S(), o("span", Qe)) : e.status === "success" ? (S(), o("span", $e)) : e.status === "warning" ? (S(), o("span", et)) : e.status === "error" ? (S(), o("span", tt)) : e.status === "403" ? (S(), i(Ue, { key: 4 })) : e.status === "404" ? (S(), i(qe, { key: 5 })) : e.status === "500" ? (S(), i(Ze, { key: 6 })) : a("", !0)])], 2)], 2),
|
|
848
846
|
e.title || e.$slots.title ? (S(), o("div", {
|
|
849
847
|
key: 0,
|
|
850
848
|
class: v(`${N(c)}-title`)
|
|
@@ -863,9 +861,9 @@ var ht = /* @__PURE__ */ f({
|
|
|
863
861
|
}, [D(e.$slots, "default")], 2)) : a("", !0)
|
|
864
862
|
], 2));
|
|
865
863
|
}
|
|
866
|
-
})
|
|
867
|
-
const
|
|
868
|
-
var
|
|
864
|
+
});
|
|
865
|
+
const rt = { class: "flex justify-between items-center" };
|
|
866
|
+
var it = /* @__PURE__ */ f({
|
|
869
867
|
__name: "SettingItem",
|
|
870
868
|
props: {
|
|
871
869
|
title: {},
|
|
@@ -892,22 +890,22 @@ var vt = /* @__PURE__ */ f({
|
|
|
892
890
|
}, j({ ...i.value && { click: e.$attrs.onClick || e.$attrs.onClickCapture } }, !0), {
|
|
893
891
|
onMouseenter: l,
|
|
894
892
|
onMouseleave: d
|
|
895
|
-
}), [s("div",
|
|
893
|
+
}), [s("div", rt, [s("div", null, [s("div", { class: v(["u-fx u-gap5 u-fac", N(Y)("setting-item-title")]) }, [D(e.$slots, "title", {}, () => [u(A(e.title), 1)])], 2), D(e.$slots, "desc", {}, () => [s("div", { class: v(N(Y)("setting-item-desc")) }, A(e.desc), 3)])]), s("div", null, [D(e.$slots, "default")])]), s("div", null, [D(e.$slots, "extra")])], 16));
|
|
896
894
|
}
|
|
897
|
-
}),
|
|
895
|
+
}), at = /* @__PURE__ */ f({
|
|
898
896
|
__name: "SettingDivision",
|
|
899
897
|
setup(e) {
|
|
900
898
|
return (e, t) => (S(), o("div", { class: v(N(Y)("setting-division")) }, null, 2));
|
|
901
899
|
}
|
|
902
|
-
})
|
|
903
|
-
const
|
|
904
|
-
var
|
|
900
|
+
});
|
|
901
|
+
const ot = { key: 0 };
|
|
902
|
+
var st = /* @__PURE__ */ f({
|
|
905
903
|
__name: "SettingGroup",
|
|
906
904
|
props: { title: {} },
|
|
907
905
|
setup(e) {
|
|
908
|
-
return (e, t) => (S(), o("div", { class: v([N(Y)("setting-group")]) }, [s("div", { class: v(N(Y)("setting-group-header")) }, [s("div", { class: v(N(Y)("setting-group-title")) }, A(e.title), 3), e.$slots.desc ? (S(), o("div",
|
|
906
|
+
return (e, t) => (S(), o("div", { class: v([N(Y)("setting-group")]) }, [s("div", { class: v(N(Y)("setting-group-header")) }, [s("div", { class: v(N(Y)("setting-group-title")) }, A(e.title), 3), e.$slots.desc ? (S(), o("div", ot, [D(e.$slots, "desc")])) : a("", !0)], 2), s("div", null, [D(e.$slots, "default")])], 2));
|
|
909
907
|
}
|
|
910
|
-
}),
|
|
908
|
+
}), ct = /* @__PURE__ */ f({
|
|
911
909
|
name: "SwitchEnable",
|
|
912
910
|
inheritAttrs: !1,
|
|
913
911
|
__name: "SwitchEnable",
|
|
@@ -954,9 +952,9 @@ var Ct = /* @__PURE__ */ f({
|
|
|
954
952
|
}), null, 16, ["class", "modelValue"]);
|
|
955
953
|
};
|
|
956
954
|
}
|
|
957
|
-
})
|
|
958
|
-
const
|
|
959
|
-
var
|
|
955
|
+
});
|
|
956
|
+
const lt = ["aria-checked", "disabled"];
|
|
957
|
+
var ut = /* @__PURE__ */ f({
|
|
960
958
|
name: "SwitchPlus",
|
|
961
959
|
__name: "SwitchPlus",
|
|
962
960
|
props: /* @__PURE__ */ h({
|
|
@@ -1080,9 +1078,9 @@ var Ot = /* @__PURE__ */ f({
|
|
|
1080
1078
|
}, [s("span", { class: v(`${N(m)}-handle-icon`) }, [x.value ? (S(), o("span", {
|
|
1081
1079
|
key: 0,
|
|
1082
1080
|
class: v(["i-p-loading", `${N(m)}-loading-icon`])
|
|
1083
|
-
}, null, 2)) : (S(), o(e, { key: 1 }, [_.value ? D(t.$slots, "checked-icon", { key: 0 }) : D(t.$slots, "unchecked-icon", { key: 1 })], 64))], 2)], 6), t.type !== "line" && N(f) !== "small" && (N(d).checked || t.checkedText || N(d).unchecked || t.uncheckedText) ? (S(), o(e, { key: 0 }, [s("span", { class: v(`${N(m)}-text-holder`) }, [_.value ? D(t.$slots, "checked", { key: 0 }, () => [u(A(t.checkedText), 1)]) : D(t.$slots, "unchecked", { key: 1 }, () => [u(A(t.uncheckedText), 1)])], 2), s("span", { class: v(`${N(m)}-text`) }, [_.value ? D(t.$slots, "checked", { key: 0 }, () => [u(A(t.checkedText), 1)]) : D(t.$slots, "unchecked", { key: 1 }, () => [u(A(t.uncheckedText), 1)])], 2)], 64)) : a("", !0)], 46,
|
|
1081
|
+
}, null, 2)) : (S(), o(e, { key: 1 }, [_.value ? D(t.$slots, "checked-icon", { key: 0 }) : D(t.$slots, "unchecked-icon", { key: 1 })], 64))], 2)], 6), t.type !== "line" && N(f) !== "small" && (N(d).checked || t.checkedText || N(d).unchecked || t.uncheckedText) ? (S(), o(e, { key: 0 }, [s("span", { class: v(`${N(m)}-text-holder`) }, [_.value ? D(t.$slots, "checked", { key: 0 }, () => [u(A(t.checkedText), 1)]) : D(t.$slots, "unchecked", { key: 1 }, () => [u(A(t.uncheckedText), 1)])], 2), s("span", { class: v(`${N(m)}-text`) }, [_.value ? D(t.$slots, "checked", { key: 0 }, () => [u(A(t.checkedText), 1)]) : D(t.$slots, "unchecked", { key: 1 }, () => [u(A(t.uncheckedText), 1)])], 2)], 64)) : a("", !0)], 46, lt));
|
|
1084
1082
|
}
|
|
1085
|
-
}),
|
|
1083
|
+
}), dt = /* @__PURE__ */ f({
|
|
1086
1084
|
__name: "SwitchPlusEnable",
|
|
1087
1085
|
props: /* @__PURE__ */ h({
|
|
1088
1086
|
modelValue: { type: [
|
|
@@ -1139,7 +1137,7 @@ var Ot = /* @__PURE__ */ f({
|
|
|
1139
1137
|
emits: ["update:value"],
|
|
1140
1138
|
setup(e) {
|
|
1141
1139
|
let t = F(e, "value"), n = e;
|
|
1142
|
-
return (e, r) => (S(), i(
|
|
1140
|
+
return (e, r) => (S(), i(ut, g({
|
|
1143
1141
|
value: t.value,
|
|
1144
1142
|
"onUpdate:value": r[0] ||= (e) => t.value = e
|
|
1145
1143
|
}, n), {
|
|
@@ -1160,7 +1158,7 @@ var Ot = /* @__PURE__ */ f({
|
|
|
1160
1158
|
_: 1
|
|
1161
1159
|
}, 16, ["value"]));
|
|
1162
1160
|
}
|
|
1163
|
-
}),
|
|
1161
|
+
}), ft = /* @__PURE__ */ f({
|
|
1164
1162
|
__name: "thumb",
|
|
1165
1163
|
props: {
|
|
1166
1164
|
data: {},
|
|
@@ -1223,7 +1221,7 @@ var Ot = /* @__PURE__ */ f({
|
|
|
1223
1221
|
onMousedown: g
|
|
1224
1222
|
}, [s("div", { class: v(`${N(c)}-thumb-bar`) }, null, 2)], 38)], 34));
|
|
1225
1223
|
}
|
|
1226
|
-
}),
|
|
1224
|
+
}), pt = /* @__PURE__ */ f({
|
|
1227
1225
|
__name: "Scrollbar",
|
|
1228
1226
|
props: {
|
|
1229
1227
|
type: { default: "embed" },
|
|
@@ -1282,7 +1280,7 @@ var Ot = /* @__PURE__ */ f({
|
|
|
1282
1280
|
e && k.observe(e);
|
|
1283
1281
|
}
|
|
1284
1282
|
}), x(() => {
|
|
1285
|
-
k
|
|
1283
|
+
k &&= (k.disconnect(), null);
|
|
1286
1284
|
});
|
|
1287
1285
|
let M = (e) => {
|
|
1288
1286
|
if (d.value) {
|
|
@@ -1328,7 +1326,7 @@ var Ot = /* @__PURE__ */ f({
|
|
|
1328
1326
|
ref: d,
|
|
1329
1327
|
class: `${N(u)}-container`
|
|
1330
1328
|
}, e.$attrs, { onScroll: M }), [D(e.$slots, "default")], 16),
|
|
1331
|
-
!e.hide && w.value ? (S(), i(
|
|
1329
|
+
!e.hide && w.value ? (S(), i(ft, {
|
|
1332
1330
|
key: 0,
|
|
1333
1331
|
ref_key: "horizontalThumbRef",
|
|
1334
1332
|
ref: m,
|
|
@@ -1337,7 +1335,7 @@ var Ot = /* @__PURE__ */ f({
|
|
|
1337
1335
|
both: O.value,
|
|
1338
1336
|
onScroll: P
|
|
1339
1337
|
}, null, 8, ["data", "both"])) : a("", !0),
|
|
1340
|
-
!e.hide && E.value ? (S(), i(
|
|
1338
|
+
!e.hide && E.value ? (S(), i(ft, {
|
|
1341
1339
|
key: 1,
|
|
1342
1340
|
ref_key: "verticalThumbRef",
|
|
1343
1341
|
ref: h,
|
|
@@ -1348,9 +1346,10 @@ var Ot = /* @__PURE__ */ f({
|
|
|
1348
1346
|
}, null, 8, ["data", "both"])) : a("", !0)
|
|
1349
1347
|
], 6));
|
|
1350
1348
|
}
|
|
1351
|
-
}),
|
|
1352
|
-
|
|
1353
|
-
|
|
1349
|
+
}), mt = class {
|
|
1350
|
+
constructor() {
|
|
1351
|
+
this.observers = /* @__PURE__ */ new Map(), this.entries = /* @__PURE__ */ new Map();
|
|
1352
|
+
}
|
|
1354
1353
|
getStats() {
|
|
1355
1354
|
return {
|
|
1356
1355
|
observerCount: this.observers.size,
|
|
@@ -1388,12 +1387,12 @@ var Ot = /* @__PURE__ */ f({
|
|
|
1388
1387
|
!i && r && (r.disconnect(), this.observers.delete(n));
|
|
1389
1388
|
}
|
|
1390
1389
|
};
|
|
1391
|
-
const
|
|
1392
|
-
function
|
|
1390
|
+
const ht = new mt();
|
|
1391
|
+
function gt(e, t = {}) {
|
|
1393
1392
|
let n = null, r = (r) => {
|
|
1394
|
-
r && !n && (n =
|
|
1393
|
+
r && !n && (n = ht.observe(r, e, t));
|
|
1395
1394
|
}, i = () => {
|
|
1396
|
-
n
|
|
1395
|
+
n &&= (n(), null);
|
|
1397
1396
|
};
|
|
1398
1397
|
return x(() => {
|
|
1399
1398
|
i();
|
|
@@ -1402,7 +1401,7 @@ function Rt(e, t = {}) {
|
|
|
1402
1401
|
stop: i
|
|
1403
1402
|
};
|
|
1404
1403
|
}
|
|
1405
|
-
var
|
|
1404
|
+
var _t = /* @__PURE__ */ f({
|
|
1406
1405
|
__name: "LazyLoader",
|
|
1407
1406
|
props: {
|
|
1408
1407
|
w: { default: "100%" },
|
|
@@ -1411,7 +1410,7 @@ var zt = /* @__PURE__ */ f({
|
|
|
1411
1410
|
},
|
|
1412
1411
|
emits: ["load"],
|
|
1413
1412
|
setup(e, { emit: t }) {
|
|
1414
|
-
let n = e, r = t, i = T(!1), a = T(), { start: s, stop: c } =
|
|
1413
|
+
let n = e, r = t, i = T(!1), a = T(), { start: s, stop: c } = gt((e) => {
|
|
1415
1414
|
e && (i.value = !0, r("load"), c());
|
|
1416
1415
|
}, { rootMargin: `${n.distance}px` });
|
|
1417
1416
|
return L(a, (e) => {
|
|
@@ -1426,15 +1425,15 @@ var zt = /* @__PURE__ */ f({
|
|
|
1426
1425
|
})
|
|
1427
1426
|
}, null, 4));
|
|
1428
1427
|
}
|
|
1429
|
-
})
|
|
1430
|
-
function
|
|
1428
|
+
});
|
|
1429
|
+
function vt(e) {
|
|
1431
1430
|
return e instanceof Function && e.constructor.name === "AsyncFunction";
|
|
1432
1431
|
}
|
|
1433
|
-
const
|
|
1432
|
+
const yt = (e) => {
|
|
1434
1433
|
let t = T(!1), n = (...n) => (t.value = !0, new Promise((r, i) => {
|
|
1435
1434
|
setTimeout(async () => {
|
|
1436
1435
|
try {
|
|
1437
|
-
if (
|
|
1436
|
+
if (vt(e)) return await e(...n);
|
|
1438
1437
|
r(e(...n));
|
|
1439
1438
|
} catch (e) {
|
|
1440
1439
|
console.log("useSingleLoading", e), i(e);
|
|
@@ -1444,12 +1443,12 @@ const Ht = (e) => {
|
|
|
1444
1443
|
}, 50);
|
|
1445
1444
|
}));
|
|
1446
1445
|
return [n, t];
|
|
1447
|
-
},
|
|
1446
|
+
}, bt = (e, t) => {
|
|
1448
1447
|
let n = T([]), i = async (...r) => {
|
|
1449
1448
|
let i = t(...r);
|
|
1450
1449
|
n.value.push(i);
|
|
1451
1450
|
try {
|
|
1452
|
-
return
|
|
1451
|
+
return vt(e) ? await e(...r) : e(...r);
|
|
1453
1452
|
} catch (e) {
|
|
1454
1453
|
console.error("useLoading", e);
|
|
1455
1454
|
} finally {
|
|
@@ -1463,7 +1462,7 @@ const Ht = (e) => {
|
|
|
1463
1462
|
n
|
|
1464
1463
|
];
|
|
1465
1464
|
}, Q = window.matchMedia("(prefers-color-scheme: dark)"), $ = T("default");
|
|
1466
|
-
function
|
|
1465
|
+
function xt(e) {
|
|
1467
1466
|
function t(t) {
|
|
1468
1467
|
if (e.getUserThemeConfig) {
|
|
1469
1468
|
let t = e.getUserThemeConfig();
|
|
@@ -1482,13 +1481,13 @@ function Wt(e) {
|
|
|
1482
1481
|
}
|
|
1483
1482
|
return n(), console.log("mediaQueryList", Q), { themeRefresh: r };
|
|
1484
1483
|
}
|
|
1485
|
-
function
|
|
1484
|
+
function St(e) {
|
|
1486
1485
|
Q.dispatchEvent(new MediaQueryListEvent("change", {
|
|
1487
1486
|
matches: e === "dark",
|
|
1488
1487
|
media: "(prefers-color-scheme: dark)"
|
|
1489
1488
|
}));
|
|
1490
1489
|
}
|
|
1491
|
-
function
|
|
1490
|
+
function Ct() {
|
|
1492
1491
|
return $.value;
|
|
1493
1492
|
}
|
|
1494
|
-
export {
|
|
1493
|
+
export { ge as BackTop, Te as ContextMenu, Ce as ContextMenuDivider, Se as ContextMenuGroup, xe as ContextMenuItem, we as ContextMenuSubmenu, _t as LazyLoader, be as LeftMenu, ye as LeftMenuEventDispatch, ve as LeftMenuEvents, Re as PageHeader, nt as Result, pt as Scrollbar, at as SettingDivision, st as SettingGroup, it as SettingItem, De as SplitPanel, ct as SwitchEnable, ut as SwitchPlus, dt as SwitchPlusEnable, ft as Thumb, Oe as UtoolsBaseLayout, Le as UtoolsLayout, _e as WebBaseLayout, Ee as WebLayout, X as getBuildCurrentClassPrefix, Y as getClassPrefix, Ct as getCurrentTheme, le as isEventExist, ue as isFunction, de as isNull, pe as isNumber, me as isObject, fe as isUndefined, he as off, Z as on, St as setCurrentTheme, bt as useMultiLoading, yt as useSingleLoading, xt as useTheme };
|
package/dist/u-web-ui.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
:root{--red-1:255,236,232;--red-2:253,205,197;--red-3:251,172,163;--red-4:249,137,129;--red-5:247,101,96;--red-6:245,63,63;--red-7:203,39,45;--red-8:161,21,30;--red-9:119,8,19;--red-10:77,0,10;--gray-1:247,248,250;--gray-2:242,243,245;--gray-3:229,230,235;--gray-4:201,205,212;--gray-5:169,174,184;--gray-6:134,144,156;--gray-7:107,119,133;--gray-8:78,89,105;--gray-9:39,46,59;--gray-10:29,33,41;--green-1:232,255,234;--green-2:175,240,181;--green-3:123,225,136;--green-4:76,210,99;--green-5:35,195,67;--green-6:0,180,42;--green-7:0,154,41;--green-8:0,128,38;--green-9:0,102,34;--green-10:0,77,28;--blue-1:0,26,77;--blue-2:5,47,120;--blue-3:19,76,163;--blue-4:41,113,207;--blue-5:70,153,250;--blue-6:90,170,251;--blue-7:125,193,252;--blue-8:161,213,253;--blue-9:198,232,254;--blue-10:234,248,255;--u-bg-color:#f4f4f4;--u-bg-color-2:#fafbfb;--u-bg-color-3:#fff;--u-bg-color-3-hover:rgb(var(--gray-3),.5);--u-bg-color-3-active:rgb(var(--gray-3),.8);--u-blue-7:13,66,210;--u-blue-6:22,93,255;--u-blue-5:64,128,255;--u-wechat-color:#2ba471;--u-color-neutral-1:rgb(var(--gray-1));--u-color-neutral-2:rgb(var(--gray-2));--u-color-neutral-3:rgb(var(--gray-3));--u-color-neutral-4:rgb(var(--gray-4));--u-color-neutral-5:rgb(var(--gray-5));--u-color-neutral-6:rgb(var(--gray-6));--u-color-neutral-7:rgb(var(--gray-7));--u-color-neutral-8:rgb(var(--gray-8));--u-color-neutral-9:rgb(var(--gray-9));--u-color-neutral-10:rgb(var(--gray-10));--u-color-fill-1:var(--color-neutral-1);--u-color-fill-2:var(--color-neutral-2);--u-color-fill-3:var(--color-neutral-3);--u-color-fill-4:var(--color-neutral-4);--u-shadow-sm:#0000001a 0px 1px 2px 0px;--u-shadow-lg:0 6px 16px 0 #00000014,0 3px 6px -4px #0000001f,0 9px 28px 8px #0000000d;--u-radius-small:4px;--u-radius-default:6px;--u-radius-medium:8px;--u-radius-large:10px;--u-radius-circle:50%;--u-text-color:var(--td-font-gray-1);--u-text-color-tips:#8a939f;--u-text-color-3:#86909c;--u-text-color-hover:#0052d9;--u-text-color-primary:var(--td-font-gray-1);--u-text-color-secondary:var(--td-font-gray-2);--u-text-color-placeholder:var(--td-font-gray-3);--u-text-color-disabled:var(--td-font-gray-4);--u-text-color-anti:#fff;--u-text-color-brand:var(--td-brand-color-7);--u-text-color-link:var(--td-brand-color-8);--u-text-color-danger:rgb(var(--red-6))}html[theme-mode=dark]{--red-1:77,0,10;--red-2:119,6,17;--red-3:161,22,31;--red-4:203,46,52;--red-5:245,78,78;--red-6:247,105,101;--red-7:249,141,134;--red-8:251,176,167;--red-9:253,209,202;--red-10:255,240,236;--gray-1:23,23,26;--gray-2:46,46,48;--gray-3:72,72,73;--gray-4:95,95,96;--gray-5:120,120,122;--gray-6:146,146,147;--gray-7:171,171,172;--gray-8:197,197,197;--gray-9:223,223,223;--gray-10:246,246,246;--green-1:0,77,28;--green-2:4,102,37;--green-3:10,128,45;--green-4:18,154,55;--green-5:29,180,64;--green-6:39,195,70;--green-7:80,210,102;--green-8:126,225,139;--green-9:178,240,183;--green-10:235,255,236;--blue-1:232,247,255;--blue-2:195,231,254;--blue-3:159,212,253;--blue-4:123,192,252;--blue-5:87,169,251;--blue-6:52,145,250;--blue-7:32,108,207;--blue-8:17,75,163;--blue-9:6,48,120;--blue-10:0,26,77;--u-bg-color:#303133;--u-bg-color-2:#2e2e30;--u-bg-color-3:#2a2a2b;--u-bg-color-3-hover:rgb(var(--gray-3),.65);--u-color-neutral-1:rgb(var(--gray-1));--u-color-neutral-2:rgb(var(--gray-2));--u-color-neutral-3:rgb(var(--gray-3));--u-color-neutral-4:rgb(var(--gray-4));--u-color-neutral-5:rgb(var(--gray-5));--u-color-neutral-6:rgb(var(--gray-6));--u-color-neutral-7:rgb(var(--gray-7));--u-color-neutral-8:rgb(var(--gray-8));--u-color-neutral-9:rgb(var(--gray-9));--u-color-neutral-10:rgb(var(--gray-10));--u-color-fill-1:#ffffff0a;--u-color-fill-2:#ffffff14;--u-color-fill-3:#ffffff1f;--u-color-fill-4:#ffffff29;--u-text-color:var(--td-font-white-1);--u-text-color-tips:#8a939f;--u-text-color-primary:var(--td-font-white-1);--u-text-color-secondary:var(--td-font-white-2);--u-text-color-placeholder:var(--td-font-white-3);--u-text-color-disabled:var(--td-font-white-4);--u-text-color-anti:#fff;--u-text-color-brand:var(--td-brand-color-8);--u-text-color-link:var(--td-brand-color-8);--u-text-color-danger:rgb(var(--red-6))}.u-t-input .t-input{border-color:#0000;transition:border-color .25s linear}.u-t-input .t-input:hover{border-color:var(--td-border-level-2-color)}.u-t-input .t-input:focus{box-shadow:none}.u-t-input .t-input--focused{box-shadow:none;border-color:var(--td-brand-color)!important}.t-collapse.u-t-collapse{background-color:#0000;border:none}.t-collapse.u-t-collapse .t-collapse-panel__header{border-bottom:none;padding:8px 13px}.t-collapse.u-t-collapse .t-collapse-panel__body{background:0 0;border-bottom:none}.t-collapse.u-t-collapse .t-collapse-panel__body .t-collapse-panel__content{color:var(--u-text-color);padding:0 6px 0 14px}.u-slider-green .t-slider__button{background:rgb(var(--green-4));border-color:rgb(var(--green-4))}.u-slider-green .t-slider__button--dragging,.u-slider-green .t-slider__button:hover{background-color:rgb(var(--green-5));border-color:rgb(var(--green-5))}.u-slider-blue .t-slider__button{background:rgb(var(--blue-5));border-color:rgb(var(--blue-5))}.u-slider-blue .t-slider__button--dragging,.u-slider-blue .t-slider__button:hover{border-color:rgb(var(--blue-6));background-color:rgb(var(--blue-6))!important}.u-slider-no-fill .t-slider__track{background:0 0}.u-slider .t-slider__rail,.u-slider .t-slider__track{height:8px}.u-slider .t-slider__button{transition:all .2s linear}.u-slider .t-slider__button--dragging{box-shadow:none;transform:scale(1.25)}.u-web-radio-group.t-size-m .t-radio-button{height:24px!important}.t-notification__content{max-height:100%!important}.t-divider--horizontal.u-web-divider-mini{margin:var(--td-comp-margin-s)0}.t-divider--horizontal.u-web-divider-small{margin:var(--td-comp-margin-m)0}.t-divider--horizontal.u-web-divider-medium{margin:var(--td-comp-margin-xl)0}.t-divider--horizontal.u-web-divider-large{margin:var(--td-comp-margin-xxl)0}.u-select .t-select-input .t-input{display:flex!important}.t-table.u-web-table,.u-web-table .t-table__content tr{background-color:#0000}:root{--scrollbar-track-size:10px;--scrollbar-thumb-bar-size:6px;--scrollbar-thumb-bar-bg-color:rgb(var(--gray-5),.6);--scrollbar-thumb-bar-bg-color-hover:rgb(var(--gray-6),.8);--scrollbar-thumb-bar-border-radius:var(--u-radius-small);--scrollbar-track-bg-color:var(--u-bg-color-2);--scrollbar-track-border-size:1px;--scrollbar-track-border-color:var(--u-color-neutral-3)}html[theme-mode=dark]{--scrollbar-thumb-bar-bg-color:rgb(var(--gray-6),.6);--scrollbar-thumb-bar-bg-color-hover:rgb(var(--gray-7),.8);--scrollbar-track-bg-color:var(--u-bg-color-2);--scrollbar-track-border-color:var(--u-color-neutral-2)}*,:before,:after{box-sizing:border-box;margin:0;padding:0;font-weight:400}*,:before,:after,::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 #0000;--un-ring-shadow:0 0 #0000;--un-shadow-inset: ;--un-shadow:0 0 #0000;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:#93c5fd80;--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }.i-p-check{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M43 11L16.875 37L5 25.1818' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-checkSmall{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 24L20 34L40 14' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-close{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 8L40 40' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 40L40 8' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-closeSmall{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 14L34 34' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14 34L34 14' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-expandLeft{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9C6 7.34315 7.34315 6 9 6H39C40.6569 6 42 7.34315 42 9V39C42 40.6569 40.6569 42 39 42H9C7.34315 42 6 40.6569 6 39V9Z' fill='none' stroke='currentColor' stroke-width='4' stroke-linejoin='round'/%3E%3Cpath d='M32 6V42' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 20L20 24L16 28' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M26 6H38' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M26 42H38' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-expandRight{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='6' width='36' height='36' rx='3' fill='none' stroke='currentColor' stroke-width='4' stroke-linejoin='round'/%3E%3Cpath d='M18 6V42' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 6H36' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 42H36' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M32 20L28 24L32 28' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-info{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' xmlns='http://www.w3.org/2000/svg' width='256' height='256' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 7q-.825 0-1.412-.587T10 5t.588-1.412T12 3t1.413.588T14 5t-.587 1.413T12 7m0 14q-.625 0-1.062-.437T10.5 19.5v-9q0-.625.438-1.062T12 9t1.063.438t.437 1.062v9q0 .625-.437 1.063T12 21'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:256px;height:256px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-left{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31 36L19 24L31 12' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-loading{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 24C4 35.0457 12.9543 44 24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.-container{width:-100%}.container{width:100%}@media (min-width:360px){.-container{max-width:-360px}.container{max-width:360px}}@media (min-width:640px){.-container{max-width:-640px}.container{max-width:640px}}@media (min-width:768px){.-container{max-width:-768px}.container{max-width:768px}}@media (min-width:800px){.-container{max-width:-800px}.container{max-width:800px}}@media (min-width:1024px){.-container{max-width:-1024px}.container{max-width:1024px}}@media (min-width:1280px){.-container{max-width:-1280px}.container{max-width:1280px}}@media (min-width:1536px){.-container{max-width:-1536px}.container{max-width:1536px}}.visible{visibility:visible}.h-12{height:3rem}.h-5{height:1.25rem}.h-auto{height:auto}.h-full{height:100%}.h-screen{height:100vh}.min-h-0{min-height:0}.w-12{width:3rem}.w-5{width:1.25rem}.w-8{width:2rem}.w-full{width:100%}.flex{display:flex}.cursor-pointer{cursor:pointer}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.overflow-hidden{overflow:hidden}.rounded-full{border-radius:9999px}[stroke-width~="2"]{stroke-width:2px}[stroke-width~="3"]{stroke-width:3px}.p-1{padding:.25rem}.px,[px=""]{padding-left:1rem;padding-right:1rem}.pl-5{padding-left:1.25rem}.pr-3{padding-right:.75rem}.font-bold{font-weight:700}.blur{--un-blur:blur(8px);filter:var(--un-blur)var(--un-brightness)var(--un-contrast)var(--un-drop-shadow)var(--un-grayscale)var(--un-hue-rotate)var(--un-invert)var(--un-saturate)var(--un-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter,backdrop-filter;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}@media (min-width:800px){.ut\:p-2{padding:.5rem}}@media (min-width:1280px){.xl\:p-4{padding:1rem}}.u-web-back-top{z-index:100;cursor:pointer;position:fixed;bottom:50px;right:28px}.u-web-back-top-small .u-web-back-top-btn{width:32px;height:32px}.u-web-back-top-btn{width:40px;height:40px;color:var(--u-text-color-secondary);background-color:var(--u-bg-color-3);border:1px solid var(--u-color-neutral-3);border-radius:var(--u-radius-default);cursor:pointer;box-shadow:var(--u-shadow-sm);outline:none;justify-content:center;align-items:center;font-size:16px;transition:all .2s;display:flex}.u-web-back-top-btn:hover{color:var(--u-text-color-primary);background-color:var(--u-bg-color-3-hover);transform:translateY(-2px)}.u-web-back-top-btn:active{transform:translateY(0)}.u-web-back-top-icon{width:16px;height:16px}.fade-in-enter-active,.fade-in-leave-active{transition:opacity .3s,transform .3s}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:translateY(10px)}.fade-in-enter-to,.fade-in-leave-from{opacity:1;transform:translateY(0)}.u-web-main-content{background:var(--u-bg-color)}.u-web-main-content-inner{background-color:var(--u-bg-color);border-radius:.5rem;height:100%;padding:4px;overflow:hidden auto}.u-web-context-menu-trigger{display:contents}.u-web-context-menu-mask{z-index:999;background:0 0;position:fixed;inset:0}.u-web-context-menu-menu{z-index:1000;background:var(--u-bg-color-3);border:1px solid var(--gray-3);border-radius:var(--u-radius-default);width:max-content;min-width:100px;box-shadow:var(--u-shadow-lg);-webkit-user-select:none;user-select:none;padding:4px 0;position:fixed}.u-web-context-menu-menu-transition-enter-from,.u-web-context-menu-menu-transition-leave-to{opacity:0;transform:scaleY(.86)}.u-web-context-menu-menu-transition-enter-active,.u-web-context-menu-menu-transition-leave-active{transform-origin:top;transition:opacity .2s,transform .16s}.u-web-context-menu-submenu-popup{z-index:1001;position:absolute;top:0;left:100%}.u-web-context-menu-item{color:var(--u-text-color);cursor:pointer;white-space:nowrap;border-radius:4px;align-items:center;margin:0 4px;padding:6px 12px;font-size:14px;line-height:22px;transition:all .2s;display:flex;position:relative}.u-web-context-menu-item:hover{background-color:var(--u-bg-color-3-hover)}.u-web-context-menu-item:active{background-color:var(--u-bg-color-3-active)}.u-web-context-menu-item-disabled{color:var(--u-text-color-disabled);cursor:not-allowed}.u-web-context-menu-item-disabled:hover{background-color:#0000}.u-web-context-menu-item-danger{color:var(--u-text-color-danger)}.u-web-context-menu-item-danger:hover{background-color:rgba(var(--red-5),.1)}.u-web-context-menu-item-icon{margin-right:8px;font-size:14px}.u-web-context-menu-item-label{flex:1}.u-web-context-menu-submenu{position:relative}.u-web-context-menu-submenu-arrow{color:rgb(var(--gray-4));margin-left:8px;font-size:10px;transition:color 90ms linear}.u-web-context-menu-submenu-active{background-color:#0000000a}.u-web-context-menu-submenu-active>.u-web-context-menu-submenu-arrow{color:rgb(var(--gray-6))}.u-web-context-menu-submenu-disabled .u-web-context-menu-submenu-arrow{color:rgb(var(--gray-3))}.u-web-context-menu-group-title{color:var(--u-text-color-secondary);padding:4px 6px;font-size:12px;font-weight:500;line-height:20px}.u-web-context-menu-group:not(:first-child){border-top:1px solid var(--u-color-neutral-2);margin-top:2px;padding-top:2px}.u-web-context-menu-divider{background-color:var(--u-color-neutral-2);height:1px;margin:4px 0}.u-web-split-panel{width:100%;height:100%;display:flex}.u-web-split-panel-horizontal{flex-direction:row}.u-web-split-panel-vertical{flex-direction:column}.u-web-split-panel-pane{overflow:hidden}.u-web-split-panel-pane-second{flex:1;min-width:0;min-height:0}.u-web-split-trigger{background:var(--u-bg-color-2,#f0f0f0);-webkit-user-select:none;user-select:none;justify-content:center;align-items:center;transition:background-color .2s;display:flex;position:relative}.u-web-split-trigger:hover:not(.u-web-split-trigger-disabled){background:var(--u-bg-color-3-hover,#e8e8e8)}.u-web-split-trigger-horizontal{cursor:col-resize;width:6px;margin:0 1px}.u-web-split-trigger-horizontal .u-web-split-trigger-icon{flex-direction:column;gap:2px;display:flex}.u-web-split-trigger-horizontal .u-web-split-trigger-line{background:var(--u-text-color-placeholder,#999);border-radius:1px;width:2px;height:12px}.u-web-split-trigger-vertical{cursor:row-resize;height:6px;margin:1px 0}.u-web-split-trigger-vertical .u-web-split-trigger-icon{flex-direction:row;gap:2px;display:flex}.u-web-split-trigger-vertical .u-web-split-trigger-line{background:var(--u-text-color-placeholder,#999);border-radius:1px;width:12px;height:2px}.u-web-split-trigger-disabled{cursor:not-allowed;opacity:.5}.u-web-split-trigger-disabled:hover{background:var(--u-bg-color-2,#f0f0f0)}.utools{height:100%}.utools .t-default-menu.t-is-collapsed .t-menu__logo>*,.utools .t-menu__logo>*{margin-left:0}.utools .t-is-collapsed .t-menu__logo .title{display:none}.utools .t-is-collapsed .t-menu__logo:not(:empty){border-bottom:none;justify-content:center}.utools .t-menu__logo{padding:0 8px}.utools .u-web-left-menu-small .t-default-menu__inner .t-menu{padding:8px 3px}.utools .t-default-menu__inner .t-menu{padding:12px 6px}.utools .t-default-menu{background:var(--u-bg-color)}.utools .t-default-menu .t-menu__item.t-is-active:not(.t-is-opened),.utools .t-default-menu .t-menu__item:hover:not(.t-is-active):not(.t-is-disabled){background:var(--u-bg-color-2)}.u-web-utools-left-menu{width:100%;height:100%;position:relative}.u-web-utools-left-menu .u-web-utools-left-menu-collapse{z-index:888;border-radius:var(--u-radius-circle);background-color:var(--u-bg-color-2);cursor:pointer;width:32px;height:32px;color:var(--u-text-color-3);padding:4px;transition:all .28s linear;position:absolute;top:8px;right:-32px}.u-web-utools-left-menu .u-web-utools-left-menu-collapse:hover{color:var(--u-text-color-hover);box-shadow:0 1px 2px #0000001a}.utools .t-is-collapsed~* .u-web-utools-main-content-area{width:calc(100vw - 52px)}.utools .u-web-left-menu-small .t-is-collapsed~* .u-web-utools-main-content-area{width:calc(100vw - 38px)}.u-web-utools-content-wrapper{box-sizing:border-box;background:var(--u-bg-color);grid-template-rows:24px calc(100vh - 39px) 15px;grid-template-columns:1fr;width:100%;height:100%;min-height:100vh;display:grid;overflow:auto hidden}.u-web-utools-content-wrapper .content{width:100%;max-width:100%;padding:4px;overflow-x:hidden}.u-web-utools-content-wrapper .content .content-inner{border-radius:var(--u-radius-medium);background-color:var(--u-bg-color-2);width:100%;height:100%;overflow-y:auto;box-shadow:0 1px 2px #0000001a}.u-web-page-header{background:var(--u-bg-color-2);border-bottom:1px solid var(--u-color-neutral-2);justify-content:space-between;align-items:center;padding:16px 20px;display:flex}.u-web-page-header-mini{padding:10px 0}.u-web-page-header-mini .u-web-page-header-title{font-size:14px}.u-web-page-header-mini .u-web-page-header-header-back .t-icon{font-size:16px}.u-web-page-header-small{padding:14px 16px 12px}.u-web-page-header-small .u-web-page-header-title{font-size:16px}.u-web-page-header-small .u-web-page-header-header-back .t-icon{font-size:18px}.u-web-page-header-large{padding:20px 24px}.u-web-page-header-large .u-web-page-header-title{font-size:20px}.u-web-page-header-large .u-web-page-header-header-back .t-icon{font-size:24px}.u-web-page-header-header{gap:6px}.u-web-page-header-header-back .t-icon{font-size:20px}.u-web-page-header-subtitle{color:var(--u-text-color-secondary)}.u-web-page-header-divider{height:20px}.u-web-page-header-title{color:var(--u-text-color);font-size:18px;font-weight:500;line-height:1.5}.u-web-page-header-extra{align-items:center;gap:16px;display:flex}.u-web-result{box-sizing:border-box;width:100%;padding:48px 24px 24px}.u-web-result-icon{text-align:center;margin-bottom:12px;font-size:48px}.u-web-result-icon-tip{border-radius:50%;justify-content:center;align-items:center;width:72px;height:72px;margin:0 auto;display:flex}.u-web-result-icon-custom .u-web-result-icon-tip{color:var(--u-text-color-secondary);width:unset;height:unset;font-size:64px}.u-web-result-icon-success .u-web-result-icon-tip{color:rgb(var(--green-6));background-color:rgba(var(--green-6),.1)}.u-web-result-icon-error .u-web-result-icon-tip{color:rgb(var(--red-6));background-color:rgba(var(--red-6),.1)}.u-web-result-icon-info .u-web-result-icon-tip{color:rgb(var(--blue-6));background-color:rgba(var(--blue-6),.1)}.u-web-result-icon-warning .u-web-result-icon-tip{color:#ff9500;background-color:#ff95001a}.u-web-result-icon-404,.u-web-result-icon-403,.u-web-result-icon-500{padding-top:24px}.u-web-result-icon-404 .u-web-result-icon-tip,.u-web-result-icon-403 .u-web-result-icon-tip,.u-web-result-icon-500 .u-web-result-icon-tip{width:240px;height:160px;line-height:160px}.u-web-result-title{color:var(--u-text-color-primary);text-align:center;margin-bottom:4px;font-size:14px;font-weight:600;line-height:1.5715}.u-web-result-subtitle{color:var(--u-text-color-secondary);text-align:center;margin-bottom:8px;font-size:14px;line-height:1.5715}.u-web-result-extra{text-align:center;margin-top:16px}.u-web-result-content{margin-top:24px}.result-error-icon[data-v-fc6ebdc7]{flex-direction:column;align-items:center;gap:16px;display:flex}.result-error-text[data-v-fc6ebdc7]{color:var(--u-text-color-secondary);opacity:.6;font-size:48px;font-weight:700}.result-error-icon[data-v-cdc3b8a1]{flex-direction:column;align-items:center;gap:16px;display:flex}.result-error-text[data-v-cdc3b8a1]{color:var(--u-text-color-secondary);opacity:.6;font-size:48px;font-weight:700}.result-error-icon[data-v-cb66ef61]{flex-direction:column;align-items:center;gap:16px;display:flex}.result-error-text[data-v-cb66ef61]{color:var(--u-text-color-secondary);opacity:.6;font-size:48px;font-weight:700}.u-web-setting-item{background:var(--u-bg-color-3);-webkit-user-select:none;user-select:none;padding:15px 10px;transition:all .28s linear}.u-web-setting-item:hover{background:rgb(var(--gray-2),.2)}.u-web-setting-item-small{padding:8px}.u-web-setting-item-small .u-web-setting-item-title{font-size:14px}.u-web-setting-item-title{margin-bottom:.25rem;font-size:1rem;font-weight:700}.u-web-setting-item-desc{color:var(--u-text-color-tips);font-size:12px}.u-web-division{border-bottom:1px dashed var(--u-color-neutral-2)}.u-web-setting-group>div:last-child{border-radius:6px;transition:all .26s linear;overflow:hidden}.u-web-setting-group>div:last-child:hover{box-shadow:0 3px 5px #0000000a}.u-web-setting-group-header,.u-web-setting-group-title{margin-bottom:.5rem}.u-web-setting-group-title{border-left:2px solid rgb(var(--u-blue-5));padding-left:.5rem;font-size:1.125rem;font-weight:600;line-height:1.75rem}.u-web-switch-green{transition:background-color .2s linear}.u-web-switch-green.t-is-checked{background-color:rgba(var(--green-5))}.u-web-switch-green.t-is-checked:hover{background-color:rgba(var(--green-6))}@keyframes switch-loading-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.switch-slide-text-enter-from{left:-100%!important}.switch-slide-text-enter-to{left:8px!important}.switch-slide-text-enter-active{transition:left .2s}.switch-slide-text-leave-from{left:100%!important}.switch-slide-text-leave-to{left:30px!important}.switch-slide-text-leave-active{transition:left .2s}.u-web-switch-plus{box-sizing:border-box;vertical-align:middle;background-color:rgb(var(--gray-4));cursor:pointer;border:none;border-radius:14px;outline:none;min-width:44px;height:28px;padding:0;line-height:28px;transition:background-color .2s;position:relative;overflow:hidden}.u-web-switch-plus-handle{width:20px;height:20px;color:rgb(var(--gray-6));background-color:var(--u-bg-color-3);box-shadow:var(--u-shadow-sm);border-radius:50%;justify-content:center;align-items:center;font-size:12px;transition:all .2s;display:flex;position:absolute;top:4px;left:4px}.u-web-switch-plus-checked{background-color:rgb(var(--blue-5))}.u-web-switch-plus-checked .u-web-switch-plus-handle{color:rgb(var(--blue-5));left:calc(100% - 24px)}.u-web-switch-plus[disabled] .u-web-switch-plus-handle,.u-web-switch-plus[disabled].u-web-switch-plus-checked .u-web-switch-plus-handle{color:rgb(var(--gray-5))}.u-web-switch-plus-text-holder{opacity:0;margin:0 8px 0 30px;font-size:12px}.u-web-switch-plus-text{color:rgb(var(--gray-6));font-size:12px;position:absolute;top:0;left:30px}.u-web-switch-plus-checked .u-web-switch-plus-text-holder{margin:0 30px 0 8px}.u-web-switch-plus-checked .u-web-switch-plus-text{color:var(--u-bg-color-3);left:8px}.u-web-switch-plus[disabled]{background-color:rgb(var(--gray-3));cursor:not-allowed}.u-web-switch-plus[disabled] .u-web-switch-plus-text{color:rgb(var(--gray-5))}.u-web-switch-plus[disabled].u-web-switch-plus-checked{background-color:rgb(var(--gray-4))}.u-web-switch-plus[disabled].u-web-switch-plus-checked .u-web-switch-plus-text{color:rgb(var(--gray-5))}.u-web-switch-plus-loading{background-color:rgb(var(--gray-4))}.u-web-switch-plus-loading .u-web-switch-plus-handle,.u-web-switch-plus-loading .u-web-switch-plus-text{color:rgb(var(--gray-6))}.u-web-switch-plus-loading.u-web-switch-plus-checked{background-color:rgb(var(--blue-6))}.u-web-switch-plus-loading.u-web-switch-plus-checked .u-web-switch-plus-handle{color:rgb(var(--blue-5))}.u-web-switch-plus-loading.u-web-switch-plus-checked .u-web-switch-plus-text{color:var(--u-bg-color-3)}.u-web-switch-plus-loading-icon{animation:1s linear infinite switch-loading-spin;display:inline-block}.u-web-switch-plus-medium{min-width:38px;height:24px;line-height:24px}.u-web-switch-plus-medium.u-web-switch-plus-checked{padding-left:-4px}.u-web-switch-plus-medium .u-web-switch-plus-handle{border-radius:12px;width:16px;height:16px;top:4px;left:4px}.u-web-switch-plus-medium .u-web-switch-plus-handle-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)scale(.8)}.u-web-switch-plus-medium.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 20px)}.u-web-switch-plus-medium .u-web-switch-plus-text-holder{margin:0 8px 0 26px}.u-web-switch-plus-medium .u-web-switch-plus-text{left:26px}.u-web-switch-plus-medium.u-web-switch-plus-checked .u-web-switch-plus-text-holder{margin:0 26px 0 8px}.u-web-switch-plus-medium.u-web-switch-plus-checked .u-web-switch-plus-text{left:8px}.u-web-switch-plus-small{min-width:32px;height:20px;line-height:20px}.u-web-switch-plus-small.u-web-switch-plus-checked{padding-left:-3px}.u-web-switch-plus-small .u-web-switch-plus-handle{border-radius:10px;width:14px;height:14px;top:3px;left:3px}.u-web-switch-plus-small .u-web-switch-plus-handle-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)scale(.66667)}.u-web-switch-plus-small.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 17px)}.u-web-switch-plus-mini{min-width:26px;height:16px;line-height:16px}.u-web-switch-plus-mini.u-web-switch-plus-checked{padding-left:-3px}.u-web-switch-plus-mini .u-web-switch-plus-handle{border-radius:8px;width:10px;height:10px;top:3px;left:3px}.u-web-switch-plus-mini .u-web-switch-plus-handle-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)scale(.5)}.u-web-switch-plus-mini.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 13px)}.u-web-switch-plus-mini .u-web-switch-plus-text-holder{margin:0 6px 0 17px;font-size:10px}.u-web-switch-plus-mini .u-web-switch-plus-text{font-size:10px;left:17px}.u-web-switch-plus-mini.u-web-switch-plus-checked .u-web-switch-plus-text-holder{margin:0 17px 0 6px}.u-web-switch-plus-mini.u-web-switch-plus-checked .u-web-switch-plus-text{left:6px}.u-web-switch-plus-type-round{border-radius:var(--u-radius-small);min-width:44px}.u-web-switch-plus-type-round .u-web-switch-plus-handle{border-radius:2px}.u-web-switch-plus-type-round.u-web-switch-plus-medium{border-radius:var(--u-radius-small);min-width:38px}.u-web-switch-plus-type-round.u-web-switch-plus-medium .u-web-switch-plus-handle{border-radius:2px}.u-web-switch-plus-type-round.u-web-switch-plus-small{border-radius:2px;min-width:32px;height:20px;line-height:20px}.u-web-switch-plus-type-round.u-web-switch-plus-small .u-web-switch-plus-handle{border-radius:1px}.u-web-switch-plus-type-round.u-web-switch-plus-mini{border-radius:2px;min-width:26px}.u-web-switch-plus-type-round.u-web-switch-plus-mini .u-web-switch-plus-handle{border-radius:1px}.u-web-switch-plus-type-line{min-width:44px;overflow:unset;background-color:#0000}.u-web-switch-plus-type-line:after{background-color:rgb(var(--gray-4));content:"";border-radius:2px;width:100%;height:4px;transition:background-color .2s;display:block}.u-web-switch-plus-type-line .u-web-switch-plus-handle{background-color:var(--u-bg-color-3);width:18px;height:18px;box-shadow:var(--u-shadow-sm);border-radius:9px;top:5px;left:0}.u-web-switch-plus-type-line.u-web-switch-plus-checked{background-color:#0000}.u-web-switch-plus-type-line.u-web-switch-plus-checked:after{background-color:rgb(var(--blue-5))}.u-web-switch-plus-type-line.u-web-switch-plus-custom-color{--custom-color:rgb(var(--gray-4))}.u-web-switch-plus-type-line.u-web-switch-plus-custom-color:after{background-color:var(--custom-color)}.u-web-switch-plus-type-line.u-web-switch-plus-custom-color.u-web-switch-plus-checked{--custom-color:rgb(var(--blue-5))}.u-web-switch-plus-type-line.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 18px)}.u-web-switch-plus-type-line.u-web-switch-plus-medium{min-width:38px}.u-web-switch-plus-type-line.u-web-switch-plus-medium .u-web-switch-plus-handle{border-radius:7px;width:14px;height:14px;top:5px}.u-web-switch-plus-type-line.u-web-switch-plus-medium.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 14px)}.u-web-switch-plus-type-line[disabled]{cursor:not-allowed;background-color:#0000}.u-web-switch-plus-type-line[disabled]:after{background-color:rgb(var(--gray-3))}.u-web-switch-plus-type-line[disabled].u-web-switch-plus-checked{background-color:#0000}.u-web-switch-plus-type-line[disabled].u-web-switch-plus-checked:after{background-color:rgb(var(--gray-4))}.u-web-switch-plus-type-line.u-web-switch-plus-loading{background-color:#0000}.u-web-switch-plus-type-line.u-web-switch-plus-loading:after{background-color:rgb(var(--gray-4))}.u-web-switch-plus-type-line.u-web-switch-plus-loading.u-web-switch-plus-checked{background-color:#0000}.u-web-switch-plus-type-line.u-web-switch-plus-loading.u-web-switch-plus-checked:after{background-color:rgb(var(--blue-6))}.u-web-switch-plus-type-line.u-web-switch-plus-small{min-width:32px;height:20px;line-height:20px}.u-web-switch-plus-type-line.u-web-switch-plus-small.u-web-switch-plus-checked{padding-left:-4px}.u-web-switch-plus-type-line.u-web-switch-plus-small .u-web-switch-plus-handle{border-radius:10px;width:12px;height:12px;top:4px}.u-web-switch-plus-type-line.u-web-switch-plus-small .u-web-switch-plus-handle-icon{transform:translate(-50%,-50%)scale(1)}.u-web-switch-plus-type-line.u-web-switch-plus-small.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 12px)}.u-web-switch-plus-type-line.u-web-switch-plus-mini{min-width:26px}.u-web-switch-plus-type-line.u-web-switch-plus-mini .u-web-switch-plus-handle{border-radius:4px;width:8px;height:8px;top:4px}.u-web-switch-plus-type-line.u-web-switch-plus-mini.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 8px)}.u-web-scrollbar{position:relative}.u-web-scrollbar-container{scrollbar-width:none;position:relative;overflow:auto}.u-web-scrollbar-container::-webkit-scrollbar{display:none}.u-web-scrollbar-track{z-index:100;position:absolute}.u-web-scrollbar-track-direction-horizontal{box-sizing:border-box;width:100%;height:var(--scrollbar-track-size);bottom:0;left:0}.u-web-scrollbar-track-direction-vertical{box-sizing:border-box;width:var(--scrollbar-track-size);height:100%;top:0;right:0}.u-web-scrollbar-thumb{box-sizing:border-box;display:block;position:absolute}.u-web-scrollbar-thumb-bar{background-color:var(--scrollbar-thumb-bar-bg-color);border-radius:var(--scrollbar-thumb-bar-border-radius);width:100%;height:100%}.u-web-scrollbar-thumb:hover .u-web-scrollbar-thumb-bar,.u-web-scrollbar-thumb-dragging .u-web-scrollbar-thumb-bar{background-color:var(--scrollbar-thumb-bar-bg-color-hover)}.u-web-scrollbar-thumb-direction-horizontal .u-web-scrollbar-thumb-bar{height:var(--scrollbar-thumb-bar-size);margin:calc((var(--scrollbar-track-size) - var(--scrollbar-thumb-bar-size))/2)0}.u-web-scrollbar-thumb-direction-vertical .u-web-scrollbar-thumb-bar{width:var(--scrollbar-thumb-bar-size);margin:0 calc((var(--scrollbar-track-size) - var(--scrollbar-thumb-bar-size))/2)}.u-web-scrollbar.u-web-scrollbar-type-embed .u-web-scrollbar-thumb{opacity:0;transition:opacity .2s}.u-web-scrollbar.u-web-scrollbar-type-embed .u-web-scrollbar-thumb-dragging,.u-web-scrollbar.u-web-scrollbar-type-embed:hover .u-web-scrollbar-thumb{opacity:.8}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-track{background-color:var(--scrollbar-track-bg-color)}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-track-direction-horizontal{border-top:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color);border-bottom:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color)}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-track-direction-vertical{border-right:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color);border-left:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color)}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-thumb-direction-horizontal{margin:calc(-1*var(--scrollbar-track-border-size))0}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-thumb-direction-vertical{margin:0 calc(-1*var(--scrollbar-track-border-size))}.u-web-scrollbar.u-web-scrollbar-type-track.u-web-scrollbar-both .u-web-scrollbar-track-direction-vertical:after{right:calc(-1*var(--scrollbar-track-border-size));box-sizing:border-box;width:var(--scrollbar-track-size);height:var(--scrollbar-track-size);background-color:var(--scrollbar-track-bg-color);border-right:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color);border-bottom:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color);content:"";display:block;position:absolute;bottom:0}
|
|
1
|
+
:root{--red-1:255,236,232;--red-2:253,205,197;--red-3:251,172,163;--red-4:249,137,129;--red-5:247,101,96;--red-6:245,63,63;--red-7:203,39,45;--red-8:161,21,30;--red-9:119,8,19;--red-10:77,0,10;--gray-1:247,248,250;--gray-2:242,243,245;--gray-3:229,230,235;--gray-4:201,205,212;--gray-5:169,174,184;--gray-6:134,144,156;--gray-7:107,119,133;--gray-8:78,89,105;--gray-9:39,46,59;--gray-10:29,33,41;--green-1:232,255,234;--green-2:175,240,181;--green-3:123,225,136;--green-4:76,210,99;--green-5:35,195,67;--green-6:0,180,42;--green-7:0,154,41;--green-8:0,128,38;--green-9:0,102,34;--green-10:0,77,28;--blue-1:0,26,77;--blue-2:5,47,120;--blue-3:19,76,163;--blue-4:41,113,207;--blue-5:70,153,250;--blue-6:90,170,251;--blue-7:125,193,252;--blue-8:161,213,253;--blue-9:198,232,254;--blue-10:234,248,255;--u-bg-color:#f4f4f4;--u-bg-color-2:#fafbfb;--u-bg-color-3:#fff;--u-bg-color-3-hover:rgb(var(--gray-3),.5);--u-bg-color-3-active:rgb(var(--gray-3),.8);--u-blue-7:13,66,210;--u-blue-6:22,93,255;--u-blue-5:64,128,255;--u-wechat-color:#2ba471;--u-color-neutral-1:rgb(var(--gray-1));--u-color-neutral-2:rgb(var(--gray-2));--u-color-neutral-3:rgb(var(--gray-3));--u-color-neutral-4:rgb(var(--gray-4));--u-color-neutral-5:rgb(var(--gray-5));--u-color-neutral-6:rgb(var(--gray-6));--u-color-neutral-7:rgb(var(--gray-7));--u-color-neutral-8:rgb(var(--gray-8));--u-color-neutral-9:rgb(var(--gray-9));--u-color-neutral-10:rgb(var(--gray-10));--u-color-fill-1:var(--color-neutral-1);--u-color-fill-2:var(--color-neutral-2);--u-color-fill-3:var(--color-neutral-3);--u-color-fill-4:var(--color-neutral-4);--u-shadow-sm:#0000001a 0px 1px 2px 0px;--u-shadow-lg:0 6px 16px 0 #00000014,0 3px 6px -4px #0000001f,0 9px 28px 8px #0000000d;--u-radius-small:4px;--u-radius-default:6px;--u-radius-medium:8px;--u-radius-large:10px;--u-radius-circle:50%;--u-text-color:var(--td-font-gray-1);--u-text-color-tips:#8a939f;--u-text-color-3:#86909c;--u-text-color-hover:#0052d9;--u-text-color-primary:var(--td-font-gray-1);--u-text-color-secondary:var(--td-font-gray-2);--u-text-color-placeholder:var(--td-font-gray-3);--u-text-color-disabled:var(--td-font-gray-4);--u-text-color-anti:#fff;--u-text-color-brand:var(--td-brand-color-7);--u-text-color-link:var(--td-brand-color-8);--u-text-color-danger:rgb(var(--red-6))}html[theme-mode=dark]{--red-1:77,0,10;--red-2:119,6,17;--red-3:161,22,31;--red-4:203,46,52;--red-5:245,78,78;--red-6:247,105,101;--red-7:249,141,134;--red-8:251,176,167;--red-9:253,209,202;--red-10:255,240,236;--gray-1:23,23,26;--gray-2:46,46,48;--gray-3:72,72,73;--gray-4:95,95,96;--gray-5:120,120,122;--gray-6:146,146,147;--gray-7:171,171,172;--gray-8:197,197,197;--gray-9:223,223,223;--gray-10:246,246,246;--green-1:0,77,28;--green-2:4,102,37;--green-3:10,128,45;--green-4:18,154,55;--green-5:29,180,64;--green-6:39,195,70;--green-7:80,210,102;--green-8:126,225,139;--green-9:178,240,183;--green-10:235,255,236;--blue-1:232,247,255;--blue-2:195,231,254;--blue-3:159,212,253;--blue-4:123,192,252;--blue-5:87,169,251;--blue-6:52,145,250;--blue-7:32,108,207;--blue-8:17,75,163;--blue-9:6,48,120;--blue-10:0,26,77;--u-bg-color:#303133;--u-bg-color-2:#2e2e30;--u-bg-color-3:#2a2a2b;--u-bg-color-3-hover:rgb(var(--gray-3),.65);--u-color-neutral-1:rgb(var(--gray-1));--u-color-neutral-2:rgb(var(--gray-2));--u-color-neutral-3:rgb(var(--gray-3));--u-color-neutral-4:rgb(var(--gray-4));--u-color-neutral-5:rgb(var(--gray-5));--u-color-neutral-6:rgb(var(--gray-6));--u-color-neutral-7:rgb(var(--gray-7));--u-color-neutral-8:rgb(var(--gray-8));--u-color-neutral-9:rgb(var(--gray-9));--u-color-neutral-10:rgb(var(--gray-10));--u-color-fill-1:#ffffff0a;--u-color-fill-2:#ffffff14;--u-color-fill-3:#ffffff1f;--u-color-fill-4:#ffffff29;--u-text-color:var(--td-font-white-1);--u-text-color-tips:#8a939f;--u-text-color-primary:var(--td-font-white-1);--u-text-color-secondary:var(--td-font-white-2);--u-text-color-placeholder:var(--td-font-white-3);--u-text-color-disabled:var(--td-font-white-4);--u-text-color-anti:#fff;--u-text-color-brand:var(--td-brand-color-8);--u-text-color-link:var(--td-brand-color-8);--u-text-color-danger:rgb(var(--red-6))}.u-t-input .t-input{border-color:#0000;transition:border-color .25s linear}.u-t-input .t-input:hover{border-color:var(--td-border-level-2-color)}.u-t-input .t-input:focus{box-shadow:none}.u-t-input .t-input--focused{box-shadow:none;border-color:var(--td-brand-color)!important}.t-collapse.u-t-collapse{background-color:#0000;border:none}.t-collapse.u-t-collapse .t-collapse-panel__header{border-bottom:none;padding:8px 13px}.t-collapse.u-t-collapse .t-collapse-panel__body{background:0 0;border-bottom:none}.t-collapse.u-t-collapse .t-collapse-panel__body .t-collapse-panel__content{color:var(--u-text-color);padding:0 6px 0 14px}.u-slider-green .t-slider__button{background:rgb(var(--green-4));border-color:rgb(var(--green-4))}.u-slider-green .t-slider__button--dragging,.u-slider-green .t-slider__button:hover{background-color:rgb(var(--green-5));border-color:rgb(var(--green-5))}.u-slider-blue .t-slider__button{background:rgb(var(--blue-5));border-color:rgb(var(--blue-5))}.u-slider-blue .t-slider__button--dragging,.u-slider-blue .t-slider__button:hover{border-color:rgb(var(--blue-6));background-color:rgb(var(--blue-6))!important}.u-slider-no-fill .t-slider__track{background:0 0}.u-slider .t-slider__rail,.u-slider .t-slider__track{height:8px}.u-slider .t-slider__button{transition:all .2s linear}.u-slider .t-slider__button--dragging{box-shadow:none;transform:scale(1.25)}.u-web-radio-group.t-size-m .t-radio-button{height:24px!important}.t-notification__content{max-height:100%!important}.t-divider--horizontal.u-web-divider-mini{margin:var(--td-comp-margin-s)0}.t-divider--horizontal.u-web-divider-small{margin:var(--td-comp-margin-m)0}.t-divider--horizontal.u-web-divider-medium{margin:var(--td-comp-margin-xl)0}.t-divider--horizontal.u-web-divider-large{margin:var(--td-comp-margin-xxl)0}.u-select .t-select-input .t-input{display:flex!important}.t-table.u-web-table,.u-web-table .t-table__content tr{background-color:#0000}:root{--scrollbar-track-size:10px;--scrollbar-thumb-bar-size:6px;--scrollbar-thumb-bar-bg-color:rgb(var(--gray-5),.6);--scrollbar-thumb-bar-bg-color-hover:rgb(var(--gray-6),.8);--scrollbar-thumb-bar-border-radius:var(--u-radius-small);--scrollbar-track-bg-color:var(--u-bg-color-2);--scrollbar-track-border-size:1px;--scrollbar-track-border-color:var(--u-color-neutral-3)}html[theme-mode=dark]{--scrollbar-thumb-bar-bg-color:rgb(var(--gray-6),.6);--scrollbar-thumb-bar-bg-color-hover:rgb(var(--gray-7),.8);--scrollbar-track-bg-color:var(--u-bg-color-2);--scrollbar-track-border-color:var(--u-color-neutral-2)}*,:before,:after{box-sizing:border-box;margin:0;padding:0;font-weight:400}*,:before,:after,::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 #0000;--un-ring-shadow:0 0 #0000;--un-shadow-inset: ;--un-shadow:0 0 #0000;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:#93c5fd80;--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }.i-p-check{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M43 11L16.875 37L5 25.1818' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-checkSmall{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 24L20 34L40 14' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-close{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 8L40 40' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 40L40 8' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-closeSmall{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 14L34 34' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14 34L34 14' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-expandLeft{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9C6 7.34315 7.34315 6 9 6H39C40.6569 6 42 7.34315 42 9V39C42 40.6569 40.6569 42 39 42H9C7.34315 42 6 40.6569 6 39V9Z' fill='none' stroke='currentColor' stroke-width='4' stroke-linejoin='round'/%3E%3Cpath d='M32 6V42' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 20L20 24L16 28' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M26 6H38' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M26 42H38' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-expandRight{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='6' width='36' height='36' rx='3' fill='none' stroke='currentColor' stroke-width='4' stroke-linejoin='round'/%3E%3Cpath d='M18 6V42' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 6H36' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 42H36' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M32 20L28 24L32 28' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-info{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' xmlns='http://www.w3.org/2000/svg' width='256' height='256' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 7q-.825 0-1.412-.587T10 5t.588-1.412T12 3t1.413.588T14 5t-.587 1.413T12 7m0 14q-.625 0-1.062-.437T10.5 19.5v-9q0-.625.438-1.062T12 9t1.063.438t.437 1.062v9q0 .625-.437 1.063T12 21'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:256px;height:256px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-left{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31 36L19 24L31 12' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-loading{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 24C4 35.0457 12.9543 44 24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.-container{width:-100%}.container{width:100%}@media (min-width:360px){.-container{max-width:-360px}.container{max-width:360px}}@media (min-width:640px){.-container{max-width:-640px}.container{max-width:640px}}@media (min-width:768px){.-container{max-width:-768px}.container{max-width:768px}}@media (min-width:800px){.-container{max-width:-800px}.container{max-width:800px}}@media (min-width:1024px){.-container{max-width:-1024px}.container{max-width:1024px}}@media (min-width:1280px){.-container{max-width:-1280px}.container{max-width:1280px}}@media (min-width:1536px){.-container{max-width:-1536px}.container{max-width:1536px}}.visible{visibility:visible}.h-12{height:3rem}.h-5{height:1.25rem}.h-auto{height:auto}.h-full{height:100%}.h-screen{height:100vh}.min-h-0{min-height:0}.w-12{width:3rem}.w-5{width:1.25rem}.w-8{width:2rem}.w-full{width:100%}.flex{display:flex}.cursor-pointer{cursor:pointer}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.overflow-hidden{overflow:hidden}.rounded-full{border-radius:9999px}[stroke-width~="2"]{stroke-width:2px}[stroke-width~="3"]{stroke-width:3px}.p-1{padding:.25rem}.px,[px=""]{padding-left:1rem;padding-right:1rem}.pl-5{padding-left:1.25rem}.pr-3{padding-right:.75rem}.font-bold{font-weight:700}.blur{--un-blur:blur(8px);filter:var(--un-blur)var(--un-brightness)var(--un-contrast)var(--un-drop-shadow)var(--un-grayscale)var(--un-hue-rotate)var(--un-invert)var(--un-saturate)var(--un-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter,backdrop-filter;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}@media (min-width:800px){.ut\:p-2{padding:.5rem}}@media (min-width:1280px){.xl\:p-4{padding:1rem}}.u-web-back-top{z-index:100;cursor:pointer;position:fixed;bottom:50px;right:28px}.u-web-back-top-small .u-web-back-top-btn{width:32px;height:32px}.u-web-back-top-btn{width:40px;height:40px;color:var(--u-text-color-secondary);background-color:var(--u-bg-color-3);border:1px solid var(--u-color-neutral-3);border-radius:var(--u-radius-default);cursor:pointer;box-shadow:var(--u-shadow-sm);outline:none;justify-content:center;align-items:center;font-size:16px;transition:all .2s;display:flex}.u-web-back-top-btn:hover{color:var(--u-text-color-primary);background-color:var(--u-bg-color-3-hover);transform:translateY(-2px)}.u-web-back-top-btn:active{transform:translateY(0)}.u-web-back-top-icon{width:16px;height:16px}.fade-in-enter-active,.fade-in-leave-active{transition:opacity .3s,transform .3s}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:translateY(10px)}.fade-in-enter-to,.fade-in-leave-from{opacity:1;transform:translateY(0)}.u-web-main-content{background:var(--u-bg-color)}.u-web-main-content-inner{background-color:var(--u-bg-color);border-radius:.5rem;height:100%;padding:4px;overflow:hidden auto}.u-web-context-menu-trigger{display:contents}.u-web-context-menu-mask{z-index:999;background:0 0;position:fixed;inset:0}.u-web-context-menu-menu{z-index:1000;background:var(--u-bg-color-3);border:1px solid var(--gray-3);border-radius:var(--u-radius-default);width:max-content;min-width:100px;box-shadow:var(--u-shadow-lg);-webkit-user-select:none;user-select:none;padding:4px 0;position:fixed}.u-web-context-menu-menu-small{min-width:81px;padding:3px 0}.u-web-context-menu-menu-mini{min-width:79px;padding:1px 0}.u-web-context-menu-menu-transition-enter-from,.u-web-context-menu-menu-transition-leave-to{opacity:0;transform:scaleY(.86)}.u-web-context-menu-menu-transition-enter-active,.u-web-context-menu-menu-transition-leave-active{transform-origin:top;transition:opacity .2s,transform .16s}.u-web-context-menu-submenu-popup{z-index:1001;position:absolute;top:0;left:100%}.u-web-context-menu-item{color:var(--u-text-color);cursor:pointer;white-space:nowrap;border-radius:4px;align-items:center;margin:0 4px;padding:6px 12px;font-size:14px;line-height:22px;transition:all .2s;display:flex;position:relative}.u-web-context-menu-menu-small .u-web-context-menu-item{margin:0 3px;padding:5px 9px;font-size:12px;line-height:19px}.u-web-context-menu-menu-mini .u-web-context-menu-item{margin:0 2px;padding:3px 7px;font-size:12px;line-height:17px}.u-web-context-menu-item:hover{background-color:var(--u-bg-color-3-hover)}.u-web-context-menu-item:active{background-color:var(--u-bg-color-3-active)}.u-web-context-menu-item-disabled{color:var(--u-text-color-disabled);cursor:not-allowed}.u-web-context-menu-item-disabled:hover{background-color:#0000}.u-web-context-menu-item-danger{color:var(--u-text-color-danger)}.u-web-context-menu-item-danger:hover{background-color:rgba(var(--red-5),.1)}.u-web-context-menu-item-icon{margin-right:8px;font-size:14px}.u-web-context-menu-menu-small .u-web-context-menu-item-icon{margin-right:7px;font-size:13px}.u-web-context-menu-menu-mini .u-web-context-menu-item-icon{margin-right:5px;font-size:11px}.u-web-context-menu-item-label{flex:1}.u-web-context-menu-submenu{position:relative}.u-web-context-menu-submenu-arrow{color:rgb(var(--gray-4));margin-left:8px;font-size:10px;transition:color 90ms linear}.u-web-context-menu-menu-small .u-web-context-menu-submenu-arrow{margin-left:7px;font-size:9px}.u-web-context-menu-menu-mini .u-web-context-menu-submenu-arrow{margin-left:5px;font-size:7px}.u-web-context-menu-submenu-active{background-color:#0000000a}.u-web-context-menu-submenu-active>.u-web-context-menu-submenu-arrow{color:rgb(var(--gray-6))}.u-web-context-menu-submenu-disabled .u-web-context-menu-submenu-arrow{color:rgb(var(--gray-3))}.u-web-context-menu-group-title{color:var(--u-text-color-secondary);padding:4px 6px;font-size:12px;font-weight:500;line-height:20px}.u-web-context-menu-menu-small .u-web-context-menu-group-title{padding:3px 5px;font-size:10px;line-height:17px}.u-web-context-menu-menu-mini .u-web-context-menu-group-title{padding:1px 3px;font-size:10px;line-height:15px}.u-web-context-menu-group:not(:first-child){border-top:1px solid var(--u-color-neutral-2);margin-top:2px;padding-top:2px}.u-web-context-menu-divider{background-color:var(--u-color-neutral-2);height:1px;margin:4px 0}.u-web-split-panel{width:100%;height:100%;display:flex}.u-web-split-panel-horizontal{flex-direction:row}.u-web-split-panel-vertical{flex-direction:column}.u-web-split-panel-pane{overflow:hidden}.u-web-split-panel-pane-second{flex:1;min-width:0;min-height:0}.u-web-split-trigger{background:var(--u-bg-color-2,#f0f0f0);-webkit-user-select:none;user-select:none;justify-content:center;align-items:center;transition:background-color .2s;display:flex;position:relative}.u-web-split-trigger:hover:not(.u-web-split-trigger-disabled){background:var(--u-bg-color-3-hover,#e8e8e8)}.u-web-split-trigger-horizontal{cursor:col-resize;width:6px;margin:0 1px}.u-web-split-trigger-horizontal .u-web-split-trigger-icon{flex-direction:column;gap:2px;display:flex}.u-web-split-trigger-horizontal .u-web-split-trigger-line{background:var(--u-text-color-placeholder,#999);border-radius:1px;width:2px;height:12px}.u-web-split-trigger-vertical{cursor:row-resize;height:6px;margin:1px 0}.u-web-split-trigger-vertical .u-web-split-trigger-icon{flex-direction:row;gap:2px;display:flex}.u-web-split-trigger-vertical .u-web-split-trigger-line{background:var(--u-text-color-placeholder,#999);border-radius:1px;width:12px;height:2px}.u-web-split-trigger-disabled{cursor:not-allowed;opacity:.5}.u-web-split-trigger-disabled:hover{background:var(--u-bg-color-2,#f0f0f0)}.utools{height:100%}.utools .t-default-menu.t-is-collapsed .t-menu__logo>*,.utools .t-menu__logo>*{margin-left:0}.utools .t-is-collapsed .t-menu__logo .title{display:none}.utools .t-is-collapsed .t-menu__logo:not(:empty){border-bottom:none;justify-content:center}.utools .t-menu__logo{padding:0 8px}.utools .u-web-left-menu-small .t-default-menu__inner .t-menu{padding:8px 3px}.utools .t-default-menu__inner .t-menu{padding:12px 6px}.utools .t-default-menu{background:var(--u-bg-color)}.utools .t-default-menu .t-menu__item.t-is-active:not(.t-is-opened),.utools .t-default-menu .t-menu__item:hover:not(.t-is-active):not(.t-is-disabled){background:var(--u-bg-color-2)}.u-web-utools-left-menu{width:100%;height:100%;position:relative}.u-web-utools-left-menu .u-web-utools-left-menu-collapse{z-index:888;border-radius:var(--u-radius-circle);background-color:var(--u-bg-color-2);cursor:pointer;width:32px;height:32px;color:var(--u-text-color-3);padding:4px;transition:all .28s linear;position:absolute;top:8px;right:-32px}.u-web-utools-left-menu .u-web-utools-left-menu-collapse:hover{color:var(--u-text-color-hover);box-shadow:0 1px 2px #0000001a}.utools .t-is-collapsed~* .u-web-utools-main-content-area{width:calc(100vw - 52px)}.utools .u-web-left-menu-small .t-is-collapsed~* .u-web-utools-main-content-area{width:calc(100vw - 38px)}.u-web-utools-content-wrapper{box-sizing:border-box;background:var(--u-bg-color);grid-template-rows:24px calc(100vh - 39px) 15px;grid-template-columns:1fr;width:100%;height:100%;min-height:100vh;display:grid;overflow:auto hidden}.u-web-utools-content-wrapper .content{width:100%;max-width:100%;padding:4px;overflow-x:hidden}.u-web-utools-content-wrapper .content .content-inner{border-radius:var(--u-radius-medium);background-color:var(--u-bg-color-2);width:100%;height:100%;overflow-y:auto;box-shadow:0 1px 2px #0000001a}.u-web-page-header{background:var(--u-bg-color-2);border-bottom:1px solid var(--u-color-neutral-2);justify-content:space-between;align-items:center;padding:16px 20px;display:flex}.u-web-page-header-mini{padding:10px 0}.u-web-page-header-mini .u-web-page-header-title{font-size:14px}.u-web-page-header-mini .u-web-page-header-header-back .t-icon{font-size:16px}.u-web-page-header-small{padding:14px 16px 12px}.u-web-page-header-small .u-web-page-header-title{font-size:16px}.u-web-page-header-small .u-web-page-header-header-back .t-icon{font-size:18px}.u-web-page-header-large{padding:20px 24px}.u-web-page-header-large .u-web-page-header-title{font-size:20px}.u-web-page-header-large .u-web-page-header-header-back .t-icon{font-size:24px}.u-web-page-header-header{gap:6px}.u-web-page-header-header-back .t-icon{font-size:20px}.u-web-page-header-subtitle{color:var(--u-text-color-secondary)}.u-web-page-header-divider{height:20px}.u-web-page-header-title{color:var(--u-text-color);font-size:18px;font-weight:500;line-height:1.5}.u-web-page-header-extra{align-items:center;gap:16px;display:flex}.u-web-result{box-sizing:border-box;width:100%;padding:48px 24px 24px}.u-web-result-icon{text-align:center;margin-bottom:12px;font-size:48px}.u-web-result-icon-tip{border-radius:50%;justify-content:center;align-items:center;width:72px;height:72px;margin:0 auto;display:flex}.u-web-result-icon-custom .u-web-result-icon-tip{color:var(--u-text-color-secondary);width:unset;height:unset;font-size:64px}.u-web-result-icon-success .u-web-result-icon-tip{color:rgb(var(--green-6));background-color:rgba(var(--green-6),.1)}.u-web-result-icon-error .u-web-result-icon-tip{color:rgb(var(--red-6));background-color:rgba(var(--red-6),.1)}.u-web-result-icon-info .u-web-result-icon-tip{color:rgb(var(--blue-6));background-color:rgba(var(--blue-6),.1)}.u-web-result-icon-warning .u-web-result-icon-tip{color:#ff9500;background-color:#ff95001a}.u-web-result-icon-404,.u-web-result-icon-403,.u-web-result-icon-500{padding-top:24px}.u-web-result-icon-404 .u-web-result-icon-tip,.u-web-result-icon-403 .u-web-result-icon-tip,.u-web-result-icon-500 .u-web-result-icon-tip{width:240px;height:160px;line-height:160px}.u-web-result-title{color:var(--u-text-color-primary);text-align:center;margin-bottom:4px;font-size:14px;font-weight:600;line-height:1.5715}.u-web-result-subtitle{color:var(--u-text-color-secondary);text-align:center;margin-bottom:8px;font-size:14px;line-height:1.5715}.u-web-result-extra{text-align:center;margin-top:16px}.u-web-result-content{margin-top:24px}.result-error-icon[data-v-fc6ebdc7]{flex-direction:column;align-items:center;gap:16px;display:flex}.result-error-text[data-v-fc6ebdc7]{color:var(--u-text-color-secondary);opacity:.6;font-size:48px;font-weight:700}.result-error-icon[data-v-cdc3b8a1]{flex-direction:column;align-items:center;gap:16px;display:flex}.result-error-text[data-v-cdc3b8a1]{color:var(--u-text-color-secondary);opacity:.6;font-size:48px;font-weight:700}.result-error-icon[data-v-cb66ef61]{flex-direction:column;align-items:center;gap:16px;display:flex}.result-error-text[data-v-cb66ef61]{color:var(--u-text-color-secondary);opacity:.6;font-size:48px;font-weight:700}.u-web-setting-item{background:var(--u-bg-color-3);-webkit-user-select:none;user-select:none;padding:15px 10px;transition:all .28s linear}.u-web-setting-item:hover{background:rgb(var(--gray-2),.2)}.u-web-setting-item-small{padding:8px}.u-web-setting-item-small .u-web-setting-item-title{font-size:14px}.u-web-setting-item-title{margin-bottom:.25rem;font-size:1rem;font-weight:700}.u-web-setting-item-desc{color:var(--u-text-color-tips);font-size:12px}.u-web-division{border-bottom:1px dashed var(--u-color-neutral-2)}.u-web-setting-group>div:last-child{border-radius:6px;transition:all .26s linear;overflow:hidden}.u-web-setting-group>div:last-child:hover{box-shadow:0 3px 5px #0000000a}.u-web-setting-group-header,.u-web-setting-group-title{margin-bottom:.5rem}.u-web-setting-group-title{border-left:2px solid rgb(var(--u-blue-5));padding-left:.5rem;font-size:1.125rem;font-weight:600;line-height:1.75rem}.u-web-switch-green{transition:background-color .2s linear}.u-web-switch-green.t-is-checked{background-color:rgba(var(--green-5))}.u-web-switch-green.t-is-checked:hover{background-color:rgba(var(--green-6))}@keyframes switch-loading-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.switch-slide-text-enter-from{left:-100%!important}.switch-slide-text-enter-to{left:8px!important}.switch-slide-text-enter-active{transition:left .2s}.switch-slide-text-leave-from{left:100%!important}.switch-slide-text-leave-to{left:30px!important}.switch-slide-text-leave-active{transition:left .2s}.u-web-switch-plus{box-sizing:border-box;vertical-align:middle;background-color:rgb(var(--gray-4));cursor:pointer;border:none;border-radius:14px;outline:none;min-width:44px;height:28px;padding:0;line-height:28px;transition:background-color .2s;position:relative;overflow:hidden}.u-web-switch-plus-handle{width:20px;height:20px;color:rgb(var(--gray-6));background-color:var(--u-bg-color-3);box-shadow:var(--u-shadow-sm);border-radius:50%;justify-content:center;align-items:center;font-size:12px;transition:all .2s;display:flex;position:absolute;top:4px;left:4px}.u-web-switch-plus-checked{background-color:rgb(var(--blue-5))}.u-web-switch-plus-checked .u-web-switch-plus-handle{color:rgb(var(--blue-5));left:calc(100% - 24px)}.u-web-switch-plus[disabled] .u-web-switch-plus-handle,.u-web-switch-plus[disabled].u-web-switch-plus-checked .u-web-switch-plus-handle{color:rgb(var(--gray-5))}.u-web-switch-plus-text-holder{opacity:0;margin:0 8px 0 30px;font-size:12px}.u-web-switch-plus-text{color:rgb(var(--gray-6));font-size:12px;position:absolute;top:0;left:30px}.u-web-switch-plus-checked .u-web-switch-plus-text-holder{margin:0 30px 0 8px}.u-web-switch-plus-checked .u-web-switch-plus-text{color:var(--u-bg-color-3);left:8px}.u-web-switch-plus[disabled]{background-color:rgb(var(--gray-3));cursor:not-allowed}.u-web-switch-plus[disabled] .u-web-switch-plus-text{color:rgb(var(--gray-5))}.u-web-switch-plus[disabled].u-web-switch-plus-checked{background-color:rgb(var(--gray-4))}.u-web-switch-plus[disabled].u-web-switch-plus-checked .u-web-switch-plus-text{color:rgb(var(--gray-5))}.u-web-switch-plus-loading{background-color:rgb(var(--gray-4))}.u-web-switch-plus-loading .u-web-switch-plus-handle,.u-web-switch-plus-loading .u-web-switch-plus-text{color:rgb(var(--gray-6))}.u-web-switch-plus-loading.u-web-switch-plus-checked{background-color:rgb(var(--blue-6))}.u-web-switch-plus-loading.u-web-switch-plus-checked .u-web-switch-plus-handle{color:rgb(var(--blue-5))}.u-web-switch-plus-loading.u-web-switch-plus-checked .u-web-switch-plus-text{color:var(--u-bg-color-3)}.u-web-switch-plus-loading-icon{animation:1s linear infinite switch-loading-spin;display:inline-block}.u-web-switch-plus-medium{min-width:38px;height:24px;line-height:24px}.u-web-switch-plus-medium.u-web-switch-plus-checked{padding-left:-4px}.u-web-switch-plus-medium .u-web-switch-plus-handle{border-radius:12px;width:16px;height:16px;top:4px;left:4px}.u-web-switch-plus-medium .u-web-switch-plus-handle-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)scale(.8)}.u-web-switch-plus-medium.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 20px)}.u-web-switch-plus-medium .u-web-switch-plus-text-holder{margin:0 8px 0 26px}.u-web-switch-plus-medium .u-web-switch-plus-text{left:26px}.u-web-switch-plus-medium.u-web-switch-plus-checked .u-web-switch-plus-text-holder{margin:0 26px 0 8px}.u-web-switch-plus-medium.u-web-switch-plus-checked .u-web-switch-plus-text{left:8px}.u-web-switch-plus-small{min-width:32px;height:20px;line-height:20px}.u-web-switch-plus-small.u-web-switch-plus-checked{padding-left:-3px}.u-web-switch-plus-small .u-web-switch-plus-handle{border-radius:10px;width:14px;height:14px;top:3px;left:3px}.u-web-switch-plus-small .u-web-switch-plus-handle-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)scale(.66667)}.u-web-switch-plus-small.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 17px)}.u-web-switch-plus-mini{min-width:26px;height:16px;line-height:16px}.u-web-switch-plus-mini.u-web-switch-plus-checked{padding-left:-3px}.u-web-switch-plus-mini .u-web-switch-plus-handle{border-radius:8px;width:10px;height:10px;top:3px;left:3px}.u-web-switch-plus-mini .u-web-switch-plus-handle-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)scale(.5)}.u-web-switch-plus-mini.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 13px)}.u-web-switch-plus-mini .u-web-switch-plus-text-holder{margin:0 6px 0 17px;font-size:10px}.u-web-switch-plus-mini .u-web-switch-plus-text{font-size:10px;left:17px}.u-web-switch-plus-mini.u-web-switch-plus-checked .u-web-switch-plus-text-holder{margin:0 17px 0 6px}.u-web-switch-plus-mini.u-web-switch-plus-checked .u-web-switch-plus-text{left:6px}.u-web-switch-plus-type-round{border-radius:var(--u-radius-small);min-width:44px}.u-web-switch-plus-type-round .u-web-switch-plus-handle{border-radius:2px}.u-web-switch-plus-type-round.u-web-switch-plus-medium{border-radius:var(--u-radius-small);min-width:38px}.u-web-switch-plus-type-round.u-web-switch-plus-medium .u-web-switch-plus-handle{border-radius:2px}.u-web-switch-plus-type-round.u-web-switch-plus-small{border-radius:2px;min-width:32px;height:20px;line-height:20px}.u-web-switch-plus-type-round.u-web-switch-plus-small .u-web-switch-plus-handle{border-radius:1px}.u-web-switch-plus-type-round.u-web-switch-plus-mini{border-radius:2px;min-width:26px}.u-web-switch-plus-type-round.u-web-switch-plus-mini .u-web-switch-plus-handle{border-radius:1px}.u-web-switch-plus-type-line{min-width:44px;overflow:unset;background-color:#0000}.u-web-switch-plus-type-line:after{background-color:rgb(var(--gray-4));content:"";border-radius:2px;width:100%;height:4px;transition:background-color .2s;display:block}.u-web-switch-plus-type-line .u-web-switch-plus-handle{background-color:var(--u-bg-color-3);width:18px;height:18px;box-shadow:var(--u-shadow-sm);border-radius:9px;top:5px;left:0}.u-web-switch-plus-type-line.u-web-switch-plus-checked{background-color:#0000}.u-web-switch-plus-type-line.u-web-switch-plus-checked:after{background-color:rgb(var(--blue-5))}.u-web-switch-plus-type-line.u-web-switch-plus-custom-color{--custom-color:rgb(var(--gray-4))}.u-web-switch-plus-type-line.u-web-switch-plus-custom-color:after{background-color:var(--custom-color)}.u-web-switch-plus-type-line.u-web-switch-plus-custom-color.u-web-switch-plus-checked{--custom-color:rgb(var(--blue-5))}.u-web-switch-plus-type-line.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 18px)}.u-web-switch-plus-type-line.u-web-switch-plus-medium{min-width:38px}.u-web-switch-plus-type-line.u-web-switch-plus-medium .u-web-switch-plus-handle{border-radius:7px;width:14px;height:14px;top:5px}.u-web-switch-plus-type-line.u-web-switch-plus-medium.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 14px)}.u-web-switch-plus-type-line[disabled]{cursor:not-allowed;background-color:#0000}.u-web-switch-plus-type-line[disabled]:after{background-color:rgb(var(--gray-3))}.u-web-switch-plus-type-line[disabled].u-web-switch-plus-checked{background-color:#0000}.u-web-switch-plus-type-line[disabled].u-web-switch-plus-checked:after{background-color:rgb(var(--gray-4))}.u-web-switch-plus-type-line.u-web-switch-plus-loading{background-color:#0000}.u-web-switch-plus-type-line.u-web-switch-plus-loading:after{background-color:rgb(var(--gray-4))}.u-web-switch-plus-type-line.u-web-switch-plus-loading.u-web-switch-plus-checked{background-color:#0000}.u-web-switch-plus-type-line.u-web-switch-plus-loading.u-web-switch-plus-checked:after{background-color:rgb(var(--blue-6))}.u-web-switch-plus-type-line.u-web-switch-plus-small{min-width:32px;height:20px;line-height:20px}.u-web-switch-plus-type-line.u-web-switch-plus-small.u-web-switch-plus-checked{padding-left:-4px}.u-web-switch-plus-type-line.u-web-switch-plus-small .u-web-switch-plus-handle{border-radius:10px;width:12px;height:12px;top:4px}.u-web-switch-plus-type-line.u-web-switch-plus-small .u-web-switch-plus-handle-icon{transform:translate(-50%,-50%)scale(1)}.u-web-switch-plus-type-line.u-web-switch-plus-small.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 12px)}.u-web-switch-plus-type-line.u-web-switch-plus-mini{min-width:26px}.u-web-switch-plus-type-line.u-web-switch-plus-mini .u-web-switch-plus-handle{border-radius:4px;width:8px;height:8px;top:4px}.u-web-switch-plus-type-line.u-web-switch-plus-mini.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 8px)}.u-web-scrollbar{position:relative}.u-web-scrollbar-container{scrollbar-width:none;position:relative;overflow:auto}.u-web-scrollbar-container::-webkit-scrollbar{display:none}.u-web-scrollbar-track{z-index:100;position:absolute}.u-web-scrollbar-track-direction-horizontal{box-sizing:border-box;width:100%;height:var(--scrollbar-track-size);bottom:0;left:0}.u-web-scrollbar-track-direction-vertical{box-sizing:border-box;width:var(--scrollbar-track-size);height:100%;top:0;right:0}.u-web-scrollbar-thumb{box-sizing:border-box;display:block;position:absolute}.u-web-scrollbar-thumb-bar{background-color:var(--scrollbar-thumb-bar-bg-color);border-radius:var(--scrollbar-thumb-bar-border-radius);width:100%;height:100%}.u-web-scrollbar-thumb:hover .u-web-scrollbar-thumb-bar,.u-web-scrollbar-thumb-dragging .u-web-scrollbar-thumb-bar{background-color:var(--scrollbar-thumb-bar-bg-color-hover)}.u-web-scrollbar-thumb-direction-horizontal .u-web-scrollbar-thumb-bar{height:var(--scrollbar-thumb-bar-size);margin:calc((var(--scrollbar-track-size) - var(--scrollbar-thumb-bar-size))/2)0}.u-web-scrollbar-thumb-direction-vertical .u-web-scrollbar-thumb-bar{width:var(--scrollbar-thumb-bar-size);margin:0 calc((var(--scrollbar-track-size) - var(--scrollbar-thumb-bar-size))/2)}.u-web-scrollbar.u-web-scrollbar-type-embed .u-web-scrollbar-thumb{opacity:0;transition:opacity .2s}.u-web-scrollbar.u-web-scrollbar-type-embed .u-web-scrollbar-thumb-dragging,.u-web-scrollbar.u-web-scrollbar-type-embed:hover .u-web-scrollbar-thumb{opacity:.8}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-track{background-color:var(--scrollbar-track-bg-color)}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-track-direction-horizontal{border-top:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color);border-bottom:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color)}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-track-direction-vertical{border-right:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color);border-left:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color)}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-thumb-direction-horizontal{margin:calc(-1*var(--scrollbar-track-border-size))0}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-thumb-direction-vertical{margin:0 calc(-1*var(--scrollbar-track-border-size))}.u-web-scrollbar.u-web-scrollbar-type-track.u-web-scrollbar-both .u-web-scrollbar-track-direction-vertical:after{right:calc(-1*var(--scrollbar-track-border-size));box-sizing:border-box;width:var(--scrollbar-track-size);height:var(--scrollbar-track-size);background-color:var(--scrollbar-track-bg-color);border-right:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color);border-bottom:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color);content:"";display:block;position:absolute;bottom:0}
|
|
2
2
|
/*$vite$:1*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xiaou66/u-web-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.67",
|
|
4
4
|
"description": "web-ui",
|
|
5
5
|
"main": "./dist/index.es.js",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
@@ -54,8 +54,5 @@
|
|
|
54
54
|
},
|
|
55
55
|
"./dist/u-web-ui.css": "./dist/u-web-ui.css",
|
|
56
56
|
"./package.json": "./package.json"
|
|
57
|
-
},
|
|
58
|
-
"dependencies": {
|
|
59
|
-
"@floating-ui/vue": "^1.1.9"
|
|
60
57
|
}
|
|
61
58
|
}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
-
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3
|
-
export default _default;
|
|
4
|
-
//# sourceMappingURL=Trigger.vue.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Trigger.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Trigger/Trigger.vue"],"names":[],"mappings":";;AAgDA,wBAKG"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Trigger/index.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,CAAC;AAClB,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,eAAe,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"interface.d.ts","sourceRoot":"","sources":["../../../src/components/Trigger/interface.ts"],"names":[],"mappings":""}
|