@fiscozen/dialog 0.1.10 → 0.1.12-dynamicview.0
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/package.json +3 -3
- package/src/FzDialog.vue +54 -36
- package/dist/dialog.js +0 -235
- package/dist/dialog.umd.cjs +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/src/FzConfirmDialog.vue.d.ts +0 -38
- package/dist/src/FzDialog.vue.d.ts +0 -46
- package/dist/src/__test__/FzDialog.test.d.ts +0 -1
- package/dist/src/index.d.ts +0 -3
- package/dist/src/types.d.ts +0 -27
- package/dist/style.css +0 -1
- package/tsconfig.tsbuildinfo +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fiscozen/dialog",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12-dynamicview.0",
|
|
4
4
|
"description": "Design System Dialog component",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"peerDependencies": {
|
|
10
10
|
"tailwindcss": "^3.4.1",
|
|
11
11
|
"vue": "^3.4.13",
|
|
12
|
-
"@fiscozen/composables": "^0.1.
|
|
12
|
+
"@fiscozen/composables": "^0.1.25",
|
|
13
13
|
"@fiscozen/button": "^0.1.6",
|
|
14
14
|
"@fiscozen/style": "^0.1.1"
|
|
15
15
|
},
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"license": "MIT",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@fiscozen/composables": "^0.1.
|
|
40
|
+
"@fiscozen/composables": "^0.1.25"
|
|
41
41
|
},
|
|
42
42
|
"scripts": {
|
|
43
43
|
"coverage": "vitest run --coverage",
|
package/src/FzDialog.vue
CHANGED
|
@@ -1,26 +1,31 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
3
|
-
ref="
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
<div
|
|
3
|
+
ref="backdrop"
|
|
4
|
+
v-show="visible"
|
|
5
|
+
class="fz-dialog__backdrop w-screen h-screen fixed flex flex-col items-center justify-center z-30">
|
|
6
|
+
<dialog
|
|
7
|
+
ref="dialog"
|
|
8
|
+
@close="visible = false"
|
|
9
|
+
:class="[dialogStaticClasses, dialogClasses]"
|
|
10
|
+
>
|
|
11
|
+
<div ref="innerDialog" :class="[staticClasses, classes]">
|
|
12
|
+
<div
|
|
13
|
+
class="flex items-center p-12 w-full border-b-1 border-grey-100 border-solid"
|
|
14
|
+
>
|
|
15
|
+
<slot name="header"></slot>
|
|
16
|
+
</div>
|
|
17
|
+
<div :class="['grow', 'p-12', bodyClasses]">
|
|
18
|
+
<slot name="body"></slot>
|
|
19
|
+
</div>
|
|
20
|
+
<div
|
|
21
|
+
v-if="$slots.footer"
|
|
22
|
+
class="flex flex-row p-12 border-t-1 border-grey-100 items-center border-solid"
|
|
23
|
+
>
|
|
24
|
+
<slot name="footer"></slot>
|
|
25
|
+
</div>
|
|
12
26
|
</div>
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
</div>
|
|
16
|
-
<div
|
|
17
|
-
v-if="$slots.footer"
|
|
18
|
-
class="flex flex-row p-12 border-t-1 border-grey-100 items-center border-solid"
|
|
19
|
-
>
|
|
20
|
-
<slot name="footer"></slot>
|
|
21
|
-
</div>
|
|
22
|
-
</div>
|
|
23
|
-
</dialog>
|
|
27
|
+
</dialog>
|
|
28
|
+
</div>
|
|
24
29
|
</template>
|
|
25
30
|
|
|
26
31
|
<script setup lang="ts">
|
|
@@ -36,11 +41,18 @@ const props = withDefaults(defineProps<FzDialogProps>(), {
|
|
|
36
41
|
const emit = defineEmits(["fzmodal:cancel"]);
|
|
37
42
|
|
|
38
43
|
const dialog = ref<HTMLDialogElement>();
|
|
44
|
+
const backdrop = ref<HTMLDialogElement>();
|
|
39
45
|
const innerDialog = ref<HTMLDivElement>();
|
|
40
46
|
const visible = ref(false);
|
|
41
47
|
|
|
48
|
+
let backdropClickTimeout = false;
|
|
49
|
+
|
|
42
50
|
const showModal = () => {
|
|
43
|
-
|
|
51
|
+
backdropClickTimeout = true;
|
|
52
|
+
setTimeout(() => {
|
|
53
|
+
backdropClickTimeout = false;
|
|
54
|
+
}, 100)
|
|
55
|
+
dialog.value!.show();
|
|
44
56
|
visible.value = true;
|
|
45
57
|
};
|
|
46
58
|
|
|
@@ -57,13 +69,14 @@ useClickOutside(
|
|
|
57
69
|
dialog.value!.close();
|
|
58
70
|
emit("fzmodal:cancel");
|
|
59
71
|
},
|
|
60
|
-
|
|
72
|
+
backdrop,
|
|
61
73
|
);
|
|
62
74
|
|
|
63
75
|
const handleKeyUp = (e: KeyboardEvent) => {
|
|
64
76
|
if (!visible.value || e.key !== "Escape") {
|
|
65
77
|
return;
|
|
66
78
|
}
|
|
79
|
+
dialog.value!.close();
|
|
67
80
|
emit("fzmodal:cancel");
|
|
68
81
|
};
|
|
69
82
|
|
|
@@ -91,8 +104,8 @@ const dialogClasses = computed(() => {
|
|
|
91
104
|
res = [
|
|
92
105
|
"xs:max-sm:m-0",
|
|
93
106
|
"xs:max-sm:max-h-screen",
|
|
94
|
-
"xs:max-sm:h-
|
|
95
|
-
"xs:max-sm:w-
|
|
107
|
+
"xs:max-sm:h-dvh",
|
|
108
|
+
"xs:max-sm:w-dvw",
|
|
96
109
|
"xs:max-sm:max-w-screen-xl",
|
|
97
110
|
];
|
|
98
111
|
break;
|
|
@@ -100,8 +113,8 @@ const dialogClasses = computed(() => {
|
|
|
100
113
|
res = [
|
|
101
114
|
"xs:max-md:m-0",
|
|
102
115
|
"xs:max-md:max-h-screen",
|
|
103
|
-
"xs:max-md:h-
|
|
104
|
-
"xs:max-md:w-
|
|
116
|
+
"xs:max-md:h-dvh",
|
|
117
|
+
"xs:max-md:w-dvw",
|
|
105
118
|
"xs:max-md:max-w-screen-xl",
|
|
106
119
|
];
|
|
107
120
|
break;
|
|
@@ -109,8 +122,8 @@ const dialogClasses = computed(() => {
|
|
|
109
122
|
res = [
|
|
110
123
|
"xs:max-xl:m-0",
|
|
111
124
|
"xs:max-xl:max-h-screen",
|
|
112
|
-
"xs:max-xl:h-
|
|
113
|
-
"xs:max-xl:w-
|
|
125
|
+
"xs:max-xl:h-dvh",
|
|
126
|
+
"xs:max-xl:w-dvw",
|
|
114
127
|
"xs:max-xl:max-w-screen-xl",
|
|
115
128
|
];
|
|
116
129
|
break;
|
|
@@ -124,7 +137,7 @@ const dialogClasses = computed(() => {
|
|
|
124
137
|
const classes = computed(() => {
|
|
125
138
|
let res: string[] = [];
|
|
126
139
|
if (props.isDrawer) {
|
|
127
|
-
res = ["w-[480px]", "h-
|
|
140
|
+
res = ["w-[480px]", "h-dvh"];
|
|
128
141
|
return res;
|
|
129
142
|
}
|
|
130
143
|
switch (props.size) {
|
|
@@ -133,26 +146,26 @@ const classes = computed(() => {
|
|
|
133
146
|
break;
|
|
134
147
|
case "md":
|
|
135
148
|
res = [
|
|
136
|
-
"w-
|
|
149
|
+
"w-dvw sm:w-[480px]",
|
|
137
150
|
"min-h-[300px]",
|
|
138
151
|
"sm:max-h-[600px]",
|
|
139
|
-
"h-
|
|
152
|
+
"h-dvh sm:h-auto",
|
|
140
153
|
];
|
|
141
154
|
break;
|
|
142
155
|
case "lg":
|
|
143
156
|
res = [
|
|
144
|
-
"w-
|
|
157
|
+
"w-dvw md:w-[640px]",
|
|
145
158
|
"min-h-[300px]",
|
|
146
159
|
"md:max-h-[600px]",
|
|
147
|
-
"h-
|
|
160
|
+
"h-dvh md:h-auto",
|
|
148
161
|
];
|
|
149
162
|
break;
|
|
150
163
|
case "xl":
|
|
151
164
|
res = [
|
|
152
|
-
"w-
|
|
165
|
+
"w-dvw xl:w-[960px]",
|
|
153
166
|
"min-h-[400px]",
|
|
154
167
|
"xl:max-h-[600px]",
|
|
155
|
-
"h-
|
|
168
|
+
"h-dvh xl:h-auto",
|
|
156
169
|
];
|
|
157
170
|
break;
|
|
158
171
|
default:
|
|
@@ -167,4 +180,9 @@ dialog::backdrop {
|
|
|
167
180
|
background: var(--core-black, #2c282f);
|
|
168
181
|
opacity: 0.8;
|
|
169
182
|
}
|
|
183
|
+
.fz-dialog__backdrop {
|
|
184
|
+
background-color: rgba(44, 40, 47, 0.8);
|
|
185
|
+
top: 0;
|
|
186
|
+
left: 0;
|
|
187
|
+
}
|
|
170
188
|
</style>
|
package/dist/dialog.js
DELETED
|
@@ -1,235 +0,0 @@
|
|
|
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
|
-
import { FzIconButton as N, FzButton as y } from "@fiscozen/button";
|
|
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
|
-
__name: "FzDialog",
|
|
5
|
-
props: {
|
|
6
|
-
size: { default: "md" },
|
|
7
|
-
title: {},
|
|
8
|
-
confirmLabel: {},
|
|
9
|
-
cancelLabel: {},
|
|
10
|
-
text: {},
|
|
11
|
-
isDrawer: { type: Boolean }
|
|
12
|
-
},
|
|
13
|
-
emits: ["confirm", "cancel"],
|
|
14
|
-
setup(d, { expose: f, emit: C }) {
|
|
15
|
-
const l = d, o = m(), t = m(!1);
|
|
16
|
-
f({
|
|
17
|
-
show: () => {
|
|
18
|
-
o.value.showModal(), t.value = !0;
|
|
19
|
-
},
|
|
20
|
-
close: (e) => o.value.close(e),
|
|
21
|
-
visible: t
|
|
22
|
-
});
|
|
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();
|
|
26
|
-
};
|
|
27
|
-
$(() => {
|
|
28
|
-
o.value.addEventListener("click", c);
|
|
29
|
-
}), F(() => {
|
|
30
|
-
o.value.removeEventListener("click", c);
|
|
31
|
-
});
|
|
32
|
-
const u = [
|
|
33
|
-
"flex",
|
|
34
|
-
"flex-col",
|
|
35
|
-
"bg-core-white"
|
|
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) {
|
|
51
|
-
case "sm":
|
|
52
|
-
e = [];
|
|
53
|
-
break;
|
|
54
|
-
case "md":
|
|
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
|
-
];
|
|
62
|
-
case "lg":
|
|
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
|
-
];
|
|
70
|
-
case "xl":
|
|
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
|
-
];
|
|
78
|
-
break;
|
|
79
|
-
default:
|
|
80
|
-
e = [];
|
|
81
|
-
break;
|
|
82
|
-
}
|
|
83
|
-
return e;
|
|
84
|
-
}), w = k(() => {
|
|
85
|
-
let e = [];
|
|
86
|
-
if (l.isDrawer)
|
|
87
|
-
return e = ["w-[480px]", "h-screen"], e;
|
|
88
|
-
switch (l.size) {
|
|
89
|
-
case "sm":
|
|
90
|
-
e = [
|
|
91
|
-
"w-[320px]",
|
|
92
|
-
"min-h-[200px]",
|
|
93
|
-
"max-h-[432px]"
|
|
94
|
-
];
|
|
95
|
-
break;
|
|
96
|
-
case "md":
|
|
97
|
-
e = [
|
|
98
|
-
"w-screen sm:w-[480px]",
|
|
99
|
-
"min-h-[300px]",
|
|
100
|
-
"sm:max-h-[600px]",
|
|
101
|
-
"h-screen sm:h-auto"
|
|
102
|
-
];
|
|
103
|
-
break;
|
|
104
|
-
case "lg":
|
|
105
|
-
e = [
|
|
106
|
-
"w-screen md:w-[640px]",
|
|
107
|
-
"min-h-[300px]",
|
|
108
|
-
"md:max-h-[600px]",
|
|
109
|
-
"h-screen md:h-auto"
|
|
110
|
-
];
|
|
111
|
-
break;
|
|
112
|
-
case "xl":
|
|
113
|
-
e = [
|
|
114
|
-
"w-screen xl:w-[960px]",
|
|
115
|
-
"min-h-[400px]",
|
|
116
|
-
"xl:max-h-[600px]",
|
|
117
|
-
"h-screen xl:h-auto"
|
|
118
|
-
];
|
|
119
|
-
break;
|
|
120
|
-
}
|
|
121
|
-
return e;
|
|
122
|
-
});
|
|
123
|
-
return (e, a) => (L(), M("dialog", {
|
|
124
|
-
ref_key: "dialog",
|
|
125
|
-
ref: o,
|
|
126
|
-
onClose: a[0] || (a[0] = (s) => t.value = !1),
|
|
127
|
-
class: x([h, p.value])
|
|
128
|
-
}, [
|
|
129
|
-
r("div", {
|
|
130
|
-
class: x([u, w.value])
|
|
131
|
-
}, [
|
|
132
|
-
r("div", V, [
|
|
133
|
-
v(e.$slots, "header")
|
|
134
|
-
]),
|
|
135
|
-
r("div", I, [
|
|
136
|
-
v(e.$slots, "body")
|
|
137
|
-
]),
|
|
138
|
-
r("div", X, [
|
|
139
|
-
v(e.$slots, "footer")
|
|
140
|
-
])
|
|
141
|
-
], 2)
|
|
142
|
-
], 34));
|
|
143
|
-
}
|
|
144
|
-
}), j = { class: "grow h-28 font-medium" }, P = {
|
|
145
|
-
method: "dialog",
|
|
146
|
-
class: "w-full h-full"
|
|
147
|
-
}, q = /* @__PURE__ */ B({
|
|
148
|
-
__name: "FzConfirmDialog",
|
|
149
|
-
props: {
|
|
150
|
-
size: { default: "md" },
|
|
151
|
-
title: {},
|
|
152
|
-
confirmLabel: {},
|
|
153
|
-
cancelLabel: {},
|
|
154
|
-
text: {},
|
|
155
|
-
isDrawer: { type: Boolean }
|
|
156
|
-
},
|
|
157
|
-
emits: ["fzmodal:confirm", "fzmodal:cancel"],
|
|
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 = [
|
|
163
|
-
"flex flex-row items-center h-32 grow justify-end"
|
|
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;
|
|
170
|
-
}, e = () => {
|
|
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");
|
|
176
|
-
};
|
|
177
|
-
return f({
|
|
178
|
-
handleCancel: e,
|
|
179
|
-
handleConfirm: a,
|
|
180
|
-
visible: n,
|
|
181
|
-
show: w
|
|
182
|
-
}), (s, R) => (L(), S(Y, E(l, {
|
|
183
|
-
ref_key: "dialog",
|
|
184
|
-
ref: t
|
|
185
|
-
}), {
|
|
186
|
-
header: i(() => [
|
|
187
|
-
r("div", {
|
|
188
|
-
class: x([c, u.value])
|
|
189
|
-
}, [
|
|
190
|
-
r("div", j, g(s.title), 1),
|
|
191
|
-
b(_(N), {
|
|
192
|
-
onClick: e,
|
|
193
|
-
class: "ml-12",
|
|
194
|
-
iconName: "xmark",
|
|
195
|
-
size: "sm",
|
|
196
|
-
variant: "invisible"
|
|
197
|
-
})
|
|
198
|
-
], 2)
|
|
199
|
-
]),
|
|
200
|
-
footer: i(() => [
|
|
201
|
-
r("form", P, [
|
|
202
|
-
r("div", {
|
|
203
|
-
class: x([h, p])
|
|
204
|
-
}, [
|
|
205
|
-
b(_(y), {
|
|
206
|
-
variant: "invisible",
|
|
207
|
-
onClick: z(e, ["prevent"]),
|
|
208
|
-
value: "false"
|
|
209
|
-
}, {
|
|
210
|
-
default: i(() => [
|
|
211
|
-
D(g(s.cancelLabel), 1)
|
|
212
|
-
]),
|
|
213
|
-
_: 1
|
|
214
|
-
}),
|
|
215
|
-
b(_(y), {
|
|
216
|
-
class: "ml-12",
|
|
217
|
-
onClick: z(a, ["prevent"]),
|
|
218
|
-
value: "true"
|
|
219
|
-
}, {
|
|
220
|
-
default: i(() => [
|
|
221
|
-
D(g(s.confirmLabel), 1)
|
|
222
|
-
]),
|
|
223
|
-
_: 1
|
|
224
|
-
})
|
|
225
|
-
], 2)
|
|
226
|
-
])
|
|
227
|
-
]),
|
|
228
|
-
_: 1
|
|
229
|
-
}, 16));
|
|
230
|
-
}
|
|
231
|
-
});
|
|
232
|
-
export {
|
|
233
|
-
q as FzConfirmDialog,
|
|
234
|
-
Y as FzDialog
|
|
235
|
-
};
|
package/dist/dialog.umd.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
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"})});
|
package/dist/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './src/index'
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { FzDialogProps } from './types';
|
|
2
|
-
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FzDialogProps>, {
|
|
4
|
-
size: string;
|
|
5
|
-
}>, {
|
|
6
|
-
handleCancel: () => void;
|
|
7
|
-
handleConfirm: () => void;
|
|
8
|
-
visible: import('vue').Ref<boolean>;
|
|
9
|
-
show: () => void;
|
|
10
|
-
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
-
"fzmodal:confirm": (...args: any[]) => void;
|
|
12
|
-
"fzmodal:cancel": (...args: any[]) => void;
|
|
13
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FzDialogProps>, {
|
|
14
|
-
size: string;
|
|
15
|
-
}>>> & {
|
|
16
|
-
"onFzmodal:confirm"?: ((...args: any[]) => any) | undefined;
|
|
17
|
-
"onFzmodal:cancel"?: ((...args: any[]) => any) | undefined;
|
|
18
|
-
}, {
|
|
19
|
-
size: import('./types').FzDialogSizes;
|
|
20
|
-
}, {}>;
|
|
21
|
-
export default _default;
|
|
22
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
23
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
24
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
25
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
26
|
-
} : {
|
|
27
|
-
type: import('vue').PropType<T[K]>;
|
|
28
|
-
required: true;
|
|
29
|
-
};
|
|
30
|
-
};
|
|
31
|
-
type __VLS_WithDefaults<P, D> = {
|
|
32
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
33
|
-
default: D[K];
|
|
34
|
-
}> : P[K];
|
|
35
|
-
};
|
|
36
|
-
type __VLS_Prettify<T> = {
|
|
37
|
-
[K in keyof T]: T[K];
|
|
38
|
-
} & {};
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
import { FzDialogProps } from './types';
|
|
2
|
-
|
|
3
|
-
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FzDialogProps>, {
|
|
4
|
-
size: string;
|
|
5
|
-
}>, {
|
|
6
|
-
show: () => void;
|
|
7
|
-
close: (returnVal?: string | undefined) => void;
|
|
8
|
-
visible: import('vue').Ref<boolean>;
|
|
9
|
-
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
|
-
cancel: (...args: any[]) => void;
|
|
11
|
-
confirm: (...args: any[]) => void;
|
|
12
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<FzDialogProps>, {
|
|
13
|
-
size: string;
|
|
14
|
-
}>>> & {
|
|
15
|
-
onCancel?: ((...args: any[]) => any) | undefined;
|
|
16
|
-
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
17
|
-
}, {
|
|
18
|
-
size: import('./types').FzDialogSizes;
|
|
19
|
-
}, {}>, {
|
|
20
|
-
header?(_: {}): any;
|
|
21
|
-
body?(_: {}): any;
|
|
22
|
-
footer?(_: {}): any;
|
|
23
|
-
}>;
|
|
24
|
-
export default _default;
|
|
25
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
26
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
27
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
28
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
29
|
-
} : {
|
|
30
|
-
type: import('vue').PropType<T[K]>;
|
|
31
|
-
required: true;
|
|
32
|
-
};
|
|
33
|
-
};
|
|
34
|
-
type __VLS_WithDefaults<P, D> = {
|
|
35
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
36
|
-
default: D[K];
|
|
37
|
-
}> : P[K];
|
|
38
|
-
};
|
|
39
|
-
type __VLS_Prettify<T> = {
|
|
40
|
-
[K in keyof T]: T[K];
|
|
41
|
-
} & {};
|
|
42
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
43
|
-
new (): {
|
|
44
|
-
$slots: S;
|
|
45
|
-
};
|
|
46
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/src/index.d.ts
DELETED
package/dist/src/types.d.ts
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
export type FzDialogSizes = "sm" | "md" | "lg" | "xl";
|
|
2
|
-
export type FzDialogProps = {
|
|
3
|
-
/**
|
|
4
|
-
* The general size of the dialog
|
|
5
|
-
*/
|
|
6
|
-
size?: FzDialogSizes;
|
|
7
|
-
/**
|
|
8
|
-
* Text content in the header
|
|
9
|
-
*/
|
|
10
|
-
title?: string;
|
|
11
|
-
/**
|
|
12
|
-
* Text content in the confirm button
|
|
13
|
-
*/
|
|
14
|
-
confirmLabel?: string;
|
|
15
|
-
/**
|
|
16
|
-
* Text content in the cancel button
|
|
17
|
-
*/
|
|
18
|
-
cancelLabel?: string;
|
|
19
|
-
/**
|
|
20
|
-
* Text content in the body slot
|
|
21
|
-
*/
|
|
22
|
-
text?: string;
|
|
23
|
-
/**
|
|
24
|
-
* Whether to show the modal as a drawer
|
|
25
|
-
*/
|
|
26
|
-
isDrawer?: boolean;
|
|
27
|
-
};
|
package/dist/style.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
dialog::backdrop{background:var(--core-black, #2c282f);opacity:.8}
|
package/tsconfig.tsbuildinfo
DELETED
|
@@ -1 +0,0 @@
|
|
|
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.33/node_modules/@vue/shared/dist/shared.d.ts","../../node_modules/.pnpm/@vue+reactivity@3.4.33/node_modules/@vue/reactivity/dist/reactivity.d.ts","../../node_modules/.pnpm/@vue+runtime-core@3.4.33/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.33/node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts","../../node_modules/.pnpm/vue@3.4.33_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+types@7.24.9/node_modules/@babel/types/lib/index.d.ts","../../node_modules/.pnpm/@babel+parser@7.24.8/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/.pnpm/@vue+compiler-core@3.4.33/node_modules/@vue/compiler-core/dist/compiler-core.d.ts","../../node_modules/.pnpm/@vue+compiler-dom@3.4.33/node_modules/@vue/compiler-dom/dist/compiler-dom.d.ts","../../node_modules/.pnpm/vue@3.4.33_typescript@5.3.3/node_modules/vue/dist/vue.d.mts","../../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/@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+parser@7.23.6/node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/.pnpm/source-map-js@1.0.2/node_modules/source-map-js/source-map.d.ts","../../node_modules/.pnpm/@vue+compiler-core@3.4.13/node_modules/@vue/compiler-core/dist/compiler-core.d.ts","../../node_modules/.pnpm/@vue+compiler-dom@3.4.13/node_modules/@vue/compiler-dom/dist/compiler-dom.d.ts","../../node_modules/.pnpm/vue@3.4.13_typescript@5.3.3/node_modules/vue/dist/vue.d.mts","../button/src/types.ts","../../node_modules/.pnpm/vue@3.4.33_typescript@5.4.2/node_modules/vue/jsx-runtime/index.d.ts","../../node_modules/.pnpm/vue@3.4.33_typescript@5.4.2/node_modules/vue/dist/vue.d.mts","../../node_modules/.pnpm/@fortawesome+fontawesome-common-types@6.6.0/node_modules/@fortawesome/fontawesome-common-types/index.d.ts","../../node_modules/.pnpm/@fortawesome+fontawesome-svg-core@6.6.0/node_modules/@fortawesome/fontawesome-svg-core/index.d.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/@awesome.me+kit-8137893ad3@1.0.131/node_modules/@awesome.me/kit-8137893ad3/icons/modules/icon-types.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.131/node_modules/@awesome.me/kit-8137893ad3/icons/modules/index.d.ts","../../node_modules/.pnpm/@fortawesome+vue-fontawesome@3.0.8_@fortawesome+fontawesome-svg-core@6.6.0_vue@3.4.33_typescript@5.4.2_/node_modules/@fortawesome/vue-fontawesome/index.d.ts","../icons/src/types.ts","../icons/src/fzicon.vue.ts","../icons/src/index.ts","../button/src/utils.ts","../button/src/fzbutton.vue.ts","../button/src/fziconbutton.vue.ts","../button/src/fzbuttongroup.vue.ts","../button/src/index.ts","./src/types.ts","../composables/src/types.ts","../composables/src/utils/index.ts","../composables/src/composables/usefloating.ts","../composables/src/composables/usemediaquery.ts","../composables/src/composables/usebreakpoints.ts","../composables/src/composables/useclickoutside.ts","../composables/src/composables/usekeydown.ts","../composables/src/composables/usekeyup.ts","../composables/src/composables/index.ts","../composables/src/fzfloating.vue.ts","../composables/src/index.ts","./src/fzdialog.vue.ts","./src/fzconfirmdialog.vue.ts","./__vls_types.d.ts","./dist/src/types.d.ts","./dist/src/fzdialog.vue.d.ts","./dist/src/fzconfirmdialog.vue.d.ts","./dist/src/index.d.ts","./dist/index.d.ts","./dist/src/__test__/fzdialog.test.d.ts","./src/index.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.33_vue@3.4.33_typescript@5.3.3___vue@3.4.33_typescript@5.3.3_/node_modules/@vue/test-utils/dist/constants/dom-events.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.33_vue@3.4.33_typescript@5.3.3___vue@3.4.33_typescript@5.3.3_/node_modules/@vue/test-utils/dist/createdomevent.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.33_vue@3.4.33_typescript@5.3.3___vue@3.4.33_typescript@5.3.3_/node_modules/@vue/test-utils/dist/types.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.33_vue@3.4.33_typescript@5.3.3___vue@3.4.33_typescript@5.3.3_/node_modules/@vue/test-utils/dist/vuewrapper.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.33_vue@3.4.33_typescript@5.3.3___vue@3.4.33_typescript@5.3.3_/node_modules/@vue/test-utils/dist/interfaces/wrapperlike.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.33_vue@3.4.33_typescript@5.3.3___vue@3.4.33_typescript@5.3.3_/node_modules/@vue/test-utils/dist/basewrapper.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.33_vue@3.4.33_typescript@5.3.3___vue@3.4.33_typescript@5.3.3_/node_modules/@vue/test-utils/dist/domwrapper.d.ts","../../node_modules/.pnpm/vue-component-type-helpers@1.8.27/node_modules/vue-component-type-helpers/index.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.33_vue@3.4.33_typescript@5.3.3___vue@3.4.33_typescript@5.3.3_/node_modules/@vue/test-utils/dist/mount.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.33_vue@3.4.33_typescript@5.3.3___vue@3.4.33_typescript@5.3.3_/node_modules/@vue/test-utils/dist/rendertostring.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.33_vue@3.4.33_typescript@5.3.3___vue@3.4.33_typescript@5.3.3_/node_modules/@vue/test-utils/dist/components/routerlinkstub.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.33_vue@3.4.33_typescript@5.3.3___vue@3.4.33_typescript@5.3.3_/node_modules/@vue/test-utils/dist/errorwrapper.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.33_vue@3.4.33_typescript@5.3.3___vue@3.4.33_typescript@5.3.3_/node_modules/@vue/test-utils/dist/vnodetransformers/util.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.33_vue@3.4.33_typescript@5.3.3___vue@3.4.33_typescript@5.3.3_/node_modules/@vue/test-utils/dist/vnodetransformers/stubcomponentstransformer.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.33_vue@3.4.33_typescript@5.3.3___vue@3.4.33_typescript@5.3.3_/node_modules/@vue/test-utils/dist/config.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.33_vue@3.4.33_typescript@5.3.3___vue@3.4.33_typescript@5.3.3_/node_modules/@vue/test-utils/dist/utils/flushpromises.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.33_vue@3.4.33_typescript@5.3.3___vue@3.4.33_typescript@5.3.3_/node_modules/@vue/test-utils/dist/utils/autounmount.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_@vue+server-renderer@3.4.33_vue@3.4.33_typescript@5.3.3___vue@3.4.33_typescript@5.3.3_/node_modules/@vue/test-utils/dist/index.d.ts","../style/tokens.json","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/types.d.ts","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/helpers.d.ts","../../node_modules/.pnpm/@sinclair+typebox@0.27.8/node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts","../../node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/index.d.ts","../../node_modules/.pnpm/@vitest+runner@1.2.0/node_modules/@vitest/runner/dist/tasks-rsxe_qlo.d.ts","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/types-widbdqe5.d.ts","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/diff.d.ts","../../node_modules/.pnpm/@vitest+runner@1.2.0/node_modules/@vitest/runner/dist/types.d.ts","../../node_modules/.pnpm/@vitest+utils@1.2.0/node_modules/@vitest/utils/dist/error.d.ts","../../node_modules/.pnpm/@vitest+runner@1.2.0/node_modules/@vitest/runner/dist/index.d.ts","../../node_modules/.pnpm/@vitest+runner@1.2.0/node_modules/@vitest/runner/dist/utils.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/file.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/filereader.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@5.26.5/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/globals.global.d.ts","../../node_modules/.pnpm/@types+node@18.19.7/node_modules/@types/node/index.d.ts","../../node_modules/.pnpm/@types+estree@1.0.5/node_modules/@types/estree/index.d.ts","../../node_modules/.pnpm/rollup@4.9.5/node_modules/rollup/dist/rollup.d.ts","../../node_modules/.pnpm/rollup@4.9.5/node_modules/rollup/dist/parseast.d.ts","../../node_modules/.pnpm/vite@5.0.11_@types+node@18.19.7/node_modules/vite/types/hmrpayload.d.ts","../../node_modules/.pnpm/vite@5.0.11_@types+node@18.19.7/node_modules/vite/types/customevent.d.ts","../../node_modules/.pnpm/esbuild@0.19.11/node_modules/esbuild/lib/main.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/previous-map.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/input.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/css-syntax-error.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/declaration.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/root.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/warning.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/lazy-result.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/no-work-result.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/processor.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/result.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/document.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/rule.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/node.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/comment.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/container.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/at-rule.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/list.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/postcss.d.ts","../../node_modules/.pnpm/postcss@8.4.33/node_modules/postcss/lib/postcss.d.mts","../../node_modules/.pnpm/vite@5.0.11_@types+node@18.19.7/node_modules/vite/types/importglob.d.ts","../../node_modules/.pnpm/vite@5.0.11_@types+node@18.19.7/node_modules/vite/types/metadata.d.ts","../../node_modules/.pnpm/vite@5.0.11_@types+node@18.19.7/node_modules/vite/dist/node/index.d.ts","../../node_modules/.pnpm/vite-node@1.2.0_@types+node@18.19.7/node_modules/vite-node/dist/trace-mapping.d-aa9jxpth.d.ts","../../node_modules/.pnpm/vite-node@1.2.0_@types+node@18.19.7/node_modules/vite-node/dist/index-ieujlejc.d.ts","../../node_modules/.pnpm/vite-node@1.2.0_@types+node@18.19.7/node_modules/vite-node/dist/index.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.2.0/node_modules/@vitest/snapshot/dist/environment-1emuyggi.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.2.0/node_modules/@vitest/snapshot/dist/index-k5cwkijb.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.2.0/node_modules/@vitest/snapshot/dist/index.d.ts","../../node_modules/.pnpm/@vitest+expect@1.2.0/node_modules/@vitest/expect/dist/chai.d.cts","../../node_modules/.pnpm/@vitest+expect@1.2.0/node_modules/@vitest/expect/dist/index.d.ts","../../node_modules/.pnpm/@vitest+expect@1.2.0/node_modules/@vitest/expect/index.d.ts","../../node_modules/.pnpm/tinybench@2.5.1/node_modules/tinybench/dist/index.d.ts","../../node_modules/.pnpm/vite-node@1.2.0_@types+node@18.19.7/node_modules/vite-node/dist/client.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.2.0/node_modules/@vitest/snapshot/dist/manager.d.ts","../../node_modules/.pnpm/vite-node@1.2.0_@types+node@18.19.7/node_modules/vite-node/dist/server.d.ts","../../node_modules/.pnpm/vitest@1.2.0_@types+node@18.19.7_jsdom@23.2.0/node_modules/vitest/dist/reporters-trlzlobr.d.ts","../../node_modules/.pnpm/vitest@1.2.0_@types+node@18.19.7_jsdom@23.2.0/node_modules/vitest/dist/suite-6pt_ep5v.d.ts","../../node_modules/.pnpm/@vitest+spy@1.2.0/node_modules/@vitest/spy/dist/index.d.ts","../../node_modules/.pnpm/@vitest+snapshot@1.2.0/node_modules/@vitest/snapshot/dist/environment.d.ts","../../node_modules/.pnpm/vitest@1.2.0_@types+node@18.19.7_jsdom@23.2.0/node_modules/vitest/dist/config.d.ts","../../node_modules/.pnpm/vitest@1.2.0_@types+node@18.19.7_jsdom@23.2.0/node_modules/vitest/dist/index.d.ts","./src/__test__/fzdialog.test.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/vuewrapper.d.ts","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/domwrapper.d.ts","../button/src/fzbutton.vue","../button/src/fziconbutton.vue","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.74/node_modules/@awesome.me/kit-8137893ad3/icons/modules/icon-types.ts","../../node_modules/.pnpm/@awesome.me+kit-8137893ad3@1.0.74/node_modules/@awesome.me/kit-8137893ad3/icons/modules/index.d.ts","../icons/src/fzicon.vue","../../node_modules/.pnpm/@vue+test-utils@2.4.3_vue@3.4.13/node_modules/@vue/test-utils/dist/interfaces/wrapperlike.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/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"],"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",{"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",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0",{"version":"0","affectsGlobalScope":true},"0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0",{"version":"0","affectsGlobalScope":true},"0",{"version":"0","affectsGlobalScope":true},"0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0",{"version":"0","affectsGlobalScope":true},{"version":"0","affectsGlobalScope":true},"0","0","0","0","0",{"version":"0","affectsGlobalScope":true},"0","0","0","0","0","0"],"root":[87,[99,108],275],"options":{"composite":true,"esModuleInterop":true,"jsx":1,"jsxImportSource":"vue","module":99,"noImplicitThis":true,"skipLibCheck":true,"strict":true,"target":99,"useDefineForClassFields":true},"fileIdsList":[[63,72,75,76],[72,76],[53],[54],[74],[72],[58,73],[130],[141],[177],[178,183,211],[179,190,191,198,208,219],[179,180,190,198],[181,220],[182,183,191,199],[183,208,216],[184,186,190,198],[177,185],[186,187],[190],[188,190],[177,190],[190,191,192,208,219],[190,191,192,205,208,211],[175,224],[186,190,193,198,208,219],[190,191,193,194,198,208,216,219],[193,195,208,216,219],[141,142,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226],[190,196],[197,219,224],[186,190,198,208],[199],[200],[177,201],[202,218,224],[203],[204],[190,205,206],[205,207,220,222],[178,190,208,209,210,211],[178,208,210],[208,209],[211],[212],[177,208],[190,214,215],[214,215],[183,198,208,216],[217],[198,218],[178,193,204,219],[183,220],[208,221],[197,222],[223],[178,183,190,192,201,208,219,222,224],[208,225],[133,136],[263],[133,134,136,137,138],[133],[133,134,136],[133,134],[259],[132,259],[132,259,260],[132,135],[128],[128,129,132],[132],[53,59,64,65],[47,53,55],[66],[56],[59],[47],[59,60,61],[47,48,49,51,62],[48,49,50,51,61],[48,49,50,62],[58,109,110,111,112,113,115],[58],[111,112,115,122],[109],[58,111,114],[111,112,114,115,117,118,119,120,123,124,125],[58,109,110,111,112,115],[58,111,112,116],[58,111,117],[58,112],[58,121],[58,111,114,115],[248],[246,248],[237,245,246,247,249],[235],[238,243,248,251],[234,251],[238,239,242,243,244,251],[238,239,240,242,243,251],[235,236,237,238,239,243,244,245,247,248,249,251],[251],[65,235,236,237,238,239,240,242,243,244,245,246,247,248,249,250],[65,251],[238,240,241,243,244,251],[242,251],[243,244,248,251],[236,246],[131],[229,254],[228],[65],[152,156,219],[152,208,219],[147],[149,152,216,219],[198,216],[227],[147,227],[149,152,198,219],[144,145,148,151,178,190,208,219],[144,150],[148,152,178,211,219,227],[178,227],[168,178,227],[146,147,227],[152],[146,147,148,149,150,151,152,153,154,156,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174],[152,159,160],[150,152,160,161],[151],[144,147,152],[152,156,160,161],[156],[150,152,155,219],[144,149,150,152,156,159],[178,208],[147,152,168,178,224,227],[256,257],[256],[255,256,257,269],[190,191,193,194,195,198,208,216,219,225,227,229,230,231,232,233,252,253,254],[231],[229],[133,139,140,191,224,255,258,261,262,264,265,266,267,268,269],[133,136,139,140,191,224,255,258,261,262,264,265,266,267,268,269,270,271,272,273],[139,140,265,269],[62,67],[62],[51,57],[51],[63,68,69,81,82],[63,68,69],[63,68,69,81,82,83],[63,69,83,84,85],[63],[63,69,81],[63,90,91,92,93,94,95],[63,91],[63,68],[63,68,88,89],[63,68,88,96],[63,88,96,97],[63,88],[52,58],[105],[58,102],[102,103,104],[52,108,126,127,274],[52,58,86,87,99],[52,58,87,98],[52,87,99,100],[52,86],[52,58,77,78,79],[52,58,73,77,79,80],[52],[129],[142,143,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227],[134,135],[142],[176,225],[178],[179,184,212],[180,191,192,199,209,220],[180,181,191,199],[182,221],[183,184,192,200],[184,209,217],[185,187,191,199],[178,186],[187,188],[189,191],[191],[178,191],[191,192,193,209,220],[147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,168,170,171,172,173,174,175],[209,226],[191,192,193,206,209,212],[187,191,194,199,209,220],[191,192,194,195,199,209,217,220],[194,196,209,217,220],[191,197],[198,220,225],[187,191,199,209],[201],[178,202],[203,219,225],[205],[191,206,207],[206,208,221,223],[209,210],[179,191,209,210,211,212],[179,209,211],[213],[178,209],[191,215,216],[215,216],[184,199,209,217],[218],[199,219],[179,194,205,220],[184,221],[209,222],[198,223],[224],[179,184,191,193,202,209,220,223,225],[133,260,261],[134,137],[129,130,133],[134,135,137,138,139],[257,258],[133,260],[140,141,266,270],[134,135,137],[134],[59,60,61,62],[50,60,61],[232],[238,246,247,248,250],[236,237,238,239,240,244,245,246,248,249,250,252],[247,249],[235,252],[236],[243,252],[65,252],[237,247],[249],[239,240,243,244,245,252],[65,236,237,238,239,240,241,243,244,245,246,247,248,249,250,251],[239,240,241,243,244,252],[239,241,242,244,245,252],[239,244,249,252],[244,245,249,252],[264],[153,157,220],[145,150,151,153,157,160],[153],[199,217],[147,148,228],[148,153,169,179,225,228],[153,209,220],[169,179,228],[145,151],[150,153,217,220],[179,228],[179,209],[149,153,179,212,220,228],[145,146,149,152,179,191,209,220],[151,153,156,220],[148],[145,148,153],[153,160,161],[153,157,161,162],[151,153,161,162],[148,228],[157],[150,153,199,220],[257],[191,192,194,195,196,199,209,217,220,226,228,230,231,232,233,234,253,254,255],[230],[230,255],[252],[260],[134,140,141,192,225,256,259,262,263,265,266,267,268,269,270],[256,257,258,270],[68,276,277],[63,69,278,279],[134,137,140,141,192,225,256,259,262,263,265,266,267,268,269,270,271,272,273,274],[63,68,75,79,280,281,282],[116,276,277,283,284,285,286,287,288,289,290]],"referencedMap":[[76,1],[77,2],[64,3],[55,4],[75,5],[73,6],[78,7],[131,8],[141,9],[142,9],[177,10],[178,11],[179,12],[180,13],[181,14],[182,15],[183,16],[184,17],[185,18],[186,19],[187,19],[189,20],[188,21],[190,22],[191,23],[192,24],[176,25],[193,26],[194,27],[195,28],[227,29],[196,30],[197,31],[198,32],[199,33],[200,34],[201,35],[202,36],[203,37],[204,38],[205,39],[206,39],[207,40],[208,41],[210,42],[209,43],[211,44],[212,45],[213,46],[214,47],[215,48],[216,49],[217,50],[218,51],[219,52],[220,53],[221,54],[222,55],[223,56],[224,57],[225,58],[263,59],[264,60],[139,61],[134,62],[137,63],[140,64],[272,65],[260,66],[261,67],[267,67],[136,68],[138,68],[129,69],[133,70],[135,71],[66,72],[56,73],[67,74],[57,75],[60,76],[48,77],[61,78],[49,79],[62,80],[51,81],[114,82],[119,83],[123,84],[110,85],[115,86],[126,87],[113,88],[117,89],[118,90],[111,83],[125,91],[122,92],[121,83],[112,93],[249,94],[247,95],[248,96],[236,97],[237,95],[244,98],[235,99],[240,100],[241,101],[246,102],[252,103],[251,104],[234,105],[242,106],[243,107],[238,108],[245,94],[239,109],[132,110],[230,111],[229,112],[65,113],[159,114],[166,115],[158,114],[173,116],[150,117],[149,118],[172,119],[167,120],[170,121],[152,122],[151,123],[147,124],[146,125],[169,126],[148,127],[153,128],[157,128],[175,129],[174,128],[161,130],[162,131],[164,132],[160,133],[163,134],[168,119],[155,135],[156,136],[165,137],[145,138],[171,139],[266,140],[257,141],[258,140],[268,142],[255,143],[232,144],[254,145],[273,146],[274,147],[269,146],[270,148],[68,149],[63,150],[58,151],[52,152],[71,151],[70,152],[83,153],[85,154],[84,155],[86,156],[69,157],[82,158],[96,159],[92,160],[93,161],[90,162],[94,161],[95,161],[91,161],[97,163],[98,164],[88,161],[89,165],[101,166],[106,167],[104,168],[103,168],[105,169],[275,170],[100,171],[99,172],[108,173],[87,174],[80,175],[81,176],[79,177]],"exportedModulesMap":[[76,1],[77,2],[64,3],[55,4],[75,5],[73,6],[78,7],[130,178],[228,179],[141,180],[142,181],[177,182],[178,183],[179,184],[180,185],[181,186],[182,187],[183,188],[184,189],[185,190],[186,191],[187,192],[189,193],[188,192],[190,194],[191,195],[192,196],[176,197],[226,198],[193,199],[194,200],[195,201],[196,202],[197,203],[198,204],[199,205],[200,34],[201,206],[202,207],[203,208],[204,38],[205,209],[206,210],[207,210],[208,211],[210,212],[209,213],[211,214],[212,45],[213,215],[214,216],[215,217],[216,218],[217,219],[218,220],[219,221],[220,222],[221,223],[222,224],[223,225],[224,226],[225,227],[262,228],[264,229],[139,59],[134,230],[137,59],[140,231],[259,232],[261,233],[267,232],[271,234],[136,62],[138,235],[133,71],[135,236],[66,72],[56,73],[67,74],[57,75],[60,76],[48,77],[61,237],[49,79],[62,238],[51,81],[114,82],[119,83],[123,84],[110,85],[115,86],[126,87],[113,88],[117,89],[118,90],[111,83],[125,91],[122,92],[121,83],[112,93],[143,181],[233,239],[249,240],[247,241],[248,242],[236,243],[237,244],[244,245],[235,246],[240,247],[250,248],[241,249],[246,248],[252,250],[242,251],[243,252],[238,242],[245,253],[239,254],[132,110],[230,145],[65,113],[265,255],[159,256],[166,257],[158,258],[173,112],[150,259],[149,260],[172,261],[167,262],[170,263],[152,264],[151,265],[147,266],[146,267],[169,112],[148,268],[153,269],[154,258],[157,270],[175,258],[174,271],[161,272],[162,273],[164,274],[160,256],[163,275],[168,276],[156,277],[165,128],[171,278],[258,279],[268,228],[256,280],[255,281],[231,282],[253,283],[273,284],[274,285],[269,286],[270,285],[116,287],[68,149],[63,150],[58,151],[52,152],[71,151],[70,152],[83,153],[85,154],[84,155],[86,288],[69,157],[82,158],[96,159],[92,160],[93,161],[90,162],[94,161],[95,161],[91,161],[97,163],[98,164],[88,161],[89,165],[101,166],[106,167],[104,168],[103,168],[105,169],[275,289],[100,171],[99,172],[108,161],[87,157],[80,175],[81,290],[79,157],[127,291]],"semanticDiagnosticsPerFile":[76,77,64,55,53,54,74,72,75,73,78,131,130,228,141,142,177,178,179,180,181,182,183,184,185,186,187,189,188,190,191,192,176,226,193,194,195,227,196,197,198,199,200,201,202,203,204,205,206,207,208,210,209,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,262,263,264,139,134,137,140,259,272,260,261,267,271,136,138,129,133,135,128,66,56,67,57,60,48,61,49,62,51,59,47,114,119,123,109,110,115,120,126,113,117,118,111,125,124,122,121,112,143,50,233,249,247,248,236,237,244,235,240,250,241,246,252,251,234,242,243,238,245,239,132,230,229,65,265,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,159,166,158,173,150,149,172,167,170,152,151,147,146,169,148,153,154,157,144,175,174,161,162,164,160,163,168,155,156,165,145,171,266,257,258,268,256,255,232,231,253,254,273,274,269,270,116,68,63,58,52,71,70,83,85,84,86,69,82,96,92,93,[90,[{"file":"../composables/src/composables/usefloating.ts","start":1092,"length":23,"code":2322,"category":1,"messageText":{"messageText":"Type 'Element | null' is not assignable to type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; } | null'.","category":1,"code":2322,"next":[{"messageText":"Type 'Element' is missing the following properties from type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }': accessKey, accessKeyLabel, autocapitalize, dir, and 122 more.","category":1,"code":2740}]}},{"file":"../composables/src/composables/usefloating.ts","start":1374,"length":25,"code":2322,"category":1,"messageText":"Type 'Element | null' is not assignable to type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; } | null'."},{"file":"../composables/src/composables/usefloating.ts","start":1784,"length":22,"code":2322,"category":1,"messageText":"Type 'Element | null' is not assignable to type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; } | null'."},{"file":"../composables/src/composables/usefloating.ts","start":2240,"length":23,"code":2345,"category":1,"messageText":{"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'Element'.","category":1,"code":2345,"next":[{"messageText":"Types of property 'attributes' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: { readonly attributes: ...; ... 166 more ...; readonly assignedSlot: { ...; } | null; }; readonly length: number; ...' is not assignable to type 'NamedNodeMap'.","category":1,"code":2322}]}]}},{"file":"../composables/src/composables/usefloating.ts","start":2384,"length":23,"code":2345,"category":1,"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'Element'."},{"file":"../composables/src/composables/usefloating.ts","start":2443,"length":25,"code":2345,"category":1,"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'Element'."},{"file":"../composables/src/composables/usefloating.ts","start":3216,"length":25,"code":2345,"category":1,"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'HTMLElement'."},{"file":"../composables/src/composables/usefloating.ts","start":3446,"length":25,"code":2345,"category":1,"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'HTMLElement'."},{"file":"../composables/src/composables/usefloating.ts","start":3697,"length":25,"code":2345,"category":1,"messageText":"Argument of type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to parameter of type 'HTMLElement'."},{"file":"../composables/src/composables/usefloating.ts","start":9295,"length":13,"code":2322,"category":1,"messageText":{"messageText":"Type 'Ref<{ readonly root: { readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { ...; }; ... 255 more ...; evaluate: (expression: string, contextNode: Node, resolve...' is not assignable to type 'Ref<IntersectionObserver>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly root: { readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => ...' is not assignable to type 'IntersectionObserver'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'root' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element | Document | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element | Document | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element | Document'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element'.","category":1,"code":2322}]}]}]}]}]}]},"relatedInformation":[{"file":"../composables/src/composables/usefloating.ts","start":322,"length":13,"messageText":"The expected type comes from property 'floatObserver' which is declared here on type '{ float: FzRect; rect: Ref<DOMRect | null>; floatObserver: Ref<IntersectionObserver>; setPosition: () => Promise<void>; }'","category":3,"code":6500}]}]],94,95,91,[97,[{"file":"../composables/src/fzfloating.vue","start":496,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'Ref<{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; } | null>' is not assignable to type 'Ref<string | HTMLElement | null>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; } | null' is not assignable to type 'string | HTMLElement | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to type 'string | HTMLElement | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to type 'HTMLElement'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'offsetParent' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'attributes' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: { readonly attributes: ...; ... 166 more ...; readonly assignedSlot: { ...; } | null; }; readonly length: number; ...' is not assignable to type 'NamedNodeMap'.","category":1,"code":2322,"next":[{"messageText":"'number' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Type '{ readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: { readonly attributes: { [x: number]: ...; ... 8 more ...; [Symbol.iterator]: () => IterableIterator<...>; }; ... 166 more ...; r...' is not assignable to type 'Attr'.","category":1,"code":2322,"next":[{"messageText":"The types of 'ownerDocument.anchors' are incompatible between these types.","category":1,"code":2200,"next":[{"messageText":"Type '{ [x: number]: { charset: string; coords: string; download: string; hreflang: string; name: string; ping: string; referrerPolicy: string; rel: string; readonly relList: { [x: number]: string; readonly length: number; ... 13 more ...; [Symbol.iterator]: () => IterableIterator<...>; }; ... 315 more ...; username: stri...' is not assignable to type 'HTMLCollectionOf<HTMLAnchorElement>'.","category":1,"code":2322,"next":[{"messageText":"'number' index signatures are incompatible.","category":1,"code":2634,"next":[{"messageText":"Type '{ charset: string; coords: string; download: string; hreflang: string; name: string; ping: string; referrerPolicy: string; rel: string; readonly relList: { [x: number]: string; readonly length: number; value: string; ... 12 more ...; [Symbol.iterator]: () => IterableIterator<...>; }; ... 315 more ...; username: stri...' is not assignable to type 'HTMLAnchorElement'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'shadowRoot' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ readonly delegatesFocus: boolean; readonly host: { readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; ... 257 more ...; evaluate: (expression: string, contextNode: Node, resolver?: XPathNSRes...' is not assignable to type 'ShadowRoot | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly delegatesFocus: boolean; readonly host: { readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; ... 257 more ...; evaluate: (expression: string, contextNode: Node, resolver?: XPathNSRes...' is not assignable to type 'ShadowRoot'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'adoptedStyleSheets' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ readonly cssRules: { [x: number]: { cssText: string; readonly parentRule: ... | null; readonly parentStyleSheet: ... | null; readonly type: number; readonly STYLE_RULE: 1; readonly CHARSET_RULE: 2; ... 7 more ...; readonly SUPPORTS_RULE: 12; }; readonly length: number; item: (index: number) => CSSRule | null; [Sym...' is not assignable to type 'CSSStyleSheet[]'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly cssRules: { [x: number]: { cssText: string; readonly parentRule: ... | null; readonly parentStyleSheet: ... | null; readonly type: number; readonly STYLE_RULE: 1; readonly CHARSET_RULE: 2; ... 7 more ...; readonly SUPPORTS_RULE: 12; }; readonly length: number; item: (index: number) => CSSRule | null; [Sym...' is not assignable to type 'CSSStyleSheet'.","category":1,"code":2322,"next":[{"messageText":"Types of property 'ownerNode' are incompatible.","category":1,"code":2326,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element | ProcessingInstruction | null'.","category":1,"code":2322,"next":[{"messageText":"Type '{ readonly attributes: { [x: number]: { readonly localName: string; readonly name: string; readonly namespaceURI: string | null; readonly ownerDocument: { readonly URL: string; alinkColor: string; readonly all: { [x: number]: ...; readonly length: number; item: (nameOrIndex?: string | undefined) => Element | ... 1 m...' is not assignable to type 'Element | ProcessingInstruction | null'.","category":1,"code":2322}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},"relatedInformation":[{"file":"../composables/src/types.ts","start":829,"length":6,"messageText":"The expected type comes from property 'domRef' which is declared here on type 'FzFloatElement'","category":3,"code":6500}]},{"file":"../composables/src/fzfloating.vue","start":536,"length":6,"code":2322,"category":1,"messageText":{"messageText":"Type 'Ref<string> | Ref<{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; ... 289 more ...; focus: (options?: FocusOptions | undefined) => void; }>' is not assignable to type 'Ref<string | HTMLElement | null>'.","category":1,"code":2322,"next":[{"messageText":"Type 'Ref<{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }>' is not assignable to type 'Ref<string | HTMLElement | null>'.","category":1,"code":2322,"next":[{"messageText":"Type '{ accessKey: string; readonly accessKeyLabel: string; autocapitalize: string; dir: string; draggable: boolean; hidden: boolean; inert: boolean; innerText: string; lang: string; readonly offsetHeight: number; ... 288 more ...; focus: (options?: FocusOptions | undefined) => void; }' is not assignable to type 'string | HTMLElement | null'.","category":1,"code":2322}]}]}}]],98,88,89,101,106,107,104,103,105,102,275,100,[99,[{"file":"./src/fzdialog.vue","start":1352,"length":11,"code":2345,"category":1,"messageText":{"messageText":"Argument of type 'Ref<HTMLDivElement | undefined>' is not assignable to parameter of type 'Ref<HTMLElement | undefined>'.","category":1,"code":2345,"next":[{"messageText":"Property '[RefSymbol]' is missing in type 'Ref<HTMLDivElement | undefined>' but required in type 'Ref<HTMLElement | undefined>'.","category":1,"code":2741}]},"relatedInformation":[{"file":"../../node_modules/.pnpm/@vue+reactivity@3.4.13/node_modules/@vue/reactivity/dist/reactivity.d.ts","start":14092,"length":11,"messageText":"'[RefSymbol]' is declared here.","category":3,"code":2728}]}]],108,87,80,81,79,127],"affectedFilesPendingEmit":[275,100,99,108,87],"emitSignatures":[87,99,100]},"version":"5.3.3"}
|