@fewangsit/wangsvue-gsts 1.0.0-alpha.35 → 1.0.0-alpha.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/animation/index.d.ts +13 -1
- package/animation/index.es.js +11 -9
- package/assets/lottiejs/scan-qr.es.js +4 -0
- package/backgroundimagecropper/index.es.js +2 -2
- package/badge/index.es.js +98 -94
- package/badgegroup/index.es.js +41 -37
- package/badgegrouptree/index.es.js +24 -22
- package/basecalendar/index.es.js +109 -106
- package/changelogcustomvalue/index.es.js +20 -0
- package/changelogpage/index.es.js +36 -36
- package/datatable/index.es.js +1 -1
- package/dropdown/index.d.ts +1 -0
- package/dropdown/index.es.js +82 -72
- package/image/index.d.ts +14 -6
- package/image/index.es.js +120 -94
- package/inputbadge/index.d.ts +33 -0
- package/inputbadge/index.es.js +108 -94
- package/inputcurrency/index.es.js +94 -76
- package/inputnumber/index.es.js +47 -42
- package/package.json +1 -1
- package/scan-qr-C6V4afHJ.js +4 -0
- package/scan-qr-ER7xYaNh.js +1 -0
- package/stats.html +1 -1
- package/style.css +1 -1
- package/timeline/index.d.ts +5 -0
- package/timeline/index.es.js +38 -32
- package/utils/date.util.d.ts +2 -1
- package/utils/date.util.es.js +80 -62
- package/utils/index.d.ts +1 -0
- package/vendor/@vueuse/core/index.es.js +41 -0
- package/vendor/@vueuse/shared/index.es.js +7 -0
- package/wangsvue-gsts.es.js +152 -151
- package/wangsvue-gsts.esm.browser.js +11192 -11030
- package/wangsvue-gsts.system.js +60 -60
package/animation/index.d.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import type { Config } from '@lottiefiles/dotlottie-web';
|
|
2
|
+
|
|
1
3
|
import { ClassComponent } from '../ts-helpers.d';
|
|
2
4
|
|
|
3
5
|
export interface AnimationDefaultConfig {
|
|
@@ -5,7 +7,12 @@ export interface AnimationDefaultConfig {
|
|
|
5
7
|
}
|
|
6
8
|
|
|
7
9
|
export interface AnimationProps {
|
|
8
|
-
animation:
|
|
10
|
+
animation:
|
|
11
|
+
| 'no-data'
|
|
12
|
+
| 'loading-plane'
|
|
13
|
+
| 'loading-page'
|
|
14
|
+
| 'loading-table'
|
|
15
|
+
| 'scan-qr';
|
|
9
16
|
/**
|
|
10
17
|
* @default true
|
|
11
18
|
*/
|
|
@@ -14,6 +21,11 @@ export interface AnimationProps {
|
|
|
14
21
|
* @default true
|
|
15
22
|
*/
|
|
16
23
|
loop?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Custom configurations for the animation
|
|
26
|
+
* Reference: https://developers.lottiefiles.com/docs/dotlottie-player/dotlottie-web/api/config/
|
|
27
|
+
*/
|
|
28
|
+
customConfig?: Partial<Config>;
|
|
17
29
|
}
|
|
18
30
|
|
|
19
31
|
/**
|
package/animation/index.es.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineComponent as p, computed as m, ref as u, onMounted as c, createElementBlock as d, openBlock as f, mergeProps as g, createElementVNode as
|
|
2
|
-
import { u as
|
|
3
|
-
import { m as
|
|
4
|
-
const
|
|
1
|
+
import { defineComponent as p, computed as m, ref as u, onMounted as c, createElementBlock as d, openBlock as f, mergeProps as g, createElementVNode as w } from "vue";
|
|
2
|
+
import { u as y } from "../plugins/WangsVue.es.js";
|
|
3
|
+
import { m as h } from "../utils/mergePropsWithDefaults.util.es.js";
|
|
4
|
+
const v = (n, e, i) => {
|
|
5
5
|
const o = n[e];
|
|
6
6
|
return o ? typeof o == "function" ? o() : Promise.resolve(o) : new Promise((a, s) => {
|
|
7
7
|
(typeof queueMicrotask == "function" ? queueMicrotask : setTimeout)(
|
|
@@ -18,17 +18,19 @@ const w = (n, e, i) => {
|
|
|
18
18
|
props: {
|
|
19
19
|
animation: {},
|
|
20
20
|
autoplay: { type: Boolean, default: !0 },
|
|
21
|
-
loop: { type: Boolean, default: !0 }
|
|
21
|
+
loop: { type: Boolean, default: !0 },
|
|
22
|
+
customConfig: {}
|
|
22
23
|
},
|
|
23
24
|
setup(n) {
|
|
24
|
-
const e = n, { defaultProps: i } =
|
|
25
|
+
const e = n, { defaultProps: i } = y("Animation"), o = m(() => h(e, i)), a = u(null);
|
|
25
26
|
c(async () => {
|
|
26
|
-
const l = await
|
|
27
|
+
const l = await v(/* @__PURE__ */ Object.assign({ "../../assets/lottie/admin/loading-page.lottie": () => import("../assets/lottiejs/loading-page.es.js").then((t) => t.l), "../../assets/lottie/admin/loading-table.lottie": () => import("../assets/lottiejs/loading-table.es.js").then((t) => t.l), "../../assets/lottie/admin/no-data.lottie": () => import("../assets/lottiejs/no-data.es.js").then((t) => t.n), "../../assets/lottie/supplyasset/loading-page.lottie": () => import("../assets/lottiejs/loading-page.es.js").then((t) => t.a), "../../assets/lottie/supplyasset/loading-table.lottie": () => import("../assets/lottiejs/loading-table.es.js").then((t) => t.a), "../../assets/lottie/supplyasset/no-data.lottie": () => import("../assets/lottiejs/no-data.es.js").then((t) => t.a), "../../assets/lottie/workspace/loading-page.lottie": () => import("../assets/lottiejs/loading-page.es.js").then((t) => t.b), "../../assets/lottie/workspace/loading-plane.lottie": () => import("../assets/lottiejs/loading-plane.es.js"), "../../assets/lottie/workspace/loading-table.lottie": () => import("../assets/lottiejs/loading-table.es.js").then((t) => t.b), "../../assets/lottie/workspace/no-data.lottie": () => import("../assets/lottiejs/no-data.es.js").then((t) => t.b), "../../assets/lottie/workspace/scan-qr.lottie": () => import("../assets/lottiejs/scan-qr.es.js") }), `../../assets/lottie/${o.value.libPath}/${e.animation}.lottie`, 6), { DotLottie: r } = await s();
|
|
27
28
|
a.value && new r({
|
|
28
29
|
canvas: a.value,
|
|
29
30
|
src: l.default,
|
|
30
31
|
autoplay: e.autoplay,
|
|
31
|
-
loop: e.loop
|
|
32
|
+
loop: e.loop,
|
|
33
|
+
...e.customConfig
|
|
32
34
|
});
|
|
33
35
|
});
|
|
34
36
|
const s = () => "System" in window ? new Function(
|
|
@@ -39,7 +41,7 @@ const w = (n, e, i) => {
|
|
|
39
41
|
"https://cdn.jsdelivr.net/npm/@lottiefiles/dotlottie-web@0.38.2/+esm"
|
|
40
42
|
);
|
|
41
43
|
return (l, r) => (f(), d("div", g({ "data-wv-name": "animation" }, l.$attrs), [
|
|
42
|
-
|
|
44
|
+
w("canvas", {
|
|
43
45
|
ref_key: "canvasRef",
|
|
44
46
|
ref: a,
|
|
45
47
|
style: { width: "100%", height: "100%" }
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
const A = "data:application/octet-stream;base64,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";
|
|
2
|
+
export {
|
|
3
|
+
A as default
|
|
4
|
+
};
|
|
@@ -50,8 +50,8 @@ const I = (i, s) => {
|
|
|
50
50
|
_: 3
|
|
51
51
|
}, 8, ["mouse-move", "touch-move", "touch-resize", "wheel-resize"]));
|
|
52
52
|
}
|
|
53
|
-
}),
|
|
53
|
+
}), S = /* @__PURE__ */ I(R, [["__scopeId", "data-v-9031c32d"]]);
|
|
54
54
|
export {
|
|
55
|
-
|
|
55
|
+
S as B,
|
|
56
56
|
I as _
|
|
57
57
|
};
|
package/badge/index.es.js
CHANGED
|
@@ -1,83 +1,85 @@
|
|
|
1
|
-
import { defineComponent as T, computed as r, resolveDirective as w, withDirectives as C, createElementBlock as
|
|
2
|
-
import { u as
|
|
3
|
-
import { m as
|
|
4
|
-
import { f as
|
|
5
|
-
import { _ as
|
|
6
|
-
const
|
|
1
|
+
import { defineComponent as T, computed as r, resolveDirective as w, withDirectives as C, createElementBlock as v, openBlock as d, mergeProps as b, createElementVNode as S, createBlock as D, createCommentVNode as W, toDisplayString as E } from "vue";
|
|
2
|
+
import { u as R } from "../plugins/WangsVue.es.js";
|
|
3
|
+
import { m as V } from "../utils/mergePropsWithDefaults.util.es.js";
|
|
4
|
+
import { f as O } from "../utils/textFormatter.util.es.js";
|
|
5
|
+
import { _ as P } from "../button/index.es.js";
|
|
6
|
+
const _ = ["contenteditable"], N = {
|
|
7
7
|
key: 1,
|
|
8
8
|
"aria-label": "invalid-label"
|
|
9
|
-
},
|
|
9
|
+
}, z = /* @__PURE__ */ T({
|
|
10
10
|
__name: "Badge",
|
|
11
11
|
props: {
|
|
12
12
|
label: {},
|
|
13
13
|
editable: { type: Boolean },
|
|
14
|
+
restoreOnEmpty: { type: Boolean },
|
|
14
15
|
severity: {},
|
|
15
16
|
format: {},
|
|
16
17
|
removable: { type: Boolean },
|
|
18
|
+
disableRemoveButton: { type: Boolean },
|
|
17
19
|
disabled: { type: Boolean },
|
|
18
20
|
tooltip: {},
|
|
19
21
|
getSeverity: { type: Function }
|
|
20
22
|
},
|
|
21
23
|
emits: ["remove", "update:label"],
|
|
22
|
-
setup(
|
|
23
|
-
const
|
|
24
|
-
const
|
|
25
|
-
return
|
|
26
|
-
}),
|
|
27
|
-
var
|
|
28
|
-
return
|
|
29
|
-
}),
|
|
30
|
-
if (!
|
|
31
|
-
switch (
|
|
24
|
+
setup(c, { emit: f }) {
|
|
25
|
+
const e = c, s = f, { defaultProps: y } = R("Badge"), g = r(() => V(e, y)), u = r(() => {
|
|
26
|
+
const t = typeof e.label;
|
|
27
|
+
return t === "number" || t === "string" && e.label && e.label !== "-";
|
|
28
|
+
}), i = r(() => {
|
|
29
|
+
var t, o;
|
|
30
|
+
return e.severity || ((o = (t = g.value).getSeverity) == null ? void 0 : o.call(t, e.label));
|
|
31
|
+
}), B = r(() => {
|
|
32
|
+
if (!u.value) return "-";
|
|
33
|
+
switch (e.format) {
|
|
32
34
|
case "nowrap":
|
|
33
|
-
return
|
|
35
|
+
return e.label;
|
|
34
36
|
case "username":
|
|
35
|
-
return
|
|
37
|
+
return O(e.label);
|
|
36
38
|
default:
|
|
37
|
-
if (
|
|
38
|
-
const
|
|
39
|
-
return `${
|
|
39
|
+
if (e.label.length > 12) {
|
|
40
|
+
const t = e.label.slice(0, 5), o = e.label.slice(-5);
|
|
41
|
+
return `${t}..${o}`;
|
|
40
42
|
}
|
|
41
|
-
return
|
|
43
|
+
return e.label;
|
|
42
44
|
}
|
|
43
|
-
}),
|
|
44
|
-
const o =
|
|
45
|
-
(
|
|
46
|
-
}, k = (
|
|
47
|
-
const l =
|
|
48
|
-
if (l !==
|
|
49
|
-
const a = (l == null ? void 0 : l.trim()) ?? null;
|
|
50
|
-
|
|
45
|
+
}), p = r(() => e.tooltip || (e.format !== "nowrap" && e.label.length > 12 || e.format === "username" && e.label.length > 8 ? e.label : void 0)), $ = (t) => {
|
|
46
|
+
const o = t.target;
|
|
47
|
+
(t.code === "Enter" || t.code === "Tab") && (t.preventDefault(), o.blur());
|
|
48
|
+
}, k = (t, o) => {
|
|
49
|
+
const l = t.textContent;
|
|
50
|
+
if (l !== e.label) {
|
|
51
|
+
const a = (l == null ? void 0 : l.trim()) ?? null, n = e.restoreOnEmpty && !a ? e.label : a;
|
|
52
|
+
t.textContent = n, s("update:label", n, e.label), o && !n && e.removable != !1 && (o.remove(), s("remove"));
|
|
51
53
|
}
|
|
52
54
|
};
|
|
53
|
-
return (
|
|
54
|
-
var a,
|
|
55
|
+
return (t, o) => {
|
|
56
|
+
var a, n, m;
|
|
55
57
|
const l = w("tooltip");
|
|
56
|
-
return
|
|
58
|
+
return u.value ? C((d(), v("span", b(
|
|
57
59
|
{
|
|
58
60
|
key: 0,
|
|
59
61
|
ref: "badge"
|
|
60
62
|
},
|
|
61
|
-
(a =
|
|
62
|
-
props: { severity:
|
|
63
|
+
(a = t.$preset.badge) == null ? void 0 : a.root({
|
|
64
|
+
props: { severity: i.value, disabled: t.disabled }
|
|
63
65
|
})
|
|
64
66
|
), [
|
|
65
|
-
S("span",
|
|
66
|
-
contenteditable:
|
|
67
|
+
S("span", b({ ref: "input" }, (n = t.$preset.badge) == null ? void 0 : n.input({ props: e, context: { badgeTooltip: p.value } }), {
|
|
68
|
+
contenteditable: t.editable,
|
|
67
69
|
onBlur: o[0] || (o[0] = (h) => k(
|
|
68
|
-
|
|
69
|
-
|
|
70
|
+
t.$refs.input,
|
|
71
|
+
t.$refs.badge
|
|
70
72
|
)),
|
|
71
|
-
onKeydown:
|
|
73
|
+
onKeydown: $,
|
|
72
74
|
spellcheck: "false"
|
|
73
|
-
}),
|
|
74
|
-
|
|
75
|
+
}), E(B.value), 17, _),
|
|
76
|
+
e.removable || e.disableRemoveButton ? (d(), D(P, b(
|
|
75
77
|
{ key: 0 },
|
|
76
|
-
(m =
|
|
78
|
+
(m = t.$preset.badge) == null ? void 0 : m.removebutton({ props: { badgeSeverity: i.value, disabled: t.disabled } }),
|
|
77
79
|
{
|
|
78
|
-
disabled:
|
|
79
|
-
severity:
|
|
80
|
-
onClick: o[1] || (o[1] = (h) =>
|
|
80
|
+
disabled: e.disabled || !e.removable && e.disableRemoveButton,
|
|
81
|
+
severity: i.value,
|
|
82
|
+
onClick: o[1] || (o[1] = (h) => s("remove")),
|
|
81
83
|
icon: "close",
|
|
82
84
|
rounded: "",
|
|
83
85
|
text: ""
|
|
@@ -86,88 +88,90 @@ const F = ["contenteditable"], H = {
|
|
|
86
88
|
], 16)), [
|
|
87
89
|
[
|
|
88
90
|
l,
|
|
89
|
-
{ value:
|
|
91
|
+
{ value: p.value, autoHide: !1 },
|
|
90
92
|
void 0,
|
|
91
93
|
{ top: !0 }
|
|
92
94
|
]
|
|
93
|
-
]) : (
|
|
95
|
+
]) : (d(), v("span", N, "-"));
|
|
94
96
|
};
|
|
95
97
|
}
|
|
96
|
-
}),
|
|
98
|
+
}), F = ["contenteditable"], H = {
|
|
97
99
|
key: 1,
|
|
98
100
|
"aria-label": "invalid-label"
|
|
99
|
-
},
|
|
101
|
+
}, A = /* @__PURE__ */ T({
|
|
100
102
|
__name: "Badge",
|
|
101
103
|
props: {
|
|
102
104
|
label: {},
|
|
103
105
|
editable: { type: Boolean },
|
|
106
|
+
restoreOnEmpty: { type: Boolean },
|
|
104
107
|
severity: {},
|
|
105
108
|
format: {},
|
|
106
109
|
removable: { type: Boolean },
|
|
110
|
+
disableRemoveButton: { type: Boolean },
|
|
107
111
|
disabled: { type: Boolean },
|
|
108
112
|
tooltip: {},
|
|
109
113
|
getSeverity: { type: Function }
|
|
110
114
|
},
|
|
111
115
|
emits: ["remove", "update:label"],
|
|
112
|
-
setup(
|
|
113
|
-
const
|
|
114
|
-
const
|
|
115
|
-
return
|
|
116
|
-
}),
|
|
117
|
-
var
|
|
118
|
-
return
|
|
119
|
-
}),
|
|
120
|
-
if (!
|
|
121
|
-
switch (
|
|
116
|
+
setup(c, { emit: f }) {
|
|
117
|
+
const e = c, s = f, { defaultProps: y } = R("Badge"), g = r(() => V(e, y)), u = r(() => {
|
|
118
|
+
const t = typeof e.label;
|
|
119
|
+
return t === "number" || t === "string" && e.label && e.label !== "-";
|
|
120
|
+
}), i = r(() => {
|
|
121
|
+
var t, o;
|
|
122
|
+
return e.severity || ((o = (t = g.value).getSeverity) == null ? void 0 : o.call(t, e.label));
|
|
123
|
+
}), B = r(() => {
|
|
124
|
+
if (!u.value) return "-";
|
|
125
|
+
switch (e.format) {
|
|
122
126
|
case "nowrap":
|
|
123
|
-
return
|
|
127
|
+
return e.label;
|
|
124
128
|
case "username":
|
|
125
|
-
return
|
|
129
|
+
return O(e.label);
|
|
126
130
|
default:
|
|
127
|
-
if (
|
|
128
|
-
const
|
|
129
|
-
return `${
|
|
131
|
+
if (e.label.length > 12) {
|
|
132
|
+
const t = e.label.slice(0, 5), o = e.label.slice(-5);
|
|
133
|
+
return `${t}..${o}`;
|
|
130
134
|
}
|
|
131
|
-
return
|
|
135
|
+
return e.label;
|
|
132
136
|
}
|
|
133
|
-
}),
|
|
134
|
-
const o =
|
|
135
|
-
(
|
|
136
|
-
}, k = (
|
|
137
|
-
const l =
|
|
138
|
-
if (l !==
|
|
137
|
+
}), p = r(() => e.format !== "nowrap" && e.label.length > 12 || e.format === "username" && e.label.length > 8 ? e.label : void 0), $ = (t) => {
|
|
138
|
+
const o = t.target;
|
|
139
|
+
(t.code === "Enter" || t.code === "Tab") && (t.preventDefault(), o.blur());
|
|
140
|
+
}, k = (t, o) => {
|
|
141
|
+
const l = t.textContent;
|
|
142
|
+
if (l !== e.label) {
|
|
139
143
|
const a = (l == null ? void 0 : l.trim()) ?? null;
|
|
140
|
-
|
|
144
|
+
t.textContent = a, s("update:label", a), o && !l && (o.remove(), s("remove"));
|
|
141
145
|
}
|
|
142
146
|
};
|
|
143
|
-
return (
|
|
144
|
-
var a,
|
|
147
|
+
return (t, o) => {
|
|
148
|
+
var a, n, m;
|
|
145
149
|
const l = w("tooltip");
|
|
146
|
-
return
|
|
150
|
+
return u.value ? C((d(), v("span", b(
|
|
147
151
|
{
|
|
148
152
|
key: 0,
|
|
149
153
|
ref: "badge"
|
|
150
154
|
},
|
|
151
|
-
(a =
|
|
152
|
-
props: { severity:
|
|
155
|
+
(a = t.$preset.badge) == null ? void 0 : a.root({
|
|
156
|
+
props: { severity: i.value, disabled: t.disabled }
|
|
153
157
|
})
|
|
154
158
|
), [
|
|
155
|
-
S("span",
|
|
156
|
-
contenteditable:
|
|
159
|
+
S("span", b({ ref: "input" }, (n = t.$preset.badge) == null ? void 0 : n.input({ props: e, context: { badgeTooltip: p.value } }), {
|
|
160
|
+
contenteditable: t.editable,
|
|
157
161
|
onBlur: o[0] || (o[0] = (h) => k(
|
|
158
|
-
|
|
159
|
-
|
|
162
|
+
t.$refs.input,
|
|
163
|
+
t.$refs.badge
|
|
160
164
|
)),
|
|
161
|
-
onKeydown:
|
|
165
|
+
onKeydown: $,
|
|
162
166
|
spellcheck: "false"
|
|
163
|
-
}),
|
|
164
|
-
|
|
167
|
+
}), E(B.value), 17, F),
|
|
168
|
+
e.removable ? (d(), D(P, b(
|
|
165
169
|
{ key: 0 },
|
|
166
|
-
(m =
|
|
170
|
+
(m = t.$preset.badge) == null ? void 0 : m.removebutton({ props: { badgeSeverity: i.value, disabled: t.disabled } }),
|
|
167
171
|
{
|
|
168
|
-
disabled:
|
|
169
|
-
severity:
|
|
170
|
-
onClick: o[1] || (o[1] = (h) =>
|
|
172
|
+
disabled: e.disabled,
|
|
173
|
+
severity: i.value,
|
|
174
|
+
onClick: o[1] || (o[1] = (h) => s("remove")),
|
|
171
175
|
icon: "close",
|
|
172
176
|
rounded: "",
|
|
173
177
|
text: ""
|
|
@@ -176,15 +180,15 @@ const F = ["contenteditable"], H = {
|
|
|
176
180
|
], 16)), [
|
|
177
181
|
[
|
|
178
182
|
l,
|
|
179
|
-
{ value:
|
|
183
|
+
{ value: p.value, autoHide: !1 },
|
|
180
184
|
void 0,
|
|
181
185
|
{ top: !0 }
|
|
182
186
|
]
|
|
183
|
-
]) : (
|
|
187
|
+
]) : (d(), v("span", H, "-"));
|
|
184
188
|
};
|
|
185
189
|
}
|
|
186
190
|
});
|
|
187
191
|
export {
|
|
188
|
-
|
|
189
|
-
|
|
192
|
+
z as _,
|
|
193
|
+
A as a
|
|
190
194
|
};
|
package/badgegroup/index.es.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { defineComponent as b, shallowRef as k, computed as
|
|
2
|
-
import { s as
|
|
1
|
+
import { defineComponent as b, shallowRef as k, computed as u, createElementBlock as i, openBlock as o, normalizeProps as h, mergeProps as y, createBlock as a, createCommentVNode as v, Fragment as d, renderList as m, unref as $, withCtx as B, renderSlot as L } from "vue";
|
|
2
|
+
import { s as c } from "../vendor/primevue/dialog/dialog.esm.es.js";
|
|
3
3
|
import { _ as f } from "../badge/index.es.js";
|
|
4
|
-
import { _ as
|
|
5
|
-
const
|
|
4
|
+
import { _ as w } from "../button/index.es.js";
|
|
5
|
+
const x = { key: 0 }, _ = /* @__PURE__ */ b({
|
|
6
6
|
__name: "BadgeGroup",
|
|
7
7
|
props: {
|
|
8
8
|
labels: {},
|
|
@@ -11,44 +11,46 @@ const M = { key: 0 }, j = /* @__PURE__ */ b({
|
|
|
11
11
|
limit: {},
|
|
12
12
|
headerLabel: { default: "Header" },
|
|
13
13
|
editable: { type: Boolean },
|
|
14
|
+
restoreOnEmpty: { type: Boolean },
|
|
14
15
|
severity: {},
|
|
15
16
|
format: {},
|
|
17
|
+
disableRemoveButton: { type: Boolean },
|
|
16
18
|
tooltip: {},
|
|
17
19
|
getSeverity: {}
|
|
18
20
|
},
|
|
19
21
|
setup(g) {
|
|
20
|
-
const t = g, l = k(!1), n =
|
|
22
|
+
const t = g, l = k(!1), n = u(() => t.labels.slice(0, t.limit)), p = u(
|
|
21
23
|
() => t.labels.length - n.value.length
|
|
22
24
|
);
|
|
23
|
-
return (
|
|
24
|
-
(
|
|
25
|
+
return (r, s) => n.value.length ? (o(), i("div", h(y({ key: 1 }, r.$preset.badgegroup.root)), [
|
|
26
|
+
(o(!0), i(d, null, m(n.value, (e) => (o(), a(f, {
|
|
25
27
|
key: typeof e == "string" ? e : e.text,
|
|
26
28
|
format: t.format,
|
|
27
29
|
label: typeof e == "string" ? e : e.text,
|
|
28
30
|
severity: typeof e == "string" ? t.severity : e.severity
|
|
29
31
|
}, null, 8, ["format", "label", "severity"]))), 128)),
|
|
30
|
-
|
|
32
|
+
p.value ? (o(), a(w, y({
|
|
31
33
|
key: 0,
|
|
32
|
-
label: `+${
|
|
33
|
-
},
|
|
34
|
+
label: `+${p.value} ${r.textMore}`
|
|
35
|
+
}, r.$preset.badgegroup.showmorebutton, {
|
|
34
36
|
severity: t.textMoreSeverity ?? "dark",
|
|
35
37
|
onClick: s[0] || (s[0] = (e) => l.value = !0),
|
|
36
38
|
text: ""
|
|
37
|
-
}), null, 16, ["label", "severity"])) :
|
|
38
|
-
|
|
39
|
+
}), null, 16, ["label", "severity"])) : v("", !0),
|
|
40
|
+
r.limit ? (o(), a($(c), {
|
|
39
41
|
key: 1,
|
|
40
42
|
visible: l.value,
|
|
41
43
|
"onUpdate:visible": s[1] || (s[1] = (e) => l.value = e),
|
|
42
44
|
draggable: !1,
|
|
43
|
-
header:
|
|
44
|
-
pt:
|
|
45
|
+
header: r.headerLabel,
|
|
46
|
+
pt: r.$preset.badgegroup.showmoredialog,
|
|
45
47
|
modal: ""
|
|
46
48
|
}, {
|
|
47
|
-
default:
|
|
48
|
-
|
|
49
|
+
default: B(() => [
|
|
50
|
+
L(r.$slots, "dialogcontent", {
|
|
49
51
|
labels: t.labels
|
|
50
52
|
}, () => [
|
|
51
|
-
(
|
|
53
|
+
(o(!0), i(d, null, m(t.labels, (e) => (o(), a(f, {
|
|
52
54
|
key: typeof e == "string" ? e : e.text,
|
|
53
55
|
format: t.format,
|
|
54
56
|
label: typeof e == "string" ? e : e.text,
|
|
@@ -57,10 +59,10 @@ const M = { key: 0 }, j = /* @__PURE__ */ b({
|
|
|
57
59
|
])
|
|
58
60
|
]),
|
|
59
61
|
_: 3
|
|
60
|
-
}, 8, ["visible", "header", "pt"])) :
|
|
61
|
-
], 16)) : (
|
|
62
|
+
}, 8, ["visible", "header", "pt"])) : v("", !0)
|
|
63
|
+
], 16)) : (o(), i("span", x, " - "));
|
|
62
64
|
}
|
|
63
|
-
}),
|
|
65
|
+
}), M = { key: 0 }, j = /* @__PURE__ */ b({
|
|
64
66
|
__name: "BadgeGroup",
|
|
65
67
|
props: {
|
|
66
68
|
labels: {},
|
|
@@ -69,45 +71,47 @@ const M = { key: 0 }, j = /* @__PURE__ */ b({
|
|
|
69
71
|
limit: {},
|
|
70
72
|
headerLabel: { default: "Header" },
|
|
71
73
|
editable: { type: Boolean },
|
|
74
|
+
restoreOnEmpty: { type: Boolean },
|
|
72
75
|
severity: {},
|
|
73
76
|
format: {},
|
|
77
|
+
disableRemoveButton: { type: Boolean },
|
|
74
78
|
tooltip: {},
|
|
75
79
|
getSeverity: {}
|
|
76
80
|
},
|
|
77
81
|
setup(g) {
|
|
78
|
-
const t = g, l = k(!1), n =
|
|
82
|
+
const t = g, l = k(!1), n = u(() => t.labels.slice(0, t.limit)), p = u(
|
|
79
83
|
() => t.labels.length - n.value.length
|
|
80
84
|
);
|
|
81
|
-
return (
|
|
82
|
-
(
|
|
85
|
+
return (r, s) => n.value.length ? (o(), i("div", h(y({ key: 1 }, r.$preset.badgegroup.root)), [
|
|
86
|
+
(o(!0), i(d, null, m(n.value, (e) => (o(), a(f, {
|
|
83
87
|
key: typeof e == "string" ? e : e.text,
|
|
84
88
|
format: t.format,
|
|
85
89
|
label: typeof e == "string" ? e : e.text,
|
|
86
90
|
severity: typeof e == "string" ? t.severity : e.severity,
|
|
87
91
|
tooltip: typeof e == "object" && e.tooltip
|
|
88
92
|
}, null, 8, ["format", "label", "severity", "tooltip"]))), 128)),
|
|
89
|
-
|
|
93
|
+
p.value ? (o(), a(w, y({
|
|
90
94
|
key: 0,
|
|
91
|
-
label: `+${
|
|
92
|
-
},
|
|
95
|
+
label: `+${p.value} ${r.textMore}`
|
|
96
|
+
}, r.$preset.badgegroup.showmorebutton, {
|
|
93
97
|
severity: t.textMoreSeverity ?? "dark",
|
|
94
98
|
onClick: s[0] || (s[0] = (e) => l.value = !0),
|
|
95
99
|
text: ""
|
|
96
|
-
}), null, 16, ["label", "severity"])) :
|
|
97
|
-
|
|
100
|
+
}), null, 16, ["label", "severity"])) : v("", !0),
|
|
101
|
+
r.limit ? (o(), a($(c), {
|
|
98
102
|
key: 1,
|
|
99
103
|
visible: l.value,
|
|
100
104
|
"onUpdate:visible": s[1] || (s[1] = (e) => l.value = e),
|
|
101
105
|
draggable: !1,
|
|
102
|
-
header:
|
|
103
|
-
pt:
|
|
106
|
+
header: r.headerLabel,
|
|
107
|
+
pt: r.$preset.badgegroup.showmoredialog,
|
|
104
108
|
modal: ""
|
|
105
109
|
}, {
|
|
106
|
-
default:
|
|
107
|
-
|
|
110
|
+
default: B(() => [
|
|
111
|
+
L(r.$slots, "dialogcontent", {
|
|
108
112
|
labels: t.labels
|
|
109
113
|
}, () => [
|
|
110
|
-
(
|
|
114
|
+
(o(!0), i(d, null, m(t.labels, (e) => (o(), a(f, {
|
|
111
115
|
key: typeof e == "string" ? e : e.text,
|
|
112
116
|
format: t.format,
|
|
113
117
|
label: typeof e == "string" ? e : e.text,
|
|
@@ -117,11 +121,11 @@ const M = { key: 0 }, j = /* @__PURE__ */ b({
|
|
|
117
121
|
])
|
|
118
122
|
]),
|
|
119
123
|
_: 3
|
|
120
|
-
}, 8, ["visible", "header", "pt"])) :
|
|
121
|
-
], 16)) : (
|
|
124
|
+
}, 8, ["visible", "header", "pt"])) : v("", !0)
|
|
125
|
+
], 16)) : (o(), i("span", M, " - "));
|
|
122
126
|
}
|
|
123
127
|
});
|
|
124
128
|
export {
|
|
125
|
-
|
|
126
|
-
|
|
129
|
+
j as _,
|
|
130
|
+
_ as a
|
|
127
131
|
};
|