@xiaou66/u-web-ui 0.0.56 → 0.0.60

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.
@@ -0,0 +1,3 @@
1
+ export * from './useLoading';
2
+ export * from './useTheme';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC"}
@@ -0,0 +1,19 @@
1
+ import { ComputedRef, Ref } from 'vue';
2
+ type ProxyFunction = (...any: any[]) => Promise<any | void>;
3
+ /**
4
+ * 单步加载,适合在单个加载按钮使用
5
+ * @param func 加载函数
6
+ * @return [被代理后的函数, 加载状态]
7
+ */
8
+ export declare const useSingleLoading: (func: Function) => [ProxyFunction, Ref<boolean>];
9
+ type getLoadUniqueKey<T> = (...args: any[]) => T;
10
+ type loadStatusCompute<T> = ComputedRef<(uniqueKey: T) => boolean>;
11
+ /**
12
+ * 适用列表或多个需要加载的状态的函数
13
+ * @param func 加载函数
14
+ * @param getLoadUniqueKey 获取判断加载的唯一标识
15
+ * @return [被代理后的函数, 加载状态(唯一键), 所有加载中的唯一标识集合]
16
+ */
17
+ export declare const useMultiLoading: <T = any>(func: Function, getLoadUniqueKey: getLoadUniqueKey<T>) => [ProxyFunction, loadStatusCompute<T>, Ref<T[]>];
18
+ export {};
19
+ //# sourceMappingURL=useLoading.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useLoading.d.ts","sourceRoot":"","sources":["../../src/hooks/useLoading.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,KAAK,WAAW,EAAE,KAAK,GAAG,EAAO,MAAM,KAAK,CAAA;AAW/D,KAAK,aAAa,GAAG,CAAC,GAAG,GAAG,EAAE,GAAG,EAAE,KAAK,OAAO,CAAC,GAAG,GAAG,IAAI,CAAC,CAAC;AAE5D;;;;GAIG;AACH,eAAO,MAAM,gBAAgB,GAAI,MAAM,QAAQ,KAAI,CAAC,aAAa,EAAE,GAAG,CAAC,OAAO,CAAC,CAsB9E,CAAA;AAGD,KAAK,gBAAgB,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,CAAC,CAAC;AACjD,KAAK,iBAAiB,CAAC,CAAC,IAAI,WAAW,CAAC,CAAC,SAAS,EAAE,CAAC,KAAK,OAAO,CAAC,CAAC;AAEnE;;;;;GAKG;AACH,eAAO,MAAM,eAAe,GAAI,CAAC,GAAC,GAAG,EAAG,MAAM,QAAQ,EAAE,kBAAkB,gBAAgB,CAAC,CAAC,CAAC,KAAG,CAAC,aAAa,EAAE,iBAAiB,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,EAAE,CAAC,CAyB7I,CAAA"}
@@ -0,0 +1,13 @@
1
+ type themeType = 'default' | 'dark' | 'auto';
2
+ export interface UseThemeOptions {
3
+ setDefaultTheme: () => void;
4
+ setDarkTheme: () => void;
5
+ getUserThemeConfig?: () => themeType;
6
+ }
7
+ export declare function useTheme(options: UseThemeOptions): {
8
+ themeRefresh: () => void;
9
+ };
10
+ export declare function setCurrentTheme(theme: 'default' | 'dark'): void;
11
+ export declare function getCurrentTheme(): themeType;
12
+ export {};
13
+ //# sourceMappingURL=useTheme.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useTheme.d.ts","sourceRoot":"","sources":["../../src/hooks/useTheme.ts"],"names":[],"mappings":"AAIA,KAAK,SAAS,GAAE,SAAS,GAAG,MAAM,GAAE,MAAM,CAAC;AAE3C,MAAM,WAAW,eAAe;IAC9B,eAAe,EAAE,MAAM,IAAI,CAAC;IAC5B,YAAY,EAAE,MAAM,IAAI,CAAC;IACzB,kBAAkB,CAAC,EAAE,MAAM,SAAS,CAAC;CACtC;AAED,wBAAgB,QAAQ,CAAC,OAAO,EAAE,eAAe;;EAuChD;AAED,wBAAgB,eAAe,CAAC,KAAK,EAAE,SAAS,GAAG,MAAM,QAKxD;AAED,wBAAgB,eAAe,cAE9B"}
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './components';
2
2
  export * from './utils';
