pukaad-ui-lib 1.36.0 → 1.37.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
CHANGED
|
@@ -37,8 +37,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
37
37
|
name: string;
|
|
38
38
|
placeholder: string;
|
|
39
39
|
description: string;
|
|
40
|
-
limit: number;
|
|
41
40
|
options: AutocompleteOption[] | string[] | number[];
|
|
41
|
+
limit: number;
|
|
42
42
|
disabledErrorMessage: boolean;
|
|
43
43
|
disabledBorder: boolean;
|
|
44
44
|
showCounter: boolean;
|
|
@@ -37,8 +37,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
37
37
|
name: string;
|
|
38
38
|
placeholder: string;
|
|
39
39
|
description: string;
|
|
40
|
-
limit: number;
|
|
41
40
|
options: AutocompleteOption[] | string[] | number[];
|
|
41
|
+
limit: number;
|
|
42
42
|
disabledErrorMessage: boolean;
|
|
43
43
|
disabledBorder: boolean;
|
|
44
44
|
showCounter: boolean;
|
|
@@ -26,14 +26,13 @@
|
|
|
26
26
|
:class="
|
|
27
27
|
cn(
|
|
28
28
|
'w-full flex items-center justify-between gap-2 font-body-large',
|
|
29
|
-
!modelValue && 'text-cloud',
|
|
30
29
|
errorMessage && 'border-destructive',
|
|
31
30
|
props.class
|
|
32
31
|
)
|
|
33
32
|
"
|
|
34
33
|
>
|
|
35
34
|
<span v-if="modelValue">{{ formattedDate }}</span>
|
|
36
|
-
<span v-else>{{ placeholder }}</span>
|
|
35
|
+
<span v-else class="text-cloud">{{ placeholder }}</span>
|
|
37
36
|
<Icon name="lucide:calendar" :size="16" />
|
|
38
37
|
</Button>
|
|
39
38
|
</PopoverTrigger>
|