@fiscozen/dialog 0.1.6 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dialog.js +191 -173
- package/dist/dialog.umd.cjs +1 -1
- package/dist/src/{FzSimpleDialog.vue.d.ts → FzConfirmDialog.vue.d.ts} +28 -6
- package/dist/src/FzDialog.vue.d.ts +3 -2
- package/dist/src/index.d.ts +1 -1
- package/dist/src/types.d.ts +31 -1
- package/package.json +6 -5
- package/src/FzConfirmDialog.vue +7 -2
- package/src/FzDialog.vue +13 -2
- package/src/__test__/FzDialog.test.ts +2 -2
- package/src/__test__/__snapshots__/FzDialog.test.ts.snap +57 -33
- package/src/types.ts +6 -0
- package/tsconfig.tsbuildinfo +1 -1
package/dist/dialog.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { FzIconButton as
|
|
3
|
-
const
|
|
1
|
+
import { defineComponent as M, ref as u, onMounted as N, onUnmounted as _, computed as B, openBlock as m, createElementBlock as E, normalizeClass as d, createElementVNode as r, renderSlot as n, createCommentVNode as z, createBlock as C, mergeProps as V, createSlots as O, withCtx as i, toDisplayString as g, createVNode as I, unref as y, withModifiers as L, createTextVNode as F } from "vue";
|
|
2
|
+
import { FzIconButton as X, FzButton as S } from "@fiscozen/button";
|
|
3
|
+
const Y = { class: "flex items-center p-12 w-full border-b-1 border-grey-100 border-solid" }, j = {
|
|
4
|
+
key: 0,
|
|
5
|
+
class: "flex flex-row p-12 border-t-1 border-grey-100 items-center border-solid"
|
|
6
|
+
}, P = /* @__PURE__ */ M({
|
|
4
7
|
__name: "FzDialog",
|
|
5
8
|
props: {
|
|
6
9
|
size: { default: "md" },
|
|
@@ -8,234 +11,249 @@ const V = { class: "flex items-center p-12 w-full border-b-1 border-grey-100" },
|
|
|
8
11
|
confirmLabel: {},
|
|
9
12
|
cancelLabel: {},
|
|
10
13
|
text: {},
|
|
11
|
-
isDrawer: { type: Boolean }
|
|
14
|
+
isDrawer: { type: Boolean },
|
|
15
|
+
closeOnBackdrop: { type: Boolean, default: !0 },
|
|
16
|
+
bodyClasses: {}
|
|
12
17
|
},
|
|
13
|
-
emits: ["
|
|
14
|
-
setup(
|
|
15
|
-
const
|
|
16
|
-
|
|
18
|
+
emits: ["cancel"],
|
|
19
|
+
setup(x, { expose: p, emit: h }) {
|
|
20
|
+
const l = x, c = h, a = u(), t = u(!1);
|
|
21
|
+
p({
|
|
17
22
|
show: () => {
|
|
18
|
-
|
|
19
|
-
(e = r.value) == null || e.showModal(), l.value = !0;
|
|
23
|
+
a.value.showModal(), t.value = !0;
|
|
20
24
|
},
|
|
21
|
-
close: (e) =>
|
|
22
|
-
|
|
23
|
-
return (s = r.value) == null ? void 0 : s.close(e);
|
|
24
|
-
},
|
|
25
|
-
visible: l
|
|
25
|
+
close: (e) => a.value.close(e),
|
|
26
|
+
visible: t
|
|
26
27
|
});
|
|
27
|
-
const
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
n || r.value.close();
|
|
31
|
-
}
|
|
28
|
+
const f = (e) => {
|
|
29
|
+
var o = a.value.getBoundingClientRect(), s = o.top <= e.clientY && e.clientY <= o.top + o.height && o.left <= e.clientX && e.clientX <= o.left + o.width;
|
|
30
|
+
!s && l.closeOnBackdrop && (a.value.close(), c("cancel"));
|
|
32
31
|
};
|
|
33
|
-
|
|
32
|
+
N(() => {
|
|
34
33
|
var e;
|
|
35
|
-
(e =
|
|
36
|
-
}),
|
|
34
|
+
(e = a.value) == null || e.addEventListener("click", f);
|
|
35
|
+
}), _(() => {
|
|
37
36
|
var e;
|
|
38
|
-
(e =
|
|
37
|
+
(e = a.value) == null || e.removeEventListener("click", f);
|
|
39
38
|
});
|
|
40
|
-
const
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
"border-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
return e = {
|
|
50
|
-
"m-0": !0,
|
|
51
|
-
fixed: !0,
|
|
52
|
-
"top-0": !0,
|
|
53
|
-
"ml-auto": !0,
|
|
54
|
-
"max-h-screen": !0
|
|
55
|
-
}, e;
|
|
56
|
-
switch (a.size) {
|
|
39
|
+
const b = ["flex", "flex-col", "bg-core-white"], w = {
|
|
40
|
+
"border-1": !0,
|
|
41
|
+
rounded: !0,
|
|
42
|
+
"border-grey-100": !0
|
|
43
|
+
}, v = B(() => {
|
|
44
|
+
let e = [];
|
|
45
|
+
if (l.isDrawer)
|
|
46
|
+
return e = ["m-0", "fixed", "top-0", "ml-auto", "max-h-screen"], e;
|
|
47
|
+
switch (l.size) {
|
|
57
48
|
case "sm":
|
|
58
|
-
e =
|
|
49
|
+
e = [];
|
|
59
50
|
break;
|
|
60
51
|
case "md":
|
|
61
|
-
e =
|
|
62
|
-
"xs:max-sm:m-0"
|
|
63
|
-
"xs:max-sm:max-h-screen"
|
|
64
|
-
"xs:max-sm:h-screen"
|
|
65
|
-
"xs:max-sm:w-screen"
|
|
66
|
-
"xs:max-sm:max-w-screen-xl"
|
|
67
|
-
|
|
52
|
+
e = [
|
|
53
|
+
"xs:max-sm:m-0",
|
|
54
|
+
"xs:max-sm:max-h-screen",
|
|
55
|
+
"xs:max-sm:h-screen",
|
|
56
|
+
"xs:max-sm:w-screen",
|
|
57
|
+
"xs:max-sm:max-w-screen-xl"
|
|
58
|
+
];
|
|
59
|
+
break;
|
|
68
60
|
case "lg":
|
|
69
|
-
e =
|
|
70
|
-
"xs:max-md:m-0"
|
|
71
|
-
"xs:max-md:max-h-screen"
|
|
72
|
-
"xs:max-md:h-screen"
|
|
73
|
-
"xs:max-md:w-screen"
|
|
74
|
-
"xs:max-md:max-w-screen-xl"
|
|
75
|
-
|
|
61
|
+
e = [
|
|
62
|
+
"xs:max-md:m-0",
|
|
63
|
+
"xs:max-md:max-h-screen",
|
|
64
|
+
"xs:max-md:h-screen",
|
|
65
|
+
"xs:max-md:w-screen",
|
|
66
|
+
"xs:max-md:max-w-screen-xl"
|
|
67
|
+
];
|
|
68
|
+
break;
|
|
76
69
|
case "xl":
|
|
77
|
-
e =
|
|
78
|
-
"xs:max-xl:m-0"
|
|
79
|
-
"xs:max-xl:max-h-screen"
|
|
80
|
-
"xs:max-xl:h-screen"
|
|
81
|
-
"xs:max-xl:w-screen"
|
|
82
|
-
"xs:max-xl:max-w-screen-xl"
|
|
83
|
-
|
|
70
|
+
e = [
|
|
71
|
+
"xs:max-xl:m-0",
|
|
72
|
+
"xs:max-xl:max-h-screen",
|
|
73
|
+
"xs:max-xl:h-screen",
|
|
74
|
+
"xs:max-xl:w-screen",
|
|
75
|
+
"xs:max-xl:max-w-screen-xl"
|
|
76
|
+
];
|
|
84
77
|
break;
|
|
85
78
|
default:
|
|
86
|
-
e =
|
|
79
|
+
e = [];
|
|
87
80
|
break;
|
|
88
81
|
}
|
|
89
82
|
return e;
|
|
90
|
-
}),
|
|
91
|
-
let e =
|
|
92
|
-
if (
|
|
93
|
-
return e["w-[480px]"
|
|
94
|
-
switch (
|
|
83
|
+
}), k = B(() => {
|
|
84
|
+
let e = [];
|
|
85
|
+
if (l.isDrawer)
|
|
86
|
+
return e = ["w-[480px]", "h-screen"], e;
|
|
87
|
+
switch (l.size) {
|
|
95
88
|
case "sm":
|
|
96
|
-
e =
|
|
97
|
-
"w-[320px]": !0,
|
|
98
|
-
"min-h-[200px]": !0,
|
|
99
|
-
"max-h-[432px]": !0
|
|
100
|
-
};
|
|
89
|
+
e = ["w-[320px]", "min-h-[200px]", "max-h-[432px]"];
|
|
101
90
|
break;
|
|
102
91
|
case "md":
|
|
103
|
-
e =
|
|
104
|
-
"w-screen sm:w-[480px]"
|
|
105
|
-
"min-h-[300px]"
|
|
106
|
-
"sm:max-h-[600px]"
|
|
107
|
-
"h-screen sm:h-auto"
|
|
108
|
-
|
|
92
|
+
e = [
|
|
93
|
+
"w-screen sm:w-[480px]",
|
|
94
|
+
"min-h-[300px]",
|
|
95
|
+
"sm:max-h-[600px]",
|
|
96
|
+
"h-screen sm:h-auto"
|
|
97
|
+
];
|
|
109
98
|
break;
|
|
110
99
|
case "lg":
|
|
111
|
-
e =
|
|
112
|
-
"w-screen md:w-[640px]"
|
|
113
|
-
"min-h-[300px]"
|
|
114
|
-
"md:max-h-[600px]"
|
|
115
|
-
"h-screen md:h-auto"
|
|
116
|
-
|
|
100
|
+
e = [
|
|
101
|
+
"w-screen md:w-[640px]",
|
|
102
|
+
"min-h-[300px]",
|
|
103
|
+
"md:max-h-[600px]",
|
|
104
|
+
"h-screen md:h-auto"
|
|
105
|
+
];
|
|
117
106
|
break;
|
|
118
107
|
case "xl":
|
|
119
|
-
e =
|
|
120
|
-
"w-screen xl:w-[960px]"
|
|
121
|
-
"min-h-[400px]"
|
|
122
|
-
"xl:max-h-[600px]"
|
|
123
|
-
"h-screen xl:h-auto"
|
|
124
|
-
|
|
108
|
+
e = [
|
|
109
|
+
"w-screen xl:w-[960px]",
|
|
110
|
+
"min-h-[400px]",
|
|
111
|
+
"xl:max-h-[600px]",
|
|
112
|
+
"h-screen xl:h-auto"
|
|
113
|
+
];
|
|
125
114
|
break;
|
|
126
115
|
}
|
|
127
116
|
return e;
|
|
128
117
|
});
|
|
129
|
-
return (e,
|
|
118
|
+
return (e, o) => (m(), E("dialog", {
|
|
130
119
|
ref_key: "dialog",
|
|
131
|
-
ref:
|
|
132
|
-
onClose:
|
|
133
|
-
class:
|
|
120
|
+
ref: a,
|
|
121
|
+
onClose: o[0] || (o[0] = (s) => t.value = !1),
|
|
122
|
+
class: d([w, v.value])
|
|
134
123
|
}, [
|
|
135
|
-
|
|
136
|
-
class:
|
|
124
|
+
r("div", {
|
|
125
|
+
class: d([b, k.value])
|
|
137
126
|
}, [
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
]),
|
|
141
|
-
o("div", I, [
|
|
142
|
-
v(e.$slots, "body")
|
|
127
|
+
r("div", Y, [
|
|
128
|
+
n(e.$slots, "header")
|
|
143
129
|
]),
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
130
|
+
r("div", {
|
|
131
|
+
class: d(["grow", "p-12", e.bodyClasses])
|
|
132
|
+
}, [
|
|
133
|
+
n(e.$slots, "body")
|
|
134
|
+
], 2),
|
|
135
|
+
e.$slots.footer ? (m(), E("div", j, [
|
|
136
|
+
n(e.$slots, "footer")
|
|
137
|
+
])) : z("", !0)
|
|
147
138
|
], 2)
|
|
148
139
|
], 34));
|
|
149
140
|
}
|
|
150
|
-
}),
|
|
141
|
+
}), R = { class: "grow h-28 font-medium" }, T = {
|
|
151
142
|
method: "dialog",
|
|
152
143
|
class: "w-full h-full"
|
|
153
|
-
},
|
|
154
|
-
__name: "
|
|
144
|
+
}, G = /* @__PURE__ */ M({
|
|
145
|
+
__name: "FzConfirmDialog",
|
|
155
146
|
props: {
|
|
156
147
|
size: { default: "md" },
|
|
157
148
|
title: {},
|
|
158
149
|
confirmLabel: {},
|
|
159
150
|
cancelLabel: {},
|
|
160
151
|
text: {},
|
|
161
|
-
isDrawer: { type: Boolean }
|
|
152
|
+
isDrawer: { type: Boolean },
|
|
153
|
+
closeOnBackdrop: { type: Boolean },
|
|
154
|
+
bodyClasses: {},
|
|
155
|
+
footerEnabled: { type: Boolean, default: !0 },
|
|
156
|
+
cancelButtonEnabled: { type: Boolean, default: !0 },
|
|
157
|
+
disableConfirm: { type: Boolean, default: !1 },
|
|
158
|
+
confirmButtonEnabled: { type: Boolean, default: !0 },
|
|
159
|
+
footerClasses: {}
|
|
162
160
|
},
|
|
163
161
|
emits: ["fzmodal:confirm", "fzmodal:cancel"],
|
|
164
|
-
setup(
|
|
165
|
-
const
|
|
166
|
-
"h-32":
|
|
167
|
-
"h-28": !
|
|
168
|
-
})),
|
|
162
|
+
setup(x, { expose: p, emit: h }) {
|
|
163
|
+
const l = x, c = h, a = u(), t = u(!1), D = ["flex flex-row items-center text-xl grow"], f = B(() => ({
|
|
164
|
+
"h-32": l.isDrawer,
|
|
165
|
+
"h-28": !l.isDrawer
|
|
166
|
+
})), b = [
|
|
169
167
|
"flex flex-row items-center h-32 grow justify-end"
|
|
170
168
|
], w = {
|
|
171
|
-
"h-32": !
|
|
172
|
-
"h-40":
|
|
169
|
+
"h-32": !l.isDrawer,
|
|
170
|
+
"h-40": l.isDrawer
|
|
171
|
+
}, v = () => {
|
|
172
|
+
var s;
|
|
173
|
+
(s = a.value) == null || s.show(), t.value = !0;
|
|
174
|
+
}, k = () => {
|
|
175
|
+
var s;
|
|
176
|
+
(s = a.value) == null || s.close(), t.value = !1;
|
|
173
177
|
}, e = () => {
|
|
174
|
-
var
|
|
175
|
-
(
|
|
176
|
-
},
|
|
177
|
-
var
|
|
178
|
-
(
|
|
179
|
-
}, n = () => {
|
|
180
|
-
var t;
|
|
181
|
-
(t = l.value) == null || t.close(), c.value = !1, r("fzmodal:confirm");
|
|
178
|
+
var s;
|
|
179
|
+
(s = a.value) == null || s.close(), t.value = !1, c("fzmodal:cancel");
|
|
180
|
+
}, o = () => {
|
|
181
|
+
var s;
|
|
182
|
+
(s = a.value) == null || s.close(), t.value = !1, c("fzmodal:confirm");
|
|
182
183
|
};
|
|
183
|
-
return
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
visible:
|
|
187
|
-
show:
|
|
188
|
-
|
|
184
|
+
return p({
|
|
185
|
+
handleCancel: e,
|
|
186
|
+
handleConfirm: o,
|
|
187
|
+
visible: t,
|
|
188
|
+
show: v,
|
|
189
|
+
close: k
|
|
190
|
+
}), (s, $) => (m(), C(P, V(l, {
|
|
189
191
|
ref_key: "dialog",
|
|
190
|
-
ref:
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
b(_(N), {
|
|
198
|
-
onClick: s,
|
|
199
|
-
class: "mx-12",
|
|
200
|
-
iconName: "xmark",
|
|
201
|
-
size: "sm",
|
|
202
|
-
variant: "invisible"
|
|
203
|
-
})
|
|
204
|
-
], 2)
|
|
205
|
-
]),
|
|
206
|
-
footer: m(() => [
|
|
207
|
-
o("form", P, [
|
|
208
|
-
o("div", {
|
|
209
|
-
class: x([p, w])
|
|
192
|
+
ref: a,
|
|
193
|
+
onCancel: $[0] || ($[0] = (U) => c("fzmodal:cancel"))
|
|
194
|
+
}), O({
|
|
195
|
+
header: i(() => [
|
|
196
|
+
n(s.$slots, "header", {}, () => [
|
|
197
|
+
r("div", {
|
|
198
|
+
class: d([D, f.value])
|
|
210
199
|
}, [
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
onClick:
|
|
214
|
-
value: "false"
|
|
215
|
-
}, {
|
|
216
|
-
default: m(() => [
|
|
217
|
-
D(g(t.cancelLabel), 1)
|
|
218
|
-
]),
|
|
219
|
-
_: 1
|
|
220
|
-
}),
|
|
221
|
-
b(_(y), {
|
|
200
|
+
r("div", R, g(s.title), 1),
|
|
201
|
+
I(y(X), {
|
|
202
|
+
onClick: e,
|
|
222
203
|
class: "ml-12",
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
default: m(() => [
|
|
227
|
-
D(g(t.confirmLabel), 1)
|
|
228
|
-
]),
|
|
229
|
-
_: 1
|
|
204
|
+
iconName: "xmark",
|
|
205
|
+
size: "sm",
|
|
206
|
+
variant: "invisible"
|
|
230
207
|
})
|
|
231
208
|
], 2)
|
|
232
209
|
])
|
|
233
210
|
]),
|
|
234
|
-
|
|
235
|
-
|
|
211
|
+
body: i(() => [
|
|
212
|
+
n(s.$slots, "body")
|
|
213
|
+
]),
|
|
214
|
+
_: 2
|
|
215
|
+
}, [
|
|
216
|
+
s.footerEnabled ? {
|
|
217
|
+
name: "footer",
|
|
218
|
+
fn: i(() => [
|
|
219
|
+
n(s.$slots, "footer", {}, () => [
|
|
220
|
+
r("form", T, [
|
|
221
|
+
r("div", {
|
|
222
|
+
class: d([b, w, s.footerClasses])
|
|
223
|
+
}, [
|
|
224
|
+
s.cancelButtonEnabled ? (m(), C(y(S), {
|
|
225
|
+
key: 0,
|
|
226
|
+
variant: "invisible",
|
|
227
|
+
onClick: L(e, ["prevent"]),
|
|
228
|
+
value: "false"
|
|
229
|
+
}, {
|
|
230
|
+
default: i(() => [
|
|
231
|
+
F(g(s.cancelLabel), 1)
|
|
232
|
+
]),
|
|
233
|
+
_: 1
|
|
234
|
+
})) : z("", !0),
|
|
235
|
+
s.confirmButtonEnabled ? (m(), C(y(S), {
|
|
236
|
+
key: 1,
|
|
237
|
+
class: "ml-12",
|
|
238
|
+
onClick: L(o, ["prevent"]),
|
|
239
|
+
disabled: s.disableConfirm,
|
|
240
|
+
value: "true"
|
|
241
|
+
}, {
|
|
242
|
+
default: i(() => [
|
|
243
|
+
F(g(s.confirmLabel), 1)
|
|
244
|
+
]),
|
|
245
|
+
_: 1
|
|
246
|
+
}, 8, ["disabled"])) : z("", !0)
|
|
247
|
+
], 2)
|
|
248
|
+
])
|
|
249
|
+
])
|
|
250
|
+
]),
|
|
251
|
+
key: "0"
|
|
252
|
+
} : void 0
|
|
253
|
+
]), 1040));
|
|
236
254
|
}
|
|
237
255
|
});
|
|
238
256
|
export {
|
|
239
|
-
|
|
240
|
-
|
|
257
|
+
G as FzConfirmDialog,
|
|
258
|
+
P as FzDialog
|
|
241
259
|
};
|
package/dist/dialog.umd.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(
|
|
1
|
+
(function(r,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue"),require("@fiscozen/button")):typeof define=="function"&&define.amd?define(["exports","vue","@fiscozen/button"],e):(r=typeof globalThis<"u"?globalThis:r||self,e(r.FzDialog={},r.Vue,r.button))})(this,function(r,e,d){"use strict";const y={class:"flex items-center p-12 w-full border-b-1 border-grey-100 border-solid"},g={key:0,class:"flex flex-row p-12 border-t-1 border-grey-100 items-center border-solid"},C=e.defineComponent({__name:"FzDialog",props:{size:{default:"md"},title:{},confirmLabel:{},cancelLabel:{},text:{},isDrawer:{type:Boolean},closeOnBackdrop:{type:Boolean,default:!0},bodyClasses:{}},emits:["cancel"],setup(m,{expose:f,emit:x}){const a=m,i=x,t=e.ref(),n=e.ref(!1);f({show:()=>{t.value.showModal(),n.value=!0},close:o=>t.value.close(o),visible:n});const c=o=>{var l=t.value.getBoundingClientRect(),s=l.top<=o.clientY&&o.clientY<=l.top+l.height&&l.left<=o.clientX&&o.clientX<=l.left+l.width;!s&&a.closeOnBackdrop&&(t.value.close(),i("cancel"))};e.onMounted(()=>{var o;(o=t.value)==null||o.addEventListener("click",c)}),e.onUnmounted(()=>{var o;(o=t.value)==null||o.removeEventListener("click",c)});const p=["flex","flex-col","bg-core-white"],h={"border-1":!0,rounded:!0,"border-grey-100":!0},w=e.computed(()=>{let o=[];if(a.isDrawer)return o=["m-0","fixed","top-0","ml-auto","max-h-screen"],o;switch(a.size){case"sm":o=[];break;case"md":o=["xs:max-sm:m-0","xs:max-sm:max-h-screen","xs:max-sm:h-screen","xs:max-sm:w-screen","xs:max-sm:max-w-screen-xl"];break;case"lg":o=["xs:max-md:m-0","xs:max-md:max-h-screen","xs:max-md:h-screen","xs:max-md:w-screen","xs:max-md:max-w-screen-xl"];break;case"xl":o=["xs:max-xl:m-0","xs:max-xl:max-h-screen","xs:max-xl:h-screen","xs:max-xl:w-screen","xs:max-xl:max-w-screen-xl"];break;default:o=[];break}return o}),b=e.computed(()=>{let o=[];if(a.isDrawer)return o=["w-[480px]","h-screen"],o;switch(a.size){case"sm":o=["w-[320px]","min-h-[200px]","max-h-[432px]"];break;case"md":o=["w-screen sm:w-[480px]","min-h-[300px]","sm:max-h-[600px]","h-screen sm:h-auto"];break;case"lg":o=["w-screen md:w-[640px]","min-h-[300px]","md:max-h-[600px]","h-screen md:h-auto"];break;case"xl":o=["w-screen xl:w-[960px]","min-h-[400px]","xl:max-h-[600px]","h-screen xl:h-auto"];break}return o});return(o,l)=>(e.openBlock(),e.createElementBlock("dialog",{ref_key:"dialog",ref:t,onClose:l[0]||(l[0]=s=>n.value=!1),class:e.normalizeClass([h,w.value])},[e.createElementVNode("div",{class:e.normalizeClass([p,b.value])},[e.createElementVNode("div",y,[e.renderSlot(o.$slots,"header")]),e.createElementVNode("div",{class:e.normalizeClass(["grow","p-12",o.bodyClasses])},[e.renderSlot(o.$slots,"body")],2),o.$slots.footer?(e.openBlock(),e.createElementBlock("div",g,[e.renderSlot(o.$slots,"footer")])):e.createCommentVNode("",!0)],2)],34))}}),B={class:"grow h-28 font-medium"},z={method:"dialog",class:"w-full h-full"},D=e.defineComponent({__name:"FzConfirmDialog",props:{size:{default:"md"},title:{},confirmLabel:{},cancelLabel:{},text:{},isDrawer:{type:Boolean},closeOnBackdrop:{type:Boolean},bodyClasses:{},footerEnabled:{type:Boolean,default:!0},cancelButtonEnabled:{type:Boolean,default:!0},disableConfirm:{type:Boolean,default:!1},confirmButtonEnabled:{type:Boolean,default:!0},footerClasses:{}},emits:["fzmodal:confirm","fzmodal:cancel"],setup(m,{expose:f,emit:x}){const a=m,i=x,t=e.ref(),n=e.ref(!1),u=["flex flex-row items-center text-xl grow"],c=e.computed(()=>({"h-32":a.isDrawer,"h-28":!a.isDrawer})),p=["flex flex-row items-center h-32 grow justify-end"],h={"h-32":!a.isDrawer,"h-40":a.isDrawer},w=()=>{var s;(s=t.value)==null||s.show(),n.value=!0},b=()=>{var s;(s=t.value)==null||s.close(),n.value=!1},o=()=>{var s;(s=t.value)==null||s.close(),n.value=!1,i("fzmodal:cancel")},l=()=>{var s;(s=t.value)==null||s.close(),n.value=!1,i("fzmodal:confirm")};return f({handleCancel:o,handleConfirm:l,visible:n,show:w,close:b}),(s,k)=>(e.openBlock(),e.createBlock(C,e.mergeProps(a,{ref_key:"dialog",ref:t,onCancel:k[0]||(k[0]=E=>i("fzmodal:cancel"))}),e.createSlots({header:e.withCtx(()=>[e.renderSlot(s.$slots,"header",{},()=>[e.createElementVNode("div",{class:e.normalizeClass([u,c.value])},[e.createElementVNode("div",B,e.toDisplayString(s.title),1),e.createVNode(e.unref(d.FzIconButton),{onClick:o,class:"ml-12",iconName:"xmark",size:"sm",variant:"invisible"})],2)])]),body:e.withCtx(()=>[e.renderSlot(s.$slots,"body")]),_:2},[s.footerEnabled?{name:"footer",fn:e.withCtx(()=>[e.renderSlot(s.$slots,"footer",{},()=>[e.createElementVNode("form",z,[e.createElementVNode("div",{class:e.normalizeClass([p,h,s.footerClasses])},[s.cancelButtonEnabled?(e.openBlock(),e.createBlock(e.unref(d.FzButton),{key:0,variant:"invisible",onClick:e.withModifiers(o,["prevent"]),value:"false"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(s.cancelLabel),1)]),_:1})):e.createCommentVNode("",!0),s.confirmButtonEnabled?(e.openBlock(),e.createBlock(e.unref(d.FzButton),{key:1,class:"ml-12",onClick:e.withModifiers(l,["prevent"]),disabled:s.disableConfirm,value:"true"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(s.confirmLabel),1)]),_:1},8,["disabled"])):e.createCommentVNode("",!0)],2)])])]),key:"0"}:void 0]),1040))}});r.FzConfirmDialog=D,r.FzDialog=C,Object.defineProperty(r,Symbol.toStringTag,{value:"Module"})});
|
|
@@ -1,23 +1,40 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { FzConfirmDialogProps } from './types';
|
|
2
2
|
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FzConfirmDialogProps>, {
|
|
4
4
|
size: string;
|
|
5
|
+
footerEnabled: boolean;
|
|
6
|
+
cancelButtonEnabled: boolean;
|
|
7
|
+
disableConfirm: boolean;
|
|
8
|
+
confirmButtonEnabled: boolean;
|
|
5
9
|
}>, {
|
|
6
|
-
|
|
7
|
-
|
|
10
|
+
handleCancel: () => void;
|
|
11
|
+
handleConfirm: () => void;
|
|
8
12
|
visible: import('vue').Ref<boolean>;
|
|
9
13
|
show: () => void;
|
|
14
|
+
close: () => void;
|
|
10
15
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
16
|
"fzmodal:confirm": (...args: any[]) => void;
|
|
12
17
|
"fzmodal:cancel": (...args: any[]) => void;
|
|
13
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<
|
|
18
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FzConfirmDialogProps>, {
|
|
14
19
|
size: string;
|
|
20
|
+
footerEnabled: boolean;
|
|
21
|
+
cancelButtonEnabled: boolean;
|
|
22
|
+
disableConfirm: boolean;
|
|
23
|
+
confirmButtonEnabled: boolean;
|
|
15
24
|
}>>> & {
|
|
16
25
|
"onFzmodal:confirm"?: ((...args: any[]) => any) | undefined;
|
|
17
26
|
"onFzmodal:cancel"?: ((...args: any[]) => any) | undefined;
|
|
18
27
|
}, {
|
|
19
28
|
size: import('./types').FzDialogSizes;
|
|
20
|
-
|
|
29
|
+
footerEnabled: boolean;
|
|
30
|
+
cancelButtonEnabled: boolean;
|
|
31
|
+
disableConfirm: boolean;
|
|
32
|
+
confirmButtonEnabled: boolean;
|
|
33
|
+
}, {}>, {
|
|
34
|
+
header?(_: {}): any;
|
|
35
|
+
body?(_: {}): any;
|
|
36
|
+
footer?(_: {}): any;
|
|
37
|
+
}>;
|
|
21
38
|
export default _default;
|
|
22
39
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
23
40
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -36,3 +53,8 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
36
53
|
type __VLS_Prettify<T> = {
|
|
37
54
|
[K in keyof T]: T[K];
|
|
38
55
|
} & {};
|
|
56
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
57
|
+
new (): {
|
|
58
|
+
$slots: S;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
@@ -2,20 +2,21 @@ import { FzDialogProps } from './types';
|
|
|
2
2
|
|
|
3
3
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FzDialogProps>, {
|
|
4
4
|
size: string;
|
|
5
|
+
closeOnBackdrop: boolean;
|
|
5
6
|
}>, {
|
|
6
7
|
show: () => void;
|
|
7
8
|
close: (returnVal?: string | undefined) => void;
|
|
8
9
|
visible: import('vue').Ref<boolean>;
|
|
9
10
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
|
-
confirm: (...args: any[]) => void;
|
|
11
11
|
cancel: (...args: any[]) => void;
|
|
12
12
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FzDialogProps>, {
|
|
13
13
|
size: string;
|
|
14
|
+
closeOnBackdrop: boolean;
|
|
14
15
|
}>>> & {
|
|
15
|
-
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
16
16
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
17
17
|
}, {
|
|
18
18
|
size: import('./types').FzDialogSizes;
|
|
19
|
+
closeOnBackdrop: boolean;
|
|
19
20
|
}, {}>, {
|
|
20
21
|
header?(_: {}): any;
|
|
21
22
|
body?(_: {}): any;
|
package/dist/src/index.d.ts
CHANGED
package/dist/src/types.d.ts
CHANGED
|
@@ -21,7 +21,37 @@ export type FzDialogProps = {
|
|
|
21
21
|
*/
|
|
22
22
|
text?: string;
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Whether to show the modal as a drawer
|
|
25
25
|
*/
|
|
26
26
|
isDrawer?: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Whether to close the dialog on backdrop click
|
|
29
|
+
*/
|
|
30
|
+
closeOnBackdrop?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* classes to apply to body
|
|
33
|
+
*/
|
|
34
|
+
bodyClasses?: string | string[] | Record<string, boolean | undefined> | Array<string | Record<string, boolean | undefined>>;
|
|
35
|
+
};
|
|
36
|
+
export type FzConfirmDialogProps = FzDialogProps & {
|
|
37
|
+
/**
|
|
38
|
+
* Whether to show or not the footer
|
|
39
|
+
*/
|
|
40
|
+
footerEnabled?: boolean;
|
|
41
|
+
/**
|
|
42
|
+
* Whether to show the cancel button
|
|
43
|
+
*/
|
|
44
|
+
cancelButtonEnabled?: boolean;
|
|
45
|
+
/**
|
|
46
|
+
* Whether to enable the confirm button
|
|
47
|
+
*/
|
|
48
|
+
disableConfirm?: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Whether to show the confirm button
|
|
51
|
+
*/
|
|
52
|
+
confirmButtonEnabled?: boolean;
|
|
53
|
+
/**
|
|
54
|
+
* classes to apply to footer
|
|
55
|
+
*/
|
|
56
|
+
footerClasses?: string | string[] | Record<string, boolean | undefined> | Array<string | Record<string, boolean | undefined>>;
|
|
27
57
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fiscozen/dialog",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Design System Dialog component",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -9,8 +9,9 @@
|
|
|
9
9
|
"peerDependencies": {
|
|
10
10
|
"tailwindcss": "^3.4.1",
|
|
11
11
|
"vue": "^3.4.13",
|
|
12
|
-
"@fiscozen/
|
|
13
|
-
"@fiscozen/
|
|
12
|
+
"@fiscozen/button": "^0.1.6",
|
|
13
|
+
"@fiscozen/style": "^0.1.1",
|
|
14
|
+
"@fiscozen/composables": "^0.1.10"
|
|
14
15
|
},
|
|
15
16
|
"devDependencies": {
|
|
16
17
|
"@rushstack/eslint-patch": "^1.3.3",
|
|
@@ -31,8 +32,8 @@
|
|
|
31
32
|
"@fortawesome/fontawesome-svg-core": "^6.5.1",
|
|
32
33
|
"@fortawesome/vue-fontawesome": "^3.0.6",
|
|
33
34
|
"@fiscozen/eslint-config": "^0.1.0",
|
|
34
|
-
"@fiscozen/
|
|
35
|
-
"@fiscozen/
|
|
35
|
+
"@fiscozen/prettier-config": "^0.1.0",
|
|
36
|
+
"@fiscozen/tsconfig": "^0.1.0"
|
|
36
37
|
},
|
|
37
38
|
"license": "MIT",
|
|
38
39
|
"scripts": {
|
package/src/FzConfirmDialog.vue
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<FzDialog
|
|
2
|
+
<FzDialog
|
|
3
|
+
v-bind="props"
|
|
4
|
+
ref="dialog"
|
|
5
|
+
@fzmodal:cancel="emit('fzmodal:cancel')"
|
|
6
|
+
>
|
|
3
7
|
<template #header>
|
|
4
8
|
<slot name="header">
|
|
5
9
|
<div :class="[titleStaticClasses, titleClasses]">
|
|
@@ -7,7 +11,7 @@
|
|
|
7
11
|
<FzIconButton
|
|
8
12
|
@click="handleCancel"
|
|
9
13
|
class="ml-12"
|
|
10
|
-
iconName="xmark"
|
|
14
|
+
iconName="xmark-large"
|
|
11
15
|
size="sm"
|
|
12
16
|
variant="invisible"
|
|
13
17
|
></FzIconButton>
|
|
@@ -37,6 +41,7 @@
|
|
|
37
41
|
@click.prevent="handleConfirm"
|
|
38
42
|
:disabled="disableConfirm"
|
|
39
43
|
value="true"
|
|
44
|
+
:variant="confirmButtonVariant"
|
|
40
45
|
>
|
|
41
46
|
{{ confirmLabel }}
|
|
42
47
|
</FzButton>
|
package/src/FzDialog.vue
CHANGED
|
@@ -26,12 +26,13 @@
|
|
|
26
26
|
<script setup lang="ts">
|
|
27
27
|
import { computed, ref, onMounted, onUnmounted } from "vue";
|
|
28
28
|
import { FzDialogProps } from "./types";
|
|
29
|
+
import { useKeyUp } from "@fiscozen/composables";
|
|
29
30
|
|
|
30
31
|
const props = withDefaults(defineProps<FzDialogProps>(), {
|
|
31
32
|
size: "md",
|
|
32
33
|
closeOnBackdrop: true,
|
|
33
34
|
});
|
|
34
|
-
const emit = defineEmits(["cancel"]);
|
|
35
|
+
const emit = defineEmits(["fzmodal:cancel"]);
|
|
35
36
|
|
|
36
37
|
const dialog = ref<HTMLDialogElement>();
|
|
37
38
|
const visible = ref(false);
|
|
@@ -56,9 +57,19 @@ const handleBackdropClick = (event: MouseEvent) => {
|
|
|
56
57
|
event.clientX <= rect.left + rect.width;
|
|
57
58
|
if (!isInDialog && props.closeOnBackdrop) {
|
|
58
59
|
dialog.value!.close();
|
|
59
|
-
emit(
|
|
60
|
+
emit("fzmodal:cancel");
|
|
60
61
|
}
|
|
61
62
|
};
|
|
63
|
+
|
|
64
|
+
const handleKeyUp = (e: KeyboardEvent) => {
|
|
65
|
+
if (!visible.value || e.key !== "Escape") {
|
|
66
|
+
return;
|
|
67
|
+
}
|
|
68
|
+
emit("fzmodal:cancel");
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
useKeyUp(handleKeyUp);
|
|
72
|
+
|
|
62
73
|
onMounted(() => {
|
|
63
74
|
dialog.value?.addEventListener("click", handleBackdropClick);
|
|
64
75
|
});
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { mount } from "@vue/test-utils";
|
|
1
|
+
import { flushPromises, mount } from "@vue/test-utils";
|
|
2
2
|
import figmaTokens from "@fiscozen/style/tokens.json";
|
|
3
3
|
import { describe, it, expect } from "vitest";
|
|
4
|
-
import { FzConfirmDialog } from "../";
|
|
4
|
+
import { FzConfirmDialog, FzDialog } from "../";
|
|
5
5
|
|
|
6
6
|
const viewports: Record<string, number> = Object.entries(
|
|
7
7
|
figmaTokens.global.breakpoint,
|
|
@@ -7,22 +7,26 @@ exports[`FzDialog > should match snapshot - drawer 1`] = `
|
|
|
7
7
|
<div class="flex flex-row items-center text-xl grow h-32">
|
|
8
8
|
<div class="grow h-28 font-medium"></div><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-28 text-sm focus:border-blue-600 focus:border-solid focus:border-1 px-14 text-grey-500 bg-transparent border-transparent hover:bg-grey-100 focus:!border-blue-600 disabled:text-grey-100 w-28 h-28 ml-12">
|
|
9
9
|
<!--v-if-->
|
|
10
|
-
<div class="
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
10
|
+
<div class="">
|
|
11
|
+
<div class="flex items-center justify-center w-[20px] h-[20px]"><svg class="svg-inline--fa fa-xmark-large h-[16px]" aria-hidden="true" focusable="false" data-prefix="far" data-icon="xmark-large" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
|
|
12
|
+
<path class="" fill="currentColor" d="M41 39C31.6 29.7 16.4 29.7 7 39S-2.3 63.6 7 73l183 183L7 439c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l183-183L407 473c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-183-183L441 73c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-183 183L41 39z"></path>
|
|
13
|
+
</svg></div>
|
|
14
|
+
<!--v-if-->
|
|
15
|
+
</div>
|
|
14
16
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
15
17
|
</button>
|
|
16
18
|
</div>
|
|
17
19
|
</div>
|
|
18
|
-
<div class="grow"></div>
|
|
20
|
+
<div class="grow p-12"></div>
|
|
19
21
|
<div class="flex flex-row p-12 border-t-1 border-grey-100 items-center border-solid">
|
|
20
22
|
<form method="dialog" class="w-full h-full">
|
|
21
23
|
<div class="flex flex-row items-center h-32 grow justify-end h-40"><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-32 focus:border-blue-600 focus:border-solid focus:border-1 px-16 text-grey-500 bg-transparent border-transparent hover:bg-grey-100 focus:!border-blue-600 disabled:text-grey-100" value="false">
|
|
22
24
|
<!--v-if-->
|
|
25
|
+
<div class="truncate"></div>
|
|
23
26
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
24
27
|
</button><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-32 focus:border-blue-600 focus:border-solid focus:border-1 px-16 bg-blue-500 hover:bg-blue-600 disabled:bg-blue-200 text-core-white focus:bg-blue-500 ml-12" value="true">
|
|
25
28
|
<!--v-if-->
|
|
29
|
+
<div class="truncate"></div>
|
|
26
30
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
27
31
|
</button></div>
|
|
28
32
|
</form>
|
|
@@ -32,28 +36,32 @@ exports[`FzDialog > should match snapshot - drawer 1`] = `
|
|
|
32
36
|
`;
|
|
33
37
|
|
|
34
38
|
exports[`FzDialog > should match snapshot - lg 1`] = `
|
|
35
|
-
"<dialog class="border-1 rounded border-grey-100 xs:max-
|
|
39
|
+
"<dialog class="border-1 rounded border-grey-100 xs:max-md:m-0 xs:max-md:max-h-screen xs:max-md:h-screen xs:max-md:w-screen xs:max-md:max-w-screen-xl" footerenabled="true" cancelbuttonenabled="true" disableconfirm="false" confirmbuttonenabled="true">
|
|
36
40
|
<div class="flex flex-col bg-core-white w-screen md:w-[640px] min-h-[300px] md:max-h-[600px] h-screen md:h-auto">
|
|
37
41
|
<div class="flex items-center p-12 w-full border-b-1 border-grey-100 border-solid">
|
|
38
42
|
<div class="flex flex-row items-center text-xl grow h-28">
|
|
39
43
|
<div class="grow h-28 font-medium"></div><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-28 text-sm focus:border-blue-600 focus:border-solid focus:border-1 px-14 text-grey-500 bg-transparent border-transparent hover:bg-grey-100 focus:!border-blue-600 disabled:text-grey-100 w-28 h-28 ml-12">
|
|
40
44
|
<!--v-if-->
|
|
41
|
-
<div class="
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
+
<div class="">
|
|
46
|
+
<div class="flex items-center justify-center w-[20px] h-[20px]"><svg class="svg-inline--fa fa-xmark-large h-[16px]" aria-hidden="true" focusable="false" data-prefix="far" data-icon="xmark-large" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
|
|
47
|
+
<path class="" fill="currentColor" d="M41 39C31.6 29.7 16.4 29.7 7 39S-2.3 63.6 7 73l183 183L7 439c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l183-183L407 473c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-183-183L441 73c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-183 183L41 39z"></path>
|
|
48
|
+
</svg></div>
|
|
49
|
+
<!--v-if-->
|
|
50
|
+
</div>
|
|
45
51
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
46
52
|
</button>
|
|
47
53
|
</div>
|
|
48
54
|
</div>
|
|
49
|
-
<div class="grow"></div>
|
|
55
|
+
<div class="grow p-12"></div>
|
|
50
56
|
<div class="flex flex-row p-12 border-t-1 border-grey-100 items-center border-solid">
|
|
51
57
|
<form method="dialog" class="w-full h-full">
|
|
52
58
|
<div class="flex flex-row items-center h-32 grow justify-end h-32"><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-32 focus:border-blue-600 focus:border-solid focus:border-1 px-16 text-grey-500 bg-transparent border-transparent hover:bg-grey-100 focus:!border-blue-600 disabled:text-grey-100" value="false">
|
|
53
59
|
<!--v-if-->
|
|
60
|
+
<div class="truncate"></div>
|
|
54
61
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
55
62
|
</button><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-32 focus:border-blue-600 focus:border-solid focus:border-1 px-16 bg-blue-500 hover:bg-blue-600 disabled:bg-blue-200 text-core-white focus:bg-blue-500 ml-12" value="true">
|
|
56
63
|
<!--v-if-->
|
|
64
|
+
<div class="truncate"></div>
|
|
57
65
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
58
66
|
</button></div>
|
|
59
67
|
</form>
|
|
@@ -63,28 +71,32 @@ exports[`FzDialog > should match snapshot - lg 1`] = `
|
|
|
63
71
|
`;
|
|
64
72
|
|
|
65
73
|
exports[`FzDialog > should match snapshot - md - xs screen 1`] = `
|
|
66
|
-
"<dialog class="border-1 rounded border-grey-100 xs:max-
|
|
74
|
+
"<dialog class="border-1 rounded border-grey-100 xs:max-sm:m-0 xs:max-sm:max-h-screen xs:max-sm:h-screen xs:max-sm:w-screen xs:max-sm:max-w-screen-xl" footerenabled="true" cancelbuttonenabled="true" disableconfirm="false" confirmbuttonenabled="true">
|
|
67
75
|
<div class="flex flex-col bg-core-white w-screen sm:w-[480px] min-h-[300px] sm:max-h-[600px] h-screen sm:h-auto">
|
|
68
76
|
<div class="flex items-center p-12 w-full border-b-1 border-grey-100 border-solid">
|
|
69
77
|
<div class="flex flex-row items-center text-xl grow h-28">
|
|
70
78
|
<div class="grow h-28 font-medium"></div><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-28 text-sm focus:border-blue-600 focus:border-solid focus:border-1 px-14 text-grey-500 bg-transparent border-transparent hover:bg-grey-100 focus:!border-blue-600 disabled:text-grey-100 w-28 h-28 ml-12">
|
|
71
79
|
<!--v-if-->
|
|
72
|
-
<div class="
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
80
|
+
<div class="">
|
|
81
|
+
<div class="flex items-center justify-center w-[20px] h-[20px]"><svg class="svg-inline--fa fa-xmark-large h-[16px]" aria-hidden="true" focusable="false" data-prefix="far" data-icon="xmark-large" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
|
|
82
|
+
<path class="" fill="currentColor" d="M41 39C31.6 29.7 16.4 29.7 7 39S-2.3 63.6 7 73l183 183L7 439c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l183-183L407 473c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-183-183L441 73c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-183 183L41 39z"></path>
|
|
83
|
+
</svg></div>
|
|
84
|
+
<!--v-if-->
|
|
85
|
+
</div>
|
|
76
86
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
77
87
|
</button>
|
|
78
88
|
</div>
|
|
79
89
|
</div>
|
|
80
|
-
<div class="grow"></div>
|
|
90
|
+
<div class="grow p-12"></div>
|
|
81
91
|
<div class="flex flex-row p-12 border-t-1 border-grey-100 items-center border-solid">
|
|
82
92
|
<form method="dialog" class="w-full h-full">
|
|
83
93
|
<div class="flex flex-row items-center h-32 grow justify-end h-32"><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-32 focus:border-blue-600 focus:border-solid focus:border-1 px-16 text-grey-500 bg-transparent border-transparent hover:bg-grey-100 focus:!border-blue-600 disabled:text-grey-100" value="false">
|
|
84
94
|
<!--v-if-->
|
|
95
|
+
<div class="truncate"></div>
|
|
85
96
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
86
97
|
</button><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-32 focus:border-blue-600 focus:border-solid focus:border-1 px-16 bg-blue-500 hover:bg-blue-600 disabled:bg-blue-200 text-core-white focus:bg-blue-500 ml-12" value="true">
|
|
87
98
|
<!--v-if-->
|
|
99
|
+
<div class="truncate"></div>
|
|
88
100
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
89
101
|
</button></div>
|
|
90
102
|
</form>
|
|
@@ -94,28 +106,32 @@ exports[`FzDialog > should match snapshot - md - xs screen 1`] = `
|
|
|
94
106
|
`;
|
|
95
107
|
|
|
96
108
|
exports[`FzDialog > should match snapshot - md 1`] = `
|
|
97
|
-
"<dialog class="border-1 rounded border-grey-100 xs:max-
|
|
109
|
+
"<dialog class="border-1 rounded border-grey-100 xs:max-sm:m-0 xs:max-sm:max-h-screen xs:max-sm:h-screen xs:max-sm:w-screen xs:max-sm:max-w-screen-xl" footerenabled="true" cancelbuttonenabled="true" disableconfirm="false" confirmbuttonenabled="true">
|
|
98
110
|
<div class="flex flex-col bg-core-white w-screen sm:w-[480px] min-h-[300px] sm:max-h-[600px] h-screen sm:h-auto">
|
|
99
111
|
<div class="flex items-center p-12 w-full border-b-1 border-grey-100 border-solid">
|
|
100
112
|
<div class="flex flex-row items-center text-xl grow h-28">
|
|
101
113
|
<div class="grow h-28 font-medium"></div><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-28 text-sm focus:border-blue-600 focus:border-solid focus:border-1 px-14 text-grey-500 bg-transparent border-transparent hover:bg-grey-100 focus:!border-blue-600 disabled:text-grey-100 w-28 h-28 ml-12">
|
|
102
114
|
<!--v-if-->
|
|
103
|
-
<div class="
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
115
|
+
<div class="">
|
|
116
|
+
<div class="flex items-center justify-center w-[20px] h-[20px]"><svg class="svg-inline--fa fa-xmark-large h-[16px]" aria-hidden="true" focusable="false" data-prefix="far" data-icon="xmark-large" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
|
|
117
|
+
<path class="" fill="currentColor" d="M41 39C31.6 29.7 16.4 29.7 7 39S-2.3 63.6 7 73l183 183L7 439c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l183-183L407 473c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-183-183L441 73c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-183 183L41 39z"></path>
|
|
118
|
+
</svg></div>
|
|
119
|
+
<!--v-if-->
|
|
120
|
+
</div>
|
|
107
121
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
108
122
|
</button>
|
|
109
123
|
</div>
|
|
110
124
|
</div>
|
|
111
|
-
<div class="grow"></div>
|
|
125
|
+
<div class="grow p-12"></div>
|
|
112
126
|
<div class="flex flex-row p-12 border-t-1 border-grey-100 items-center border-solid">
|
|
113
127
|
<form method="dialog" class="w-full h-full">
|
|
114
128
|
<div class="flex flex-row items-center h-32 grow justify-end h-32"><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-32 focus:border-blue-600 focus:border-solid focus:border-1 px-16 text-grey-500 bg-transparent border-transparent hover:bg-grey-100 focus:!border-blue-600 disabled:text-grey-100" value="false">
|
|
115
129
|
<!--v-if-->
|
|
130
|
+
<div class="truncate"></div>
|
|
116
131
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
117
132
|
</button><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-32 focus:border-blue-600 focus:border-solid focus:border-1 px-16 bg-blue-500 hover:bg-blue-600 disabled:bg-blue-200 text-core-white focus:bg-blue-500 ml-12" value="true">
|
|
118
133
|
<!--v-if-->
|
|
134
|
+
<div class="truncate"></div>
|
|
119
135
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
120
136
|
</button></div>
|
|
121
137
|
</form>
|
|
@@ -131,22 +147,26 @@ exports[`FzDialog > should match snapshot - sm 1`] = `
|
|
|
131
147
|
<div class="flex flex-row items-center text-xl grow h-28">
|
|
132
148
|
<div class="grow h-28 font-medium"></div><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-28 text-sm focus:border-blue-600 focus:border-solid focus:border-1 px-14 text-grey-500 bg-transparent border-transparent hover:bg-grey-100 focus:!border-blue-600 disabled:text-grey-100 w-28 h-28 ml-12">
|
|
133
149
|
<!--v-if-->
|
|
134
|
-
<div class="
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
150
|
+
<div class="">
|
|
151
|
+
<div class="flex items-center justify-center w-[20px] h-[20px]"><svg class="svg-inline--fa fa-xmark-large h-[16px]" aria-hidden="true" focusable="false" data-prefix="far" data-icon="xmark-large" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
|
|
152
|
+
<path class="" fill="currentColor" d="M41 39C31.6 29.7 16.4 29.7 7 39S-2.3 63.6 7 73l183 183L7 439c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l183-183L407 473c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-183-183L441 73c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-183 183L41 39z"></path>
|
|
153
|
+
</svg></div>
|
|
154
|
+
<!--v-if-->
|
|
155
|
+
</div>
|
|
138
156
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
139
157
|
</button>
|
|
140
158
|
</div>
|
|
141
159
|
</div>
|
|
142
|
-
<div class="grow"></div>
|
|
160
|
+
<div class="grow p-12"></div>
|
|
143
161
|
<div class="flex flex-row p-12 border-t-1 border-grey-100 items-center border-solid">
|
|
144
162
|
<form method="dialog" class="w-full h-full">
|
|
145
163
|
<div class="flex flex-row items-center h-32 grow justify-end h-32"><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-32 focus:border-blue-600 focus:border-solid focus:border-1 px-16 text-grey-500 bg-transparent border-transparent hover:bg-grey-100 focus:!border-blue-600 disabled:text-grey-100" value="false">
|
|
146
164
|
<!--v-if-->
|
|
165
|
+
<div class="truncate"></div>
|
|
147
166
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
148
167
|
</button><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-32 focus:border-blue-600 focus:border-solid focus:border-1 px-16 bg-blue-500 hover:bg-blue-600 disabled:bg-blue-200 text-core-white focus:bg-blue-500 ml-12" value="true">
|
|
149
168
|
<!--v-if-->
|
|
169
|
+
<div class="truncate"></div>
|
|
150
170
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
151
171
|
</button></div>
|
|
152
172
|
</form>
|
|
@@ -162,22 +182,26 @@ exports[`FzDialog > should match snapshot - xl 1`] = `
|
|
|
162
182
|
<div class="flex flex-row items-center text-xl grow h-28">
|
|
163
183
|
<div class="grow h-28 font-medium"></div><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-28 text-sm focus:border-blue-600 focus:border-solid focus:border-1 px-14 text-grey-500 bg-transparent border-transparent hover:bg-grey-100 focus:!border-blue-600 disabled:text-grey-100 w-28 h-28 ml-12">
|
|
164
184
|
<!--v-if-->
|
|
165
|
-
<div class="
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
185
|
+
<div class="">
|
|
186
|
+
<div class="flex items-center justify-center w-[20px] h-[20px]"><svg class="svg-inline--fa fa-xmark-large h-[16px]" aria-hidden="true" focusable="false" data-prefix="far" data-icon="xmark-large" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
|
|
187
|
+
<path class="" fill="currentColor" d="M41 39C31.6 29.7 16.4 29.7 7 39S-2.3 63.6 7 73l183 183L7 439c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l183-183L407 473c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-183-183L441 73c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-183 183L41 39z"></path>
|
|
188
|
+
</svg></div>
|
|
189
|
+
<!--v-if-->
|
|
190
|
+
</div>
|
|
169
191
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
170
192
|
</button>
|
|
171
193
|
</div>
|
|
172
194
|
</div>
|
|
173
|
-
<div class="grow"></div>
|
|
195
|
+
<div class="grow p-12"></div>
|
|
174
196
|
<div class="flex flex-row p-12 border-t-1 border-grey-100 items-center border-solid">
|
|
175
197
|
<form method="dialog" class="w-full h-full">
|
|
176
198
|
<div class="flex flex-row items-center h-32 grow justify-end h-32"><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-32 focus:border-blue-600 focus:border-solid focus:border-1 px-16 text-grey-500 bg-transparent border-transparent hover:bg-grey-100 focus:!border-blue-600 disabled:text-grey-100" value="false">
|
|
177
199
|
<!--v-if-->
|
|
200
|
+
<div class="truncate"></div>
|
|
178
201
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
179
202
|
</button><button type="button" class="relative rounded flex flex-shrink items-center justify-center font-medium border-1 border-transparent h-32 focus:border-blue-600 focus:border-solid focus:border-1 px-16 bg-blue-500 hover:bg-blue-600 disabled:bg-blue-200 text-core-white focus:bg-blue-500 ml-12" value="true">
|
|
180
203
|
<!--v-if-->
|
|
204
|
+
<div class="truncate"></div>
|
|
181
205
|
<!--v-if--><span class="hidden h-0 w-0"></span>
|
|
182
206
|
</button></div>
|
|
183
207
|
</form>
|
package/src/types.ts
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { ButtonVariant } from "@fiscozen/button";
|
|
2
|
+
|
|
1
3
|
export type FzDialogSizes = "sm" | "md" | "lg" | "xl";
|
|
2
4
|
|
|
3
5
|
export type FzDialogProps = {
|
|
@@ -56,6 +58,10 @@ export type FzConfirmDialogProps = FzDialogProps & {
|
|
|
56
58
|
* Whether to show the confirm button
|
|
57
59
|
*/
|
|
58
60
|
confirmButtonEnabled?: boolean;
|
|
61
|
+
/**
|
|
62
|
+
* Custom variant of the confirm button
|
|
63
|
+
*/
|
|
64
|
+
confirmButtonVariant?: ButtonVariant;
|
|
59
65
|
/**
|
|
60
66
|
* classes to apply to footer
|
|
61
67
|
*/
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/@vue+shared@3.4.13/node_modules/@vue/shared/dist/shared.d.ts","../../node_modules/.pnpm/@vue+reactivity@3.4.13/node_modules/@vue/reactivity/dist/reactivity.d.ts","../../node_modules/.pnpm/@vue+runtime-core@3.4.13/node_modules/@vue/runtime-core/dist/runtime-core.d.ts","../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../node_modules/.pnpm/@vue+runtime-dom@3.4.13/node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts","../../node_modules/.pnpm/vue@3.4.13_typescript@5.3.3/node_modules/vue/jsx-runtime/index.d.ts","../../node_modules/.pnpm/@babel+types@7.23.6/node_modules/@babel/types/lib/index.d.ts","../../node_modules/.pnpm/@babel+parser@7.23.6/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/.pnpm/source-map-js@1.0.2/node_modules/source-map-js/source-map.d.ts","../../node_modules/.pnpm/@vue+compiler-core@3.4.13/node_modules/@vue/compiler-core/dist/compiler-core.d.ts","../../node_modules/.pnpm/@vue+compiler-dom@3.4.13/node_modules/@vue/compiler-dom/dist/compiler-dom.d.ts","../../node_modules/.pnpm/vue@3.4.13_typescript@5.3.3/node_modules/vue/dist/vue.d.mts","./src/types.ts","./src/FzDialog.vue.ts","../button/src/types.ts","../../node_modules/.pnpm/@fortawesome+fontawesome-common-types@6.5.1/node_modules/@fortawesome/fontawesome-common-types/index.d.ts","../../node_modules/.pnpm/@fortawesome+fontawesome-svg-core@6.5.1/node_modules/@fortawesome/fontawesome-svg-core/index.d.ts","../../node_modules/.pnpm/@fortawesome+fontawesome-common-types@6.5.2/node_modules/@fortawesome/fontawesome-common-types/index.d.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.74/node_modules/@awesome.me/kit-8137893ad3/icons/modules/icon-types.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.74/node_modules/@awesome.me/kit-8137893ad3/icons/modules/index.d.ts","../../node_modules/.pnpm/@fortawesome+vue-fontawesome@3.0.6_@fortawesome+fontawesome-svg-core@6.5.1_vue@3.4.13/node_modules/@fortawesome/vue-fontawesome/index.d.ts","../icons/src/types.ts","../icons/src/FzIcon.vue.ts","../icons/src/index.ts","../button/src/utils.ts","../button/src/FzButton.vue.ts","../button/src/FzIconButton.vue.ts","../button/src/index.ts","./src/FzSimpleDialog.vue.ts","./__VLS_types.d.ts","./dist/src/FzDialog.vue.d.ts","./dist/src/index.d.ts","./dist/index.d.ts","./dist/src/types.d.ts","./dist/src/__test__/FzDialog.test.d.ts","./src/index.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/constants/dom-events.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/createDomEvent.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/types.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/vueWrapper.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/interfaces/wrapperLike.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/baseWrapper.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/domWrapper.d.ts","../../node_modules/.pnpm/vue-component-type-helpers@1.8.27/node_modules/vue-component-type-helpers/index.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/mount.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/renderToString.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/components/RouterLinkStub.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/errorWrapper.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/vnodeTransformers/util.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/vnodeTransformers/stubComponentsTransformer.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/config.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/utils/flushPromises.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/utils/autoUnmount.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/index.d.ts","../style/tokens.json","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/types.d.ts","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/helpers.d.ts","../../node_modules/.pnpm/@sinclair+typebox@0.27.8/node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts","../../node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/index.d.ts","../../node_modules/.pnpm/@vitest+runner@1.2.0/node_modules/@vitest/runner/dist/tasks-rsXe_qLO.d.ts","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/types-widbdqe5.d.ts","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/diff.d.ts","../../node_modules/.pnpm/@vitest+runner@1.2.0/node_modules/@vitest/runner/dist/types.d.ts","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/error.d.ts","../../node_modules/.pnpm/@vitest+runner@1.2.0/node_modules/@vitest/runner/dist/index.d.ts","../../node_modules/.pnpm/@vitest+runner@1.2.0/node_modules/@vitest/runner/dist/utils.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/globals.global.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/index.d.ts","../../node_modules/.pnpm/@types+estree@1.0.5/node_modules/@types/estree/index.d.ts","../../node_modules/.pnpm/rollup@4.9.5/node_modules/rollup/dist/rollup.d.ts","../../node_modules/.pnpm/rollup@4.9.5/node_modules/rollup/dist/parseAst.d.ts","../../node_modules/.pnpm/vite@5.0.11_@types+node@18.19.7/node_modules/vite/types/hmrPayload.d.ts","../../node_modules/.pnpm/vite@5.0.11_@types+node@18.19.7/node_modules/vite/types/customEvent.d.ts","../../node_modules/.pnpm/esbuild@0.19.11/node_modules/esbuild/lib/main.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/previous-map.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/input.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/css-syntax-error.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/declaration.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/root.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/warning.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/lazy-result.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/no-work-result.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/processor.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/result.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/document.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/rule.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/node.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/comment.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/container.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/at-rule.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/list.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/postcss.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/postcss.d.mts","../../node_modules/.pnpm/vite@5.0.11_@types+node@18.19.7/node_modules/vite/types/importGlob.d.ts","../../node_modules/.pnpm/vite@5.0.11_@types+node@18.19.7/node_modules/vite/types/metadata.d.ts","../../node_modules/.pnpm/vite@5.0.11_@types+node@18.19.7/node_modules/vite/dist/node/index.d.ts","../../node_modules/.pnpm/vite-node@1.2.0_@types+node@18.19.7/node_modules/vite-node/dist/trace-mapping.d-aA9jxPtH.d.ts","../../node_modules/.pnpm/vite-node@1.2.0_@types+node@18.19.7/node_modules/vite-node/dist/index-IeUJleJC.d.ts","../../node_modules/.pnpm/vite-node@1.2.0_@types+node@18.19.7/node_modules/vite-node/dist/index.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.2.0/node_modules/@vitest/snapshot/dist/environment-1emuyggI.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.2.0/node_modules/@vitest/snapshot/dist/index-K5cwkiJB.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.2.0/node_modules/@vitest/snapshot/dist/index.d.ts","../../node_modules/.pnpm/@vitest+expect@1.2.0/node_modules/@vitest/expect/dist/chai.d.cts","../../node_modules/.pnpm/@vitest+expect@1.2.0/node_modules/@vitest/expect/dist/index.d.ts","../../node_modules/.pnpm/@vitest+expect@1.2.0/node_modules/@vitest/expect/index.d.ts","../../node_modules/.pnpm/tinybench@2.5.1/node_modules/tinybench/dist/index.d.ts","../../node_modules/.pnpm/vite-node@1.2.0_@types+node@18.19.7/node_modules/vite-node/dist/client.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.2.0/node_modules/@vitest/snapshot/dist/manager.d.ts","../../node_modules/.pnpm/vite-node@1.2.0_@types+node@18.19.7/node_modules/vite-node/dist/server.d.ts","../../node_modules/.pnpm/vitest@1.2.0_@types+node@18.19.7_jsdom@23.2.0/node_modules/vitest/dist/reporters-trlZlObr.d.ts","../../node_modules/.pnpm/vitest@1.2.0_@types+node@18.19.7_jsdom@23.2.0/node_modules/vitest/dist/suite-6Pt_ep5V.d.ts","../../node_modules/.pnpm/@vitest+spy@1.2.0/node_modules/@vitest/spy/dist/index.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.2.0/node_modules/@vitest/snapshot/dist/environment.d.ts","../../node_modules/.pnpm/vitest@1.2.0_@types+node@18.19.7_jsdom@23.2.0/node_modules/vitest/dist/config.d.ts","../../node_modules/.pnpm/vitest@1.2.0_@types+node@18.19.7_jsdom@23.2.0/node_modules/vitest/dist/index.d.ts","./src/__test__/FzDialog.test.ts"],"fileInfos":[{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0",{"version":"0","affectsGlobalScope":true},"0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0",{"version":"0","affectsGlobalScope":true},"0",{"version":"0","affectsGlobalScope":true},"0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0"],"root":[59,60,[75,82],249],"options":{"composite":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noImplicitThis":true,"skipLibCheck":true,"strict":true,"target":99,"useDefineForClassFields":true},"fileIdsList":[[52,63,64,65],[64,65],[53],[62],[58,63,65],[104],[115],[151],[152,157,185],[153,164,165,172,182,193],[153,154,164,172],[155,194],[156,157,165,173],[157,182,190],[158,160,164,172],[151,159],[160,161],[164],[162,164],[151,164],[164,165,166,182,193],[164,165,166,179,182,185],[149,198],[160,164,167,172,182,193],[164,165,167,168,172,182,190,193],[167,169,182,190,193],[115,116,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200],[164,170],[171,193,198],[160,164,172,182],[173],[174],[151,175],[176,192,198],[177],[178],[164,179,180],[179,181,194,196],[152,164,182,183,184,185],[152,182,184],[182,183],[185],[186],[151,182],[164,188,189],[188,189],[157,172,182,190],[191],[172,192],[152,167,178,193],[157,194],[182,195],[171,196],[197],[152,157,164,166,175,182,193,196,198],[182,199],[107,110],[237],[107,108,110,111,112],[107],[107,108,110],[107,108],[233],[106,233],[106,233,234],[106,109],[102],[102,103,106],[106],[47,53,54,55],[56],[47],[47,48,49,51],[48,49,50],[58,83,84,85,86,87,89],[58],[85,86,89,96],[83],[58,85,88],[85,86,88,89,91,92,93,94,97,98,99],[58,83,84,85,86,89],[58,85,86,90],[58,85,91],[58,86],[58,95],[58,85,88,89],[222],[220,222],[211,219,220,221,223],[209],[212,217,222,225],[208,225],[212,213,216,217,218,225],[212,213,214,216,217,225],[209,210,211,212,213,217,218,219,221,222,223,225],[225],[55,209,210,211,212,213,214,216,217,218,219,220,221,222,223,224],[55,225],[212,214,215,217,218,225],[216,225],[217,218,222,225],[210,220],[105],[203,228],[202],[55],[126,130,193],[126,182,193],[121],[123,126,190,193],[172,190],[201],[121,201],[123,126,172,193],[118,119,122,125,152,164,182,193],[118,124],[122,126,152,185,193,201],[152,201],[142,152,201],[120,121,201],[126],[120,121,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148],[126,133,134],[124,126,134,135],[125],[118,121,126],[126,130,134,135],[130],[124,126,129,193],[118,123,124,126,130,133],[152,182],[121,126,142,152,198,201],[230,231],[230],[229,230,231,243],[164,165,167,168,169,172,182,190,193,199,201,203,204,205,206,207,226,227,228],[205],[203],[107,113,114,165,198,229,232,235,236,238,239,240,241,242,243],[107,110,113,114,165,198,229,232,235,236,238,239,240,241,242,243,244,245,246,247],[113,114,239,243],[51,57],[51],[52,58,61,70,71],[52,58,61,70,71,72],[52,61,72,73],[52],[52,61,70],[52,58],[78],[77],[52,58,59],[52,58,59,60,74],[52,82,100,101,248],[52,59,60,75],[52,58,66,67,68],[52,58,63,65,66,68,69],[88,89,91,92,94,95,96,97,100,102,103],[185,202],[109,112],[110,111,113,114,115],[129],[123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,146,147,148,149,150,151],[154],[155,160,188],[156,167,168,175,185,196],[156,157,167,175],[158,197],[159,160,168,176],[160,185,193],[161,163,167,175],[163,164],[154,162],[165,167],[167],[124],[200],[154,167],[167,168,169,185,196],[167,168,169,182,185,188],[155,160,167,169,178,185,196,199,201],[163,167,170,175,185,196],[167,168,170,171,175,185,193,196],[170,172,185,193,196],[167,173],[174,196,201],[163,167,175,185],[176],[154,178],[179,195,201],[180],[181],[167,182,183],[182,184,197,199],[155,167,185,186,187,188],[185,186],[155,185,187],[188],[189],[154,185],[167,191,192],[191,192],[160,175,185,193],[194],[175,195],[155,170,181,196],[160,197],[185,198],[174,199],[109,236],[109,236,237],[110],[110,111,113],[110,116,117,168,201,232,235,238,239,241,242,243,244,245,246],[233,234],[240],[232,233,234,246],[105,106,109],[109],[58,89],[108],[58,88,91,92],[58,88,89,93],[88,89,92,99],[86],[58,86,87,88,89,90,92],[58,88,91],[58,98],[58,88,94],[110,111],[206,231],[212,213,214,215,216,220,221,222,224,225,226,228],[215,220,225,228],[55,228],[215,216,217,219,220,228],[208],[223,225],[220,221,225,228],[219,228],[214,222,223,224,226],[213,223],[215,216,219,220,221,228],[211,228],[215,217,218,220,221,228],[212],[118,119,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203],[127,129,132,196],[129,133,137,138],[133],[126,129,175,196],[125,129,155,188,196,204],[155,204],[145,155,204],[128],[124,204],[175,193],[123,124,204],[129,185,196],[155,185],[126,129,193,196],[121,127],[118],[204],[124,129,145,155,201,204],[129,133,196],[129,136,137],[121,124,129],[121,126,127,129,133,136],[121,122,125,128,155,167,185,196],[127,129,137,138],[110,113],[206],[167,168,170,171,172,175,185,193,196,202,204,206,207,208,209,210,229,230,231],[228],[55,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227],[116,117,242,246],[58,86,87,88,89,92],[236]],"referencedMap":[[65,1],[66,2],[54,3],[63,4],[67,5],[105,6],[115,7],[116,7],[151,8],[152,9],[153,10],[154,11],[155,12],[156,13],[157,14],[158,15],[159,16],[160,17],[161,17],[163,18],[162,19],[164,20],[165,21],[166,22],[150,23],[167,24],[168,25],[169,26],[201,27],[170,28],[171,29],[172,30],[173,31],[174,32],[175,33],[176,34],[177,35],[178,36],[179,37],[180,37],[181,38],[182,39],[184,40],[183,41],[185,42],[186,43],[187,44],[188,45],[189,46],[190,47],[191,48],[192,49],[193,50],[194,51],[195,52],[196,53],[197,54],[198,55],[199,56],[237,57],[238,58],[113,59],[108,60],[111,61],[114,62],[246,63],[234,64],[235,65],[241,65],[110,66],[112,66],[103,67],[107,68],[109,69],[56,70],[57,71],[48,72],[49,73],[51,74],[88,75],[93,76],[97,77],[84,78],[89,79],[100,80],[87,81],[91,82],[92,83],[85,76],[99,84],[96,85],[95,76],[86,86],[223,87],[221,88],[222,89],[210,90],[211,88],[218,91],[209,92],[214,93],[215,94],[220,95],[226,96],[225,97],[208,98],[216,99],[217,100],[212,101],[219,87],[213,102],[106,103],[204,104],[203,105],[55,106],[133,107],[140,108],[132,107],[147,109],[124,110],[123,111],[146,112],[141,113],[144,114],[126,115],[125,116],[121,117],[120,118],[143,119],[122,120],[127,121],[131,121],[149,122],[148,121],[135,123],[136,124],[138,125],[134,126],[137,127],[142,112],[129,128],[130,129],[139,130],[119,131],[145,132],[240,133],[231,134],[232,133],[242,135],[229,136],[206,137],[228,138],[247,139],[248,140],[243,139],[244,141],[58,142],[52,143],[72,144],[73,145],[74,146],[61,147],[71,148],[76,149],[79,150],[77,76],[78,151],[60,152],[75,153],[249,154],[82,155],[59,147],[69,156],[70,157],[68,147]],"exportedModulesMap":[[65,1],[66,2],[54,3],[63,4],[67,5],[104,158],[202,159],[115,160],[116,161],[151,162],[152,163],[153,118],[154,164],[155,165],[156,166],[157,167],[158,168],[159,169],[160,170],[161,171],[163,172],[162,173],[164,172],[165,174],[166,175],[150,176],[200,177],[167,178],[168,179],[169,180],[201,181],[170,182],[171,183],[172,184],[173,185],[174,186],[175,187],[176,188],[177,35],[178,189],[179,190],[180,191],[181,192],[182,193],[184,194],[183,193],[185,195],[186,196],[187,197],[188,198],[189,199],[190,200],[191,201],[192,202],[193,203],[194,204],[195,205],[196,206],[197,207],[198,208],[199,209],[237,210],[238,211],[113,160],[108,60],[111,212],[114,213],[246,214],[234,63],[235,215],[241,216],[245,217],[110,218],[112,219],[103,220],[109,221],[56,70],[57,71],[48,72],[49,73],[51,74],[88,76],[83,149],[84,147],[89,222],[94,223],[100,224],[87,225],[91,226],[92,227],[85,147],[99,228],[98,76],[96,76],[95,229],[117,230],[207,231],[223,232],[221,233],[222,96],[211,234],[218,235],[209,236],[214,237],[224,237],[215,238],[220,239],[226,96],[225,240],[216,241],[217,242],[212,243],[219,244],[213,245],[106,103],[204,246],[55,106],[133,247],[140,248],[132,249],[147,250],[124,251],[123,252],[146,253],[141,254],[144,255],[126,256],[125,257],[143,258],[122,259],[127,260],[128,261],[118,262],[149,263],[148,264],[135,265],[136,265],[138,266],[134,162],[137,267],[142,268],[129,269],[130,162],[139,270],[119,262],[145,263],[240,271],[231,272],[232,273],[229,274],[206,137],[228,275],[247,276],[243,215],[244,211],[90,277],[58,142],[52,143],[72,144],[73,145],[74,146],[61,147],[71,148],[76,149],[79,150],[77,76],[78,151],[60,152],[75,153],[249,278],[82,149],[59,149],[69,156],[70,157],[68,147]],"semanticDiagnosticsPerFile":[65,66,54,53,62,64,63,67,105,104,202,115,116,151,152,153,154,155,156,157,158,159,160,161,163,162,164,165,166,150,200,167,168,169,201,170,171,172,173,174,175,176,177,178,179,180,181,182,184,183,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,236,237,238,113,108,111,114,233,246,234,235,241,245,110,112,103,107,109,102,56,57,48,49,51,47,88,93,97,83,84,89,94,100,87,91,92,85,99,98,96,95,86,117,50,207,223,221,222,210,211,218,209,214,224,215,220,226,225,208,216,217,212,219,213,106,204,203,55,239,45,46,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,20,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,1,44,133,140,132,147,124,123,146,141,144,126,125,121,120,143,122,127,128,131,118,149,148,135,136,138,134,137,142,129,130,139,119,145,240,231,232,242,230,229,206,205,227,228,247,248,243,244,90,58,52,72,73,74,61,71,76,79,77,81,78,80,60,75,249,82,59,69,70,68,101],"affectedFilesPendingEmit":[60,75,249,82,59],"emitSignatures":[60,75]},"version":"5.3.3"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.3.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/@vue+shared@3.4.13/node_modules/@vue/shared/dist/shared.d.ts","../../node_modules/.pnpm/@vue+reactivity@3.4.13/node_modules/@vue/reactivity/dist/reactivity.d.ts","../../node_modules/.pnpm/@vue+runtime-core@3.4.13/node_modules/@vue/runtime-core/dist/runtime-core.d.ts","../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../node_modules/.pnpm/@vue+runtime-dom@3.4.13/node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts","../../node_modules/.pnpm/vue@3.4.13_typescript@5.3.3/node_modules/vue/jsx-runtime/index.d.ts","../../node_modules/.pnpm/@babel+types@7.23.6/node_modules/@babel/types/lib/index.d.ts","../../node_modules/.pnpm/@babel+parser@7.23.6/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/.pnpm/source-map-js@1.0.2/node_modules/source-map-js/source-map.d.ts","../../node_modules/.pnpm/@vue+compiler-core@3.4.13/node_modules/@vue/compiler-core/dist/compiler-core.d.ts","../../node_modules/.pnpm/@vue+compiler-dom@3.4.13/node_modules/@vue/compiler-dom/dist/compiler-dom.d.ts","../../node_modules/.pnpm/vue@3.4.13_typescript@5.3.3/node_modules/vue/dist/vue.d.mts","../button/src/types.ts","../../node_modules/.pnpm/vue@3.4.13_typescript@5.4.2/node_modules/vue/jsx-runtime/index.d.ts","../../node_modules/.pnpm/vue@3.4.13_typescript@5.4.2/node_modules/vue/dist/vue.d.mts","../../node_modules/.pnpm/@fortawesome+fontawesome-common-types@6.5.1/node_modules/@fortawesome/fontawesome-common-types/index.d.ts","../../node_modules/.pnpm/@fortawesome+fontawesome-svg-core@6.5.1/node_modules/@fortawesome/fontawesome-svg-core/index.d.ts","../../node_modules/.pnpm/@fortawesome+fontawesome-common-types@6.5.2/node_modules/@fortawesome/fontawesome-common-types/index.d.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.89/node_modules/@awesome.me/kit-8137893ad3/icons/modules/icon-types.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.89/node_modules/@awesome.me/kit-8137893ad3/icons/modules/index.d.ts","../../node_modules/.pnpm/@fortawesome+vue-fontawesome@3.0.6_@fortawesome+fontawesome-svg-core@6.5.1_vue@3.4.13_typescript@5.4.2_/node_modules/@fortawesome/vue-fontawesome/index.d.ts","../icons/src/types.ts","../icons/src/FzIcon.vue.ts","../icons/src/index.ts","../button/src/utils.ts","../button/src/FzButton.vue.ts","../button/src/FzIconButton.vue.ts","../button/src/FzButtonGroup.vue.ts","../button/src/index.ts","./src/types.ts","./src/FzDialog.vue.ts","./src/FzConfirmDialog.vue.ts","./__VLS_types.d.ts","./dist/src/types.d.ts","./dist/src/FzDialog.vue.d.ts","./dist/src/FzSimpleDialog.vue.d.ts","./dist/src/index.d.ts","./dist/index.d.ts","./dist/src/__test__/FzDialog.test.d.ts","./src/index.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.13_vue@3.4.13_typescript@5.3.3___vue@3.4.13_typescript@5.3.3_/node_modules/@vue/test-utils/dist/constants/dom-events.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.13_vue@3.4.13_typescript@5.3.3___vue@3.4.13_typescript@5.3.3_/node_modules/@vue/test-utils/dist/createDomEvent.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.13_vue@3.4.13_typescript@5.3.3___vue@3.4.13_typescript@5.3.3_/node_modules/@vue/test-utils/dist/types.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.13_vue@3.4.13_typescript@5.3.3___vue@3.4.13_typescript@5.3.3_/node_modules/@vue/test-utils/dist/vueWrapper.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.13_vue@3.4.13_typescript@5.3.3___vue@3.4.13_typescript@5.3.3_/node_modules/@vue/test-utils/dist/interfaces/wrapperLike.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.13_vue@3.4.13_typescript@5.3.3___vue@3.4.13_typescript@5.3.3_/node_modules/@vue/test-utils/dist/baseWrapper.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.13_vue@3.4.13_typescript@5.3.3___vue@3.4.13_typescript@5.3.3_/node_modules/@vue/test-utils/dist/domWrapper.d.ts","../../node_modules/.pnpm/vue-component-type-helpers@1.8.27/node_modules/vue-component-type-helpers/index.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.13_vue@3.4.13_typescript@5.3.3___vue@3.4.13_typescript@5.3.3_/node_modules/@vue/test-utils/dist/mount.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.13_vue@3.4.13_typescript@5.3.3___vue@3.4.13_typescript@5.3.3_/node_modules/@vue/test-utils/dist/renderToString.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.13_vue@3.4.13_typescript@5.3.3___vue@3.4.13_typescript@5.3.3_/node_modules/@vue/test-utils/dist/components/RouterLinkStub.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.13_vue@3.4.13_typescript@5.3.3___vue@3.4.13_typescript@5.3.3_/node_modules/@vue/test-utils/dist/errorWrapper.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.13_vue@3.4.13_typescript@5.3.3___vue@3.4.13_typescript@5.3.3_/node_modules/@vue/test-utils/dist/vnodeTransformers/util.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.13_vue@3.4.13_typescript@5.3.3___vue@3.4.13_typescript@5.3.3_/node_modules/@vue/test-utils/dist/vnodeTransformers/stubComponentsTransformer.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.13_vue@3.4.13_typescript@5.3.3___vue@3.4.13_typescript@5.3.3_/node_modules/@vue/test-utils/dist/config.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.13_vue@3.4.13_typescript@5.3.3___vue@3.4.13_typescript@5.3.3_/node_modules/@vue/test-utils/dist/utils/flushPromises.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.13_vue@3.4.13_typescript@5.3.3___vue@3.4.13_typescript@5.3.3_/node_modules/@vue/test-utils/dist/utils/autoUnmount.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.13_vue@3.4.13_typescript@5.3.3___vue@3.4.13_typescript@5.3.3_/node_modules/@vue/test-utils/dist/index.d.ts","../style/tokens.json","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/types.d.ts","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/helpers.d.ts","../../node_modules/.pnpm/@sinclair+typebox@0.27.8/node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts","../../node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/index.d.ts","../../node_modules/.pnpm/@vitest+runner@1.2.0/node_modules/@vitest/runner/dist/tasks-rsXe_qLO.d.ts","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/types-widbdqe5.d.ts","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/diff.d.ts","../../node_modules/.pnpm/@vitest+runner@1.2.0/node_modules/@vitest/runner/dist/types.d.ts","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/error.d.ts","../../node_modules/.pnpm/@vitest+runner@1.2.0/node_modules/@vitest/runner/dist/index.d.ts","../../node_modules/.pnpm/@vitest+runner@1.2.0/node_modules/@vitest/runner/dist/utils.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/globals.global.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/index.d.ts","../../node_modules/.pnpm/@types+estree@1.0.5/node_modules/@types/estree/index.d.ts","../../node_modules/.pnpm/rollup@4.9.5/node_modules/rollup/dist/rollup.d.ts","../../node_modules/.pnpm/rollup@4.9.5/node_modules/rollup/dist/parseAst.d.ts","../../node_modules/.pnpm/vite@5.0.11_@types+node@18.19.7/node_modules/vite/types/hmrPayload.d.ts","../../node_modules/.pnpm/vite@5.0.11_@types+node@18.19.7/node_modules/vite/types/customEvent.d.ts","../../node_modules/.pnpm/esbuild@0.19.11/node_modules/esbuild/lib/main.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/previous-map.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/input.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/css-syntax-error.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/declaration.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/root.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/warning.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/lazy-result.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/no-work-result.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/processor.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/result.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/document.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/rule.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/node.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/comment.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/container.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/at-rule.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/list.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/postcss.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/postcss.d.mts","../../node_modules/.pnpm/vite@5.0.11_@types+node@18.19.7/node_modules/vite/types/importGlob.d.ts","../../node_modules/.pnpm/vite@5.0.11_@types+node@18.19.7/node_modules/vite/types/metadata.d.ts","../../node_modules/.pnpm/vite@5.0.11_@types+node@18.19.7/node_modules/vite/dist/node/index.d.ts","../../node_modules/.pnpm/vite-node@1.2.0_@types+node@18.19.7/node_modules/vite-node/dist/trace-mapping.d-aA9jxPtH.d.ts","../../node_modules/.pnpm/vite-node@1.2.0_@types+node@18.19.7/node_modules/vite-node/dist/index-IeUJleJC.d.ts","../../node_modules/.pnpm/vite-node@1.2.0_@types+node@18.19.7/node_modules/vite-node/dist/index.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.2.0/node_modules/@vitest/snapshot/dist/environment-1emuyggI.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.2.0/node_modules/@vitest/snapshot/dist/index-K5cwkiJB.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.2.0/node_modules/@vitest/snapshot/dist/index.d.ts","../../node_modules/.pnpm/@vitest+expect@1.2.0/node_modules/@vitest/expect/dist/chai.d.cts","../../node_modules/.pnpm/@vitest+expect@1.2.0/node_modules/@vitest/expect/dist/index.d.ts","../../node_modules/.pnpm/@vitest+expect@1.2.0/node_modules/@vitest/expect/index.d.ts","../../node_modules/.pnpm/tinybench@2.5.1/node_modules/tinybench/dist/index.d.ts","../../node_modules/.pnpm/vite-node@1.2.0_@types+node@18.19.7/node_modules/vite-node/dist/client.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.2.0/node_modules/@vitest/snapshot/dist/manager.d.ts","../../node_modules/.pnpm/vite-node@1.2.0_@types+node@18.19.7/node_modules/vite-node/dist/server.d.ts","../../node_modules/.pnpm/vitest@1.2.0_@types+node@18.19.7_jsdom@23.2.0/node_modules/vitest/dist/reporters-trlZlObr.d.ts","../../node_modules/.pnpm/vitest@1.2.0_@types+node@18.19.7_jsdom@23.2.0/node_modules/vitest/dist/suite-6Pt_ep5V.d.ts","../../node_modules/.pnpm/@vitest+spy@1.2.0/node_modules/@vitest/spy/dist/index.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.2.0/node_modules/@vitest/snapshot/dist/environment.d.ts","../../node_modules/.pnpm/vitest@1.2.0_@types+node@18.19.7_jsdom@23.2.0/node_modules/vitest/dist/config.d.ts","../../node_modules/.pnpm/vitest@1.2.0_@types+node@18.19.7_jsdom@23.2.0/node_modules/vitest/dist/index.d.ts","./src/__test__/FzDialog.test.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/domWrapper.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/renderToString.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/components/RouterLinkStub.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/vnodeTransformers/util.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/vnodeTransformers/stubComponentsTransformer.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/config.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/utils/flushPromises.d.ts","../button/src/FzButton.vue","../button/src/FzIconButton.vue","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.74/node_modules/@awesome.me/kit-8137893ad3/icons/modules/icon-types.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.74/node_modules/@awesome.me/kit-8137893ad3/icons/modules/index.d.ts","../icons/src/FzIcon.vue","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/index.d.ts"],"fileInfos":[{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0",{"version":"0","affectsGlobalScope":true},"0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0",{"version":"0","affectsGlobalScope":true},"0",{"version":"0","affectsGlobalScope":true},"0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0"],"root":[[76,86],253],"options":{"composite":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noImplicitThis":true,"skipLibCheck":true,"strict":true,"target":99,"useDefineForClassFields":true},"fileIdsList":[[52,63,64,65],[64,65],[53],[62],[58,63,65],[108],[119],[155],[156,161,189],[157,168,169,176,186,197],[157,158,168,176],[159,198],[160,161,169,177],[161,186,194],[162,164,168,176],[155,163],[164,165],[168],[166,168],[155,168],[168,169,170,186,197],[168,169,170,183,186,189],[153,202],[164,168,171,176,186,197],[168,169,171,172,176,186,194,197],[171,173,186,194,197],[119,120,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204],[168,174],[175,197,202],[164,168,176,186],[177],[178],[155,179],[180,196,202],[181],[182],[168,183,184],[183,185,198,200],[156,168,186,187,188,189],[156,186,188],[186,187],[189],[190],[155,186],[168,192,193],[192,193],[161,176,186,194],[195],[176,196],[156,171,182,197],[161,198],[186,199],[175,200],[201],[156,161,168,170,179,186,197,200,202],[186,203],[111,114],[241],[111,112,114,115,116],[111],[111,112,114],[111,112],[237],[110,237],[110,237,238],[110,113],[106],[106,107,110],[110],[47,53,54,55],[56],[47],[47,48,49,51],[48,49,50],[58,87,88,89,90,91,93],[58],[89,90,93,100],[87],[58,89,92],[89,90,92,93,95,96,97,98,101,102,103],[58,87,88,89,90,93],[58,89,90,94],[58,89,95],[58,90],[58,99],[58,89,92,93],[226],[224,226],[215,223,224,225,227],[213],[216,221,226,229],[212,229],[216,217,220,221,222,229],[216,217,218,220,221,229],[213,214,215,216,217,221,222,223,225,226,227,229],[229],[55,213,214,215,216,217,218,220,221,222,223,224,225,226,227,228],[55,229],[216,218,219,221,222,229],[220,229],[221,222,226,229],[214,224],[109],[207,232],[206],[55],[130,134,197],[130,186,197],[125],[127,130,194,197],[176,194],[205],[125,205],[127,130,176,197],[122,123,126,129,156,168,186,197],[122,128],[126,130,156,189,197,205],[156,205],[146,156,205],[124,125,205],[130],[124,125,126,127,128,129,130,131,132,134,135,136,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152],[130,137,138],[128,130,138,139],[129],[122,125,130],[130,134,138,139],[134],[128,130,133,197],[122,127,128,130,134,137],[156,186],[125,130,146,156,202,205],[234,235],[234],[233,234,235,247],[168,169,171,172,173,176,186,194,197,203,205,207,208,209,210,211,230,231,232],[209],[207],[111,117,118,169,202,233,236,239,240,242,243,244,245,246,247],[111,114,117,118,169,202,233,236,239,240,242,243,244,245,246,247,248,249,250,251],[117,118,243,247],[51,57],[51],[52,58,59,70,71],[52,58,59],[52,58,59,70,71,72],[52,59,72,73,74],[52],[52,59,70],[52,58],[83],[58,80],[80,81,82],[52,58,75,76,77],[52,58,76],[52,86,104,105,252],[52,76,77,78],[52,58,66,67,68],[52,58,63,65,66,68,69],[94,105,107,108,254,255,256,257,258,259,260],[58,94],[160,165,172,174,183,190,201,204,206],[115,116,118],[114,117],[128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,151,152,153,154,155,156],[157,206],[159],[160,165,193],[161,172,173,180,190,201],[161,162,172,180],[163,202],[164,165,173,181],[165,190,198],[159,167],[166,168,172,180],[168,169],[170,172],[179,204],[172],[159,172],[172,173,174,190,201],[172,173,174,187,190,193],[168,172,175,180,190,201],[172,173,175,176,180,190,198,201],[175,177,190,198,201],[172,178],[179,201,206],[168,172,180,190],[159,183],[184,200,206],[185],[186],[172,187,188],[187,189,202,204],[160,172,190,191,192,193],[190,191],[160,190,192],[193],[194],[159,190],[172,196,197],[196,197],[165,180,190,198],[199],[180,200],[160,175,186,201],[165,202],[190,203],[238,239],[114,241],[114],[110,111,114],[172,173,175,176,177,180,190,198,201,207,209,211,212,213,214,215,234,235,236],[237,238,239,251],[238],[115,118],[114,241,242],[113],[115],[112],[115,116,118,119,120],[210],[230],[224,233],[220,225,230,233],[220,221,224,225,226,233],[217],[217,218,219,220,221,225,226,227,229,230,231,233],[228,230],[220,222,223,225,226,233],[219,227,228,229,231],[211,236],[225,226,230,233],[218,228],[55,233],[220,221,222,224,225,233],[216,233],[190,207],[138],[132,134,142,143],[150,160,209],[160,209],[160,190],[134,138,142,143],[134,190,201],[128,129,209],[130,134,160,193,201,209],[123],[126,131,132,134,138,141],[180,198],[131,134,198,201],[115,116],[129,134,150,160,206,209],[131,134,180,201],[134,138,201],[126,129,134],[132,134,137,201],[133],[126,132],[126,127,130,133,160,172,190,201],[134,141,142],[129,209],[211],[245],[233],[55,217,218,219,220,221,222,224,225,226,227,228,229,230,231,232],[123,124,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208],[115,121,122,173,206,237,240,243,244,246,247,248,249,250,251],[121,122,247,251],[58,254,255,256],[52,59,261,262],[84],[52,58,63,68,263,264,265],[94,254,256,266]],"referencedMap":[[65,1],[66,2],[54,3],[63,4],[67,5],[109,6],[119,7],[120,7],[155,8],[156,9],[157,10],[158,11],[159,12],[160,13],[161,14],[162,15],[163,16],[164,17],[165,17],[167,18],[166,19],[168,20],[169,21],[170,22],[154,23],[171,24],[172,25],[173,26],[205,27],[174,28],[175,29],[176,30],[177,31],[178,32],[179,33],[180,34],[181,35],[182,36],[183,37],[184,37],[185,38],[186,39],[188,40],[187,41],[189,42],[190,43],[191,44],[192,45],[193,46],[194,47],[195,48],[196,49],[197,50],[198,51],[199,52],[200,53],[201,54],[202,55],[203,56],[241,57],[242,58],[117,59],[112,60],[115,61],[118,62],[250,63],[238,64],[239,65],[245,65],[114,66],[116,66],[107,67],[111,68],[113,69],[56,70],[57,71],[48,72],[49,73],[51,74],[92,75],[97,76],[101,77],[88,78],[93,79],[104,80],[91,81],[95,82],[96,83],[89,76],[103,84],[100,85],[99,76],[90,86],[227,87],[225,88],[226,89],[214,90],[215,88],[222,91],[213,92],[218,93],[219,94],[224,95],[230,96],[229,97],[212,98],[220,99],[221,100],[216,101],[223,87],[217,102],[110,103],[208,104],[207,105],[55,106],[137,107],[144,108],[136,107],[151,109],[128,110],[127,111],[150,112],[145,113],[148,114],[130,115],[129,116],[125,117],[124,118],[147,119],[126,120],[131,121],[135,121],[153,122],[152,121],[139,123],[140,124],[142,125],[138,126],[141,127],[146,112],[133,128],[134,129],[143,130],[123,131],[149,132],[244,133],[235,134],[236,133],[246,135],[233,136],[210,137],[232,138],[251,139],[252,140],[247,139],[248,141],[58,142],[52,143],[61,142],[60,143],[72,144],[74,145],[73,146],[75,147],[59,148],[71,149],[79,150],[84,151],[81,152],[82,152],[83,153],[78,154],[77,155],[253,156],[86,157],[76,148],[69,158],[70,159],[68,148]],"exportedModulesMap":[[65,1],[66,2],[54,3],[63,4],[67,5],[109,160],[108,161],[206,162],[119,163],[120,164],[155,125],[156,128],[157,165],[158,166],[159,167],[160,168],[161,169],[162,170],[163,171],[164,172],[165,173],[167,174],[166,175],[168,176],[169,176],[170,177],[154,137],[204,178],[171,179],[172,180],[173,181],[205,112],[174,182],[175,183],[176,184],[177,185],[178,186],[179,187],[180,188],[181,35],[182,36],[183,189],[184,190],[185,191],[186,192],[188,193],[187,193],[189,194],[190,195],[191,196],[192,197],[193,198],[194,199],[195,200],[196,201],[197,202],[198,203],[199,204],[200,205],[201,206],[202,207],[203,208],[240,209],[242,210],[117,211],[115,212],[118,164],[237,213],[250,214],[239,215],[245,216],[249,217],[114,218],[116,219],[111,69],[113,220],[56,70],[57,71],[48,72],[49,73],[51,74],[92,75],[97,76],[101,77],[88,78],[93,79],[104,80],[91,81],[95,82],[96,83],[89,76],[103,84],[100,85],[99,76],[90,86],[121,221],[211,222],[227,223],[225,224],[226,225],[214,90],[222,226],[218,227],[228,228],[219,229],[224,230],[230,231],[229,229],[212,232],[220,233],[221,234],[216,235],[223,236],[217,237],[207,238],[55,106],[243,217],[137,239],[144,240],[151,241],[128,242],[127,243],[150,137],[145,244],[148,245],[130,246],[129,247],[124,248],[147,249],[131,250],[132,251],[135,128],[122,252],[153,253],[152,254],[139,128],[140,255],[142,256],[138,257],[141,255],[146,258],[133,259],[134,260],[143,261],[123,248],[149,262],[236,263],[246,264],[234,265],[233,266],[209,267],[231,223],[251,268],[252,269],[248,209],[94,270],[58,142],[52,143],[61,142],[60,143],[72,144],[74,145],[73,146],[75,271],[59,148],[71,149],[79,150],[84,151],[81,150],[82,152],[83,76],[80,272],[78,154],[77,155],[76,150],[69,158],[70,273],[68,148],[105,274]],"semanticDiagnosticsPerFile":[65,66,54,53,62,64,63,67,109,108,206,119,120,155,156,157,158,159,160,161,162,163,164,165,167,166,168,169,170,154,204,171,172,173,205,174,175,176,177,178,179,180,181,182,183,184,185,186,188,187,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,240,241,242,117,112,115,118,237,250,238,239,245,249,114,116,107,111,113,106,56,57,48,49,51,47,92,97,101,87,88,93,98,104,91,95,96,89,103,102,100,99,90,121,50,211,227,225,226,214,215,222,213,218,228,219,224,230,229,212,220,221,216,223,217,110,208,207,55,243,45,46,8,9,11,10,2,12,13,14,15,16,17,18,19,3,4,20,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,1,44,137,144,136,151,128,127,150,145,148,130,129,125,124,147,126,131,132,135,122,153,152,139,140,142,138,141,146,133,134,143,123,149,244,235,236,246,234,233,210,209,231,232,251,252,247,248,94,58,52,61,60,72,74,73,75,59,71,79,84,81,82,85,83,80,78,77,253,86,76,69,70,68,105],"affectedFilesPendingEmit":[78,77,253,86,76],"emitSignatures":[77,78]},"version":"5.3.3"}
|