pukaad-ui-lib 1.58.0 → 1.60.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/dist/module.json +1 -1
- package/dist/runtime/components/image/image-cropper.d.vue.ts +2 -2
- package/dist/runtime/components/image/image-cropper.vue.d.ts +2 -2
- package/dist/runtime/components/input/input-OTP.d.vue.ts +2 -0
- package/dist/runtime/components/input/input-OTP.vue +27 -4
- package/dist/runtime/components/input/input-OTP.vue.d.ts +2 -0
- package/dist/runtime/components/input/input-checkbox.vue +1 -2
- package/dist/runtime/components/modal/{modal-password.vue → modal-password-confirmed.vue} +13 -14
- package/dist/runtime/components/modal/modal-password-new.d.vue.ts +15 -11
- package/dist/runtime/components/modal/modal-password-new.vue +52 -41
- package/dist/runtime/components/modal/modal-password-new.vue.d.ts +15 -11
- package/dist/runtime/components/ui/alert-dialog/AlertDialogContent.d.vue.ts +4 -4
- package/dist/runtime/components/ui/alert-dialog/AlertDialogContent.vue.d.ts +4 -4
- package/dist/runtime/components/ui/dialog/DialogContent.d.vue.ts +4 -4
- package/dist/runtime/components/ui/dialog/DialogContent.vue.d.ts +4 -4
- package/dist/runtime/components/ui/dialog/DialogScrollContent.d.vue.ts +4 -4
- package/dist/runtime/components/ui/dialog/DialogScrollContent.vue.d.ts +4 -4
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuContent.d.vue.ts +2 -2
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuContent.vue.d.ts +2 -2
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuSubContent.d.vue.ts +4 -4
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuSubContent.vue.d.ts +4 -4
- package/dist/runtime/components/ui/popover/PopoverContent.d.vue.ts +4 -4
- package/dist/runtime/components/ui/popover/PopoverContent.vue.d.ts +4 -4
- package/dist/runtime/components/ui/select/SelectContent.d.vue.ts +2 -2
- package/dist/runtime/components/ui/select/SelectContent.vue.d.ts +2 -2
- package/dist/runtime/components/ui/sheet/SheetContent.d.vue.ts +4 -4
- package/dist/runtime/components/ui/sheet/SheetContent.vue.d.ts +4 -4
- package/package.json +1 -1
- /package/dist/runtime/components/modal/{modal-password.d.vue.ts → modal-password-confirmed.d.vue.ts} +0 -0
- /package/dist/runtime/components/modal/{modal-password.vue.d.ts → modal-password-confirmed.vue.d.ts} +0 -0
package/dist/module.json
CHANGED
|
@@ -64,15 +64,15 @@ declare const __VLS_export: import("vue").DefineComponent<ImageCropperProps, {
|
|
|
64
64
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ImageCropperProps> & Readonly<{}>, {
|
|
65
65
|
src: string;
|
|
66
66
|
center: boolean;
|
|
67
|
-
background: boolean;
|
|
68
|
-
modal: boolean;
|
|
69
67
|
responsive: boolean;
|
|
70
68
|
restore: boolean;
|
|
71
69
|
checkCrossOrigin: boolean;
|
|
72
70
|
checkOrientation: boolean;
|
|
73
71
|
crossorigin: "" | "anonymous" | "use-credentials";
|
|
72
|
+
modal: boolean;
|
|
74
73
|
guides: boolean;
|
|
75
74
|
highlight: boolean;
|
|
75
|
+
background: boolean;
|
|
76
76
|
autoCrop: boolean;
|
|
77
77
|
movable: boolean;
|
|
78
78
|
rotatable: boolean;
|
|
@@ -64,15 +64,15 @@ declare const __VLS_export: import("vue").DefineComponent<ImageCropperProps, {
|
|
|
64
64
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ImageCropperProps> & Readonly<{}>, {
|
|
65
65
|
src: string;
|
|
66
66
|
center: boolean;
|
|
67
|
-
background: boolean;
|
|
68
|
-
modal: boolean;
|
|
69
67
|
responsive: boolean;
|
|
70
68
|
restore: boolean;
|
|
71
69
|
checkCrossOrigin: boolean;
|
|
72
70
|
checkOrientation: boolean;
|
|
73
71
|
crossorigin: "" | "anonymous" | "use-credentials";
|
|
72
|
+
modal: boolean;
|
|
74
73
|
guides: boolean;
|
|
75
74
|
highlight: boolean;
|
|
75
|
+
background: boolean;
|
|
76
76
|
autoCrop: boolean;
|
|
77
77
|
movable: boolean;
|
|
78
78
|
rotatable: boolean;
|
|
@@ -12,8 +12,10 @@ type __VLS_ModelProps = {
|
|
|
12
12
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
13
13
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
14
|
"update:modelValue": (value: string) => any;
|
|
15
|
+
complete: (value: string) => any;
|
|
15
16
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
16
17
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
18
|
+
onComplete?: ((value: string) => any) | undefined;
|
|
17
19
|
}>, {
|
|
18
20
|
id: string;
|
|
19
21
|
name: string;
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<ShadFormField
|
|
2
|
+
<ShadFormField
|
|
3
|
+
:rules="defaultRules"
|
|
4
|
+
:name="props.name"
|
|
5
|
+
v-model="modelValue"
|
|
6
|
+
v-slot="{ errorMessage: formError }"
|
|
7
|
+
>
|
|
3
8
|
<ShadFormItem>
|
|
4
9
|
<ShadPinInput
|
|
5
10
|
:id="props.id || props.name"
|
|
@@ -9,10 +14,18 @@
|
|
|
9
14
|
>
|
|
10
15
|
<ShadPinInputGroup>
|
|
11
16
|
<ShadFormControl v-for="(n, i) in props.digit" :key="n" :index="i">
|
|
12
|
-
<ShadPinInputSlot
|
|
17
|
+
<ShadPinInputSlot
|
|
18
|
+
:class="{ 'border-destructive': formError || mockError }"
|
|
19
|
+
/>
|
|
13
20
|
</ShadFormControl>
|
|
14
21
|
</ShadPinInputGroup>
|
|
15
22
|
</ShadPinInput>
|
|
23
|
+
<p
|
|
24
|
+
v-if="formError || mockError"
|
|
25
|
+
class="text-sm font-medium text-destructive"
|
|
26
|
+
>
|
|
27
|
+
{{ formError || mockError }}
|
|
28
|
+
</p>
|
|
16
29
|
</ShadFormItem>
|
|
17
30
|
</ShadFormField>
|
|
18
31
|
</template>
|
|
@@ -26,22 +39,32 @@ const props = defineProps({
|
|
|
26
39
|
rules: { type: [Object, String, Function], required: false },
|
|
27
40
|
disabled: { type: Boolean, required: false, default: false }
|
|
28
41
|
});
|
|
42
|
+
const mockError = ref("");
|
|
29
43
|
const defaultRules = (v) => {
|
|
30
|
-
if (!v) return "\u0E01\u0E23\u0E38\u0E13\u0E32\u0E01\u0E23\u0E2D\u0E01
|
|
44
|
+
if (!v) return "\u0E01\u0E23\u0E38\u0E13\u0E32\u0E01\u0E23\u0E2D\u0E01 OTP";
|
|
31
45
|
return true;
|
|
32
46
|
};
|
|
33
47
|
const pin = ref([]);
|
|
34
48
|
const modelValue = defineModel({ type: String, ...{
|
|
35
49
|
default: ""
|
|
36
50
|
} });
|
|
51
|
+
const emit = defineEmits(["complete"]);
|
|
37
52
|
const handleComplete = (v) => {
|
|
38
|
-
|
|
53
|
+
const otpValue = v.join("");
|
|
54
|
+
modelValue.value = otpValue;
|
|
55
|
+
if (otpValue === "123456") {
|
|
56
|
+
mockError.value = "";
|
|
57
|
+
emit("complete", otpValue);
|
|
58
|
+
} else {
|
|
59
|
+
mockError.value = "\u0E23\u0E2B\u0E31\u0E2A\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19\u0E44\u0E21\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07";
|
|
60
|
+
}
|
|
39
61
|
};
|
|
40
62
|
watch(
|
|
41
63
|
pin,
|
|
42
64
|
() => {
|
|
43
65
|
if (pin.value.length < Number(props.digit)) {
|
|
44
66
|
modelValue.value = "";
|
|
67
|
+
mockError.value = "";
|
|
45
68
|
}
|
|
46
69
|
},
|
|
47
70
|
{
|
|
@@ -12,8 +12,10 @@ type __VLS_ModelProps = {
|
|
|
12
12
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
13
13
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
14
|
"update:modelValue": (value: string) => any;
|
|
15
|
+
complete: (value: string) => any;
|
|
15
16
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
16
17
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
18
|
+
onComplete?: ((value: string) => any) | undefined;
|
|
17
19
|
}>, {
|
|
18
20
|
id: string;
|
|
19
21
|
name: string;
|
|
@@ -116,8 +116,7 @@ const props = defineProps({
|
|
|
116
116
|
rules: { type: [Object, String, Function], required: false },
|
|
117
117
|
indeterminate: { type: Boolean, required: false, default: false }
|
|
118
118
|
});
|
|
119
|
-
const defaultRules = (
|
|
120
|
-
};
|
|
119
|
+
const defaultRules = () => true;
|
|
121
120
|
const modelValue = defineModel({ type: Boolean, ...{
|
|
122
121
|
default: false
|
|
123
122
|
} });
|
|
@@ -1,27 +1,26 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<Modal
|
|
3
3
|
:title="props.title"
|
|
4
|
-
title-position="center"
|
|
5
4
|
:loading="loadingModal"
|
|
6
5
|
@close="emit('close')"
|
|
7
6
|
@submit="onVerifyPassword"
|
|
8
7
|
v-model="isOpen"
|
|
9
8
|
>
|
|
10
|
-
<div class="
|
|
11
|
-
|
|
12
|
-
{{ props.description }}
|
|
13
|
-
</div>
|
|
14
|
-
<InputPassword
|
|
15
|
-
ref="inputPasswordRef"
|
|
16
|
-
label="รหัสผ่าน"
|
|
17
|
-
full-width
|
|
18
|
-
placeholder="Password"
|
|
19
|
-
v-model="password"
|
|
20
|
-
/>
|
|
9
|
+
<div v-if="props.description" class="font-body-large">
|
|
10
|
+
{{ props.description }}
|
|
21
11
|
</div>
|
|
22
|
-
|
|
12
|
+
<InputPassword
|
|
13
|
+
label="รหัสผ่าน"
|
|
14
|
+
placeholder="กรอกรหัสผ่าน"
|
|
15
|
+
v-model="password"
|
|
16
|
+
/>
|
|
23
17
|
<template #footer="{ meta }">
|
|
24
|
-
<Button
|
|
18
|
+
<Button
|
|
19
|
+
type="submit"
|
|
20
|
+
color="primary"
|
|
21
|
+
class="w-full"
|
|
22
|
+
:disabled="!meta.valid"
|
|
23
|
+
>
|
|
25
24
|
{{ props.confirmedText }}
|
|
26
25
|
</Button>
|
|
27
26
|
</template>
|
|
@@ -1,24 +1,28 @@
|
|
|
1
|
-
|
|
2
|
-
phone?: string;
|
|
3
|
-
confirmedText?: string;
|
|
1
|
+
interface Props {
|
|
4
2
|
title?: string;
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
confirmText?: string;
|
|
4
|
+
loginToken?: string;
|
|
5
|
+
}
|
|
6
|
+
type __VLS_Props = Props;
|
|
7
7
|
type __VLS_ModelProps = {
|
|
8
8
|
modelValue?: boolean;
|
|
9
9
|
};
|
|
10
10
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
11
11
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
"update:modelValue": (value: boolean) => any;
|
|
13
|
+
complete: (data: {
|
|
14
|
+
secId: string;
|
|
15
|
+
}) => any;
|
|
16
|
+
close: () => any;
|
|
15
17
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
16
18
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
17
|
-
onComplete?: ((
|
|
18
|
-
|
|
19
|
+
onComplete?: ((data: {
|
|
20
|
+
secId: string;
|
|
21
|
+
}) => any) | undefined;
|
|
22
|
+
onClose?: (() => any) | undefined;
|
|
19
23
|
}>, {
|
|
20
24
|
title: string;
|
|
21
|
-
|
|
25
|
+
confirmText: string;
|
|
22
26
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
23
27
|
declare const _default: typeof __VLS_export;
|
|
24
28
|
export default _default;
|
|
@@ -1,69 +1,80 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<Modal
|
|
3
3
|
:title="props.title"
|
|
4
|
-
:loading="
|
|
4
|
+
:loading="loading"
|
|
5
|
+
v-model="isOpen"
|
|
5
6
|
@close="emit('close')"
|
|
6
|
-
|
|
7
|
+
@submit="handleSubmit"
|
|
7
8
|
>
|
|
8
|
-
<
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
9
|
+
<InputPassword
|
|
10
|
+
disabled-forgot-password
|
|
11
|
+
new
|
|
12
|
+
required
|
|
13
|
+
label="รหัสผ่าน"
|
|
14
|
+
placeholder="กรอกรหัสผ่าน"
|
|
15
|
+
v-model="password"
|
|
16
|
+
/>
|
|
17
|
+
<InputCheckbox
|
|
18
|
+
label="ออกจากระบบ Pukaad ในอุปกรณ์อื่นๆทั้งหมด"
|
|
19
|
+
v-model="logoutAll"
|
|
20
|
+
/>
|
|
18
21
|
|
|
22
|
+
<template #footer="{ meta }">
|
|
19
23
|
<Button
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
24
|
+
type="submit"
|
|
25
|
+
color="primary"
|
|
26
|
+
class="w-full"
|
|
23
27
|
:disabled="!meta.valid"
|
|
24
28
|
>
|
|
25
|
-
{{ props.
|
|
29
|
+
{{ props.confirmText }}
|
|
26
30
|
</Button>
|
|
27
|
-
</
|
|
31
|
+
</template>
|
|
28
32
|
</Modal>
|
|
29
33
|
</template>
|
|
30
34
|
|
|
31
35
|
<script setup>
|
|
32
36
|
import { ref } from "vue";
|
|
33
|
-
import { useNuxtApp } from "nuxt/app";
|
|
34
|
-
const { $fetchAPI, $toast } = useNuxtApp();
|
|
35
|
-
const emit = defineEmits(["complete", "close"]);
|
|
37
|
+
import { useNuxtApp, useRuntimeConfig } from "nuxt/app";
|
|
36
38
|
const props = defineProps({
|
|
37
|
-
phone: { type: String, required: false },
|
|
38
|
-
confirmedText: { type: String, required: false, default: "\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19" },
|
|
39
39
|
title: { type: String, required: false, default: "\u0E23\u0E2B\u0E31\u0E2A\u0E1C\u0E48\u0E32\u0E19\u0E43\u0E2B\u0E21\u0E48" },
|
|
40
|
-
|
|
40
|
+
confirmText: { type: String, required: false, default: "\u0E22\u0E37\u0E19\u0E22\u0E31\u0E19" },
|
|
41
|
+
loginToken: { type: String, required: false }
|
|
41
42
|
});
|
|
42
|
-
const
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
const
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
43
|
+
const emit = defineEmits(["complete", "close"]);
|
|
44
|
+
const nuxtApp = useNuxtApp();
|
|
45
|
+
const config = useRuntimeConfig();
|
|
46
|
+
const toast = {
|
|
47
|
+
success: (msg) => nuxtApp.$toast?.success?.(msg),
|
|
48
|
+
error: (msg) => nuxtApp.$toast?.error?.(msg)
|
|
49
|
+
};
|
|
50
|
+
const isOpen = defineModel({ type: Boolean, ...{ default: false } });
|
|
51
|
+
const loading = ref(false);
|
|
52
|
+
const password = ref("");
|
|
53
|
+
const logoutAll = ref(false);
|
|
54
|
+
const isOffice = config.public.APP_TYPE === "office";
|
|
55
|
+
const apiPath = isOffice ? "/office/auth/password/create" : "/user/auth/password/create";
|
|
56
|
+
const handleSubmit = async () => {
|
|
57
|
+
if (!props.loginToken) return toast.error("\u0E44\u0E21\u0E48\u0E1E\u0E1A login token");
|
|
58
|
+
loading.value = true;
|
|
49
59
|
try {
|
|
50
|
-
const res = await $
|
|
60
|
+
const res = await $fetch(`${config.public.BASE_URL_API}${apiPath}`, {
|
|
51
61
|
method: "POST",
|
|
52
62
|
body: {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
63
|
+
login_token: props.loginToken,
|
|
64
|
+
password: password.value,
|
|
65
|
+
logout_all_devices: logoutAll.value
|
|
56
66
|
}
|
|
57
67
|
});
|
|
58
|
-
if (res.status === "success") {
|
|
59
|
-
emit("complete");
|
|
60
|
-
|
|
68
|
+
if (res.status === "success" && res.data) {
|
|
69
|
+
emit("complete", { secId: res.data.sec_id });
|
|
70
|
+
isOpen.value = false;
|
|
71
|
+
} else {
|
|
72
|
+
toast.error(res.message || "\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14");
|
|
61
73
|
}
|
|
62
|
-
} catch (
|
|
63
|
-
|
|
64
|
-
passwordValue.value = "";
|
|
74
|
+
} catch (e) {
|
|
75
|
+
toast.error(e?.data?.message || "\u0E40\u0E01\u0E34\u0E14\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14\u0E43\u0E19\u0E01\u0E32\u0E23\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D");
|
|
65
76
|
} finally {
|
|
66
|
-
|
|
77
|
+
loading.value = false;
|
|
67
78
|
}
|
|
68
79
|
};
|
|
69
80
|
</script>
|
|
@@ -1,24 +1,28 @@
|
|
|
1
|
-
|
|
2
|
-
phone?: string;
|
|
3
|
-
confirmedText?: string;
|
|
1
|
+
interface Props {
|
|
4
2
|
title?: string;
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
confirmText?: string;
|
|
4
|
+
loginToken?: string;
|
|
5
|
+
}
|
|
6
|
+
type __VLS_Props = Props;
|
|
7
7
|
type __VLS_ModelProps = {
|
|
8
8
|
modelValue?: boolean;
|
|
9
9
|
};
|
|
10
10
|
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
|
|
11
11
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
"update:modelValue": (value: boolean) => any;
|
|
13
|
+
complete: (data: {
|
|
14
|
+
secId: string;
|
|
15
|
+
}) => any;
|
|
16
|
+
close: () => any;
|
|
15
17
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
16
18
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
17
|
-
onComplete?: ((
|
|
18
|
-
|
|
19
|
+
onComplete?: ((data: {
|
|
20
|
+
secId: string;
|
|
21
|
+
}) => any) | undefined;
|
|
22
|
+
onClose?: (() => any) | undefined;
|
|
19
23
|
}>, {
|
|
20
24
|
title: string;
|
|
21
|
-
|
|
25
|
+
confirmText: string;
|
|
22
26
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
23
27
|
declare const _default: typeof __VLS_export;
|
|
24
28
|
export default _default;
|
|
@@ -8,19 +8,19 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
default?: (props: typeof __VLS_19) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
openAutoFocus: (event: Event) => any;
|
|
12
|
-
closeAutoFocus: (event: Event) => any;
|
|
13
11
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
14
12
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
15
13
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
16
14
|
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
15
|
+
openAutoFocus: (event: Event) => any;
|
|
16
|
+
closeAutoFocus: (event: Event) => any;
|
|
17
17
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
18
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
19
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
20
18
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21
19
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
22
20
|
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
23
21
|
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
22
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
23
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
24
24
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
25
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
26
26
|
declare const _default: typeof __VLS_export;
|
|
@@ -8,19 +8,19 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
default?: (props: typeof __VLS_19) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
openAutoFocus: (event: Event) => any;
|
|
12
|
-
closeAutoFocus: (event: Event) => any;
|
|
13
11
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
14
12
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
15
13
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
16
14
|
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
15
|
+
openAutoFocus: (event: Event) => any;
|
|
16
|
+
closeAutoFocus: (event: Event) => any;
|
|
17
17
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
18
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
19
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
20
18
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21
19
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
22
20
|
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
23
21
|
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
22
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
23
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
24
24
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
25
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
26
26
|
declare const _default: typeof __VLS_export;
|
|
@@ -13,21 +13,21 @@ type __VLS_Slots = {} & {
|
|
|
13
13
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
14
|
submit: (event: Event) => any;
|
|
15
15
|
close: (event: Event) => any;
|
|
16
|
-
openAutoFocus: (event: Event) => any;
|
|
17
|
-
closeAutoFocus: (event: Event) => any;
|
|
18
16
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
19
17
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
20
18
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
21
19
|
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
20
|
+
openAutoFocus: (event: Event) => any;
|
|
21
|
+
closeAutoFocus: (event: Event) => any;
|
|
22
22
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
23
23
|
onSubmit?: ((event: Event) => any) | undefined;
|
|
24
24
|
onClose?: ((event: Event) => any) | undefined;
|
|
25
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
26
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
27
25
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
28
26
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
29
27
|
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
30
28
|
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
29
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
30
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
31
31
|
}>, {
|
|
32
32
|
disabledCloseBtn: boolean;
|
|
33
33
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -13,21 +13,21 @@ type __VLS_Slots = {} & {
|
|
|
13
13
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
14
|
submit: (event: Event) => any;
|
|
15
15
|
close: (event: Event) => any;
|
|
16
|
-
openAutoFocus: (event: Event) => any;
|
|
17
|
-
closeAutoFocus: (event: Event) => any;
|
|
18
16
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
19
17
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
20
18
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
21
19
|
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
20
|
+
openAutoFocus: (event: Event) => any;
|
|
21
|
+
closeAutoFocus: (event: Event) => any;
|
|
22
22
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
23
23
|
onSubmit?: ((event: Event) => any) | undefined;
|
|
24
24
|
onClose?: ((event: Event) => any) | undefined;
|
|
25
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
26
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
27
25
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
28
26
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
29
27
|
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
30
28
|
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
29
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
30
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
31
31
|
}>, {
|
|
32
32
|
disabledCloseBtn: boolean;
|
|
33
33
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -8,19 +8,19 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
default?: (props: typeof __VLS_22) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
openAutoFocus: (event: Event) => any;
|
|
12
|
-
closeAutoFocus: (event: Event) => any;
|
|
13
11
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
14
12
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
15
13
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
16
14
|
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
15
|
+
openAutoFocus: (event: Event) => any;
|
|
16
|
+
closeAutoFocus: (event: Event) => any;
|
|
17
17
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
18
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
19
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
20
18
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21
19
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
22
20
|
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
23
21
|
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
22
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
23
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
24
24
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
25
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
26
26
|
declare const _default: typeof __VLS_export;
|
|
@@ -8,19 +8,19 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
default?: (props: typeof __VLS_22) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
openAutoFocus: (event: Event) => any;
|
|
12
|
-
closeAutoFocus: (event: Event) => any;
|
|
13
11
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
14
12
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
15
13
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
16
14
|
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
15
|
+
openAutoFocus: (event: Event) => any;
|
|
16
|
+
closeAutoFocus: (event: Event) => any;
|
|
17
17
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
18
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
19
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
20
18
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21
19
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
22
20
|
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
23
21
|
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
22
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
23
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
24
24
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
25
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
26
26
|
declare const _default: typeof __VLS_export;
|
|
@@ -8,17 +8,17 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
default?: (props: typeof __VLS_14) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
closeAutoFocus: (event: Event) => any;
|
|
12
11
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
13
12
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
14
13
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
15
14
|
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
15
|
+
closeAutoFocus: (event: Event) => any;
|
|
16
16
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
17
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
18
17
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
19
18
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
20
19
|
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
21
20
|
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
21
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
22
22
|
}>, {
|
|
23
23
|
sideOffset: number;
|
|
24
24
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -8,17 +8,17 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
default?: (props: typeof __VLS_14) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
closeAutoFocus: (event: Event) => any;
|
|
12
11
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
13
12
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
14
13
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
15
14
|
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
15
|
+
closeAutoFocus: (event: Event) => any;
|
|
16
16
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
17
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
18
17
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
19
18
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
20
19
|
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
21
20
|
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
21
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
22
22
|
}>, {
|
|
23
23
|
sideOffset: number;
|
|
24
24
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -8,20 +8,20 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
default?: (props: typeof __VLS_8) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
openAutoFocus: (event: Event) => any;
|
|
12
|
-
closeAutoFocus: (event: Event) => any;
|
|
13
11
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
14
12
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
15
13
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
16
14
|
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
15
|
+
openAutoFocus: (event: Event) => any;
|
|
16
|
+
closeAutoFocus: (event: Event) => any;
|
|
17
17
|
entryFocus: (event: Event) => any;
|
|
18
18
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
19
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
20
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
21
19
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
22
20
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
23
21
|
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
24
22
|
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
23
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
24
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
25
25
|
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
26
26
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
27
27
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -8,20 +8,20 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
default?: (props: typeof __VLS_8) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
openAutoFocus: (event: Event) => any;
|
|
12
|
-
closeAutoFocus: (event: Event) => any;
|
|
13
11
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
14
12
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
15
13
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
16
14
|
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
15
|
+
openAutoFocus: (event: Event) => any;
|
|
16
|
+
closeAutoFocus: (event: Event) => any;
|
|
17
17
|
entryFocus: (event: Event) => any;
|
|
18
18
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
19
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
20
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
21
19
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
22
20
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
23
21
|
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
24
22
|
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
23
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
24
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
25
25
|
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
26
26
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
27
27
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -8,19 +8,19 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
default?: (props: typeof __VLS_14) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
openAutoFocus: (event: Event) => any;
|
|
12
|
-
closeAutoFocus: (event: Event) => any;
|
|
13
11
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
14
12
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
15
13
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
16
14
|
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
15
|
+
openAutoFocus: (event: Event) => any;
|
|
16
|
+
closeAutoFocus: (event: Event) => any;
|
|
17
17
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
18
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
19
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
20
18
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21
19
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
22
20
|
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
23
21
|
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
22
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
23
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
24
24
|
}>, {
|
|
25
25
|
align: "start" | "center" | "end";
|
|
26
26
|
sideOffset: number;
|
|
@@ -8,19 +8,19 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
default?: (props: typeof __VLS_14) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
openAutoFocus: (event: Event) => any;
|
|
12
|
-
closeAutoFocus: (event: Event) => any;
|
|
13
11
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
14
12
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
15
13
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
16
14
|
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
15
|
+
openAutoFocus: (event: Event) => any;
|
|
16
|
+
closeAutoFocus: (event: Event) => any;
|
|
17
17
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
18
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
19
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
20
18
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21
19
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
22
20
|
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
23
21
|
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
22
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
23
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
24
24
|
}>, {
|
|
25
25
|
align: "start" | "center" | "end";
|
|
26
26
|
sideOffset: number;
|
|
@@ -8,13 +8,13 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
default?: (props: typeof __VLS_25) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
closeAutoFocus: (event: Event) => any;
|
|
12
11
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
13
12
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
13
|
+
closeAutoFocus: (event: Event) => any;
|
|
14
14
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
16
15
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
17
16
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
17
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
18
18
|
}>, {
|
|
19
19
|
position: "item-aligned" | "popper";
|
|
20
20
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -8,13 +8,13 @@ type __VLS_Slots = {} & {
|
|
|
8
8
|
default?: (props: typeof __VLS_25) => any;
|
|
9
9
|
};
|
|
10
10
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
closeAutoFocus: (event: Event) => any;
|
|
12
11
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
13
12
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
13
|
+
closeAutoFocus: (event: Event) => any;
|
|
14
14
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
15
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
16
15
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
17
16
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
17
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
18
18
|
}>, {
|
|
19
19
|
position: "item-aligned" | "popper";
|
|
20
20
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -13,21 +13,21 @@ type __VLS_Slots = {} & {
|
|
|
13
13
|
declare const __VLS_base: import("vue").DefineComponent<SheetContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
14
|
submit: (event: Event) => any;
|
|
15
15
|
close: () => any;
|
|
16
|
-
openAutoFocus: (event: Event) => any;
|
|
17
|
-
closeAutoFocus: (event: Event) => any;
|
|
18
16
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
19
17
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
20
18
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
21
19
|
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
20
|
+
openAutoFocus: (event: Event) => any;
|
|
21
|
+
closeAutoFocus: (event: Event) => any;
|
|
22
22
|
}, string, import("vue").PublicProps, Readonly<SheetContentProps> & Readonly<{
|
|
23
23
|
onSubmit?: ((event: Event) => any) | undefined;
|
|
24
24
|
onClose?: (() => any) | undefined;
|
|
25
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
26
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
27
25
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
28
26
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
29
27
|
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
30
28
|
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
29
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
30
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
31
31
|
}>, {
|
|
32
32
|
side: "top" | "right" | "bottom" | "left";
|
|
33
33
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -13,21 +13,21 @@ type __VLS_Slots = {} & {
|
|
|
13
13
|
declare const __VLS_base: import("vue").DefineComponent<SheetContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
14
|
submit: (event: Event) => any;
|
|
15
15
|
close: () => any;
|
|
16
|
-
openAutoFocus: (event: Event) => any;
|
|
17
|
-
closeAutoFocus: (event: Event) => any;
|
|
18
16
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
19
17
|
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
20
18
|
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
21
19
|
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
20
|
+
openAutoFocus: (event: Event) => any;
|
|
21
|
+
closeAutoFocus: (event: Event) => any;
|
|
22
22
|
}, string, import("vue").PublicProps, Readonly<SheetContentProps> & Readonly<{
|
|
23
23
|
onSubmit?: ((event: Event) => any) | undefined;
|
|
24
24
|
onClose?: (() => any) | undefined;
|
|
25
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
26
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
27
25
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
28
26
|
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
29
27
|
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
30
28
|
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
29
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
30
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
31
31
|
}>, {
|
|
32
32
|
side: "top" | "right" | "bottom" | "left";
|
|
33
33
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
package/package.json
CHANGED
/package/dist/runtime/components/modal/{modal-password.d.vue.ts → modal-password-confirmed.d.vue.ts}
RENAMED
|
File without changes
|
/package/dist/runtime/components/modal/{modal-password.vue.d.ts → modal-password-confirmed.vue.d.ts}
RENAMED
|
File without changes
|