pukaad-ui-lib 1.382.0 → 1.383.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-video.vue +1 -1
- package/dist/runtime/components/input/input-select-place.vue +11 -0
- 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
|
@@ -19,11 +19,22 @@
|
|
|
19
19
|
@click="toggleSelect(place.id)"
|
|
20
20
|
>
|
|
21
21
|
<Image
|
|
22
|
+
v-if="place.image"
|
|
22
23
|
:src="place.image"
|
|
23
24
|
:width="70"
|
|
24
25
|
:height="40"
|
|
25
26
|
class="shrink-0 rounded-[4px]"
|
|
26
27
|
/>
|
|
28
|
+
<div
|
|
29
|
+
v-else
|
|
30
|
+
class="w-[70px] h-[40px] bg-cloud flex items-center justify-center rounded-[4px]"
|
|
31
|
+
>
|
|
32
|
+
<Icon
|
|
33
|
+
name="pukaad:map-location-dot"
|
|
34
|
+
size="24"
|
|
35
|
+
class="text-gray shrink-0"
|
|
36
|
+
/>
|
|
37
|
+
</div>
|
|
27
38
|
<div class="flex flex-col gap-[4px] min-w-0 flex-1">
|
|
28
39
|
<div class="font-body-medium truncate">{{ place.name }}</div>
|
|
29
40
|
<div class="font-body-small text-gray truncate">
|
|
@@ -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;
|