@duxweb/dvha-pro 1.1.1 → 1.1.3

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.
@@ -2,7 +2,7 @@ import { defineComponent as q, toRef as S, ref as u, watch as V, computed as C,
2
2
  import { useI18n as J, useTree as Q, useCustomMutation as W } from "@duxweb/dvha-core";
3
3
  import { useVModel as Z } from "@vueuse/core";
4
4
  import $ from "clsx";
5
- import { NTree as K, NButton as ee, NInput as le, NScrollbar as te, NSpin as ne, NDropdown as ae } from "naive-ui";
5
+ import { NTree as K, NInput as ee, NButton as le, NScrollbar as te, NSpin as ne, NDropdown as ae } from "naive-ui";
6
6
  import { DuxCard as ie } from "../card/card.js";
7
7
  const fe = /* @__PURE__ */ q({
8
8
  name: "DuxTreeFilter",
@@ -146,19 +146,23 @@ const fe = /* @__PURE__ */ q({
146
146
  class: "px-2 py-3 pb-1 text-base font-bold"
147
147
  }, [t.title]), n("div", {
148
148
  class: "p-2 flex gap-2 items-center"
149
- }, [n(ee, {
150
- onClick: R
151
- }, {
152
- icon: () => n("div", {
153
- class: v.value ? "i-tabler:fold-up" : "i-tabler:fold-down"
154
- }, null)
155
- }), n("div", {
149
+ }, [n("div", {
156
150
  class: "flex-1"
157
- }, [b.header ? b.header() : n(le, {
151
+ }, [b.header ? b.header() : n(ee, {
158
152
  value: y.value,
159
153
  "onUpdate:value": (e) => y.value = e,
160
154
  placeholder: N("common.keyword")
161
- }, null)]), b.tools?.()]), n(te, {
155
+ }, {
156
+ prefix: () => n(le, {
157
+ text: !0,
158
+ onClick: R,
159
+ class: "mr-1!"
160
+ }, {
161
+ icon: () => n("div", {
162
+ class: ["i-tabler:fold-down transition-all", v.value ? "rotate-0" : "rotate-180"]
163
+ }, null)
164
+ })
165
+ })]), b.tools?.()]), n(te, {
162
166
  class: "flex-1 min-h-0",
163
167
  xScrollable: !0
164
168
  }, {
@@ -1,63 +1,28 @@
1
- import { defineComponent as a, createVNode as e, h as c, mergeProps as n } from "vue";
1
+ import { defineComponent as r, createVNode as t, h as m, mergeProps as d } from "vue";
2
2
  import { NImage as i } from "naive-ui";
3
- import { DuxPlaceholder as o } from "./placeholder.js";
4
- const g = /* @__PURE__ */ a({
3
+ import { DuxPlaceholder as h } from "./placeholder.js";
4
+ const o = /* @__PURE__ */ r({
5
5
  name: "DuxImage",
6
6
  props: {},
7
7
  extends: i,
8
- setup(r) {
9
- return () => {
10
- const l = `size-${r.height}px`, t = e("svg", {
11
- viewBox: "0 0 100 100",
12
- class: l
13
- }, [e("circle", {
14
- cx: "50",
15
- cy: "50",
16
- r: "50",
17
- fill: "rgb(var(--ui-color-primary))",
18
- "fill-opacity": "0.1"
19
- }, null), e("g", {
20
- fill: "rgb(var(--ui-color-primary))",
21
- "fill-opacity": "0.65"
22
- }, [e("circle", {
23
- cx: "50",
24
- cy: "36",
25
- r: "14"
26
- }, null), e("path", {
27
- d: "M 50 54 C 30 54 15 69 15 87 L 15 100 L 85 100 L 85 87 C 85 69 70 54 50 54 Z"
28
- }, null)]), e("g", {
29
- fill: "rgb(var(--ui-color-primary))",
30
- "fill-opacity": "0.3"
31
- }, [e("circle", {
32
- cx: "20",
33
- cy: "20",
34
- r: "1.5"
35
- }, [e("animate", {
36
- attributeName: "r",
37
- values: "1.5;2.5;1.5",
38
- dur: "3s",
39
- repeatCount: "indefinite"
40
- }, null)]), e("circle", {
41
- cx: "80",
42
- cy: "25",
43
- r: "1"
44
- }, [e("animate", {
45
- attributeName: "r",
46
- values: "1;2;1",
47
- dur: "4s",
48
- repeatCount: "indefinite"
49
- }, null)])])]);
50
- return r.src ? e(i, n(r, {
51
- src: r.src
52
- }), {
53
- placeholder: () => e(o, {
54
- width: r.width,
55
- height: r.height
56
- }, null)
57
- }) : c(t);
58
- };
8
+ setup(e) {
9
+ return () => e.src ? t(i, d(e, {
10
+ src: e.src
11
+ }), {
12
+ placeholder: () => t(h, {
13
+ width: e.width,
14
+ height: e.height
15
+ }, null),
16
+ error: () => t(h, {
17
+ width: e.width,
18
+ height: e.height
19
+ }, null)
20
+ }) : m(h, {
21
+ width: e.width,
22
+ height: e.height
23
+ });
59
24
  }
60
25
  });
61
26
  export {
62
- g as DuxImage
27
+ o as DuxImage
63
28
  };
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as i, createVNode as t } from "vue";
2
- const o = /* @__PURE__ */ i({
2
+ const l = /* @__PURE__ */ i({
3
3
  name: "DuxPlaceholder",
4
4
  props: {
5
5
  width: {
@@ -13,71 +13,55 @@ const o = /* @__PURE__ */ i({
13
13
  },
14
14
  setup(e) {
15
15
  return () => {
16
- const l = {
16
+ const r = {
17
17
  width: typeof e.width == "number" ? `${e.width}px` : e.width,
18
18
  height: typeof e.height == "number" ? `${e.height}px` : e.height
19
19
  };
20
20
  return t("svg", {
21
- viewBox: "0 0 200 120",
22
- style: l
23
- }, [t("defs", null, [t("linearGradient", {
24
- id: "placeholderBg",
25
- x1: "0%",
26
- y1: "0%",
27
- x2: "100%",
28
- y2: "100%"
29
- }, [t("stop", {
30
- offset: "0%",
31
- style: "stop-color:rgb(var(--ui-color-primary));stop-opacity:0.08"
32
- }, null), t("stop", {
33
- offset: "100%",
34
- style: "stop-color:rgb(var(--ui-color-primary));stop-opacity:0.03"
35
- }, null)])]), t("rect", {
36
- width: "200",
37
- height: "120",
38
- fill: "url(#placeholderBg)",
39
- rx: "8"
40
- }, null), t("g", {
21
+ viewBox: "0 0 100 100",
22
+ style: r
23
+ }, [t("rect", {
24
+ x: "1",
25
+ y: "1",
26
+ width: "98",
27
+ height: "98",
28
+ rx: "8",
41
29
  fill: "rgb(var(--ui-color-primary))",
42
- "fill-opacity": "0.4"
43
- }, [t("circle", {
44
- cx: "60",
30
+ "fill-opacity": "0.06"
31
+ }, null), t("rect", {
32
+ x: "1",
33
+ y: "1",
34
+ width: "98",
35
+ height: "98",
36
+ rx: "8",
37
+ fill: "none",
38
+ stroke: "rgb(var(--ui-color-primary))",
39
+ "stroke-opacity": "0.25",
40
+ "stroke-width": "1.5",
41
+ "stroke-dasharray": "5 5"
42
+ }, null), t("g", {
43
+ fill: "none",
44
+ stroke: "rgb(var(--ui-color-primary))",
45
+ "stroke-opacity": "0.45",
46
+ "stroke-width": "2",
47
+ "stroke-linecap": "round",
48
+ "stroke-linejoin": "round"
49
+ }, [t("rect", {
50
+ x: "30",
51
+ y: "34",
52
+ width: "40",
53
+ height: "32",
54
+ rx: "3"
55
+ }, null), t("circle", {
56
+ cx: "62",
45
57
  cy: "40",
46
- r: "12"
58
+ r: "3"
47
59
  }, null), t("path", {
48
- d: "M 40 70 L 80 70 L 100 50 L 140 70 L 160 50 L 200 70 L 200 120 L 40 120 Z"
49
- }, null)]), t("g", {
50
- fill: "rgb(var(--ui-color-primary))",
51
- "fill-opacity": "0.25"
52
- }, [t("circle", {
53
- cx: "150",
54
- cy: "25",
55
- r: "1.5"
56
- }, [t("animate", {
57
- attributeName: "opacity",
58
- values: "0.25;0.5;0.25",
59
- dur: "3s",
60
- repeatCount: "indefinite"
61
- }, null)]), t("circle", {
62
- cx: "170",
63
- cy: "35",
64
- r: "1"
65
- }, [t("animate", {
66
- attributeName: "opacity",
67
- values: "0.2;0.4;0.2",
68
- dur: "4s",
69
- repeatCount: "indefinite"
70
- }, null)])]), t("rect", {
71
- x: "40",
72
- y: "40",
73
- width: "120",
74
- height: "1",
75
- fill: "rgb(var(--ui-color-primary))",
76
- "fill-opacity": "0.15"
77
- }, null)]);
60
+ d: "M34 60 L46 48 L54 56 L58 52 L70 60"
61
+ }, null)])]);
78
62
  };
79
63
  }
80
64
  });
81
65
  export {
82
- o as DuxPlaceholder
66
+ l as DuxPlaceholder
83
67
  };
@@ -1 +1 @@
1
- @charset "UTF-8";.vue-flow__handle{transition:box-shadow .2s ease}.vue-flow__handle:hover{box-shadow:0 0 0 3px #3b82f680}.n-popover-shared .n-popover-arrow-wrapper .n-popover-arrow{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.n-dropdown-menu{min-width:130px}.icon-gradient{color:rgb(var(--ui-color-primary));animation:icon-color-cycle 12s ease-in-out infinite}@keyframes icon-color-cycle{0%{color:rgb(var(--ui-color-primary))}20%{color:rgb(var(--ui-color-info))}40%{color:rgb(var(--ui-color-success))}60%{color:rgb(var(--ui-color-warning))}80%{color:rgb(var(--ui-color-error))}to{color:rgb(var(--ui-color-primary))}}@keyframes icon-gradient-shift{0%{background-position:0% 50%}25%{background-position:50% 0%}50%{background-position:100% 50%}75%{background-position:50% 100%}to{background-position:0% 50%}}.app-page-tabs.n-tabs .n-tabs-nav.n-tabs-nav--card-type .n-tabs-pad{border:none}.app-page-tabs.n-tabs .n-tabs-nav.n-tabs-nav--card-type .n-tabs-nav__prefix,.app-page-tabs.n-tabs .n-tabs-nav.n-tabs-nav--card-type .n-tabs-nav__suffix{border-bottom:none}.app-page-tabs.n-tabs .n-tabs-nav.n-tabs-nav--card-type .n-tabs-tab{padding:0;border-bottom:none;border-radius:0;background-color:transparent}.app-page-tabs.n-tabs .n-tabs-nav.n-tabs-nav--top.n-tabs-nav--card-type .n-tabs-tab-pad{width:5px;background-color:transparent;border-bottom:none}.app-page-tabs.n-tabs .n-tabs-nav.n-tabs-nav--top.n-tabs-nav--card-type .n-tabs-tab{background-color:rgb(var(--ui-bg));border-bottom:none;border:none;position:relative;border-radius:4px}.dark .app-page-tabs.n-tabs .n-tabs-nav.n-tabs-nav--top.n-tabs-nav--card-type .n-tabs-tab-pad{background-color:transparent}.dark .app-page-tabs.n-tabs .n-tabs-nav.n-tabs-nav--top.n-tabs-nav--card-type .n-tabs-tab{border:1px solid rgb(var(--ui-border-muted));background-color:rgb(var(--ui-color-gray-800)/.5)}.app-modal-tabs.n-tabs .n-tabs-wrapper{padding:0 16px}.app-modal-tabs.n-tabs .n-tabs-nav{background-color:rgb(var(--ui-color-gray-200)/.2)}.app-modal-tabs.n-tabs .n-tabs-tab{padding:12px 4px;font-size:var(--n-font-size)}.dark .app-modal-tabs.n-tabs .n-tabs-nav{background-color:rgb(var(--ui-bg-elevated)/.5)}.app-page-tabs.n-tabs{display:flex;height:100%;flex-direction:column}.app-page-tabs.n-tabs .n-tabs-nav{flex:none}.app-page-tabs.n-tabs .n-tab-pane{flex:1;min-height:0;overflow-y:auto;padding:20px}.app-page-tabs.n-tabs .n-tabs-tab{font-size:.85rem;padding:1rem}.n-data-table .n-data-table-thead{border:1px solid rgb(var(--ui-border-muted))}.n-data-table .n-data-table-thead .n-data-table-tr>.n-data-table-th:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-left:1px solid rgba(var(--ui-border-accented)/.5)}.n-data-table .n-data-table-thead .n-data-table-tr>.n-data-table-th--last{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-right:1px solid rgba(var(--ui-border-accented)/.5)}.n-data-table .n-data-table-th{border-top:1px solid rgba(var(--ui-border-accented)/.5);border-bottom:1px solid rgba(var(--ui-border-accented)/.5)}.command-palette [command-dialog-mask]{background-color:rgb(var(--ui-bg-inverted)/.3);-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);height:100vh;width:100vw;position:fixed;top:0;left:0;z-index:1000}.command-palette [command-dialog-wrapper]{position:relative;flex-direction:column;margin:20vh auto auto;max-width:560px;background-color:rgb(var(--ui-bg)/.9);border-radius:6px}.command-palette [command-group-heading]{color:rgba(var(--ui-text-muted));padding:6px}.command-palette [command-separator]{border-bottom:1px solid rgb(var(--ui-border-muted));margin:6px 0}.command-palette [command-list]{border-top:1px solid rgb(var(--ui-border-muted));padding:0 6px 6px}.command-palette [command-item]{padding:6px 12px;display:flex;align-items:center;gap:6px;border-radius:3px;color:rgba(var(--ui-text-toned))}.command-palette [command-item][aria-selected=true],.command-palette [command-item]:active{background-color:rgb(var(--ui-bg-accented)/.8);color:rgba(var(--ui-color-primary-500))}.dark .command-palette [command-dialog-mask]{background-color:rgb(var(--ui-bg-inverted)/.02)}.dark .command-palette [command-dialog-wrapper]{background-color:rgb(var(--ui-bg-elevated)/.95)}.dark .command-palette [command-separator]{border-bottom:1px solid rgb(var(--ui-border)/.5)}.dark .command-palette [command-list]{border-top:1px solid rgb(var(--ui-border)/.5)}.app-menu.n-menu.n-menu--collapsed .n-menu-item-content .n-menu-item-content-header{opacity:1}.app-menu.n-menu.n-menu--collapsed .n-menu-item-content .n-menu-item-content__arrow{display:none}.app-menu.n-menu .n-menu-item-content:before{left:0;right:0}.app-login-bg{background-image:repeating-linear-gradient(90deg,hsla(298,16%,68%,.06) 0px,hsla(298,16%,68%,.06) 1px,transparent 1px,transparent 21px,hsla(298,16%,68%,.06) 21px,hsla(298,16%,68%,.06) 22px,transparent 22px,transparent 72px),repeating-linear-gradient(0deg,hsla(298,16%,68%,.06) 0px,hsla(298,16%,68%,.06) 1px,transparent 1px,transparent 21px,hsla(298,16%,68%,.06) 21px,hsla(298,16%,68%,.06) 22px,transparent 22px,transparent 72px),repeating-linear-gradient(135deg,hsla(298,16%,68%,.06) 0px,hsla(298,16%,68%,.06) 1px,transparent 1px,transparent 21px,hsla(298,16%,68%,.06) 21px,hsla(298,16%,68%,.06) 22px,transparent 22px,transparent 72px),linear-gradient(90deg,#f7f7f8,#f7f7f8)}.app-login-dark-bg{background-image:repeating-linear-gradient(90deg,rgba(90,90,90,.06) 0px,rgba(90,90,90,.06) 1px,transparent 1px,transparent 21px,rgba(90,90,90,.06) 21px,rgba(90,90,90,.06) 22px,transparent 22px,transparent 72px),repeating-linear-gradient(0deg,rgba(90,90,90,.06) 0px,rgba(90,90,90,.06) 1px,transparent 1px,transparent 21px,rgba(90,90,90,.06) 21px,rgba(90,90,90,.06) 22px,transparent 22px,transparent 72px),repeating-linear-gradient(135deg,rgba(90,90,90,.06) 0px,rgba(90,90,90,.06) 1px,transparent 1px,transparent 21px,rgba(90,90,90,.06) 21px,rgba(90,90,90,.06) 22px,transparent 22px,transparent 72px),linear-gradient(90deg,#101014,#101014)}.app-loading{position:fixed;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:1000;background-color:rgb(var(--ui-bg));overflow:hidden}.app-box-loading{width:50px;height:50px;position:relative}.app-box-loading:before{content:"";width:50px;height:5px;background:rgb(var(--ui-color-gray-200));opacity:.3;position:absolute;top:59px;left:0;border-radius:50%;animation:shadow .5s linear infinite}.app-box-loading:after{content:"";width:50px;height:50px;background:rgba(var(--ui-color-primary));animation:animate .5s linear infinite;position:absolute;top:0;left:0;border-radius:3px}@keyframes animate{17%{border-bottom-right-radius:3px}25%{transform:translateY(9px) rotate(22.5deg)}50%{transform:translateY(18px) scaleY(.9) rotate(45deg);border-bottom-right-radius:40px}75%{transform:translateY(9px) rotate(67.5deg)}to{transform:translateY(0) rotate(90deg)}}@keyframes shadow{0%,to{transform:scale(1)}50%{transform:scaleX(1.2)}}html{color-scheme:light;background-color:rgb(var(--ui-color-primary-700)/.05)}html.dark{color-scheme:dark;background-color:#101014}[un-cloak]{display:none}.app-remote-loader{height:100%}.tab-fade-leave-active,.tab-fade-enter-active{transition:all .3s}.tab-fade-enter-from{opacity:0;transform:translate(-30px)}.tab-fade-enter-to{opacity:1;transform:translate(0)}.tab-fade-leave-to{opacity:0;transform:translate(30px)}
1
+ @charset "UTF-8";.vue-flow__handle{transition:box-shadow .2s ease}.vue-flow__handle:hover{box-shadow:0 0 0 3px #3b82f680}.n-dropdown-menu{min-width:130px}.icon-gradient{color:rgb(var(--ui-color-primary));animation:icon-color-cycle 12s ease-in-out infinite}@keyframes icon-color-cycle{0%{color:rgb(var(--ui-color-primary))}20%{color:rgb(var(--ui-color-info))}40%{color:rgb(var(--ui-color-success))}60%{color:rgb(var(--ui-color-warning))}80%{color:rgb(var(--ui-color-error))}to{color:rgb(var(--ui-color-primary))}}@keyframes icon-gradient-shift{0%{background-position:0% 50%}25%{background-position:50% 0%}50%{background-position:100% 50%}75%{background-position:50% 100%}to{background-position:0% 50%}}.app-page-tabs.n-tabs .n-tabs-nav.n-tabs-nav--card-type .n-tabs-pad{border:none}.app-page-tabs.n-tabs .n-tabs-nav.n-tabs-nav--card-type .n-tabs-nav__prefix,.app-page-tabs.n-tabs .n-tabs-nav.n-tabs-nav--card-type .n-tabs-nav__suffix{border-bottom:none}.app-page-tabs.n-tabs .n-tabs-nav.n-tabs-nav--card-type .n-tabs-tab{padding:0;border-bottom:none;border-radius:0;background-color:transparent}.app-page-tabs.n-tabs .n-tabs-nav.n-tabs-nav--top.n-tabs-nav--card-type .n-tabs-tab-pad{width:5px;background-color:transparent;border-bottom:none}.app-page-tabs.n-tabs .n-tabs-nav.n-tabs-nav--top.n-tabs-nav--card-type .n-tabs-tab{background-color:rgb(var(--ui-bg));border-bottom:none;border:none;position:relative;border-radius:4px}.dark .app-page-tabs.n-tabs .n-tabs-nav.n-tabs-nav--top.n-tabs-nav--card-type .n-tabs-tab-pad{background-color:transparent}.dark .app-page-tabs.n-tabs .n-tabs-nav.n-tabs-nav--top.n-tabs-nav--card-type .n-tabs-tab{border:1px solid rgb(var(--ui-border-muted));background-color:rgb(var(--ui-color-gray-800)/.5)}.app-modal-tabs.n-tabs .n-tabs-wrapper{padding:0 16px}.app-modal-tabs.n-tabs .n-tabs-nav{background-color:rgb(var(--ui-color-gray-200)/.2)}.app-modal-tabs.n-tabs .n-tabs-tab{padding:12px 4px;font-size:var(--n-font-size)}.dark .app-modal-tabs.n-tabs .n-tabs-nav{background-color:rgb(var(--ui-bg-elevated)/.5)}.app-page-tabs.n-tabs{display:flex;height:100%;flex-direction:column}.app-page-tabs.n-tabs .n-tabs-nav{flex:none}.app-page-tabs.n-tabs .n-tab-pane{flex:1;min-height:0;overflow-y:auto;padding:20px}.app-page-tabs.n-tabs .n-tabs-tab{font-size:.85rem;padding:1rem}.n-data-table .n-data-table-thead{border:1px solid rgb(var(--ui-border-muted))}.n-data-table .n-data-table-thead .n-data-table-tr>.n-data-table-th:first-child{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;border-left:1px solid rgba(var(--ui-border-accented)/.5)}.n-data-table .n-data-table-thead .n-data-table-tr>.n-data-table-th--last{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;border-right:1px solid rgba(var(--ui-border-accented)/.5)}.n-data-table .n-data-table-th{border-top:1px solid rgba(var(--ui-border-accented)/.5);border-bottom:1px solid rgba(var(--ui-border-accented)/.5)}.command-palette [command-dialog-mask]{background-color:rgb(var(--ui-bg-inverted)/.3);-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);height:100vh;width:100vw;position:fixed;top:0;left:0;z-index:1000}.command-palette [command-dialog-wrapper]{position:relative;flex-direction:column;margin:20vh auto auto;max-width:560px;background-color:rgb(var(--ui-bg)/.9);border-radius:6px}.command-palette [command-group-heading]{color:rgba(var(--ui-text-muted));padding:6px}.command-palette [command-separator]{border-bottom:1px solid rgb(var(--ui-border-muted));margin:6px 0}.command-palette [command-list]{border-top:1px solid rgb(var(--ui-border-muted));padding:0 6px 6px}.command-palette [command-item]{padding:6px 12px;display:flex;align-items:center;gap:6px;border-radius:3px;color:rgba(var(--ui-text-toned))}.command-palette [command-item][aria-selected=true],.command-palette [command-item]:active{background-color:rgb(var(--ui-bg-accented)/.8);color:rgba(var(--ui-color-primary-500))}.dark .command-palette [command-dialog-mask]{background-color:rgb(var(--ui-bg-inverted)/.02)}.dark .command-palette [command-dialog-wrapper]{background-color:rgb(var(--ui-bg-elevated)/.95)}.dark .command-palette [command-separator]{border-bottom:1px solid rgb(var(--ui-border)/.5)}.dark .command-palette [command-list]{border-top:1px solid rgb(var(--ui-border)/.5)}.app-menu.n-menu.n-menu--collapsed .n-menu-item-content .n-menu-item-content-header{opacity:1}.app-menu.n-menu.n-menu--collapsed .n-menu-item-content .n-menu-item-content__arrow{display:none}.app-menu.n-menu .n-menu-item-content:before{left:0;right:0}.app-login-bg{background-image:repeating-linear-gradient(90deg,hsla(298,16%,68%,.06) 0px,hsla(298,16%,68%,.06) 1px,transparent 1px,transparent 21px,hsla(298,16%,68%,.06) 21px,hsla(298,16%,68%,.06) 22px,transparent 22px,transparent 72px),repeating-linear-gradient(0deg,hsla(298,16%,68%,.06) 0px,hsla(298,16%,68%,.06) 1px,transparent 1px,transparent 21px,hsla(298,16%,68%,.06) 21px,hsla(298,16%,68%,.06) 22px,transparent 22px,transparent 72px),repeating-linear-gradient(135deg,hsla(298,16%,68%,.06) 0px,hsla(298,16%,68%,.06) 1px,transparent 1px,transparent 21px,hsla(298,16%,68%,.06) 21px,hsla(298,16%,68%,.06) 22px,transparent 22px,transparent 72px),linear-gradient(90deg,#f7f7f8,#f7f7f8)}.app-login-dark-bg{background-image:repeating-linear-gradient(90deg,rgba(90,90,90,.06) 0px,rgba(90,90,90,.06) 1px,transparent 1px,transparent 21px,rgba(90,90,90,.06) 21px,rgba(90,90,90,.06) 22px,transparent 22px,transparent 72px),repeating-linear-gradient(0deg,rgba(90,90,90,.06) 0px,rgba(90,90,90,.06) 1px,transparent 1px,transparent 21px,rgba(90,90,90,.06) 21px,rgba(90,90,90,.06) 22px,transparent 22px,transparent 72px),repeating-linear-gradient(135deg,rgba(90,90,90,.06) 0px,rgba(90,90,90,.06) 1px,transparent 1px,transparent 21px,rgba(90,90,90,.06) 21px,rgba(90,90,90,.06) 22px,transparent 22px,transparent 72px),linear-gradient(90deg,#101014,#101014)}.app-loading{position:fixed;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:1000;background-color:rgb(var(--ui-bg));overflow:hidden}.app-box-loading{width:50px;height:50px;position:relative}.app-box-loading:before{content:"";width:50px;height:5px;background:rgb(var(--ui-color-gray-200));opacity:.3;position:absolute;top:59px;left:0;border-radius:50%;animation:shadow .5s linear infinite}.app-box-loading:after{content:"";width:50px;height:50px;background:rgba(var(--ui-color-primary));animation:animate .5s linear infinite;position:absolute;top:0;left:0;border-radius:3px}@keyframes animate{17%{border-bottom-right-radius:3px}25%{transform:translateY(9px) rotate(22.5deg)}50%{transform:translateY(18px) scaleY(.9) rotate(45deg);border-bottom-right-radius:40px}75%{transform:translateY(9px) rotate(67.5deg)}to{transform:translateY(0) rotate(90deg)}}@keyframes shadow{0%,to{transform:scale(1)}50%{transform:scaleX(1.2)}}html{color-scheme:light;background-color:rgb(var(--ui-color-primary-700)/.05)}html.dark{color-scheme:dark;background-color:#101014}[un-cloak]{display:none}.app-remote-loader{height:100%}.tab-fade-leave-active,.tab-fade-enter-active{transition:all .3s}.tab-fade-enter-from{opacity:0;transform:translate(-30px)}.tab-fade-enter-to{opacity:1;transform:translate(0)}.tab-fade-leave-to{opacity:0;transform:translate(30px)}
@@ -1,5 +1,5 @@
1
- import { defineComponent as d, ref as i, reactive as f, createVNode as t, Fragment as x, mergeProps as k, nextTick as y } from "vue";
2
- import { useTabStore as g, useI18n as T } from "@duxweb/dvha-core";
1
+ import { defineComponent as d, ref as i, reactive as f, createVNode as t, Fragment as x, mergeProps as k, nextTick as g } from "vue";
2
+ import { useTabStore as y, useI18n as T } from "@duxweb/dvha-core";
3
3
  import { useNaiveTab as C } from "@duxweb/dvha-naiveui";
4
4
  import { NTabs as R, NTab as N, NDropdown as O } from "naive-ui";
5
5
  import { useRouter as w } from "vue-router";
@@ -9,17 +9,17 @@ const I = /* @__PURE__ */ d({
9
9
  const {
10
10
  tabsProps: r,
11
11
  tabs: p
12
- } = C(), u = i(), s = g(), n = w(), {
12
+ } = C(), u = i(), s = y(), n = w(), {
13
13
  t: o
14
14
  } = T(), a = f({
15
15
  x: 0,
16
16
  y: 0,
17
17
  visible: !1
18
- }), l = i(), b = (e, c) => {
19
- e.preventDefault(), a.visible = !1, y().then(() => {
18
+ }), l = i(), h = (e, c) => {
19
+ e.preventDefault(), a.visible = !1, g().then(() => {
20
20
  a.visible = !0, a.x = e.clientX, a.y = e.clientY, l.value = c;
21
21
  });
22
- }, h = () => {
22
+ }, b = () => {
23
23
  a.visible = !1;
24
24
  }, m = [{
25
25
  label: o("components.tab.lock"),
@@ -67,8 +67,8 @@ const I = /* @__PURE__ */ d({
67
67
  class: "shadow-xs my-2"
68
68
  }, {
69
69
  default: () => [t("div", {
70
- class: "flex items-center gap-2 py-2 px-3",
71
- onContextmenu: (c) => b(c, e)
70
+ class: "flex items-center gap-2 h-36px px-3",
71
+ onContextmenu: (c) => h(c, e)
72
72
  }, [t("div", {
73
73
  class: "flex-1"
74
74
  }, [e.label]), t("div", {
@@ -87,7 +87,7 @@ const I = /* @__PURE__ */ d({
87
87
  x: a.x,
88
88
  y: a.y,
89
89
  show: a.visible,
90
- onClickoutside: h,
90
+ onClickoutside: b,
91
91
  options: m,
92
92
  onSelect: v
93
93
  }, null)]);
@@ -1,5 +1,5 @@
1
1
  const r = `/* layer: properties */
2
- @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))){*, ::before, ::after, ::backdrop{--un-from-opacity:100%;--un-text-opacity:100%;--un-bg-opacity:100%;--un-divide-y-reverse:initial;--un-border-style:solid;--un-divide-x-reverse:initial;--un-divide-opacity:100%;--un-shadow-opacity:100%;--un-border-opacity:100%;--un-translate-x:initial;--un-translate-y:initial;--un-translate-z:initial;--un-ease:initial;--un-to-opacity:100%;--un-outline-style:solid;--un-fill-opacity:100%;--un-space-y-reverse:initial;}}
2
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))){*, ::before, ::after, ::backdrop{--un-text-opacity:100%;--un-bg-opacity:100%;--un-from-opacity:100%;--un-divide-y-reverse:initial;--un-border-style:solid;--un-divide-x-reverse:initial;--un-divide-opacity:100%;--un-border-opacity:100%;--un-translate-x:initial;--un-translate-y:initial;--un-translate-z:initial;--un-shadow-opacity:100%;--un-ease:initial;--un-to-opacity:100%;--un-outline-style:solid;--un-fill-opacity:100%;--un-space-y-reverse:initial;}}
3
3
  @property --un-text-opacity{syntax:"<percentage>";inherits:false;initial-value:100%;}
4
4
  @property --un-outline-style{syntax:"*";inherits:false;initial-value:solid;}
5
5
  @property --un-border-opacity{syntax:"<percentage>";inherits:false;initial-value:100%;}
@@ -918,6 +918,7 @@ input:where([type='button'], [type='reset'], [type='submit']),
918
918
  }
919
919
  /* layer: icons */
920
920
  .i-tabler\\:alert-triangle{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 9v4m-1.637-9.409L2.257 17.125a1.914 1.914 0 0 0 1.636 2.871h16.214a1.914 1.914 0 0 0 1.636-2.87L13.637 3.59a1.914 1.914 0 0 0-3.274 0zM12 16h.01'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
921
+ .i-tabler\\:arrow-back-up{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='m9 14l-4-4l4-4'/%3E%3Cpath d='M5 10h11a4 4 0 1 1 0 8h-1'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
921
922
  .i-tabler\\:arrow-bar-to-down{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 20h16m-8-6V4m0 10l4-4m-4 4l-4-4'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
922
923
  .i-tabler\\:arrow-bar-to-up{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 10v10m0-10l4 4m-4-4l-4 4M4 4h16'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
923
924
  .i-tabler\\:arrow-down{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 5v14m6-6l-6 6m-6-6l6 6'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
@@ -933,7 +934,6 @@ input:where([type='button'], [type='reset'], [type='submit']),
933
934
  .i-tabler\\:brightness-half{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M12 9a3 3 0 0 0 0 6z'/%3E%3Cpath d='M6 6h3.5L12 3.5L14.5 6H18v3.5l2.5 2.5l-2.5 2.5V18h-3.5L12 20.5L9.5 18H6v-3.5L3.5 12L6 9.5z'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
934
935
  .i-tabler\\:calendar-due{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M4 7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2zm12-4v4M8 3v4m-4 4h16'/%3E%3Cpath d='M11 16a1 1 0 1 0 2 0a1 1 0 1 0-2 0'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
935
936
  .i-tabler\\:check{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m5 12l5 5L20 7'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
936
- .i-tabler\\:chevrons-down{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m7 7l5 5l5-5M7 13l5 5l5-5'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
937
937
  .i-tabler\\:circle{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 12a9 9 0 1 0 18 0a9 9 0 1 0-18 0'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
938
938
  .i-tabler\\:circle-check-filled{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M17 3.34a10 10 0 1 1-14.995 8.984L2 12l.005-.324A10 10 0 0 1 17 3.34m-1.293 5.953a1 1 0 0 0-1.32-.083l-.094.083L11 12.585l-1.293-1.292l-.094-.083a1 1 0 0 0-1.403 1.403l.083.094l2 2l.094.083a1 1 0 0 0 1.226 0l.094-.083l4-4l.083-.094a1 1 0 0 0-.083-1.32'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
939
939
  .i-tabler\\:circle-dot{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M11 12a1 1 0 1 0 2 0a1 1 0 1 0-2 0'/%3E%3Cpath d='M3 12a9 9 0 1 0 18 0a9 9 0 1 0-18 0'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
@@ -959,11 +959,11 @@ input:where([type='button'], [type='reset'], [type='submit']),
959
959
  .i-tabler\\:eye-off{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M10.585 10.587a2 2 0 0 0 2.829 2.828'/%3E%3Cpath d='M16.681 16.673A8.7 8.7 0 0 1 12 18q-5.4 0-9-6q1.908-3.18 4.32-4.674m2.86-1.146A9 9 0 0 1 12 6q5.4 0 9 6q-1 1.665-2.138 2.87M3 3l18 18'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
960
960
  .i-tabler\\:file-export{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M14 3v4a1 1 0 0 0 1 1h4'/%3E%3Cpath d='M11.5 21H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7l5 5v5m-5 6h7m-3-3l3 3l-3 3'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
961
961
  .i-tabler\\:file-upload{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M14 3v4a1 1 0 0 0 1 1h4'/%3E%3Cpath d='M17 21H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7l5 5v11a2 2 0 0 1-2 2m-5-10v6'/%3E%3Cpath d='M9.5 13.5L12 11l2.5 2.5'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
962
+ .i-tabler\\:filter{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 4h16v2.172a2 2 0 0 1-.586 1.414L15 12v7l-6 2v-8.5L4.52 7.572A2 2 0 0 1 4 6.227z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
962
963
  .i-tabler\\:flag{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 5a5 5 0 0 1 7 0a5 5 0 0 0 7 0v9a5 5 0 0 1-7 0a5 5 0 0 0-7 0zm0 16v-7'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
963
964
  .i-tabler\\:flag-check{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M13.767 15.12A5 5 0 0 1 12 14a5 5 0 0 0-7 0V5a5 5 0 0 1 7 0a5 5 0 0 0 7 0v8.5M5 21v-7m10 5l2 2l4-4'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
964
965
  .i-tabler\\:focus-2{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='.5' fill='currentColor'/%3E%3Cpath d='M5 12a7 7 0 1 0 14 0a7 7 0 1 0-14 0m7-9v2m-9 7h2m7 7v2m7-9h2'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
965
966
  .i-tabler\\:fold-down{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 11v8l3-3m-6 0l3 3M9 7h1m4 0h1m4 0h1M4 7h1'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
966
- .i-tabler\\:fold-up{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 13V5L9 8m6 0l-3-3M9 17h1m4 0h1m4 0h1M4 17h1'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
967
967
  .i-tabler\\:folder{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 4h4l3 3h7a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
968
968
  .i-tabler\\:forms{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3M6 3a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3m7-14h7a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-7M5 7H4a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h1m12-5h.01M13 12h.01'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
969
969
  .i-tabler\\:git-branch{--un-icon:url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' %3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M5 18a2 2 0 1 0 4 0a2 2 0 1 0-4 0M5 6a2 2 0 1 0 4 0a2 2 0 1 0-4 0m10 0a2 2 0 1 0 4 0a2 2 0 1 0-4 0M7 8v8m2 2h6a2 2 0 0 0 2-2v-5'/%3E%3Cpath d='m14 14l3-3l3 3'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;width:1em;height:1em;}
@@ -1086,6 +1086,7 @@ input:where([type='button'], [type='reset'], [type='submit']),
1086
1086
  .mb-2{margin-bottom:calc(var(--spacing) * 2);}
1087
1087
  .ml-2{margin-left:calc(var(--spacing) * 2);}
1088
1088
  .ml-2\\.5{margin-left:calc(var(--spacing) * 2.5);}
1089
+ .mr-1\\!{margin-right:calc(var(--spacing) * 1) !important;}
1089
1090
  .mr-2{margin-right:calc(var(--spacing) * 2);}
1090
1091
  .mt-1{margin-top:calc(var(--spacing) * 1);}
1091
1092
  .mt-2{margin-top:calc(var(--spacing) * 2);}
@@ -1122,7 +1123,6 @@ input:where([type='button'], [type='reset'], [type='submit']),
1122
1123
  .pe-10{padding-inline-end:calc(var(--spacing) * 10);}
1123
1124
  .pe-3{padding-inline-end:calc(var(--spacing) * 3);}
1124
1125
  .pl-12{padding-left:calc(var(--spacing) * 12);}
1125
- .pl-2{padding-left:calc(var(--spacing) * 2);}
1126
1126
  .pl-4{padding-left:calc(var(--spacing) * 4);}
1127
1127
  .pr-2{padding-right:calc(var(--spacing) * 2);}
1128
1128
  .pr-4{padding-right:calc(var(--spacing) * 4);}
@@ -1218,9 +1218,11 @@ input:where([type='button'], [type='reset'], [type='submit']),
1218
1218
  .shrink-0{flex-shrink:0;}
1219
1219
  .flex-row{flex-direction:row;}
1220
1220
  .flex-col{flex-direction:column;}
1221
+ .flex-col-reverse{flex-direction:column-reverse;}
1221
1222
  .flex-wrap{flex-wrap:wrap;}
1222
1223
  .flex-nowrap{flex-wrap:nowrap;}
1223
1224
  .gap-0{gap:calc(var(--spacing) * 0);}
1225
+ .gap-0\\.5{gap:calc(var(--spacing) * 0.5);}
1224
1226
  .gap-1{gap:calc(var(--spacing) * 1);}
1225
1227
  .gap-1\\.5{gap:calc(var(--spacing) * 1.5);}
1226
1228
  .gap-12{gap:calc(var(--spacing) * 12);}
@@ -1267,6 +1269,7 @@ input:where([type='button'], [type='reset'], [type='submit']),
1267
1269
  .h-2{height:calc(var(--spacing) * 2);}
1268
1270
  .h-20{height:calc(var(--spacing) * 20);}
1269
1271
  .h-30{height:calc(var(--spacing) * 30);}
1272
+ .h-36px{height:36px;}
1270
1273
  .h-4{height:calc(var(--spacing) * 4);}
1271
1274
  .h-40{height:calc(var(--spacing) * 40);}
1272
1275
  .h-5{height:calc(var(--spacing) * 5);}
@@ -1287,7 +1290,6 @@ input:where([type='button'], [type='reset'], [type='submit']),
1287
1290
  .min-h-0{min-height:calc(var(--spacing) * 0);}
1288
1291
  .min-h-1{min-height:calc(var(--spacing) * 1);}
1289
1292
  .min-w-0{min-width:calc(var(--spacing) * 0);}
1290
- .min-w-110{min-width:calc(var(--spacing) * 110);}
1291
1293
  .min-w-60{min-width:calc(var(--spacing) * 60);}
1292
1294
  .w-1{width:calc(var(--spacing) * 1);}
1293
1295
  .w-12{width:calc(var(--spacing) * 12);}
@@ -1350,6 +1352,7 @@ input:where([type='button'], [type='reset'], [type='submit']),
1350
1352
  .translate-x-0{--un-translate-x:calc(var(--spacing) * 0);translate:var(--un-translate-x) var(--un-translate-y);}
1351
1353
  .translate-y-0{--un-translate-y:calc(var(--spacing) * 0);translate:var(--un-translate-x) var(--un-translate-y);}
1352
1354
  .translate-y-full{--un-translate-y:100%;translate:var(--un-translate-x) var(--un-translate-y);}
1355
+ .rotate-0{rotate:0;}
1353
1356
  .rotate-180{rotate:180deg;}
1354
1357
  .rotate-45{rotate:45deg;}
1355
1358
  .transform{transform:var(--un-rotate-x) var(--un-rotate-y) var(--un-rotate-z) var(--un-skew-x) var(--un-skew-y);}
@@ -1391,6 +1394,7 @@ input:where([type='button'], [type='reset'], [type='submit']),
1391
1394
  .right-4{right:calc(var(--spacing) * 4);}
1392
1395
  .top-0{top:calc(var(--spacing) * 0);}
1393
1396
  .top-1\\.3{top:calc(var(--spacing) * 1.3);}
1397
+ .top-1\\.5px{top:1.5px;}
1394
1398
  .top-2{top:calc(var(--spacing) * 2);}
1395
1399
  .top-4{top:calc(var(--spacing) * 4);}
1396
1400
  .top-6{top:calc(var(--spacing) * 6);}
@@ -1562,7 +1566,6 @@ input:where([type='button'], [type='reset'], [type='submit']),
1562
1566
  .lg\\:pt-1\\.5{padding-top:calc(var(--spacing) * 1.5);}
1563
1567
  .dark .lg\\:dark\\:border{border-width:1px;}
1564
1568
  .lg\\:flex{display:flex;}
1565
- .lg\\:flex-none{flex:none;}
1566
1569
  .lg\\:flex-row{flex-direction:row;}
1567
1570
  .lg\\:grid{display:grid;}
1568
1571
  .lg\\:grid-cols-\\[repeat\\(auto-fit\\,minmax\\(\\$\\{props\\.minWidth\\}\\,\\$\\{props\\.maxWidth\\}\\)\\)\\]{grid-template-columns:repeat(auto-fit,minmax(\${props.minWidth},\${props.maxWidth}));}
@@ -86,7 +86,6 @@ export declare const DuxChart: import("vue").DefineComponent<import("vue").Extra
86
86
  elapsedTime: number;
87
87
  }) => void) | undefined;
88
88
  onFinished?: (() => void) | undefined;
89
- "onZr:mousewheel"?: ((params: import("echarts/core").ElementEvent) => void) | undefined;
90
89
  "onZr:drag"?: ((params: import("echarts/core").ElementEvent) => void) | undefined;
91
90
  "onZr:dragend"?: ((params: import("echarts/core").ElementEvent) => void) | undefined;
92
91
  "onZr:dragenter"?: ((params: import("echarts/core").ElementEvent) => void) | undefined;
@@ -94,6 +93,7 @@ export declare const DuxChart: import("vue").DefineComponent<import("vue").Extra
94
93
  "onZr:dragover"?: ((params: import("echarts/core").ElementEvent) => void) | undefined;
95
94
  "onZr:dragstart"?: ((params: import("echarts/core").ElementEvent) => void) | undefined;
96
95
  "onZr:drop"?: ((params: import("echarts/core").ElementEvent) => void) | undefined;
96
+ "onZr:mousewheel"?: ((params: import("echarts/core").ElementEvent) => void) | undefined;
97
97
  "onZr:click"?: ((params: import("echarts/core").ElementEvent) => void) | undefined;
98
98
  "onZr:contextmenu"?: ((params: import("echarts/core").ElementEvent) => void) | undefined;
99
99
  "onZr:dblclick"?: ((params: import("echarts/core").ElementEvent) => void) | undefined;
@@ -33,7 +33,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
33
33
  };
34
34
  }>> & Readonly<{}>, {
35
35
  title: string;
36
- draggable: boolean;
37
36
  onClose: () => void;
37
+ draggable: boolean;
38
38
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
39
39
  export default _default;
@@ -34,8 +34,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
34
34
  default: () => void;
35
35
  };
36
36
  }>> & Readonly<{}>, {
37
- draggable: boolean;
38
37
  onClose: () => void;
38
+ draggable: boolean;
39
39
  handle: Ref<HTMLElement, HTMLElement>;
40
40
  defaultTab: string;
41
41
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@duxweb/dvha-pro",
3
3
  "type": "module",
4
- "version": "1.1.1",
4
+ "version": "1.1.3",
5
5
  "author": "DuxWeb",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -33,8 +33,8 @@
33
33
  ],
34
34
  "dependencies": {
35
35
  "@ant-design/colors": "^7.2.1",
36
- "@duxweb/dvha-core": "^1.1.1",
37
- "@duxweb/dvha-naiveui": "^1.1.1",
36
+ "@duxweb/dvha-core": "^1.1.3",
37
+ "@duxweb/dvha-naiveui": "^1.1.3",
38
38
  "@iconify-json/tabler": "^1.2.18",
39
39
  "@overlastic/vue": "^0.8.1",
40
40
  "@tanstack/vue-query": "^5.80.7",