pukaad-ui-lib 1.285.0 → 1.286.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/drawer/drawer-suggest-place/suggest-place-form.vue +2 -2
- package/dist/runtime/components/input/input-autocomplete.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-autocomplete.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-tag.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-tag.vue.d.ts +1 -1
- 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/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
placeholder="คำอธิบายเกี่ยวกับสถานที่ (สูงสุด 220 ตัวอักษร)" :limit="220" show-counter />
|
|
26
26
|
<InputDateOpening name="openingHours" v-model="modelValue.openingHours" />
|
|
27
27
|
<div class="flex flex-col gap-[8px]">
|
|
28
|
-
<
|
|
29
|
-
<
|
|
28
|
+
<InputTextField name="phone" v-model="modelValue.phone" label="เบอร์โทรศัพท์" placeholder="กรอกเบอร์โทรศัพท์" />
|
|
29
|
+
<InputTextField v-for="(item, index) in modelValue.extraPhones" :key="index" :name="`extraPhone-${index}`"
|
|
30
30
|
label="เบอร์โทรศัพท์" placeholder="กรอกเบอร์โทรศัพท์" v-model="modelValue.extraPhones[index]" />
|
|
31
31
|
<Button variant="text" color="primary" class="w-[145px]" @click="modelValue.extraPhones.push('')">
|
|
32
32
|
<Icon name="lucide:plus" />
|
|
@@ -50,11 +50,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
50
50
|
name: string;
|
|
51
51
|
description: string;
|
|
52
52
|
options: AutocompleteOption[] | string[] | number[];
|
|
53
|
+
limit: number;
|
|
53
54
|
placeholder: string;
|
|
54
55
|
disabledErrorMessage: boolean;
|
|
55
56
|
disabledBorder: boolean;
|
|
56
57
|
showCounter: boolean;
|
|
57
|
-
limit: number;
|
|
58
58
|
returnObject: boolean;
|
|
59
59
|
freeText: boolean;
|
|
60
60
|
valueKey: string;
|
|
@@ -50,11 +50,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
50
50
|
name: string;
|
|
51
51
|
description: string;
|
|
52
52
|
options: AutocompleteOption[] | string[] | number[];
|
|
53
|
+
limit: number;
|
|
53
54
|
placeholder: string;
|
|
54
55
|
disabledErrorMessage: boolean;
|
|
55
56
|
disabledBorder: boolean;
|
|
56
57
|
showCounter: boolean;
|
|
57
|
-
limit: number;
|
|
58
58
|
returnObject: boolean;
|
|
59
59
|
freeText: boolean;
|
|
60
60
|
valueKey: string;
|
|
@@ -34,8 +34,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
34
34
|
fullWidth: boolean;
|
|
35
35
|
fullHeight: boolean;
|
|
36
36
|
name: string;
|
|
37
|
-
disabledErrorMessage: boolean;
|
|
38
37
|
limit: number;
|
|
38
|
+
disabledErrorMessage: boolean;
|
|
39
39
|
accept: string;
|
|
40
40
|
labelIcon: string;
|
|
41
41
|
disabledDrop: boolean;
|
|
@@ -34,8 +34,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
34
34
|
fullWidth: boolean;
|
|
35
35
|
fullHeight: boolean;
|
|
36
36
|
name: string;
|
|
37
|
-
disabledErrorMessage: boolean;
|
|
38
37
|
limit: number;
|
|
38
|
+
disabledErrorMessage: boolean;
|
|
39
39
|
accept: string;
|
|
40
40
|
labelIcon: string;
|
|
41
41
|
disabledDrop: boolean;
|
|
@@ -26,8 +26,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
26
26
|
}>, {
|
|
27
27
|
name: string;
|
|
28
28
|
state: "user" | "admin";
|
|
29
|
-
placeholder: string;
|
|
30
29
|
limit: number;
|
|
30
|
+
placeholder: string;
|
|
31
31
|
ignore: string[];
|
|
32
32
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
33
|
declare const _default: typeof __VLS_export;
|
|
@@ -26,8 +26,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
26
26
|
}>, {
|
|
27
27
|
name: string;
|
|
28
28
|
state: "user" | "admin";
|
|
29
|
-
placeholder: string;
|
|
30
29
|
limit: number;
|
|
30
|
+
placeholder: string;
|
|
31
31
|
ignore: string[];
|
|
32
32
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
33
|
declare const _default: typeof __VLS_export;
|
|
@@ -59,10 +59,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
59
59
|
required: boolean;
|
|
60
60
|
id: string;
|
|
61
61
|
name: string;
|
|
62
|
+
limit: number;
|
|
62
63
|
disabledErrorMessage: boolean;
|
|
63
64
|
disabledBorder: boolean;
|
|
64
65
|
showCounter: boolean;
|
|
65
|
-
limit: number;
|
|
66
66
|
readonly: boolean;
|
|
67
67
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
68
68
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -59,10 +59,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
59
59
|
required: boolean;
|
|
60
60
|
id: string;
|
|
61
61
|
name: string;
|
|
62
|
+
limit: number;
|
|
62
63
|
disabledErrorMessage: boolean;
|
|
63
64
|
disabledBorder: boolean;
|
|
64
65
|
showCounter: boolean;
|
|
65
|
-
limit: number;
|
|
66
66
|
readonly: boolean;
|
|
67
67
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
68
68
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -46,10 +46,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
46
46
|
id: string;
|
|
47
47
|
name: string;
|
|
48
48
|
resize: "none" | "both" | "horizontal" | "vertical";
|
|
49
|
+
limit: number;
|
|
49
50
|
disabledErrorMessage: boolean;
|
|
50
51
|
disabledBorder: boolean;
|
|
51
52
|
showCounter: boolean;
|
|
52
|
-
limit: number;
|
|
53
53
|
readonly: boolean;
|
|
54
54
|
rows: number;
|
|
55
55
|
heightScroll: boolean;
|
|
@@ -46,10 +46,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
46
46
|
id: string;
|
|
47
47
|
name: string;
|
|
48
48
|
resize: "none" | "both" | "horizontal" | "vertical";
|
|
49
|
+
limit: number;
|
|
49
50
|
disabledErrorMessage: boolean;
|
|
50
51
|
disabledBorder: boolean;
|
|
51
52
|
showCounter: boolean;
|
|
52
|
-
limit: number;
|
|
53
53
|
readonly: boolean;
|
|
54
54
|
rows: number;
|
|
55
55
|
heightScroll: boolean;
|