@fiscozen/dialog 0.1.5 → 0.1.7
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 +127 -133
- package/dist/dialog.umd.cjs +1 -1
- package/dist/src/{FzSimpleDialog.vue.d.ts → FzConfirmDialog.vue.d.ts} +2 -2
- package/dist/src/FzDialog.vue.d.ts +2 -2
- package/dist/src/index.d.ts +1 -1
- package/dist/src/types.d.ts +1 -1
- package/package.json +4 -4
- package/src/FzConfirmDialog.vue +2 -1
- package/src/FzDialog.vue +3 -3
- 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,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as B, ref as
|
|
1
|
+
import { defineComponent as B, ref as m, onMounted as $, onUnmounted as F, computed as k, openBlock as L, createElementBlock as M, normalizeClass as x, createElementVNode as r, renderSlot as v, createBlock as S, mergeProps as E, withCtx as i, toDisplayString as g, createVNode as b, unref as _, withModifiers as z, createTextVNode as D } from "vue";
|
|
2
2
|
import { FzIconButton as N, FzButton as y } from "@fiscozen/button";
|
|
3
3
|
const V = { class: "flex items-center p-12 w-full border-b-1 border-grey-100" }, I = { class: "grow" }, X = { class: "flex flex-row p-12 border-t-1 border-grey-100 items-center" }, Y = /* @__PURE__ */ B({
|
|
4
4
|
__name: "FzDialog",
|
|
@@ -11,137 +11,131 @@ const V = { class: "flex items-center p-12 w-full border-b-1 border-grey-100" },
|
|
|
11
11
|
isDrawer: { type: Boolean }
|
|
12
12
|
},
|
|
13
13
|
emits: ["confirm", "cancel"],
|
|
14
|
-
setup(d, { expose: f, emit:
|
|
15
|
-
const
|
|
14
|
+
setup(d, { expose: f, emit: C }) {
|
|
15
|
+
const l = d, o = m(), t = m(!1);
|
|
16
16
|
f({
|
|
17
17
|
show: () => {
|
|
18
|
-
|
|
19
|
-
(e = r.value) == null || e.showModal(), l.value = !0;
|
|
18
|
+
o.value.showModal(), t.value = !0;
|
|
20
19
|
},
|
|
21
|
-
close: (e) =>
|
|
22
|
-
|
|
23
|
-
return (s = r.value) == null ? void 0 : s.close(e);
|
|
24
|
-
},
|
|
25
|
-
visible: l
|
|
20
|
+
close: (e) => o.value.close(e),
|
|
21
|
+
visible: t
|
|
26
22
|
});
|
|
27
|
-
const
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
n || r.value.close();
|
|
31
|
-
}
|
|
23
|
+
const c = (e) => {
|
|
24
|
+
var a = o.value.getBoundingClientRect(), s = a.top <= e.clientY && e.clientY <= a.top + a.height && a.left <= e.clientX && e.clientX <= a.left + a.width;
|
|
25
|
+
s || o.value.close();
|
|
32
26
|
};
|
|
33
27
|
$(() => {
|
|
34
|
-
|
|
35
|
-
(e = r.value) == null || e.addEventListener("click", i);
|
|
28
|
+
o.value.addEventListener("click", c);
|
|
36
29
|
}), F(() => {
|
|
37
|
-
|
|
38
|
-
(e = r.value) == null || e.removeEventListener("click", i);
|
|
30
|
+
o.value.removeEventListener("click", c);
|
|
39
31
|
});
|
|
40
|
-
const
|
|
32
|
+
const u = [
|
|
41
33
|
"flex",
|
|
42
34
|
"flex-col",
|
|
43
|
-
"border-1",
|
|
44
|
-
"rounded",
|
|
45
35
|
"bg-core-white"
|
|
46
|
-
],
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
36
|
+
], h = {
|
|
37
|
+
"border-1": !0,
|
|
38
|
+
rounded: !0,
|
|
39
|
+
"border-grey-100": !0
|
|
40
|
+
}, p = k(() => {
|
|
41
|
+
let e = [];
|
|
42
|
+
if (l.isDrawer)
|
|
43
|
+
return e = [
|
|
44
|
+
"m-0",
|
|
45
|
+
"fixed",
|
|
46
|
+
"top-0",
|
|
47
|
+
"ml-auto",
|
|
48
|
+
"max-h-screen"
|
|
49
|
+
], e;
|
|
50
|
+
switch (l.size) {
|
|
57
51
|
case "sm":
|
|
58
|
-
e =
|
|
52
|
+
e = [];
|
|
59
53
|
break;
|
|
60
54
|
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
|
-
|
|
55
|
+
e = [
|
|
56
|
+
"xs:max-sm:m-0",
|
|
57
|
+
"xs:max-sm:max-h-screen",
|
|
58
|
+
"xs:max-sm:h-screen",
|
|
59
|
+
"xs:max-sm:w-screen",
|
|
60
|
+
"xs:max-sm:max-w-screen-xl"
|
|
61
|
+
];
|
|
68
62
|
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
|
-
|
|
63
|
+
e = [
|
|
64
|
+
"xs:max-md:m-0",
|
|
65
|
+
"xs:max-md:max-h-screen",
|
|
66
|
+
"xs:max-md:h-screen",
|
|
67
|
+
"xs:max-md:w-screen",
|
|
68
|
+
"xs:max-md:max-w-screen-xl"
|
|
69
|
+
];
|
|
76
70
|
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
|
-
|
|
71
|
+
e = [
|
|
72
|
+
"xs:max-xl:m-0",
|
|
73
|
+
"xs:max-xl:max-h-screen",
|
|
74
|
+
"xs:max-xl:h-screen",
|
|
75
|
+
"xs:max-xl:w-screen",
|
|
76
|
+
"xs:max-xl:max-w-screen-xl"
|
|
77
|
+
];
|
|
84
78
|
break;
|
|
85
79
|
default:
|
|
86
|
-
e =
|
|
80
|
+
e = [];
|
|
87
81
|
break;
|
|
88
82
|
}
|
|
89
83
|
return e;
|
|
90
84
|
}), w = k(() => {
|
|
91
|
-
let e =
|
|
92
|
-
if (
|
|
93
|
-
return e["w-[480px]"
|
|
94
|
-
switch (
|
|
85
|
+
let e = [];
|
|
86
|
+
if (l.isDrawer)
|
|
87
|
+
return e = ["w-[480px]", "h-screen"], e;
|
|
88
|
+
switch (l.size) {
|
|
95
89
|
case "sm":
|
|
96
|
-
e =
|
|
97
|
-
"w-[320px]"
|
|
98
|
-
"min-h-[200px]"
|
|
99
|
-
"max-h-[432px]"
|
|
100
|
-
|
|
90
|
+
e = [
|
|
91
|
+
"w-[320px]",
|
|
92
|
+
"min-h-[200px]",
|
|
93
|
+
"max-h-[432px]"
|
|
94
|
+
];
|
|
101
95
|
break;
|
|
102
96
|
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
|
-
|
|
97
|
+
e = [
|
|
98
|
+
"w-screen sm:w-[480px]",
|
|
99
|
+
"min-h-[300px]",
|
|
100
|
+
"sm:max-h-[600px]",
|
|
101
|
+
"h-screen sm:h-auto"
|
|
102
|
+
];
|
|
109
103
|
break;
|
|
110
104
|
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
|
-
|
|
105
|
+
e = [
|
|
106
|
+
"w-screen md:w-[640px]",
|
|
107
|
+
"min-h-[300px]",
|
|
108
|
+
"md:max-h-[600px]",
|
|
109
|
+
"h-screen md:h-auto"
|
|
110
|
+
];
|
|
117
111
|
break;
|
|
118
112
|
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
|
-
|
|
113
|
+
e = [
|
|
114
|
+
"w-screen xl:w-[960px]",
|
|
115
|
+
"min-h-[400px]",
|
|
116
|
+
"xl:max-h-[600px]",
|
|
117
|
+
"h-screen xl:h-auto"
|
|
118
|
+
];
|
|
125
119
|
break;
|
|
126
120
|
}
|
|
127
121
|
return e;
|
|
128
122
|
});
|
|
129
|
-
return (e,
|
|
123
|
+
return (e, a) => (L(), M("dialog", {
|
|
130
124
|
ref_key: "dialog",
|
|
131
|
-
ref:
|
|
132
|
-
onClose:
|
|
133
|
-
class: x(p.value)
|
|
125
|
+
ref: o,
|
|
126
|
+
onClose: a[0] || (a[0] = (s) => t.value = !1),
|
|
127
|
+
class: x([h, p.value])
|
|
134
128
|
}, [
|
|
135
|
-
|
|
136
|
-
class: x([
|
|
129
|
+
r("div", {
|
|
130
|
+
class: x([u, w.value])
|
|
137
131
|
}, [
|
|
138
|
-
|
|
132
|
+
r("div", V, [
|
|
139
133
|
v(e.$slots, "header")
|
|
140
134
|
]),
|
|
141
|
-
|
|
135
|
+
r("div", I, [
|
|
142
136
|
v(e.$slots, "body")
|
|
143
137
|
]),
|
|
144
|
-
|
|
138
|
+
r("div", X, [
|
|
145
139
|
v(e.$slots, "footer")
|
|
146
140
|
])
|
|
147
141
|
], 2)
|
|
@@ -151,7 +145,7 @@ const V = { class: "flex items-center p-12 w-full border-b-1 border-grey-100" },
|
|
|
151
145
|
method: "dialog",
|
|
152
146
|
class: "w-full h-full"
|
|
153
147
|
}, q = /* @__PURE__ */ B({
|
|
154
|
-
__name: "
|
|
148
|
+
__name: "FzConfirmDialog",
|
|
155
149
|
props: {
|
|
156
150
|
size: { default: "md" },
|
|
157
151
|
title: {},
|
|
@@ -161,70 +155,70 @@ const V = { class: "flex items-center p-12 w-full border-b-1 border-grey-100" },
|
|
|
161
155
|
isDrawer: { type: Boolean }
|
|
162
156
|
},
|
|
163
157
|
emits: ["fzmodal:confirm", "fzmodal:cancel"],
|
|
164
|
-
setup(d, { expose: f, emit:
|
|
165
|
-
const
|
|
166
|
-
"h-32":
|
|
167
|
-
"h-28": !
|
|
168
|
-
})),
|
|
158
|
+
setup(d, { expose: f, emit: C }) {
|
|
159
|
+
const l = d, o = C, t = m(), n = m(!1), c = ["flex flex-row items-center text-xl grow"], u = k(() => ({
|
|
160
|
+
"h-32": l.isDrawer,
|
|
161
|
+
"h-28": !l.isDrawer
|
|
162
|
+
})), h = [
|
|
169
163
|
"flex flex-row items-center h-32 grow justify-end"
|
|
170
|
-
],
|
|
171
|
-
"h-32": !
|
|
172
|
-
"h-40":
|
|
164
|
+
], p = {
|
|
165
|
+
"h-32": !l.isDrawer,
|
|
166
|
+
"h-40": l.isDrawer
|
|
167
|
+
}, w = () => {
|
|
168
|
+
var s;
|
|
169
|
+
(s = t.value) == null || s.show(), n.value = !0;
|
|
173
170
|
}, 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");
|
|
171
|
+
var s;
|
|
172
|
+
(s = t.value) == null || s.close(), n.value = !1, o("fzmodal:cancel");
|
|
173
|
+
}, a = () => {
|
|
174
|
+
var s;
|
|
175
|
+
(s = t.value) == null || s.close(), n.value = !1, o("fzmodal:confirm");
|
|
182
176
|
};
|
|
183
177
|
return f({
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
visible:
|
|
187
|
-
show:
|
|
188
|
-
}), (
|
|
178
|
+
handleCancel: e,
|
|
179
|
+
handleConfirm: a,
|
|
180
|
+
visible: n,
|
|
181
|
+
show: w
|
|
182
|
+
}), (s, R) => (L(), S(Y, E(l, {
|
|
189
183
|
ref_key: "dialog",
|
|
190
|
-
ref:
|
|
184
|
+
ref: t
|
|
191
185
|
}), {
|
|
192
|
-
header:
|
|
193
|
-
|
|
194
|
-
class: x([
|
|
186
|
+
header: i(() => [
|
|
187
|
+
r("div", {
|
|
188
|
+
class: x([c, u.value])
|
|
195
189
|
}, [
|
|
196
|
-
|
|
190
|
+
r("div", j, g(s.title), 1),
|
|
197
191
|
b(_(N), {
|
|
198
|
-
onClick:
|
|
199
|
-
class: "
|
|
192
|
+
onClick: e,
|
|
193
|
+
class: "ml-12",
|
|
200
194
|
iconName: "xmark",
|
|
201
195
|
size: "sm",
|
|
202
196
|
variant: "invisible"
|
|
203
197
|
})
|
|
204
198
|
], 2)
|
|
205
199
|
]),
|
|
206
|
-
footer:
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
class: x([
|
|
200
|
+
footer: i(() => [
|
|
201
|
+
r("form", P, [
|
|
202
|
+
r("div", {
|
|
203
|
+
class: x([h, p])
|
|
210
204
|
}, [
|
|
211
205
|
b(_(y), {
|
|
212
206
|
variant: "invisible",
|
|
213
|
-
onClick:
|
|
207
|
+
onClick: z(e, ["prevent"]),
|
|
214
208
|
value: "false"
|
|
215
209
|
}, {
|
|
216
|
-
default:
|
|
217
|
-
D(g(
|
|
210
|
+
default: i(() => [
|
|
211
|
+
D(g(s.cancelLabel), 1)
|
|
218
212
|
]),
|
|
219
213
|
_: 1
|
|
220
214
|
}),
|
|
221
215
|
b(_(y), {
|
|
222
216
|
class: "ml-12",
|
|
223
|
-
onClick:
|
|
217
|
+
onClick: z(a, ["prevent"]),
|
|
224
218
|
value: "true"
|
|
225
219
|
}, {
|
|
226
|
-
default:
|
|
227
|
-
D(g(
|
|
220
|
+
default: i(() => [
|
|
221
|
+
D(g(s.confirmLabel), 1)
|
|
228
222
|
]),
|
|
229
223
|
_: 1
|
|
230
224
|
})
|
|
@@ -236,6 +230,6 @@ const V = { class: "flex items-center p-12 w-full border-b-1 border-grey-100" },
|
|
|
236
230
|
}
|
|
237
231
|
});
|
|
238
232
|
export {
|
|
239
|
-
|
|
240
|
-
|
|
233
|
+
q as FzConfirmDialog,
|
|
234
|
+
Y as FzDialog
|
|
241
235
|
};
|
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,m){"use strict";const b={class:"flex items-center p-12 w-full border-b-1 border-grey-100"},C={class:"grow"},z={class:"flex flex-row p-12 border-t-1 border-grey-100 items-center"},g=e.defineComponent({__name:"FzDialog",props:{size:{default:"md"},title:{},confirmLabel:{},cancelLabel:{},text:{},isDrawer:{type:Boolean}},emits:["confirm","cancel"],setup(d,{expose:x,emit:u}){const a=d,l=e.ref(),n=e.ref(!1);x({show:()=>{l.value.showModal(),n.value=!0},close:s=>l.value.close(s),visible:n});const c=s=>{var o=l.value.getBoundingClientRect(),t=o.top<=s.clientY&&s.clientY<=o.top+o.height&&o.left<=s.clientX&&s.clientX<=o.left+o.width;t||l.value.close()};e.onMounted(()=>{l.value.addEventListener("click",c)}),e.onUnmounted(()=>{l.value.removeEventListener("click",c)});const f=["flex","flex-col","bg-core-white"],h={"border-1":!0,rounded:!0,"border-grey-100":!0},p=e.computed(()=>{let s=[];if(a.isDrawer)return s=["m-0","fixed","top-0","ml-auto","max-h-screen"],s;switch(a.size){case"sm":s=[];break;case"md":s=["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"];case"lg":s=["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"];case"xl":s=["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:s=[];break}return s}),w=e.computed(()=>{let s=[];if(a.isDrawer)return s=["w-[480px]","h-screen"],s;switch(a.size){case"sm":s=["w-[320px]","min-h-[200px]","max-h-[432px]"];break;case"md":s=["w-screen sm:w-[480px]","min-h-[300px]","sm:max-h-[600px]","h-screen sm:h-auto"];break;case"lg":s=["w-screen md:w-[640px]","min-h-[300px]","md:max-h-[600px]","h-screen md:h-auto"];break;case"xl":s=["w-screen xl:w-[960px]","min-h-[400px]","xl:max-h-[600px]","h-screen xl:h-auto"];break}return s});return(s,o)=>(e.openBlock(),e.createElementBlock("dialog",{ref_key:"dialog",ref:l,onClose:o[0]||(o[0]=t=>n.value=!1),class:e.normalizeClass([h,p.value])},[e.createElementVNode("div",{class:e.normalizeClass([f,w.value])},[e.createElementVNode("div",b,[e.renderSlot(s.$slots,"header")]),e.createElementVNode("div",C,[e.renderSlot(s.$slots,"body")]),e.createElementVNode("div",z,[e.renderSlot(s.$slots,"footer")])],2)],34))}}),k={class:"grow h-28 font-medium"},_={method:"dialog",class:"w-full h-full"},D=e.defineComponent({__name:"FzConfirmDialog",props:{size:{default:"md"},title:{},confirmLabel:{},cancelLabel:{},text:{},isDrawer:{type:Boolean}},emits:["fzmodal:confirm","fzmodal:cancel"],setup(d,{expose:x,emit:u}){const a=d,l=u,n=e.ref(),i=e.ref(!1),c=["flex flex-row items-center text-xl grow"],f=e.computed(()=>({"h-32":a.isDrawer,"h-28":!a.isDrawer})),h=["flex flex-row items-center h-32 grow justify-end"],p={"h-32":!a.isDrawer,"h-40":a.isDrawer},w=()=>{var t;(t=n.value)==null||t.show(),i.value=!0},s=()=>{var t;(t=n.value)==null||t.close(),i.value=!1,l("fzmodal:cancel")},o=()=>{var t;(t=n.value)==null||t.close(),i.value=!1,l("fzmodal:confirm")};return x({handleCancel:s,handleConfirm:o,visible:i,show:w}),(t,y)=>(e.openBlock(),e.createBlock(g,e.mergeProps(a,{ref_key:"dialog",ref:n}),{header:e.withCtx(()=>[e.createElementVNode("div",{class:e.normalizeClass([c,f.value])},[e.createElementVNode("div",k,e.toDisplayString(t.title),1),e.createVNode(e.unref(m.FzIconButton),{onClick:s,class:"ml-12",iconName:"xmark",size:"sm",variant:"invisible"})],2)]),footer:e.withCtx(()=>[e.createElementVNode("form",_,[e.createElementVNode("div",{class:e.normalizeClass([h,p])},[e.createVNode(e.unref(m.FzButton),{variant:"invisible",onClick:e.withModifiers(s,["prevent"]),value:"false"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.cancelLabel),1)]),_:1}),e.createVNode(e.unref(m.FzButton),{class:"ml-12",onClick:e.withModifiers(o,["prevent"]),value:"true"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.confirmLabel),1)]),_:1})],2)])]),_:1},16))}});r.FzConfirmDialog=D,r.FzDialog=g,Object.defineProperty(r,Symbol.toStringTag,{value:"Module"})});
|
|
@@ -3,8 +3,8 @@ import { FzDialogProps } from './types';
|
|
|
3
3
|
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FzDialogProps>, {
|
|
4
4
|
size: string;
|
|
5
5
|
}>, {
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
handleCancel: () => void;
|
|
7
|
+
handleConfirm: () => void;
|
|
8
8
|
visible: import('vue').Ref<boolean>;
|
|
9
9
|
show: () => void;
|
|
10
10
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -7,13 +7,13 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
|
7
7
|
close: (returnVal?: string | undefined) => void;
|
|
8
8
|
visible: import('vue').Ref<boolean>;
|
|
9
9
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
|
-
confirm: (...args: any[]) => void;
|
|
11
10
|
cancel: (...args: any[]) => void;
|
|
11
|
+
confirm: (...args: any[]) => void;
|
|
12
12
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FzDialogProps>, {
|
|
13
13
|
size: string;
|
|
14
14
|
}>>> & {
|
|
15
|
-
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
16
15
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
16
|
+
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
17
17
|
}, {
|
|
18
18
|
size: import('./types').FzDialogSizes;
|
|
19
19
|
}, {}>, {
|
package/dist/src/index.d.ts
CHANGED
package/dist/src/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fiscozen/dialog",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Design System Dialog component",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"peerDependencies": {
|
|
10
10
|
"tailwindcss": "^3.4.1",
|
|
11
11
|
"vue": "^3.4.13",
|
|
12
|
-
"@fiscozen/button": "^0.1.
|
|
13
|
-
"@fiscozen/style": "^0.1.
|
|
12
|
+
"@fiscozen/button": "^0.1.6",
|
|
13
|
+
"@fiscozen/style": "^0.1.1"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@rushstack/eslint-patch": "^1.3.3",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"vue-tsc": "^1.8.25",
|
|
31
31
|
"@fortawesome/fontawesome-svg-core": "^6.5.1",
|
|
32
32
|
"@fortawesome/vue-fontawesome": "^3.0.6",
|
|
33
|
-
"@fiscozen/eslint-config": "^0.1.0",
|
|
34
33
|
"@fiscozen/prettier-config": "^0.1.0",
|
|
34
|
+
"@fiscozen/eslint-config": "^0.1.0",
|
|
35
35
|
"@fiscozen/tsconfig": "^0.1.0"
|
|
36
36
|
},
|
|
37
37
|
"license": "MIT",
|
package/src/FzConfirmDialog.vue
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<FzIconButton
|
|
8
8
|
@click="handleCancel"
|
|
9
9
|
class="ml-12"
|
|
10
|
-
iconName="xmark"
|
|
10
|
+
iconName="xmark-large"
|
|
11
11
|
size="sm"
|
|
12
12
|
variant="invisible"
|
|
13
13
|
></FzIconButton>
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
@click.prevent="handleConfirm"
|
|
38
38
|
:disabled="disableConfirm"
|
|
39
39
|
value="true"
|
|
40
|
+
:variant="confirmButtonVariant"
|
|
40
41
|
>
|
|
41
42
|
{{ confirmLabel }}
|
|
42
43
|
</FzButton>
|
package/src/FzDialog.vue
CHANGED
|
@@ -56,14 +56,14 @@ const handleBackdropClick = (event: MouseEvent) => {
|
|
|
56
56
|
event.clientX <= rect.left + rect.width;
|
|
57
57
|
if (!isInDialog && props.closeOnBackdrop) {
|
|
58
58
|
dialog.value!.close();
|
|
59
|
-
emit(
|
|
59
|
+
emit("cancel");
|
|
60
60
|
}
|
|
61
61
|
};
|
|
62
62
|
onMounted(() => {
|
|
63
|
-
dialog.value
|
|
63
|
+
dialog.value?.addEventListener("click", handleBackdropClick);
|
|
64
64
|
});
|
|
65
65
|
onUnmounted(() => {
|
|
66
|
-
dialog.value
|
|
66
|
+
dialog.value?.removeEventListener("click", handleBackdropClick);
|
|
67
67
|
});
|
|
68
68
|
|
|
69
69
|
const staticClasses = ["flex", "flex-col", "bg-core-white"];
|
|
@@ -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="truncate">
|
|
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="truncate">
|
|
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="truncate">
|
|
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="truncate">
|
|
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="truncate">
|
|
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="truncate">
|
|
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/@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/types.ts","./src/fzdialog.vue.ts","./src/fzconfirmdialog.vue.ts","./__vls_types.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",{"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":[[73,77],244],"options":{"composite":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noImplicitThis":true,"skipLibCheck":true,"strict":true,"target":99,"useDefineForClassFields":true},"fileIdsList":[[52,61,62,63],[62,63],[53],[60],[58,61,63],[99],[110],[146],[147,152,180],[148,159,160,167,177,188],[148,149,159,167],[150,189],[151,152,160,168],[152,177,185],[153,155,159,167],[146,154],[155,156],[159],[157,159],[146,159],[159,160,161,177,188],[159,160,161,174,177,180],[144,193],[155,159,162,167,177,188],[159,160,162,163,167,177,185,188],[162,164,177,185,188],[110,111,145,146,147,148,149,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],[159,165],[166,188,193],[155,159,167,177],[168],[169],[146,170],[171,187,193],[172],[173],[159,174,175],[174,176,189,191],[147,159,177,178,179,180],[147,177,179],[177,178],[180],[181],[146,177],[159,183,184],[183,184],[152,167,177,185],[186],[167,187],[147,162,173,188],[152,189],[177,190],[166,191],[192],[147,152,159,161,170,177,188,191,193],[177,194],[102,105],[232],[102,103,105,106,107],[102],[102,103,105],[102,103],[228],[101,228],[101,228,229],[101,104],[97],[97,98,101],[101],[47,53,54,55],[56],[47],[47,48,49,51],[48,49,50],[58,78,79,80,81,82,84],[58],[80,81,84,91],[78],[58,80,83],[80,81,83,84,86,87,88,89,92,93,94],[58,78,79,80,81,84],[58,80,81,85],[58,80,86],[58,81],[58,90],[58,80,83,84],[217],[215,217],[206,214,215,216,218],[204],[207,212,217,220],[203,220],[207,208,211,212,213,220],[207,208,209,211,212,220],[204,205,206,207,208,212,213,214,216,217,218,220],[220],[55,204,205,206,207,208,209,211,212,213,214,215,216,217,218,219],[55,220],[207,209,210,212,213,220],[211,220],[212,213,217,220],[205,215],[100],[198,223],[197],[55],[121,125,188],[121,177,188],[116],[118,121,185,188],[167,185],[196],[116,196],[118,121,167,188],[113,114,117,120,147,159,177,188],[113,119],[117,121,147,180,188,196],[147,196],[137,147,196],[115,116,196],[121],[115,116,117,118,119,120,121,122,123,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143],[121,128,129],[119,121,129,130],[120],[113,116,121],[121,125,129,130],[125],[119,121,124,188],[113,118,119,121,125,128],[147,177],[116,121,137,147,193,196],[225,226],[225],[224,225,226,238],[159,160,162,163,164,167,177,185,188,194,196,198,199,200,201,202,221,222,223],[200],[198],[102,108,109,160,193,224,227,230,231,233,234,235,236,237,238],[102,105,108,109,160,193,224,227,230,231,233,234,235,236,237,238,239,240,241,242],[108,109,234,238],[51,57],[51],[52,58,59,68,69],[52,58,59,68,69,70],[52,59,70,71],[52],[52,59,68],[52,58],[52,77,95,96,243],[52,58,72,73,74],[52,58,73],[52,73,74,75],[52,58,64,65,66],[52,58,61,63,64,66,67]],"referencedMap":[[63,1],[64,2],[54,3],[61,4],[65,5],[100,6],[110,7],[111,7],[146,8],[147,9],[148,10],[149,11],[150,12],[151,13],[152,14],[153,15],[154,16],[155,17],[156,17],[158,18],[157,19],[159,20],[160,21],[161,22],[145,23],[162,24],[163,25],[164,26],[196,27],[165,28],[166,29],[167,30],[168,31],[169,32],[170,33],[171,34],[172,35],[173,36],[174,37],[175,37],[176,38],[177,39],[179,40],[178,41],[180,42],[181,43],[182,44],[183,45],[184,46],[185,47],[186,48],[187,49],[188,50],[189,51],[190,52],[191,53],[192,54],[193,55],[194,56],[232,57],[233,58],[108,59],[103,60],[106,61],[109,62],[241,63],[229,64],[230,65],[236,65],[105,66],[107,66],[98,67],[102,68],[104,69],[56,70],[57,71],[48,72],[49,73],[51,74],[83,75],[88,76],[92,77],[79,78],[84,79],[95,80],[82,81],[86,82],[87,83],[80,76],[94,84],[91,85],[90,76],[81,86],[218,87],[216,88],[217,89],[205,90],[206,88],[213,91],[204,92],[209,93],[210,94],[215,95],[221,96],[220,97],[203,98],[211,99],[212,100],[207,101],[214,87],[208,102],[101,103],[199,104],[198,105],[55,106],[128,107],[135,108],[127,107],[142,109],[119,110],[118,111],[141,112],[136,113],[139,114],[121,115],[120,116],[116,117],[115,118],[138,119],[117,120],[122,121],[126,121],[144,122],[143,121],[130,123],[131,124],[133,125],[129,126],[132,127],[137,112],[124,128],[125,129],[134,130],[114,131],[140,132],[235,133],[226,134],[227,133],[237,135],[224,136],[201,137],[223,138],[242,139],[243,140],[238,139],[239,141],[58,142],[52,143],[70,144],[71,145],[72,146],[59,147],[69,148],[76,149],[244,150],[75,151],[74,152],[77,153],[73,147],[67,154],[68,155],[66,147]],"exportedModulesMap":[[63,1],[64,2],[54,3],[61,4],[65,5],[100,6],[110,7],[111,7],[146,8],[147,9],[148,10],[149,11],[150,12],[151,13],[152,14],[153,15],[154,16],[155,17],[156,17],[158,18],[157,19],[159,20],[160,21],[161,22],[145,23],[162,24],[163,25],[164,26],[196,27],[165,28],[166,29],[167,30],[168,31],[169,32],[170,33],[171,34],[172,35],[173,36],[174,37],[175,37],[176,38],[177,39],[179,40],[178,41],[180,42],[181,43],[182,44],[183,45],[184,46],[185,47],[186,48],[187,49],[188,50],[189,51],[190,52],[191,53],[192,54],[193,55],[194,56],[232,57],[233,58],[108,59],[103,60],[106,61],[109,62],[241,63],[229,64],[230,65],[236,65],[105,66],[107,66],[98,67],[102,68],[104,69],[56,70],[57,71],[48,72],[49,73],[51,74],[83,75],[88,76],[92,77],[79,78],[84,79],[95,80],[82,81],[86,82],[87,83],[80,76],[94,84],[91,85],[90,76],[81,86],[218,87],[216,88],[217,89],[205,90],[206,88],[213,91],[204,92],[209,93],[210,94],[215,95],[221,96],[220,97],[203,98],[211,99],[212,100],[207,101],[214,87],[208,102],[101,103],[199,104],[198,105],[55,106],[128,107],[135,108],[127,107],[142,109],[119,110],[118,111],[141,112],[136,113],[139,114],[121,115],[120,116],[116,117],[115,118],[138,119],[117,120],[122,121],[126,121],[144,122],[143,121],[130,123],[131,124],[133,125],[129,126],[132,127],[137,112],[124,128],[125,129],[134,130],[114,131],[140,132],[235,133],[226,134],[227,133],[237,135],[224,136],[201,137],[223,138],[242,139],[243,140],[238,139],[239,141],[58,142],[52,143],[70,144],[71,145],[72,146],[59,147],[69,148],[76,149],[244,150],[75,151],[74,152],[77,153],[73,147],[67,154],[68,155],[66,147]],"semanticDiagnosticsPerFile":[63,64,54,53,60,62,61,65,100,99,197,110,111,146,147,148,149,150,151,152,153,154,155,156,158,157,159,160,161,145,195,162,163,164,196,165,166,167,168,169,170,171,172,173,174,175,176,177,179,178,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,231,232,233,108,103,106,109,228,241,229,230,236,240,105,107,98,102,104,97,56,57,48,49,51,47,83,88,92,78,79,84,89,95,82,86,87,80,94,93,91,90,81,112,50,202,218,216,217,205,206,213,204,209,219,210,215,221,220,203,211,212,207,214,208,101,199,198,55,234,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,128,135,127,142,119,118,141,136,139,121,120,116,115,138,117,122,123,126,113,144,143,130,131,133,129,132,137,124,125,134,114,140,235,226,227,237,225,224,201,200,222,223,242,243,238,239,85,58,52,70,71,72,59,69,76,244,75,74,77,73,67,68,66,96],"affectedFilesPendingEmit":[244,75,74,77,73],"emitSignatures":[73,74,75,77,244]},"version":"5.3.3"}
|