3
+ export * from './hooks';
3
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,0BAA0B,CAAA;AACjC,OAAO,iBAAiB,CAAA;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,0BAA0B,CAAA;AACjC,OAAO,iBAAiB,CAAA;AACxB,cAAc,cAAc,CAAC;AAC7B,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC"}
package/dist/index.es.js CHANGED
@@ -52,10 +52,10 @@ function me(e) {
52
52
  function Z(e, t, n) {
53
53
  e.addEventListener(t, n);
54
54
  }
55
- function Q(e, t, n) {
55
+ function he(e, t, n) {
56
56
  e.removeEventListener(t, n);
57
57
  }
58
- var he = /* @__PURE__ */ f({
58
+ var ge = /* @__PURE__ */ f({
59
59
  __name: "BackTop",
60
60
  props: {
61
61
  visibleHeight: { default: 200 },
@@ -120,7 +120,7 @@ var he = /* @__PURE__ */ f({
120
120
  _: 3
121
121
  }));
122
122
  }
123
- }), ge = he, _e = /* @__PURE__ */ f({
123
+ }), _e = ge, ve = /* @__PURE__ */ f({
124
124
  __name: "WebBaseLayout",
125
125
  setup(e) {
126
126
  return (e, t) => {
@@ -146,14 +146,14 @@ var he = /* @__PURE__ */ f({
146
146
  });
147
147
  };
148
148
  }
149
- }), ve = _e;
150
- let $ = /* @__PURE__ */ function(e) {
149
+ }), ye = ve;
150
+ let be = /* @__PURE__ */ function(e) {
151
151
  return e.Refresh = "u:leftMenu:refresh", e;
152
152
  }({});
153
- const ye = { refresh: () => {
154
- window.dispatchEvent(new CustomEvent($.Refresh));
153
+ const xe = { refresh: () => {
154
+ window.dispatchEvent(new CustomEvent(be.Refresh));
155
155
  } };
156
- var be = /* @__PURE__ */ f({
156
+ var Se = /* @__PURE__ */ f({
157
157
  __name: "LeftMenu",
158
158
  props: /* @__PURE__ */ h({
159
159
  hideOperations: {
@@ -195,7 +195,7 @@ var be = /* @__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, $.Refresh, h), n({
198
+ return r.refreshEventListener && ae(document, be.Refresh, h), n({
199
199
  changeCollapsed: s,
200
200
  refreshRouter: h
201
201
  }), (t, n) => {
@@ -259,7 +259,7 @@ var be = /* @__PURE__ */ f({
259
259
  ]);
260
260
  };
261
261
  }
262
- }), xe = be, Se = /* @__PURE__ */ f({
262
+ }), Ce = Se, we = /* @__PURE__ */ f({
263
263
  __name: "ContextMenuItem",
264
264
  props: {
265
265
  label: {},
@@ -303,7 +303,7 @@ var be = /* @__PURE__ */ f({
303
303
  class: v([N(i)("icon"), e.icon])
304
304
  }, A(e.icon), 3)) : a("", !0), s("span", { class: v(N(i)("label")) }, A(e.label), 3)], 34));
305
305
  }
306
- }), Ce = Se, we = /* @__PURE__ */ f({
306
+ }), Te = we, Ee = /* @__PURE__ */ f({
307
307
  __name: "ContextMenuGroup",
308
308
  props: { title: {} },
309
309
  setup(e) {
@@ -313,12 +313,12 @@ var be = /* @__PURE__ */ f({
313
313
  class: v(N(t)("title"))
314
314
  }, A(e.title), 3)) : a("", !0), D(e.$slots, "default")], 2));
315
315
  }
316
- }), Te = we, Ee = /* @__PURE__ */ f({
316
+ }), De = Ee, Oe = /* @__PURE__ */ f({
317
317
  __name: "ContextMenuDivider",
318
318
  setup(e) {
319
319
  return (e, t) => (S(), o("div", { class: v(N(Y)("context-menu-divider")) }, null, 2));
320
320
  }
321
- }), De = Ee, Oe = /* @__PURE__ */ f({
321
+ }), ke = Oe, Ae = /* @__PURE__ */ f({
322
322
  __name: "ContextMenuSubmenu",
323
323
  props: {
324
324
  label: {},
@@ -431,7 +431,7 @@ var be = /* @__PURE__ */ f({
431
431
  }, [D(e.$slots, "default")], 38)) : a("", !0)
432
432
  ], 34));
