pukaad-ui-lib 1.185.0 → 1.187.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/button.d.vue.ts +6 -2
- package/dist/runtime/components/button.vue +9 -3
- package/dist/runtime/components/button.vue.d.ts +6 -2
- package/dist/runtime/components/card/card-reaction.d.vue.ts +1 -1
- package/dist/runtime/components/card/card-reaction.vue.d.ts +1 -1
- package/dist/runtime/components/card/card-user-blog.vue +1 -3
- package/dist/runtime/components/data-table.d.vue.ts +1 -1
- package/dist/runtime/components/data-table.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-OTP.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-OTP.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-birth-date.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-birth-date.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-date-picker.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-date-picker.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-radio.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-radio.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-search.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-search.vue.d.ts +1 -1
- package/dist/runtime/components/input/input-slider.d.vue.ts +1 -1
- package/dist/runtime/components/input/input-slider.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 +2 -2
- package/dist/runtime/components/input/input-textarea.vue.d.ts +2 -2
- 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/dist/runtime/components/picker/picker-option-menu/picker-option-menu.d.vue.ts +1 -1
- package/dist/runtime/components/picker/picker-option-menu/picker-option-menu.vue.d.ts +1 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -8,16 +8,20 @@ export interface ButtonProps {
|
|
|
8
8
|
variant?: ButtonVariant;
|
|
9
9
|
color?: ButtonColor;
|
|
10
10
|
circle?: boolean;
|
|
11
|
+
loading?: boolean;
|
|
12
|
+
disabled?: boolean;
|
|
11
13
|
}
|
|
12
|
-
declare var
|
|
14
|
+
declare var __VLS_13: {};
|
|
13
15
|
type __VLS_Slots = {} & {
|
|
14
|
-
default?: (props: typeof
|
|
16
|
+
default?: (props: typeof __VLS_13) => any;
|
|
15
17
|
};
|
|
16
18
|
declare const __VLS_base: import("vue").DefineComponent<ButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ButtonProps> & Readonly<{}>, {
|
|
17
19
|
circle: boolean;
|
|
18
20
|
type: ButtonType;
|
|
19
21
|
variant: ButtonVariant;
|
|
20
22
|
color: ButtonColor;
|
|
23
|
+
loading: boolean;
|
|
24
|
+
disabled: boolean;
|
|
21
25
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
26
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
23
27
|
declare const _default: typeof __VLS_export;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<ShadButton
|
|
3
3
|
:class="[
|
|
4
|
-
'font-body-medium',
|
|
4
|
+
'font-body-medium relative',
|
|
5
5
|
props.variant === 'text' && '!p-0',
|
|
6
6
|
props.circle && 'rounded-full aspect-square',
|
|
7
7
|
props.class
|
|
@@ -9,8 +9,12 @@
|
|
|
9
9
|
:variant="props.variant"
|
|
10
10
|
:color="props.color"
|
|
11
11
|
:type="props.type"
|
|
12
|
+
:disabled="props.loading || props.disabled"
|
|
12
13
|
>
|
|
13
|
-
<
|
|
14
|
+
<ShadSpinner v-if="props.loading" class="absolute" />
|
|
15
|
+
<span :class="{ 'opacity-0': props.loading }">
|
|
16
|
+
<slot />
|
|
17
|
+
</span>
|
|
14
18
|
</ShadButton>
|
|
15
19
|
</template>
|
|
16
20
|
|
|
@@ -20,6 +24,8 @@ const props = defineProps({
|
|
|
20
24
|
class: { type: null, required: false },
|
|
21
25
|
variant: { type: String, required: false, default: "default" },
|
|
22
26
|
color: { type: String, required: false, default: "default" },
|
|
23
|
-
circle: { type: Boolean, required: false, default: false }
|
|
27
|
+
circle: { type: Boolean, required: false, default: false },
|
|
28
|
+
loading: { type: Boolean, required: false, default: false },
|
|
29
|
+
disabled: { type: Boolean, required: false, default: false }
|
|
24
30
|
});
|
|
25
31
|
</script>
|
|
@@ -8,16 +8,20 @@ export interface ButtonProps {
|
|
|
8
8
|
variant?: ButtonVariant;
|
|
9
9
|
color?: ButtonColor;
|
|
10
10
|
circle?: boolean;
|
|
11
|
+
loading?: boolean;
|
|
12
|
+
disabled?: boolean;
|
|
11
13
|
}
|
|
12
|
-
declare var
|
|
14
|
+
declare var __VLS_13: {};
|
|
13
15
|
type __VLS_Slots = {} & {
|
|
14
|
-
default?: (props: typeof
|
|
16
|
+
default?: (props: typeof __VLS_13) => any;
|
|
15
17
|
};
|
|
16
18
|
declare const __VLS_base: import("vue").DefineComponent<ButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ButtonProps> & Readonly<{}>, {
|
|
17
19
|
circle: boolean;
|
|
18
20
|
type: ButtonType;
|
|
19
21
|
variant: ButtonVariant;
|
|
20
22
|
color: ButtonColor;
|
|
23
|
+
loading: boolean;
|
|
24
|
+
disabled: boolean;
|
|
21
25
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
26
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
23
27
|
declare const _default: typeof __VLS_export;
|
|
@@ -22,8 +22,8 @@ type __VLS_Props = {
|
|
|
22
22
|
state?: string;
|
|
23
23
|
};
|
|
24
24
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
25
|
-
id: string;
|
|
26
25
|
disabled: boolean;
|
|
26
|
+
id: string;
|
|
27
27
|
disabledPadding: boolean;
|
|
28
28
|
state: string;
|
|
29
29
|
itemCount: Count;
|
|
@@ -22,8 +22,8 @@ type __VLS_Props = {
|
|
|
22
22
|
state?: string;
|
|
23
23
|
};
|
|
24
24
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
25
|
-
id: string;
|
|
26
25
|
disabled: boolean;
|
|
26
|
+
id: string;
|
|
27
27
|
disabledPadding: boolean;
|
|
28
28
|
state: string;
|
|
29
29
|
itemCount: Count;
|
|
@@ -30,9 +30,7 @@
|
|
|
30
30
|
</div>
|
|
31
31
|
</div>
|
|
32
32
|
</div>
|
|
33
|
-
|
|
34
33
|
<Icon v-if="isPinned" name="lucide:pin" :size="20" />
|
|
35
|
-
|
|
36
34
|
<PickerOptionMenuUser
|
|
37
35
|
:state="
|
|
38
36
|
props.isMyProfile ? isPinned ? 'my-blog-pined' : 'my-blog' : 'report-announce'
|
|
@@ -43,7 +41,7 @@
|
|
|
43
41
|
@blog-edit="onBlogEdit"
|
|
44
42
|
/>
|
|
45
43
|
</div>
|
|
46
|
-
<div @click="onBlogClick">
|
|
44
|
+
<div class="flex flex-col gap-[16px] cursor-pointer" @click="onBlogClick">
|
|
47
45
|
<Image
|
|
48
46
|
v-if="props.item.image"
|
|
49
47
|
:src="props.item.image"
|
|
@@ -61,6 +61,7 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
61
61
|
"onChange-item-per-page"?: ((value: number) => any) | undefined;
|
|
62
62
|
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
63
63
|
}>, {
|
|
64
|
+
loading: boolean;
|
|
64
65
|
items: Record<string, any>[];
|
|
65
66
|
disabledPagination: boolean;
|
|
66
67
|
totalPage: number;
|
|
@@ -69,7 +70,6 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
69
70
|
cellAlignment: TableHeaderAlignment;
|
|
70
71
|
disabledHeader: boolean;
|
|
71
72
|
disabledSort: boolean;
|
|
72
|
-
loading: boolean;
|
|
73
73
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
74
74
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
75
75
|
declare const _default: typeof __VLS_export;
|
|
@@ -61,6 +61,7 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
61
61
|
"onChange-item-per-page"?: ((value: number) => any) | undefined;
|
|
62
62
|
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
63
63
|
}>, {
|
|
64
|
+
loading: boolean;
|
|
64
65
|
items: Record<string, any>[];
|
|
65
66
|
disabledPagination: boolean;
|
|
66
67
|
totalPage: number;
|
|
@@ -69,7 +70,6 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
69
70
|
cellAlignment: TableHeaderAlignment;
|
|
70
71
|
disabledHeader: boolean;
|
|
71
72
|
disabledSort: boolean;
|
|
72
|
-
loading: boolean;
|
|
73
73
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
74
74
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
75
75
|
declare const _default: typeof __VLS_export;
|
|
@@ -21,10 +21,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
21
21
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
22
22
|
onComplete?: ((value: string) => any) | undefined;
|
|
23
23
|
}>, {
|
|
24
|
+
disabled: boolean;
|
|
24
25
|
error: string;
|
|
25
26
|
id: string;
|
|
26
27
|
name: string;
|
|
27
|
-
disabled: boolean;
|
|
28
28
|
digit: number | string;
|
|
29
29
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
30
|
declare const _default: typeof __VLS_export;
|
|
@@ -21,10 +21,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
21
21
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
22
22
|
onComplete?: ((value: string) => any) | undefined;
|
|
23
23
|
}>, {
|
|
24
|
+
disabled: boolean;
|
|
24
25
|
error: string;
|
|
25
26
|
id: string;
|
|
26
27
|
name: string;
|
|
27
|
-
disabled: boolean;
|
|
28
28
|
digit: number | string;
|
|
29
29
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
30
|
declare const _default: typeof __VLS_export;
|
|
@@ -26,10 +26,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
26
26
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
27
27
|
"onUpdate:modelValue"?: ((value: Date | undefined) => any) | undefined;
|
|
28
28
|
}>, {
|
|
29
|
+
disabled: boolean;
|
|
29
30
|
required: boolean;
|
|
30
31
|
id: string;
|
|
31
32
|
name: string;
|
|
32
|
-
disabled: boolean;
|
|
33
33
|
placeholder: string;
|
|
34
34
|
disabledErrorMessage: boolean;
|
|
35
35
|
locale: string;
|
|
@@ -26,10 +26,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
26
26
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
27
27
|
"onUpdate:modelValue"?: ((value: Date | undefined) => any) | undefined;
|
|
28
28
|
}>, {
|
|
29
|
+
disabled: boolean;
|
|
29
30
|
required: boolean;
|
|
30
31
|
id: string;
|
|
31
32
|
name: string;
|
|
32
|
-
disabled: boolean;
|
|
33
33
|
placeholder: string;
|
|
34
34
|
disabledErrorMessage: boolean;
|
|
35
35
|
locale: string;
|
|
@@ -38,10 +38,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
38
38
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
39
39
|
"onUpdate:modelValue"?: ((value: Date | undefined) => any) | undefined;
|
|
40
40
|
}>, {
|
|
41
|
+
disabled: boolean;
|
|
41
42
|
required: boolean;
|
|
42
43
|
id: string;
|
|
43
44
|
name: string;
|
|
44
|
-
disabled: boolean;
|
|
45
45
|
placeholder: string;
|
|
46
46
|
disabledErrorMessage: boolean;
|
|
47
47
|
locale: string;
|
|
@@ -38,10 +38,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
38
38
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
39
39
|
"onUpdate:modelValue"?: ((value: Date | undefined) => any) | undefined;
|
|
40
40
|
}>, {
|
|
41
|
+
disabled: boolean;
|
|
41
42
|
required: boolean;
|
|
42
43
|
id: string;
|
|
43
44
|
name: string;
|
|
44
|
-
disabled: boolean;
|
|
45
45
|
placeholder: string;
|
|
46
46
|
disabledErrorMessage: boolean;
|
|
47
47
|
locale: string;
|
|
@@ -31,8 +31,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
31
31
|
fullHeight: boolean;
|
|
32
32
|
name: string;
|
|
33
33
|
limit: number;
|
|
34
|
-
disabledErrorMessage: boolean;
|
|
35
34
|
accept: string;
|
|
35
|
+
disabledErrorMessage: boolean;
|
|
36
36
|
labelIcon: string;
|
|
37
37
|
disabledDrop: boolean;
|
|
38
38
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -31,8 +31,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
31
31
|
fullHeight: boolean;
|
|
32
32
|
name: string;
|
|
33
33
|
limit: number;
|
|
34
|
-
disabledErrorMessage: boolean;
|
|
35
34
|
accept: string;
|
|
35
|
+
disabledErrorMessage: boolean;
|
|
36
36
|
labelIcon: string;
|
|
37
37
|
disabledDrop: boolean;
|
|
38
38
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -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;
|
|
@@ -30,11 +30,11 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
30
30
|
"onUpdate:modelValue"?: ((value: string | number | undefined) => any) | undefined;
|
|
31
31
|
}>, {
|
|
32
32
|
size: number | string;
|
|
33
|
+
disabled: boolean;
|
|
33
34
|
items: import("@/types/components/input/input-radio").InputRadioItem[] | string[] | number[];
|
|
34
35
|
item: string | number;
|
|
35
36
|
name: string;
|
|
36
37
|
columnGap: number | string;
|
|
37
|
-
disabled: boolean;
|
|
38
38
|
disabledErrorMessage: boolean;
|
|
39
39
|
layout: "vertical" | "horizontal";
|
|
40
40
|
labelPosition: "left" | "right";
|
|
@@ -30,11 +30,11 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {
|
|
|
30
30
|
"onUpdate:modelValue"?: ((value: string | number | undefined) => any) | undefined;
|
|
31
31
|
}>, {
|
|
32
32
|
size: number | string;
|
|
33
|
+
disabled: boolean;
|
|
33
34
|
items: import("@/types/components/input/input-radio").InputRadioItem[] | string[] | number[];
|
|
34
35
|
item: string | number;
|
|
35
36
|
name: string;
|
|
36
37
|
columnGap: number | string;
|
|
37
|
-
disabled: boolean;
|
|
38
38
|
disabledErrorMessage: boolean;
|
|
39
39
|
layout: "vertical" | "horizontal";
|
|
40
40
|
labelPosition: "left" | "right";
|
|
@@ -32,10 +32,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
32
32
|
}>, {
|
|
33
33
|
type: import("./input-text-field.vue.js").InputTextFieldType;
|
|
34
34
|
icon: string;
|
|
35
|
+
disabled: boolean;
|
|
35
36
|
required: boolean;
|
|
36
37
|
id: string;
|
|
37
38
|
name: string;
|
|
38
|
-
disabled: boolean;
|
|
39
39
|
placeholder: string;
|
|
40
40
|
disabledErrorMessage: boolean;
|
|
41
41
|
readonly: boolean;
|
|
@@ -32,10 +32,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
32
32
|
}>, {
|
|
33
33
|
type: import("./input-text-field.vue.js").InputTextFieldType;
|
|
34
34
|
icon: string;
|
|
35
|
+
disabled: boolean;
|
|
35
36
|
required: boolean;
|
|
36
37
|
id: string;
|
|
37
38
|
name: string;
|
|
38
|
-
disabled: boolean;
|
|
39
39
|
placeholder: string;
|
|
40
40
|
disabledErrorMessage: boolean;
|
|
41
41
|
readonly: boolean;
|
|
@@ -12,9 +12,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
12
12
|
label: string;
|
|
13
13
|
color: InputSliderColor;
|
|
14
14
|
fullWidth: boolean;
|
|
15
|
+
step: number;
|
|
15
16
|
max: number;
|
|
16
17
|
min: number;
|
|
17
|
-
step: number;
|
|
18
18
|
lineHeight: number | string;
|
|
19
19
|
appearance: boolean;
|
|
20
20
|
thumbSize: number | string;
|
|
@@ -12,9 +12,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
12
12
|
label: string;
|
|
13
13
|
color: InputSliderColor;
|
|
14
14
|
fullWidth: boolean;
|
|
15
|
+
step: number;
|
|
15
16
|
max: number;
|
|
16
17
|
min: number;
|
|
17
|
-
step: number;
|
|
18
18
|
lineHeight: number | string;
|
|
19
19
|
appearance: boolean;
|
|
20
20
|
thumbSize: number | string;
|
|
@@ -55,10 +55,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
55
55
|
onClickIconAppend?: ((event: Event) => any) | undefined;
|
|
56
56
|
}>, {
|
|
57
57
|
type: InputTextFieldType;
|
|
58
|
+
disabled: boolean;
|
|
58
59
|
required: boolean;
|
|
59
60
|
id: string;
|
|
60
61
|
name: string;
|
|
61
|
-
disabled: boolean;
|
|
62
62
|
limit: number;
|
|
63
63
|
disabledErrorMessage: boolean;
|
|
64
64
|
disabledBorder: boolean;
|
|
@@ -55,10 +55,10 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
55
55
|
onClickIconAppend?: ((event: Event) => any) | undefined;
|
|
56
56
|
}>, {
|
|
57
57
|
type: InputTextFieldType;
|
|
58
|
+
disabled: boolean;
|
|
58
59
|
required: boolean;
|
|
59
60
|
id: string;
|
|
60
61
|
name: string;
|
|
61
|
-
disabled: boolean;
|
|
62
62
|
limit: number;
|
|
63
63
|
disabledErrorMessage: boolean;
|
|
64
64
|
disabledBorder: boolean;
|
|
@@ -38,17 +38,17 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
38
38
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
39
39
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
40
40
|
}>, {
|
|
41
|
+
disabled: boolean;
|
|
41
42
|
fullWidth: boolean;
|
|
42
43
|
fullHeight: boolean;
|
|
43
44
|
required: boolean;
|
|
44
45
|
id: string;
|
|
45
46
|
name: string;
|
|
46
|
-
disabled: boolean;
|
|
47
47
|
limit: number;
|
|
48
|
+
resize: "none" | "both" | "horizontal" | "vertical";
|
|
48
49
|
disabledErrorMessage: boolean;
|
|
49
50
|
disabledBorder: boolean;
|
|
50
51
|
showCounter: boolean;
|
|
51
|
-
resize: "none" | "both" | "horizontal" | "vertical";
|
|
52
52
|
readonly: boolean;
|
|
53
53
|
rows: number;
|
|
54
54
|
heightScroll: boolean;
|
|
@@ -38,17 +38,17 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
38
38
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
39
39
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
40
40
|
}>, {
|
|
41
|
+
disabled: boolean;
|
|
41
42
|
fullWidth: boolean;
|
|
42
43
|
fullHeight: boolean;
|
|
43
44
|
required: boolean;
|
|
44
45
|
id: string;
|
|
45
46
|
name: string;
|
|
46
|
-
disabled: boolean;
|
|
47
47
|
limit: number;
|
|
48
|
+
resize: "none" | "both" | "horizontal" | "vertical";
|
|
48
49
|
disabledErrorMessage: boolean;
|
|
49
50
|
disabledBorder: boolean;
|
|
50
51
|
showCounter: boolean;
|
|
51
|
-
resize: "none" | "both" | "horizontal" | "vertical";
|
|
52
52
|
readonly: boolean;
|
|
53
53
|
rows: number;
|
|
54
54
|
heightScroll: boolean;
|
|
@@ -24,8 +24,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
24
24
|
onClose?: (() => 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
|
onClose?: (() => 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;
|
|
@@ -28,8 +28,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
28
28
|
}>, {
|
|
29
29
|
title: string;
|
|
30
30
|
mode: "login" | "secure";
|
|
31
|
-
disabledForgotPassword: boolean;
|
|
32
31
|
confirmText: string;
|
|
32
|
+
disabledForgotPassword: boolean;
|
|
33
33
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
34
|
declare const _default: typeof __VLS_export;
|
|
35
35
|
export default _default;
|
|
@@ -28,8 +28,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
28
28
|
}>, {
|
|
29
29
|
title: string;
|
|
30
30
|
mode: "login" | "secure";
|
|
31
|
-
disabledForgotPassword: boolean;
|
|
32
31
|
confirmText: string;
|
|
32
|
+
disabledForgotPassword: boolean;
|
|
33
33
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
34
|
declare const _default: typeof __VLS_export;
|
|
35
35
|
export default _default;
|
|
@@ -2,9 +2,9 @@ import type { PickerOptionMenuProps, PickerOptionMenuItem } from "@/types/compon
|
|
|
2
2
|
declare const __VLS_export: import("vue").DefineComponent<PickerOptionMenuProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PickerOptionMenuProps> & Readonly<{}>, {
|
|
3
3
|
circle: boolean;
|
|
4
4
|
variant: ButtonVariant;
|
|
5
|
+
disabled: boolean;
|
|
5
6
|
items: PickerOptionMenuItem[];
|
|
6
7
|
horizontal: boolean;
|
|
7
|
-
disabled: boolean;
|
|
8
8
|
disabledPadding: boolean;
|
|
9
9
|
iconSize: string;
|
|
10
10
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -2,9 +2,9 @@ import type { PickerOptionMenuProps, PickerOptionMenuItem } from "@/types/compon
|
|
|
2
2
|
declare const __VLS_export: import("vue").DefineComponent<PickerOptionMenuProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PickerOptionMenuProps> & Readonly<{}>, {
|
|
3
3
|
circle: boolean;
|
|
4
4
|
variant: ButtonVariant;
|
|
5
|
+
disabled: boolean;
|
|
5
6
|
items: PickerOptionMenuItem[];
|
|
6
7
|
horizontal: boolean;
|
|
7
|
-
disabled: boolean;
|
|
8
8
|
disabledPadding: boolean;
|
|
9
9
|
iconSize: string;
|
|
10
10
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|