pukaad-ui-lib 1.400.0 → 1.402.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/card/card-content/card-content-close.d.vue.ts +7 -0
- package/dist/runtime/components/card/card-content/card-content-close.vue +15 -0
- package/dist/runtime/components/card/card-content/card-content-close.vue.d.ts +7 -0
- package/dist/runtime/components/card/card-content/card-content.d.vue.ts +3 -0
- package/dist/runtime/components/card/card-content/card-content.vue +10 -1
- package/dist/runtime/components/card/card-content/card-content.vue.d.ts +3 -0
- package/dist/runtime/components/card/card-refer.d.vue.ts +26 -0
- package/dist/runtime/components/card/card-refer.vue +126 -0
- package/dist/runtime/components/card/card-refer.vue.d.ts +26 -0
- package/dist/runtime/components/display/display-video.vue +16 -1
- package/dist/runtime/components/input/input-address.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-address.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-file.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-file.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-password.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-password.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-personal-card-id.d.vue.ts +2 -2
- package/dist/runtime/components/input/input-personal-card-id.vue.d.ts +2 -2
- package/dist/runtime/components/input/input-text-field.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-text-field.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-textarea.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-textarea.vue.d.ts +1 -1
- package/dist/runtime/components/modal/modal-password-confirmed.d.vue.ts +1 -1
- package/dist/runtime/components/modal/modal-password-confirmed.vue.d.ts +1 -1
- package/dist/runtime/components/modal/modal-password-verify.d.vue.ts +1 -1
- package/dist/runtime/components/modal/modal-password-verify.vue.d.ts +1 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
2
|
+
close: () => any;
|
|
3
|
+
}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
4
|
+
onClose?: (() => any) | undefined;
|
|
5
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<Button
|
|
3
|
+
type="button"
|
|
4
|
+
circle
|
|
5
|
+
variant="ghost"
|
|
6
|
+
class="size-[24px] p-0 bg-white text-black hover:bg-white"
|
|
7
|
+
@click.stop="emit('close')"
|
|
8
|
+
>
|
|
9
|
+
<Icon name="lucide:x" size="16" />
|
|
10
|
+
</Button>
|
|
11
|
+
</template>
|
|
12
|
+
|
|
13
|
+
<script setup>
|
|
14
|
+
const emit = defineEmits(["close"]);
|
|
15
|
+
</script>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
2
|
+
close: () => any;
|
|
3
|
+
}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
4
|
+
onClose?: (() => any) | undefined;
|
|
5
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
7
|
+
export default _default;
|
|
@@ -9,12 +9,15 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
9
9
|
"update:selected": (value: boolean) => any;
|
|
10
10
|
} & {
|
|
11
11
|
click: (item: CardContentItem) => any;
|
|
12
|
+
close: (item: CardContentItem) => any;
|
|
12
13
|
action: (name: string, item: CardContentItem) => any;
|
|
13
14
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
14
15
|
onClick?: ((item: CardContentItem) => any) | undefined;
|
|
16
|
+
onClose?: ((item: CardContentItem) => any) | undefined;
|
|
15
17
|
"onUpdate:selected"?: ((value: boolean) => any) | undefined;
|
|
16
18
|
onAction?: ((name: string, item: CardContentItem) => any) | undefined;
|
|
17
19
|
}>, {
|
|
20
|
+
closable: boolean;
|
|
18
21
|
selectable: boolean;
|
|
19
22
|
disable: boolean;
|
|
20
23
|
disabledNavigate: boolean;
|
|
@@ -41,6 +41,13 @@
|
|
|
41
41
|
>
|
|
42
42
|
<CardContentSelect v-model="selected" />
|
|
43
43
|
</div>
|
|
44
|
+
|
|
45
|
+
<div
|
|
46
|
+
v-if="props.closable"
|
|
47
|
+
class="absolute right-[8px] top-[8px] z-content"
|
|
48
|
+
>
|
|
49
|
+
<CardContentClose @close="emit('close', props.item)" />
|
|
50
|
+
</div>
|
|
44
51
|
</div>
|
|
45
52
|
</template>
|
|
46
53
|
|
|
@@ -53,18 +60,20 @@ import CardContentVideo from "./card-content-video.vue";
|
|
|
53
60
|
import CardContentTime from "./card-content-time.vue";
|
|
54
61
|
import CardContentMenu from "./card-content-menu.vue";
|
|
55
62
|
import CardContentSelect from "./card-content-select.vue";
|
|
63
|
+
import CardContentClose from "./card-content-close.vue";
|
|
56
64
|
import CardContentDisable from "./card-content-disable.vue";
|
|
57
65
|
const router = useRouter();
|
|
58
66
|
const props = defineProps({
|
|
59
67
|
item: { type: Object, required: true },
|
|
60
68
|
state: { type: String, required: false },
|
|
61
69
|
selectable: { type: Boolean, required: false, default: false },
|
|
70
|
+
closable: { type: Boolean, required: false, default: false },
|
|
62
71
|
disabledNavigate: { type: Boolean, required: false, default: false },
|
|
63
72
|
disable: { type: Boolean, required: false, default: false },
|
|
64
73
|
hidePin: { type: Boolean, required: false },
|
|
65
74
|
hideBookmark: { type: Boolean, required: false }
|
|
66
75
|
});
|
|
67
|
-
const emit = defineEmits(["click", "action"]);
|
|
76
|
+
const emit = defineEmits(["click", "action", "close"]);
|
|
68
77
|
const selected = defineModel("selected", { type: Boolean, ...{ default: false } });
|
|
69
78
|
const handleClick = () => {
|
|
70
79
|
if (props.disable) return;
|
|
@@ -9,12 +9,15 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
9
9
|
"update:selected": (value: boolean) => any;
|
|
10
10
|
} & {
|
|
11
11
|
click: (item: CardContentItem) => any;
|
|
12
|
+
close: (item: CardContentItem) => any;
|
|
12
13
|
action: (name: string, item: CardContentItem) => any;
|
|
13
14
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
14
15
|
onClick?: ((item: CardContentItem) => any) | undefined;
|
|
16
|
+
onClose?: ((item: CardContentItem) => any) | undefined;
|
|
15
17
|
"onUpdate:selected"?: ((value: boolean) => any) | undefined;
|
|
16
18
|
onAction?: ((name: string, item: CardContentItem) => any) | undefined;
|
|
17
19
|
}>, {
|
|
20
|
+
closable: boolean;
|
|
18
21
|
selectable: boolean;
|
|
19
22
|
disable: boolean;
|
|
20
23
|
disabledNavigate: boolean;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export interface CardReferItem {
|
|
2
|
+
id?: string;
|
|
3
|
+
mention_type?: string;
|
|
4
|
+
target_id?: string;
|
|
5
|
+
content_type?: string;
|
|
6
|
+
title?: string;
|
|
7
|
+
image_url?: string;
|
|
8
|
+
place_name?: string;
|
|
9
|
+
place_address?: string;
|
|
10
|
+
author_name?: string;
|
|
11
|
+
author_avatar?: string;
|
|
12
|
+
link_title?: string;
|
|
13
|
+
link_url?: string;
|
|
14
|
+
}
|
|
15
|
+
type __VLS_Props = {
|
|
16
|
+
item?: CardReferItem;
|
|
17
|
+
};
|
|
18
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
+
select: (item: CardReferItem) => any;
|
|
20
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
21
|
+
onSelect?: ((item: CardReferItem) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
item: CardReferItem;
|
|
24
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
declare const _default: typeof __VLS_export;
|
|
26
|
+
export default _default;
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div
|
|
3
|
+
class="flex gap-[16px] bg-bright p-[8px] rounded-[6px] w-full items-center cursor-pointer"
|
|
4
|
+
@click="onClick"
|
|
5
|
+
>
|
|
6
|
+
<!-- post-it -->
|
|
7
|
+
<div
|
|
8
|
+
v-if="isPost && props.item.content_type === 'post_it'"
|
|
9
|
+
class="w-[50px] h-[50px] shrink-0 bg-info rounded-sm flex items-center justify-center"
|
|
10
|
+
>
|
|
11
|
+
<Icon name="fa6-solid:message" size="24" class="text-primary" />
|
|
12
|
+
</div>
|
|
13
|
+
|
|
14
|
+
<!-- Image -->
|
|
15
|
+
<Image
|
|
16
|
+
v-else-if="isPost && props.item.content_type === 'image'"
|
|
17
|
+
:src="props.item.image_url"
|
|
18
|
+
:width="50"
|
|
19
|
+
:height="50"
|
|
20
|
+
class="shrink-0 rounded-[4px]"
|
|
21
|
+
/>
|
|
22
|
+
|
|
23
|
+
<!-- video -->
|
|
24
|
+
<div
|
|
25
|
+
v-else-if="isPost && props.item.content_type === 'video'"
|
|
26
|
+
class="relative w-[50px] h-[50px] shrink-0"
|
|
27
|
+
>
|
|
28
|
+
<Image
|
|
29
|
+
:src="props.item.image_url"
|
|
30
|
+
:width="50"
|
|
31
|
+
:height="50"
|
|
32
|
+
class="rounded-[4px]"
|
|
33
|
+
/>
|
|
34
|
+
<div
|
|
35
|
+
class="absolute inset-0 m-auto bg-black/50 w-[24px] h-[24px] rounded-full flex items-center justify-center"
|
|
36
|
+
>
|
|
37
|
+
<Icon name="lucide:play" size="16" class="text-white" />
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
|
|
41
|
+
<!-- Blog -->
|
|
42
|
+
<Image
|
|
43
|
+
v-else-if="props.item.mention_type === 'blog'"
|
|
44
|
+
:src="props.item.image_url"
|
|
45
|
+
:width="89"
|
|
46
|
+
:height="50"
|
|
47
|
+
class="shrink-0 rounded-[4px]"
|
|
48
|
+
/>
|
|
49
|
+
|
|
50
|
+
<!-- Link -->
|
|
51
|
+
<div
|
|
52
|
+
v-else-if="props.item.mention_type === 'link'"
|
|
53
|
+
class="w-[50px] h-[50px] shrink-0 bg-info rounded-sm flex items-center justify-center"
|
|
54
|
+
>
|
|
55
|
+
<Icon name="fa6-solid:link" size="24" class="text-primary" />
|
|
56
|
+
</div>
|
|
57
|
+
|
|
58
|
+
<!-- ปลายทางถูกลบ / campaign ที่ยัง resolve ไม่ได้ — ไม่มีรูปให้โชว์ -->
|
|
59
|
+
<div
|
|
60
|
+
v-else
|
|
61
|
+
class="w-[50px] h-[50px] shrink-0 bg-mercury rounded-sm flex items-center justify-center"
|
|
62
|
+
>
|
|
63
|
+
<Icon name="lucide:file-question" size="24" class="text-gray" />
|
|
64
|
+
</div>
|
|
65
|
+
|
|
66
|
+
<div class="flex flex-col gap-[4px] min-w-0 flex-1">
|
|
67
|
+
<div class="font-body-large-prominent w-full truncate">
|
|
68
|
+
{{ displayTitle }}
|
|
69
|
+
</div>
|
|
70
|
+
|
|
71
|
+
<!-- บล็อกโชว์ผู้เขียน อย่างอื่นโชว์บรรทัดรองตาม type -->
|
|
72
|
+
<div
|
|
73
|
+
v-if="props.item.mention_type === 'blog' && props.item.author_name"
|
|
74
|
+
class="flex gap-[4px] items-center"
|
|
75
|
+
>
|
|
76
|
+
<Avatar :src="props.item.author_avatar" :size="16" />
|
|
77
|
+
<div class="font-body-small text-gray truncate">
|
|
78
|
+
{{ props.item.author_name }}
|
|
79
|
+
</div>
|
|
80
|
+
</div>
|
|
81
|
+
<div v-else-if="subTitle" class="font-body-small text-gray w-full truncate">
|
|
82
|
+
{{ subTitle }}
|
|
83
|
+
</div>
|
|
84
|
+
</div>
|
|
85
|
+
|
|
86
|
+
<Icon name="lucide:chevron-right" size="24" class="shrink-0" />
|
|
87
|
+
</div>
|
|
88
|
+
</template>
|
|
89
|
+
|
|
90
|
+
<script setup>
|
|
91
|
+
import { computed } from "vue";
|
|
92
|
+
import { useRouter } from "vue-router";
|
|
93
|
+
const emit = defineEmits(["select"]);
|
|
94
|
+
const props = defineProps({
|
|
95
|
+
item: { type: Object, required: false, default: () => ({}) }
|
|
96
|
+
});
|
|
97
|
+
const router = useRouter();
|
|
98
|
+
const isPost = computed(() => props.item.mention_type === "post");
|
|
99
|
+
const displayTitle = computed(() => {
|
|
100
|
+
if (props.item.mention_type === "link") {
|
|
101
|
+
return props.item.link_title || props.item.link_url || "";
|
|
102
|
+
}
|
|
103
|
+
return props.item.title || "\u0E44\u0E21\u0E48\u0E1E\u0E1A\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23";
|
|
104
|
+
});
|
|
105
|
+
const subTitle = computed(() => {
|
|
106
|
+
if (props.item.mention_type === "link") {
|
|
107
|
+
return props.item.link_title ? props.item.link_url : "";
|
|
108
|
+
}
|
|
109
|
+
if (isPost.value) return props.item.place_name;
|
|
110
|
+
return "";
|
|
111
|
+
});
|
|
112
|
+
const onClick = () => {
|
|
113
|
+
emit("select", props.item);
|
|
114
|
+
const { mention_type, target_id, link_url } = props.item;
|
|
115
|
+
if (mention_type === "link") {
|
|
116
|
+
if (link_url) window.open(link_url, "_blank", "noopener");
|
|
117
|
+
return;
|
|
118
|
+
}
|
|
119
|
+
if (!target_id) return;
|
|
120
|
+
if (mention_type === "post") {
|
|
121
|
+
router.push(`/content/${target_id}`);
|
|
122
|
+
} else if (mention_type === "blog") {
|
|
123
|
+
router.push(`/blog/${target_id}`);
|
|
124
|
+
}
|
|
125
|
+
};
|
|
126
|
+
</script>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export interface CardReferItem {
|
|
2
|
+
id?: string;
|
|
3
|
+
mention_type?: string;
|
|
4
|
+
target_id?: string;
|
|
5
|
+
content_type?: string;
|
|
6
|
+
title?: string;
|
|
7
|
+
image_url?: string;
|
|
8
|
+
place_name?: string;
|
|
9
|
+
place_address?: string;
|
|
10
|
+
author_name?: string;
|
|
11
|
+
author_avatar?: string;
|
|
12
|
+
link_title?: string;
|
|
13
|
+
link_url?: string;
|
|
14
|
+
}
|
|
15
|
+
type __VLS_Props = {
|
|
16
|
+
item?: CardReferItem;
|
|
17
|
+
};
|
|
18
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
+
select: (item: CardReferItem) => any;
|
|
20
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
21
|
+
onSelect?: ((item: CardReferItem) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
item: CardReferItem;
|
|
24
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
declare const _default: typeof __VLS_export;
|
|
26
|
+
export default _default;
|
|
@@ -186,11 +186,26 @@ const syncPlayback = () => {
|
|
|
186
186
|
el.volume = props.volume;
|
|
187
187
|
el.playbackRate = props.playbackRate;
|
|
188
188
|
};
|
|
189
|
+
const applyStartTime = () => {
|
|
190
|
+
const el = videoRef.value;
|
|
191
|
+
if (!el || !props.startTime) return;
|
|
192
|
+
if (el.readyState >= 1) {
|
|
193
|
+
el.currentTime = props.startTime;
|
|
194
|
+
return;
|
|
195
|
+
}
|
|
196
|
+
el.addEventListener(
|
|
197
|
+
"loadedmetadata",
|
|
198
|
+
() => {
|
|
199
|
+
el.currentTime = props.startTime;
|
|
200
|
+
},
|
|
201
|
+
{ once: true }
|
|
202
|
+
);
|
|
203
|
+
};
|
|
189
204
|
onMounted(() => {
|
|
190
205
|
syncPlayback();
|
|
191
206
|
const el = videoRef.value;
|
|
192
207
|
if (!el) return;
|
|
193
|
-
|
|
208
|
+
applyStartTime();
|
|
194
209
|
onPaused(el.paused);
|
|
195
210
|
});
|
|
196
211
|
onBeforeUnmount(clearHideTimer);
|
|
@@ -50,10 +50,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
50
50
|
name: string;
|
|
51
51
|
required: boolean;
|
|
52
52
|
placeholder: string;
|
|
53
|
+
gap: string;
|
|
53
54
|
labelDetail: string;
|
|
54
55
|
placeholderDetail: string;
|
|
55
56
|
requiredDetail: boolean;
|
|
56
|
-
gap: string;
|
|
57
57
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
58
58
|
declare const _default: typeof __VLS_export;
|
|
59
59
|
export default _default;
|
|
@@ -50,10 +50,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
50
50
|
name: string;
|
|
51
51
|
required: boolean;
|
|
52
52
|
placeholder: string;
|
|
53
|
+
gap: string;
|
|
53
54
|
labelDetail: string;
|
|
54
55
|
placeholderDetail: string;
|
|
55
56
|
requiredDetail: boolean;
|
|
56
|
-
gap: string;
|
|
57
57
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
58
58
|
declare const _default: typeof __VLS_export;
|
|
59
59
|
export default _default;
|
|
@@ -35,8 +35,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
35
35
|
fullHeight: boolean;
|
|
36
36
|
fullWidth: boolean;
|
|
37
37
|
limit: number;
|
|
38
|
-
disabledErrorMessage: boolean;
|
|
39
38
|
accept: string;
|
|
39
|
+
disabledErrorMessage: boolean;
|
|
40
40
|
labelIcon: string;
|
|
41
41
|
disabledDrop: boolean;
|
|
42
42
|
column: boolean;
|
|
@@ -35,8 +35,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
35
35
|
fullHeight: boolean;
|
|
36
36
|
fullWidth: boolean;
|
|
37
37
|
limit: number;
|
|
38
|
-
disabledErrorMessage: boolean;
|
|
39
38
|
accept: string;
|
|
39
|
+
disabledErrorMessage: boolean;
|
|
40
40
|
labelIcon: string;
|
|
41
41
|
disabledDrop: boolean;
|
|
42
42
|
column: boolean;
|
|
@@ -22,8 +22,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
22
22
|
}>, {
|
|
23
23
|
id: string;
|
|
24
24
|
name: string;
|
|
25
|
-
new: boolean;
|
|
26
25
|
disabledForgotPassword: boolean;
|
|
26
|
+
new: boolean;
|
|
27
27
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
28
|
declare const _default: typeof __VLS_export;
|
|
29
29
|
export default _default;
|
|
@@ -22,8 +22,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
22
22
|
}>, {
|
|
23
23
|
id: string;
|
|
24
24
|
name: string;
|
|
25
|
-
new: boolean;
|
|
26
25
|
disabledForgotPassword: boolean;
|
|
26
|
+
new: boolean;
|
|
27
27
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
28
|
declare const _default: typeof __VLS_export;
|
|
29
29
|
export default _default;
|
|
@@ -11,12 +11,12 @@ 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
12
|
"update:modelValue": (value: File | null) => any;
|
|
13
13
|
} & {
|
|
14
|
-
remove: () => any;
|
|
15
14
|
complete: (file: File) => any;
|
|
15
|
+
remove: () => any;
|
|
16
16
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
17
17
|
"onUpdate:modelValue"?: ((value: File | null) => any) | undefined;
|
|
18
|
-
onRemove?: (() => any) | undefined;
|
|
19
18
|
onComplete?: ((file: File) => any) | undefined;
|
|
19
|
+
onRemove?: (() => any) | undefined;
|
|
20
20
|
}>, {
|
|
21
21
|
name: string;
|
|
22
22
|
disabledErrorMessage: boolean;
|
|
@@ -11,12 +11,12 @@ 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
12
|
"update:modelValue": (value: File | null) => any;
|
|
13
13
|
} & {
|
|
14
|
-
remove: () => any;
|
|
15
14
|
complete: (file: File) => any;
|
|
15
|
+
remove: () => any;
|
|
16
16
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
17
17
|
"onUpdate:modelValue"?: ((value: File | null) => any) | undefined;
|
|
18
|
-
onRemove?: (() => any) | undefined;
|
|
19
18
|
onComplete?: ((file: File) => any) | undefined;
|
|
19
|
+
onRemove?: (() => any) | undefined;
|
|
20
20
|
}>, {
|
|
21
21
|
name: string;
|
|
22
22
|
disabledErrorMessage: boolean;
|
|
@@ -59,8 +59,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
59
59
|
id: string;
|
|
60
60
|
name: string;
|
|
61
61
|
required: boolean;
|
|
62
|
-
limit: number;
|
|
63
62
|
readonly: boolean;
|
|
63
|
+
limit: number;
|
|
64
64
|
disabledErrorMessage: boolean;
|
|
65
65
|
disabledBorder: boolean;
|
|
66
66
|
showCounter: boolean;
|
|
@@ -59,8 +59,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
59
59
|
id: string;
|
|
60
60
|
name: string;
|
|
61
61
|
required: boolean;
|
|
62
|
-
limit: number;
|
|
63
62
|
readonly: boolean;
|
|
63
|
+
limit: number;
|
|
64
64
|
disabledErrorMessage: boolean;
|
|
65
65
|
disabledBorder: boolean;
|
|
66
66
|
showCounter: boolean;
|
|
@@ -47,8 +47,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
47
47
|
fullHeight: boolean;
|
|
48
48
|
fullWidth: boolean;
|
|
49
49
|
rows: number;
|
|
50
|
-
limit: number;
|
|
51
50
|
readonly: boolean;
|
|
51
|
+
limit: number;
|
|
52
52
|
disabledErrorMessage: boolean;
|
|
53
53
|
disabledBorder: boolean;
|
|
54
54
|
showCounter: boolean;
|
|
@@ -47,8 +47,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
47
47
|
fullHeight: boolean;
|
|
48
48
|
fullWidth: boolean;
|
|
49
49
|
rows: number;
|
|
50
|
-
limit: number;
|
|
51
50
|
readonly: boolean;
|
|
51
|
+
limit: number;
|
|
52
52
|
disabledErrorMessage: boolean;
|
|
53
53
|
disabledBorder: boolean;
|
|
54
54
|
showCounter: boolean;
|
|
@@ -24,8 +24,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
24
24
|
}) => any) | undefined;
|
|
25
25
|
}>, {
|
|
26
26
|
title: string;
|
|
27
|
-
disabledForgotPassword: boolean;
|
|
28
27
|
confirmText: string;
|
|
28
|
+
disabledForgotPassword: boolean;
|
|
29
29
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
30
|
declare const _default: typeof __VLS_export;
|
|
31
31
|
export default _default;
|
|
@@ -24,8 +24,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
24
24
|
}) => any) | undefined;
|
|
25
25
|
}>, {
|
|
26
26
|
title: string;
|
|
27
|
-
disabledForgotPassword: boolean;
|
|
28
27
|
confirmText: string;
|
|
28
|
+
disabledForgotPassword: boolean;
|
|
29
29
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
30
|
declare const _default: typeof __VLS_export;
|
|
31
31
|
export default _default;
|
|
@@ -32,8 +32,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
32
32
|
}>, {
|
|
33
33
|
title: string;
|
|
34
34
|
mode: "login" | "secure";
|
|
35
|
-
disabledForgotPassword: boolean;
|
|
36
35
|
confirmText: string;
|
|
36
|
+
disabledForgotPassword: boolean;
|
|
37
37
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
38
38
|
declare const _default: typeof __VLS_export;
|
|
39
39
|
export default _default;
|
|
@@ -32,8 +32,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
32
32
|
}>, {
|
|
33
33
|
title: string;
|
|
34
34
|
mode: "login" | "secure";
|
|
35
|
-
disabledForgotPassword: boolean;
|
|
36
35
|
confirmText: string;
|
|
36
|
+
disabledForgotPassword: boolean;
|
|
37
37
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
38
38
|
declare const _default: typeof __VLS_export;
|
|
39
39
|
export default _default;
|