433
433
  }
434
- }), ke = Oe, Ae = /* @__PURE__ */ f({
434
+ }), je = Ae, Me = /* @__PURE__ */ f({
435
435
  __name: "ContextMenu",
436
436
  props: {
437
437
  hideOnSelect: {
@@ -504,12 +504,12 @@ var be = /* @__PURE__ */ f({
504
504
  }, null, 34)) : a("", !0)]))
505
505
  ], 64));
506
506
  }
507
- }), je = Ae, Me = /* @__PURE__ */ f({
507
+ }), Ne = Me, Pe = /* @__PURE__ */ f({
508
508
  __name: "WebLayout",
509
509
  setup(e) {
510
510
  return (e, t) => {
511
511
  let n = W, r = O("router-view");
512
- return S(), i(ve, null, {
512
+ return S(), i(ye, null, {
513
513
  header: R(() => [d(n, {
514
514
  value: "item1",
515
515
  height: "60px"
@@ -522,13 +522,13 @@ var be = /* @__PURE__ */ f({
522
522
  fn: R(() => [D(e.$slots, "operations")]),
523
523
  key: "1"
524
524
  } : void 0]), 1024)]),
525
- left: R(() => [D(e.$slots, "left", {}, () => [d(N(xe))])]),
525
+ left: R(() => [D(e.$slots, "left", {}, () => [d(N(Ce))])]),
526
526
  default: R(() => [D(e.$slots, "default", {}, () => [s("div", { class: v([N(Y)("main-content-inner")]) }, [d(r)], 2)])]),
527
527
  _: 3
528
528
  });
529
529
  };
530
530
  }
531
- }), Ne = Me, Pe = /* @__PURE__ */ f({
531
+ }), Fe = Pe, Ie = /* @__PURE__ */ f({
532
532
  __name: "SplitPanel",
533
533
  props: {
534
534
  component: { default: "div" },
@@ -680,7 +680,7 @@ var be = /* @__PURE__ */ f({
680
680
  _: 3
681
681
  }, 8, ["class"]));
682
682
  }
683
- }), Fe = Pe, Ie = /* @__PURE__ */ f({
683
+ }), Le = Ie, Re = /* @__PURE__ */ f({
684
684
  __name: "UtoolsBaseLayout",
685
685
  setup(e) {
686
686
  return (e, t) => {
@@ -700,12 +700,12 @@ var be = /* @__PURE__ */ f({
700
700
  });
701
701
  };
702
702
  }
703
- }), Le = Ie;
704
- const Re = { class: "utools" }, ze = { class: "w-8 h-auto overflow-hidden" }, Be = ["src"], Ve = { class: "title pl-5" }, He = { class: "flex justify-end h-full pr-3 w-full" }, Ue = { class: "content" }, We = { class: "content-inner" }, Ge = {
703
+ }), ze = Re;
704
+ const Be = { class: "utools" }, Ve = { class: "w-8 h-auto overflow-hidden" }, He = ["src"], Ue = { class: "title pl-5" }, We = { class: "flex justify-end h-full pr-3 w-full" }, Ge = { class: "content" }, Ke = { class: "content-inner" }, qe = {
705
705
  class: "flex items-center justify-center",
706
706
  style: { "font-size": "10px" }
707
707
  };
708
- var Ke = /* @__PURE__ */ f({
708
+ var Je = /* @__PURE__ */ f({
709
709
  __name: "UtoolsLayout",
710
710
  props: {
711
711
  avatar: { default: "https://www.u-tools.cn/assets/favicon.png" },
@@ -718,11 +718,11 @@ var Ke = /* @__PURE__ */ f({
718
718
  let t = T(), n = T(!0);
719
719
  return (e, r) => {
720
720
  let i = O("router-view");
721
- return S(), o("div", Re, [d(Le, null, {
721
+ return S(), o("div", Be, [d(ze, null, {
722
722
  left: R(() => [s("div", { class: v(N(Y)("utools", "left-menu")) }, [s("div", {
723
723
  class: v(["flex items-center justify-center", N(Y)("utools", "left-menu", "collapse")]),
724
724
  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(xe), g({
725
+ }, [s("div", { class: v(["w-5 h-5 font-bold", n.value ? "i-p-expandLeft" : "i-p-expandRight"]) }, null, 2)], 2), d(N(Ce), g({
726
726
  ref_key: "leftMenuRef",
727
727
  ref: t
728
728
  }, {
@@ -734,23 +734,23 @@ var Ke = /* @__PURE__ */ f({
734
734
  "onUpdate:collapsed": r[1] ||= (e) => n.value = e,
735
735
  hideOperations: ""
736
736
  }), {
737
- logo: R(() => [s("div", ze, [s("img", {
737
+ logo: R(() => [s("div", Ve, [s("img", {
738
738
  class: "logo w-full h-full rounded-full",
739
739
  src: e.avatar,
740
740
  alt: "logo"
741
- }, null, 8, Be)]), s("div", Ve, A(e.title), 1)]),
741
+ }, null, 8, He)]), s("div", Ue, A(e.title), 1)]),
742
742
  _: 1
743
743
  }, 16, ["collapsed"])], 2)]),
744
744
  default: R(() => [s("div", { class: v(N(Y)("utools", "content-wrapper")) }, [
745
- s("div", He, [D(e.$slots, "header-tips")]),
746
- s("div", Ue, [s("div", We, [d(i)])]),
747
- D(e.$slots, "footer", {}, () => [s("div", Ge, " © " + A((/* @__PURE__ */ new Date()).getFullYear()) + " [xiaou]。保留所有权利 ", 1)])
745
+ s("div", We, [D(e.$slots, "header-tips")]),
746
+ s("div", Ge, [s("div", Ke, [d(i)])]),
747
+ D(e.$slots, "footer", {}, () => [s("div", qe, " © " + A((/* @__PURE__ */ new Date()).getFullYear()) + " [xiaou]。保留所有权利 ", 1)])
748
748
  ], 2)]),
749
749
  _: 3
750
750
  })]);
751
751
  };
752
752
  }
753
- }), qe = Ke, Je = /* @__PURE__ */ f({
753
+ }), Ye = Je, Xe = /* @__PURE__ */ f({
754
754
  __name: "PageHeader",
755
755
  props: {
756
756
  title: { default: "" },
@@ -787,40 +787,40 @@ var Ke = /* @__PURE__ */ f({
787
787
  }, [D(e.$slots, "extra")], 2)) : a("", !0)], 2);
788
788
  };
789
789
  }
790
- }), Ye = Je, Xe = (e, t) => {
790
+ }), Ze = Xe, Qe = (e, t) => {
791
791
  let n = e.__vccOpts || e;
792
792
  for (let [e, r] of t) n[e] = r;
793
793
  return n;
794
794
  };
795
- const Ze = {}, Qe = { class: "result-error-icon" };
796
- function $e(e, t) {
797
- return S(), o("div", Qe, 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)]);
795
+ const $e = {}, et = { class: "result-error-icon" };
796
+ function tt(e, t) {
797
+ return S(), o("div", et, 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
798
  }
799
- var et = /* @__PURE__ */ Xe(Ze, [["render", $e], ["__scopeId", "data-v-fc6ebdc7"]]);
800
- const tt = {}, nt = { class: "result-error-icon" };
801
- function rt(e, t) {
802
- return S(), o("div", nt, 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)]);
799
+ var nt = /* @__PURE__ */ Qe($e, [["render", tt], ["__scopeId", "data-v-fc6ebdc7"]]);
800
+ const rt = {}, it = { class: "result-error-icon" };
801
+ function at(e, t) {
802
+ return S(), o("div", it, 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
803
  }
804
- var it = /* @__PURE__ */ Xe(tt, [["render", rt], ["__scopeId", "data-v-cdc3b8a1"]]);
805
- const at = {}, ot = { class: "result-error-icon" };
806
- function st(e, t) {
807
- return S(), o("div", ot, 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)]);
804
+ var ot = /* @__PURE__ */ Qe(rt, [["render", at], ["__scopeId", "data-v-cdc3b8a1"]]);
805
+ const st = {}, ct = { class: "result-error-icon" };
806
+ function lt(e, t) {
807
+ return S(), o("div", ct, 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
808
  }
809
- var ct = /* @__PURE__ */ Xe(at, [["render", st], ["__scopeId", "data-v-cb66ef61"]]);
810
- const lt = {
809
+ var ut = /* @__PURE__ */ Qe(st, [["render", lt], ["__scopeId", "data-v-cb66ef61"]]);
810
+ const dt = {
811
811
  key: 0,
812
812
  class: "i-p-info w-12 h-12"
813
- }, ut = {
813
+ }, ft = {
814
814
  key: 1,
815
815
  class: "i-p-check"
816
- }, dt = {
816
+ }, pt = {
817
817
  key: 2,
818
818
  class: "i-p-info w-12 h-12"
819
- }, ft = {
819
+ }, mt = {
820
820
  key: 3,
821
821
  class: "i-p-close"
822
822
  };
823
- var pt = /* @__PURE__ */ f({
823
+ var ht = /* @__PURE__ */ f({
824
824
  __name: "Result",
825
825
  props: {
826
826
  status: { default: "info" },
@@ -844,7 +844,7 @@ var pt = /* @__PURE__ */ f({
844
844
  s("div", { class: v([`${N(c)}-icon`, {
845
845
  [`${N(c)}-icon-${e.status}`]: e.status,
846
846
  [`${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", lt)) : e.status === "success" ? (S(), o("span", ut)) : e.status === "warning" ? (S(), o("span", dt)) : e.status === "error" ? (S(), o("span", ft)) : e.status === "403" ? (S(), i(et, { key: 4 })) : e.status === "404" ? (S(), i(it, { key: 5 })) : e.status === "500" ? (S(), i(ct, { key: 6 })) : a("", !0)])], 2)], 2),
847
+ }]) }, [s("div", { class: v(`${N(c)}-icon-tip`) }, [D(e.$slots, "icon", {}, () => [e.status === "info" ? (S(), o("span", dt)) : e.status === "success" ? (S(), o("span", ft)) : e.status === "warning" ? (S(), o("span", pt)) : e.status === "error" ? (S(), o("span", mt)) : e.status === "403" ? (S(), i(nt, { key: 4 })) : e.status === "404" ? (S(), i(ot, { key: 5 })) : e.status === "500" ? (S(), i(ut, { key: 6 })) : a("", !0)])], 2)], 2),
848
848
  e.title || e.$slots.title ? (S(), o("div", {
849
849
  key: 0,
850
850
  class: v(`${N(c)}-title`)
@@ -863,9 +863,9 @@ var pt = /* @__PURE__ */ f({
863
863
  }, [D(e.$slots, "default")], 2)) : a("", !0)
864
864
  ], 2));
865
865
  }
866
- }), mt = pt;
867
- const ht = { class: "flex justify-between items-center" };
868
- var gt = /* @__PURE__ */ f({
866
+ }), gt = ht;
867
+ const _t = { class: "flex justify-between items-center" };
868
+ var vt = /* @__PURE__ */ f({
869
869
  __name: "SettingItem",
870
870
  props: {
871
871
  title: {},
@@ -883,22 +883,22 @@ var gt = /* @__PURE__ */ f({
883
883
  return (e, t) => (S(), o("div", g({
884
884
  class: [...a.value],
885
885
  style: { background: e.background }
886
- }, j({ ...i.value && { click: e.$attrs.onClick || e.$attrs.onClickCapture } }, !0)), [s("div", ht, [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));
886
+ }, j({ ...i.value && { click: e.$attrs.onClick || e.$attrs.onClickCapture } }, !0)), [s("div", _t, [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));
887
887
  }
888
- }), _t = gt, vt = /* @__PURE__ */ f({
888
+ }), yt = vt, bt = /* @__PURE__ */ f({
889
889
  __name: "SettingDivision",
890
890
  setup(e) {
891
891
  return (e, t) => (S(), o("div", { class: v(N(Y)("setting-division")) }, null, 2));
892
892
  }
893
- }), yt = vt;
894
- const bt = { key: 0 };
895
- var xt = /* @__PURE__ */ f({
893
+ }), xt = bt;
894
+ const St = { key: 0 };
895
+ var Ct = /* @__PURE__ */ f({
896
896
  __name: "SettingGroup",
897
897
  props: { title: {} },
898
898
  setup(e) {
899
- 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", bt, [D(e.$slots, "desc")])) : a("", !0)], 2), s("div", null, [D(e.$slots, "default")])], 2));
899
+ 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", St, [D(e.$slots, "desc")])) : a("", !0)], 2), s("div", null, [D(e.$slots, "default")])], 2));
900
900
  }
901
- }), St = xt, Ct = /* @__PURE__ */ f({
901
+ }), wt = Ct, Tt = /* @__PURE__ */ f({
902
902
  name: "SwitchEnable",
903
903
  inheritAttrs: !1,
904
904
  __name: "SwitchEnable",
@@ -945,9 +945,9 @@ var xt = /* @__PURE__ */ f({
945
945
  }), null, 16, ["class", "modelValue"]);
946
946
  };
947
947
  }
948
- }), wt = Ct;
949
- const Tt = ["aria-checked", "disabled"];
950
- var Et = /* @__PURE__ */ f({
948
+ }), Et = Tt;
949
+ const Dt = ["aria-checked", "disabled"];
950
+ var Ot = /* @__PURE__ */ f({
951
951
  name: "SwitchPlus",
952
952
  __name: "SwitchPlus",
953
953
  props: /* @__PURE__ */ h({
@@ -1071,9 +1071,9 @@ var Et = /* @__PURE__ */ f({
1071
1071
  }, [s("span", { class: v(`${N(m)}-handle-icon`) }, [x.value ? (S(), o("span", {
1072
1072
  key: 0,
1073
1073
  class: v(["i-p-loading", `${N(m)}-loading-icon`])
1074
- }, 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, Tt));
1074
+ }, 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, Dt));
1075
1075
  }
1076
- }), Dt = Et, Ot = /* @__PURE__ */ f({
1076
+ }), kt = Ot, At = /* @__PURE__ */ f({
1077
1077
  __name: "SwitchPlusEnable",
1078
1078
  props: /* @__PURE__ */ h({
1079
1079
  modelValue: { type: [
@@ -1130,7 +1130,7 @@ var Et = /* @__PURE__ */ f({
1130
1130
  emits: ["update:value"],
1131
1131
  setup(e) {
1132
1132
  let t = F(e, "value"), n = e;
1133
- return (e, r) => (S(), i(Dt, g({
1133
+ return (e, r) => (S(), i(kt, g({
1134
1134
  value: t.value,
1135
1135
  "onUpdate:value": r[0] ||= (e) => t.value = e
1136
1136
  }, n), {
@@ -1151,7 +1151,7 @@ var Et = /* @__PURE__ */ f({
1151
1151
  _: 1
1152
1152
  }, 16, ["value"]));
1153
1153
  }
1154
- }), kt = Ot, At = /* @__PURE__ */ f({
1154
+ }), jt = At, Mt = /* @__PURE__ */ f({
1155
1155
  __name: "thumb",
1156
1156
  props: {
1157
1157
  data: {},
@@ -1193,7 +1193,7 @@ var Et = /* @__PURE__ */ f({
1193
1193
  t !== f.value && (f.value = t, a("scroll", t));
1194
1194
  }
1195
1195
  }, C = () => {
1196
- p.value = !1, Q(window, "mousemove", x), Q(window, "mouseup", C);
1196
+ p.value = !1, he(window, "mousemove", x), he(window, "mouseup", C);
1197
1197
  }, w = (e) => {
1198
1198
  p.value || (e = b(e), e !== f.value && (f.value = e));
1199
1199
  }, E = r(() => [
@@ -1214,7 +1214,7 @@ var Et = /* @__PURE__ */ f({
1214
1214
  onMousedown: g
1215
1215
  }, [s("div", { class: v(`${N(c)}-thumb-bar`) }, null, 2)], 38)], 34));
1216
1216
  }
1217
- }), jt = At, Mt = /* @__PURE__ */ f({
1217
+ }), Nt = Mt, Pt = /* @__PURE__ */ f({
1218
1218
  __name: "Scrollbar",
1219
1219
  props: {
1220
1220
  type: { default: "embed" },
@@ -1319,7 +1319,7 @@ var Et = /* @__PURE__ */ f({
1319
1319
  ref: d,
1320
1320
  class: `${N(u)}-container`
1321
1321
  }, e.$attrs, { onScroll: M }), [D(e.$slots, "default")], 16),
1322
- !e.hide && w.value ? (S(), i(jt, {
1322
+ !e.hide && w.value ? (S(), i(Nt, {
1323
1323
  key: 0,
1324
1324
  ref_key: "horizontalThumbRef",
1325
1325
  ref: m,
@@ -1328,7 +1328,7 @@ var Et = /* @__PURE__ */ f({
1328
1328
  both: O.value,
1329
1329
  onScroll: P
1330
1330
  }, null, 8, ["data", "both"])) : a("", !0),
1331
- !e.hide && E.value ? (S(), i(jt, {
1331
+ !e.hide && E.value ? (S(), i(Nt, {
1332
1332
  key: 1,
1333
1333
  ref_key: "verticalThumbRef",
1334
1334
  ref: h,
@@ -1339,7 +1339,7 @@ var Et = /* @__PURE__ */ f({
1339
1339
  }, null, 8, ["data", "both"])) : a("", !0)
1340
1340
  ], 6));
1341
1341
  }
1342
- }), Nt = Mt, Pt = class {
1342
+ }), Ft = Pt, It = class {
1343
1343
  observers = /* @__PURE__ */ new Map();
1344
1344
  entries = /* @__PURE__ */ new Map();
1345
1345
  getStats() {
@@ -1379,10 +1379,10 @@ var Et = /* @__PURE__ */ f({
1379
1379
  !i && r && (r.disconnect(), this.observers.delete(n));
1380
1380
  }
1381
1381
  };
1382
- const Ft = new Pt();
1383
- function It(e, t = {}) {
1382
+ const Lt = new It();
1383
+ function Rt(e, t = {}) {
1384
1384
  let n = null, r = (r) => {
1385
- r && !n && (n = Ft.observe(r, e, t));
1385
+ r && !n && (n = Lt.observe(r, e, t));
1386
1386
  }, i = () => {
1387
1387
  n && (n(), n = null);
1388
1388
  };
@@ -1393,7 +1393,7 @@ function It(e, t = {}) {
1393
1393
  stop: i
1394
1394
  };
1395
1395
  }
1396
- var Lt = /* @__PURE__ */ f({
1396
+ var zt = /* @__PURE__ */ f({
1397
1397
  __name: "LazyLoader",
1398
1398
  props: {
1399
1399
  w: { default: "100%" },
@@ -1402,7 +1402,7 @@ var Lt = /* @__PURE__ */ f({
1402
1402
  },
1403
1403
  emits: ["load"],
1404
1404
  setup(e, { emit: t }) {
1405
- let n = e, r = t, i = T(!1), a = T(), { start: s, stop: c } = It((e) => {
1405
+ let n = e, r = t, i = T(!1), a = T(), { start: s, stop: c } = Rt((e) => {
1406
1406
  e && (i.value = !0, r("load"), c());
1407
1407
  }, { rootMargin: `${n.distance}px` });
1408
1408
  return L(a, (e) => {
@@ -1417,5 +1417,69 @@ var Lt = /* @__PURE__ */ f({
1417
1417
  })
1418
1418
  }, null, 4));
1419
1419
  }
1420
- }), Rt = Lt;
1421
- export { ge as BackTop, je as ContextMenu, De as ContextMenuDivider, Te as ContextMenuGroup, Ce as ContextMenuItem, ke as ContextMenuSubmenu, Rt as LazyLoader, xe as LeftMenu, ye as LeftMenuEventDispatch, $ as LeftMenuEvents, Ye as PageHeader, mt as Result, Nt as Scrollbar, yt as SettingDivision, St as SettingGroup, _t as SettingItem, Fe as SplitPanel, wt as SwitchEnable, Dt as SwitchPlus, kt as SwitchPlusEnable, jt as Thumb, Le as UtoolsBaseLayout, qe as UtoolsLayout, ve as WebBaseLayout, Ne as WebLayout, X as getBuildCurrentClassPrefix, Y as getClassPrefix, le as isEventExist, ue as isFunction, de as isNull, pe as isNumber, me as isObject, fe as isUndefined, Q as off, Z as on };
1420
+ }), Bt = zt;
1421
+ function Vt(e) {
1422
+ return e instanceof Function && e.constructor.name === "AsyncFunction";
1423
+ }
1424
+ const Ht = (e) => {
1425
+ let t = T(!1), n = (...n) => (t.value = !0, new Promise((r, i) => {
1426
+ setTimeout(async () => {
1427
+ try {
1428
+ if (Vt(e)) return await e(...n);
1429
+ r(e(...n));
1430
+ } catch (e) {
1431
+ console.log("useSingleLoading", e), i(e);
1432
+ } finally {
1433
+ t.value = !1;
1434
+ }
1435
+ }, 50);
1436
+ }));
1437
+ return [n, t];
1438
+ }, Ut = (e, t) => {
1439
+ let n = T([]), i = async (...r) => {
1440
+ let i = t(...r);
1441
+ n.value.push(i);
1442
+ try {
1443
+ return Vt(e) ? await e(...r) : e(...r);
1444
+ } catch (e) {
1445
+ console.error("useLoading", e);
1446
+ } finally {
1447
+ let e = n.value.findIndex((e) => e === i);
1448
+ e !== -1 && n.value.splice(e, 1);
1449
+ }
1450
+ }, a = r(() => (e) => n.value.includes(e));
1451
+ return [
1452
+ i,
1453
+ a,
1454
+ n
1455
+ ];
1456
+ }, Q = window.matchMedia("(prefers-color-scheme: dark)"), $ = T("default");
1457
+ function Wt(e) {
1458
+ function t(t) {
1459
+ if (e.getUserThemeConfig) {
1460
+ let t = e.getUserThemeConfig();
1461
+ if (t !== "auto") {
1462
+ t === "dark" ? (e.setDarkTheme(), $.value = "dark") : t === "default" && (e.setDefaultTheme(), $.value = "default");
1463
+ return;
1464
+ }
1465
+ }
1466
+ t.matches ? (e.setDarkTheme(), $.value = "dark") : (e.setDefaultTheme(), $.value = "default");
1467
+ }
1468
+ function n() {
1469
+ Q.addEventListener("change", t), Q.dispatchEvent(new MediaQueryListEvent("change", Q));
1470
+ }
1471
+ function r() {
1472
+ Q.dispatchEvent(new MediaQueryListEvent("change", Q));
1473
+ }
1474
+ return n(), console.log("mediaQueryList", Q), { themeRefresh: r };
1475
+ }
1476
+ function Gt(e) {
1477
+ Q.dispatchEvent(new MediaQueryListEvent("change", {
1478
+ matches: e === "dark",
1479
+ media: "(prefers-color-scheme: dark)"
1480
+ }));
1481
+ }
1482
+ function Kt() {
1483
+ return $.value;
1484
+ }
1485
+ export { _e as BackTop, Ne as ContextMenu, ke as ContextMenuDivider, De as ContextMenuGroup, Te as ContextMenuItem, je as ContextMenuSubmenu, Bt as LazyLoader, Ce as LeftMenu, xe as LeftMenuEventDispatch, be as LeftMenuEvents, Ze as PageHeader, gt as Result, Ft as Scrollbar, xt as SettingDivision, wt as SettingGroup, yt as SettingItem, Le as SplitPanel, Et as SwitchEnable, kt as SwitchPlus, jt as SwitchPlusEnable, Nt as Thumb, ze as UtoolsBaseLayout, Ye as UtoolsLayout, ye as WebBaseLayout, Fe as WebLayout, X as getBuildCurrentClassPrefix, Y as getClassPrefix, Kt 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, Gt as setCurrentTheme, Ut as useMultiLoading, Ht as useSingleLoading, Wt 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:#f7f8fa;--u-color-neutral-2:#f2f3f5;--u-color-neutral-3:#e5e6ec;--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:#f7f8fa;--u-color-neutral-2:#484849;--u-color-neutral-3:#e5e6ec;--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-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),.5)}.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));--color-fill-1:#ffffff0a;--color-fill-2:#ffffff14;--color-fill-3:#ffffff1f;--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-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),.5)}.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.56",
3
+ "version": "0.0.60",
4
4
  "description": "web-ui",
5
5
  "main": "./dist/index.es.js",
6
6
  "module": "./dist/index.es.js",