plugin-ui-for-kzt 0.0.19 → 0.0.20
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/components/BaseButton/BaseButton.vue.d.ts +0 -2
- package/dist/components/BaseCalendar/BaseCalendar.vue.d.ts +9 -1
- package/dist/components/BaseCheckbox/BaseCheckbox.vue.d.ts +0 -2
- package/dist/components/BaseDropdown/BaseDropdown.vue.d.ts +0 -2
- package/dist/components/BaseField/BaseField.vue.d.ts +98 -0
- package/dist/components/BaseInput/BaseInput.vue.d.ts +16 -14
- package/dist/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +13 -15
- package/dist/components/BaseInputCurrency/BaseInputCurrency.vue.d.ts +7 -9
- package/dist/components/BaseInputEmail/BaseInputEmail.vue.d.ts +7 -12
- package/dist/components/BaseInputPhone/BaseInputPhone.vue.d.ts +7 -12
- package/dist/components/BaseOpenedListItem/BaseOpenedListItem.vue.d.ts +0 -2
- package/dist/components/BaseRadio/BaseRadio.vue.d.ts +0 -2
- package/dist/components/BaseSegmentedButtons/BaseSegmentedButtons.vue.d.ts +0 -2
- package/dist/components/BaseSiteInput/BaseSiteInput.vue.d.ts +11 -7
- package/dist/components/BaseTextarea/BaseTextarea.vue.d.ts +7 -12
- package/dist/components/BaseToggle/BaseToggle.vue.d.ts +0 -2
- package/dist/components/BaseTooltip/BaseTooltip.vue.d.ts +1 -1
- package/dist/composables/kit/state.d.ts +1 -2
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -1
- package/example/App.vue +170 -128
- package/package.json +1 -1
- package/src/components/BaseField/BaseField.vue +184 -0
- package/src/components/BaseField/README.md +85 -0
- package/src/components/BaseInput/BaseInput.vue +162 -228
- package/src/components/BaseInputCalendar/BaseInputCalendar.vue +10 -7
- package/src/components/BaseInputCurrency/BaseInputCurrency.vue +39 -78
- package/src/components/BaseInputEmail/BaseInputEmail.vue +2 -4
- package/src/components/BaseInputPhone/BaseInputPhone.vue +29 -89
- package/src/components/BaseSelect/BaseSelect.vue +9 -52
- package/src/components/BaseSiteInput/BaseSiteInput.vue +11 -63
- package/src/components/BaseTextarea/BaseTextarea.vue +3 -30
- package/src/composables/kit/state.ts +1 -2
- package/src/index.ts +5 -2
- package/src/styles/index.scss +87 -2
- package/src/styles/root.scss +1 -0
- package/src/styles/variables.scss +2 -1
- package/src/types/calendar.d.ts +2 -0
- package/src/types/field.d.ts +12 -0
- package/src/types/input.d.ts +26 -8
- package/src/types/utils.d.ts +0 -1
|
@@ -24,7 +24,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
24
24
|
loading: {
|
|
25
25
|
type: BooleanConstructor;
|
|
26
26
|
};
|
|
27
|
-
hint: {};
|
|
28
27
|
outline: {
|
|
29
28
|
type: BooleanConstructor;
|
|
30
29
|
};
|
|
@@ -62,7 +61,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
62
61
|
loading: {
|
|
63
62
|
type: BooleanConstructor;
|
|
64
63
|
};
|
|
65
|
-
hint: {};
|
|
66
64
|
outline: {
|
|
67
65
|
type: BooleanConstructor;
|
|
68
66
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import '@vuepic/vue-datepicker/dist/main.css';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
id: {};
|
|
3
4
|
modelValue: {};
|
|
4
5
|
range: {
|
|
5
6
|
type: (BooleanConstructor | ObjectConstructor)[];
|
|
@@ -11,12 +12,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
11
12
|
readonly: {
|
|
12
13
|
type: BooleanConstructor;
|
|
13
14
|
};
|
|
15
|
+
error: {
|
|
16
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
17
|
+
};
|
|
14
18
|
size: {
|
|
15
19
|
default: string;
|
|
16
20
|
};
|
|
17
21
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
18
22
|
[key: string]: any;
|
|
19
23
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
24
|
+
id: {};
|
|
20
25
|
modelValue: {};
|
|
21
26
|
range: {
|
|
22
27
|
type: (BooleanConstructor | ObjectConstructor)[];
|
|
@@ -28,13 +33,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
28
33
|
readonly: {
|
|
29
34
|
type: BooleanConstructor;
|
|
30
35
|
};
|
|
36
|
+
error: {
|
|
37
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
38
|
+
};
|
|
31
39
|
size: {
|
|
32
40
|
default: string;
|
|
33
41
|
};
|
|
34
42
|
}>> & Readonly<{}>, {
|
|
35
43
|
size: string;
|
|
44
|
+
readonly: boolean;
|
|
36
45
|
range: boolean | Record<string, any>;
|
|
37
46
|
minDate: null;
|
|
38
|
-
readonly: boolean;
|
|
39
47
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
40
48
|
export default _default;
|
|
@@ -29,7 +29,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
29
29
|
loading: {
|
|
30
30
|
type: BooleanConstructor;
|
|
31
31
|
};
|
|
32
|
-
hint: {};
|
|
33
32
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
34
33
|
[key: string]: any;
|
|
35
34
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -63,7 +62,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
63
62
|
loading: {
|
|
64
63
|
type: BooleanConstructor;
|
|
65
64
|
};
|
|
66
|
-
hint: {};
|
|
67
65
|
}>> & Readonly<{
|
|
68
66
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
69
67
|
}>, {
|
|
@@ -31,7 +31,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
31
31
|
loading: {
|
|
32
32
|
type: BooleanConstructor;
|
|
33
33
|
};
|
|
34
|
-
hint: {};
|
|
35
34
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
36
35
|
[key: string]: any;
|
|
37
36
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -67,7 +66,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
67
66
|
loading: {
|
|
68
67
|
type: BooleanConstructor;
|
|
69
68
|
};
|
|
70
|
-
hint: {};
|
|
71
69
|
}>> & Readonly<{
|
|
72
70
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
73
71
|
}>, {
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
id: {
|
|
3
|
+
default: string;
|
|
4
|
+
};
|
|
5
|
+
label: {
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
8
|
+
hint: {
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
error: {
|
|
12
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
focusable: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
tabIndex: {
|
|
20
|
+
default: number;
|
|
21
|
+
};
|
|
22
|
+
size: {
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
selected: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
};
|
|
28
|
+
active: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
};
|
|
31
|
+
disabled: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
};
|
|
34
|
+
required: {
|
|
35
|
+
type: BooleanConstructor;
|
|
36
|
+
};
|
|
37
|
+
loading: {
|
|
38
|
+
type: BooleanConstructor;
|
|
39
|
+
};
|
|
40
|
+
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
41
|
+
[key: string]: any;
|
|
42
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "update:modelValue")[], "error" | "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
43
|
+
id: {
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
label: {
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
hint: {
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
52
|
+
error: {
|
|
53
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
54
|
+
default: string;
|
|
55
|
+
};
|
|
56
|
+
focusable: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
default: boolean;
|
|
59
|
+
};
|
|
60
|
+
tabIndex: {
|
|
61
|
+
default: number;
|
|
62
|
+
};
|
|
63
|
+
size: {
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
66
|
+
selected: {
|
|
67
|
+
type: BooleanConstructor;
|
|
68
|
+
};
|
|
69
|
+
active: {
|
|
70
|
+
type: BooleanConstructor;
|
|
71
|
+
};
|
|
72
|
+
disabled: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
};
|
|
75
|
+
required: {
|
|
76
|
+
type: BooleanConstructor;
|
|
77
|
+
};
|
|
78
|
+
loading: {
|
|
79
|
+
type: BooleanConstructor;
|
|
80
|
+
};
|
|
81
|
+
}>> & Readonly<{
|
|
82
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
83
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
84
|
+
}>, {
|
|
85
|
+
size: string;
|
|
86
|
+
label: string;
|
|
87
|
+
error: string | boolean;
|
|
88
|
+
id: string;
|
|
89
|
+
disabled: boolean;
|
|
90
|
+
selected: boolean;
|
|
91
|
+
active: boolean;
|
|
92
|
+
required: boolean;
|
|
93
|
+
loading: boolean;
|
|
94
|
+
focusable: boolean;
|
|
95
|
+
hint: string;
|
|
96
|
+
tabIndex: number;
|
|
97
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
98
|
+
export default _default;
|
|
@@ -2,7 +2,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2
2
|
modelValue: {
|
|
3
3
|
default: string;
|
|
4
4
|
};
|
|
5
|
-
id: {
|
|
5
|
+
id: {
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
6
8
|
mask: {
|
|
7
9
|
default: string;
|
|
8
10
|
};
|
|
@@ -14,17 +16,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
14
16
|
};
|
|
15
17
|
error: {
|
|
16
18
|
type: (BooleanConstructor | StringConstructor)[];
|
|
17
|
-
default: string;
|
|
18
19
|
};
|
|
19
20
|
readonly: {
|
|
20
21
|
type: BooleanConstructor;
|
|
21
22
|
};
|
|
22
|
-
hint: {
|
|
23
|
-
default: string;
|
|
24
|
-
};
|
|
25
|
-
label: {};
|
|
26
23
|
tooltipOptions: {};
|
|
27
24
|
validationText: {};
|
|
25
|
+
focusable: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
28
29
|
size: {
|
|
29
30
|
default: string;
|
|
30
31
|
};
|
|
@@ -49,7 +50,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
49
50
|
modelValue: {
|
|
50
51
|
default: string;
|
|
51
52
|
};
|
|
52
|
-
id: {
|
|
53
|
+
id: {
|
|
54
|
+
default: string;
|
|
55
|
+
};
|
|
53
56
|
mask: {
|
|
54
57
|
default: string;
|
|
55
58
|
};
|
|
@@ -61,17 +64,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
61
64
|
};
|
|
62
65
|
error: {
|
|
63
66
|
type: (BooleanConstructor | StringConstructor)[];
|
|
64
|
-
default: string;
|
|
65
67
|
};
|
|
66
68
|
readonly: {
|
|
67
69
|
type: BooleanConstructor;
|
|
68
70
|
};
|
|
69
|
-
hint: {
|
|
70
|
-
default: string;
|
|
71
|
-
};
|
|
72
|
-
label: {};
|
|
73
71
|
tooltipOptions: {};
|
|
74
72
|
validationText: {};
|
|
73
|
+
focusable: {
|
|
74
|
+
type: BooleanConstructor;
|
|
75
|
+
default: boolean;
|
|
76
|
+
};
|
|
75
77
|
size: {
|
|
76
78
|
default: string;
|
|
77
79
|
};
|
|
@@ -92,7 +94,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
92
94
|
};
|
|
93
95
|
}>> & Readonly<{}>, {
|
|
94
96
|
size: string;
|
|
95
|
-
|
|
97
|
+
id: string;
|
|
96
98
|
type: string;
|
|
97
99
|
disabled: boolean;
|
|
98
100
|
placeholder: string;
|
|
@@ -100,9 +102,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
100
102
|
active: boolean;
|
|
101
103
|
required: boolean;
|
|
102
104
|
loading: boolean;
|
|
103
|
-
hint: string;
|
|
104
105
|
modelValue: string;
|
|
105
106
|
readonly: boolean;
|
|
106
107
|
mask: string;
|
|
108
|
+
focusable: boolean;
|
|
107
109
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
108
110
|
export default _default;
|
|
@@ -12,17 +12,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
12
12
|
};
|
|
13
13
|
error: {
|
|
14
14
|
type: (BooleanConstructor | StringConstructor)[];
|
|
15
|
-
default: string;
|
|
16
15
|
};
|
|
17
16
|
readonly: {
|
|
18
17
|
type: BooleanConstructor;
|
|
19
18
|
};
|
|
20
|
-
hint: {
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
23
|
-
label: {};
|
|
24
19
|
tooltipOptions: {};
|
|
25
20
|
validationText: {};
|
|
21
|
+
focusable: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
};
|
|
26
24
|
size: {
|
|
27
25
|
default: string;
|
|
28
26
|
};
|
|
@@ -50,7 +48,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
50
48
|
};
|
|
51
49
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
52
50
|
[key: string]: any;
|
|
53
|
-
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
|
51
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "validationError")[], "update:modelValue" | "validationError", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
54
52
|
modelValue: {
|
|
55
53
|
default: string;
|
|
56
54
|
};
|
|
@@ -64,17 +62,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
64
62
|
};
|
|
65
63
|
error: {
|
|
66
64
|
type: (BooleanConstructor | StringConstructor)[];
|
|
67
|
-
default: string;
|
|
68
65
|
};
|
|
69
66
|
readonly: {
|
|
70
67
|
type: BooleanConstructor;
|
|
71
68
|
};
|
|
72
|
-
hint: {
|
|
73
|
-
default: string;
|
|
74
|
-
};
|
|
75
|
-
label: {};
|
|
76
69
|
tooltipOptions: {};
|
|
77
70
|
validationText: {};
|
|
71
|
+
focusable: {
|
|
72
|
+
type: BooleanConstructor;
|
|
73
|
+
};
|
|
78
74
|
size: {
|
|
79
75
|
default: string;
|
|
80
76
|
};
|
|
@@ -100,9 +96,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
100
96
|
minDate: {
|
|
101
97
|
default: null;
|
|
102
98
|
};
|
|
103
|
-
}>> & Readonly<{
|
|
99
|
+
}>> & Readonly<{
|
|
100
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
101
|
+
onValidationError?: ((...args: any[]) => any) | undefined;
|
|
102
|
+
}>, {
|
|
104
103
|
size: string;
|
|
105
|
-
error: string | boolean;
|
|
106
104
|
type: string;
|
|
107
105
|
disabled: boolean;
|
|
108
106
|
placeholder: string;
|
|
@@ -110,10 +108,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
110
108
|
active: boolean;
|
|
111
109
|
required: boolean;
|
|
112
110
|
loading: boolean;
|
|
113
|
-
hint: string;
|
|
114
111
|
modelValue: string;
|
|
112
|
+
readonly: boolean;
|
|
115
113
|
range: boolean | Record<string, any>;
|
|
116
114
|
minDate: null;
|
|
117
|
-
|
|
115
|
+
focusable: boolean;
|
|
118
116
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
119
117
|
export default _default;
|
|
@@ -17,12 +17,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
17
17
|
readonly: {
|
|
18
18
|
type: BooleanConstructor;
|
|
19
19
|
};
|
|
20
|
-
hint: {
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
23
|
-
label: {};
|
|
24
20
|
tooltipOptions: {};
|
|
25
21
|
validationText: {};
|
|
22
|
+
focusable: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
};
|
|
26
25
|
size: {
|
|
27
26
|
default: string;
|
|
28
27
|
};
|
|
@@ -62,12 +61,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
62
61
|
readonly: {
|
|
63
62
|
type: BooleanConstructor;
|
|
64
63
|
};
|
|
65
|
-
hint: {
|
|
66
|
-
default: string;
|
|
67
|
-
};
|
|
68
|
-
label: {};
|
|
69
64
|
tooltipOptions: {};
|
|
70
65
|
validationText: {};
|
|
66
|
+
focusable: {
|
|
67
|
+
type: BooleanConstructor;
|
|
68
|
+
};
|
|
71
69
|
size: {
|
|
72
70
|
default: string;
|
|
73
71
|
};
|
|
@@ -96,8 +94,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
96
94
|
active: boolean;
|
|
97
95
|
required: boolean;
|
|
98
96
|
loading: boolean;
|
|
99
|
-
hint: string;
|
|
100
97
|
modelValue: string;
|
|
101
98
|
readonly: boolean;
|
|
99
|
+
focusable: boolean;
|
|
102
100
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
103
101
|
export default _default;
|
|
@@ -12,17 +12,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
12
12
|
};
|
|
13
13
|
error: {
|
|
14
14
|
type: (BooleanConstructor | StringConstructor)[];
|
|
15
|
-
default: string;
|
|
16
15
|
};
|
|
17
16
|
readonly: {
|
|
18
17
|
type: BooleanConstructor;
|
|
19
18
|
};
|
|
20
|
-
hint: {
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
23
|
-
label: {};
|
|
24
19
|
tooltipOptions: {};
|
|
25
20
|
validationText: {};
|
|
21
|
+
focusable: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
};
|
|
26
24
|
size: {
|
|
27
25
|
default: string;
|
|
28
26
|
};
|
|
@@ -57,17 +55,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
57
55
|
};
|
|
58
56
|
error: {
|
|
59
57
|
type: (BooleanConstructor | StringConstructor)[];
|
|
60
|
-
default: string;
|
|
61
58
|
};
|
|
62
59
|
readonly: {
|
|
63
60
|
type: BooleanConstructor;
|
|
64
61
|
};
|
|
65
|
-
hint: {
|
|
66
|
-
default: string;
|
|
67
|
-
};
|
|
68
|
-
label: {};
|
|
69
62
|
tooltipOptions: {};
|
|
70
63
|
validationText: {};
|
|
64
|
+
focusable: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
};
|
|
71
67
|
size: {
|
|
72
68
|
default: string;
|
|
73
69
|
};
|
|
@@ -90,7 +86,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
90
86
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
91
87
|
}>, {
|
|
92
88
|
size: string;
|
|
93
|
-
error: string | boolean;
|
|
94
89
|
type: string;
|
|
95
90
|
disabled: boolean;
|
|
96
91
|
placeholder: string;
|
|
@@ -98,8 +93,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
98
93
|
active: boolean;
|
|
99
94
|
required: boolean;
|
|
100
95
|
loading: boolean;
|
|
101
|
-
hint: string;
|
|
102
96
|
modelValue: string;
|
|
103
97
|
readonly: boolean;
|
|
98
|
+
focusable: boolean;
|
|
104
99
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
105
100
|
export default _default;
|
|
@@ -12,17 +12,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
12
12
|
};
|
|
13
13
|
error: {
|
|
14
14
|
type: (BooleanConstructor | StringConstructor)[];
|
|
15
|
-
default: string;
|
|
16
15
|
};
|
|
17
16
|
readonly: {
|
|
18
17
|
type: BooleanConstructor;
|
|
19
18
|
};
|
|
20
|
-
hint: {
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
23
|
-
label: {};
|
|
24
19
|
tooltipOptions: {};
|
|
25
20
|
validationText: {};
|
|
21
|
+
focusable: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
};
|
|
26
24
|
size: {
|
|
27
25
|
default: string;
|
|
28
26
|
};
|
|
@@ -57,17 +55,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
57
55
|
};
|
|
58
56
|
error: {
|
|
59
57
|
type: (BooleanConstructor | StringConstructor)[];
|
|
60
|
-
default: string;
|
|
61
58
|
};
|
|
62
59
|
readonly: {
|
|
63
60
|
type: BooleanConstructor;
|
|
64
61
|
};
|
|
65
|
-
hint: {
|
|
66
|
-
default: string;
|
|
67
|
-
};
|
|
68
|
-
label: {};
|
|
69
62
|
tooltipOptions: {};
|
|
70
63
|
validationText: {};
|
|
64
|
+
focusable: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
};
|
|
71
67
|
size: {
|
|
72
68
|
default: string;
|
|
73
69
|
};
|
|
@@ -88,7 +84,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
88
84
|
};
|
|
89
85
|
}>> & Readonly<{}>, {
|
|
90
86
|
size: string;
|
|
91
|
-
error: string | boolean;
|
|
92
87
|
type: string;
|
|
93
88
|
disabled: boolean;
|
|
94
89
|
placeholder: string;
|
|
@@ -96,8 +91,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
96
91
|
active: boolean;
|
|
97
92
|
required: boolean;
|
|
98
93
|
loading: boolean;
|
|
99
|
-
hint: string;
|
|
100
94
|
modelValue: string;
|
|
101
95
|
readonly: boolean;
|
|
96
|
+
focusable: boolean;
|
|
102
97
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
103
98
|
export default _default;
|
|
@@ -25,7 +25,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
25
25
|
loading: {
|
|
26
26
|
type: BooleanConstructor;
|
|
27
27
|
};
|
|
28
|
-
hint: {};
|
|
29
28
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
30
29
|
[key: string]: any;
|
|
31
30
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -55,7 +54,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
55
54
|
loading: {
|
|
56
55
|
type: BooleanConstructor;
|
|
57
56
|
};
|
|
58
|
-
hint: {};
|
|
59
57
|
}>> & Readonly<{}>, {
|
|
60
58
|
size: string;
|
|
61
59
|
disabled: boolean;
|
|
@@ -29,7 +29,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
29
29
|
loading: {
|
|
30
30
|
type: BooleanConstructor;
|
|
31
31
|
};
|
|
32
|
-
hint: {};
|
|
33
32
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
34
33
|
[key: string]: any;
|
|
35
34
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -63,7 +62,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
63
62
|
loading: {
|
|
64
63
|
type: BooleanConstructor;
|
|
65
64
|
};
|
|
66
|
-
hint: {};
|
|
67
65
|
}>> & Readonly<{
|
|
68
66
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
69
67
|
}>, {
|
|
@@ -20,7 +20,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
20
20
|
loading: {
|
|
21
21
|
type: BooleanConstructor;
|
|
22
22
|
};
|
|
23
|
-
hint: {};
|
|
24
23
|
outline: {
|
|
25
24
|
type: BooleanConstructor;
|
|
26
25
|
};
|
|
@@ -58,7 +57,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
58
57
|
loading: {
|
|
59
58
|
type: BooleanConstructor;
|
|
60
59
|
};
|
|
61
|
-
hint: {};
|
|
62
60
|
outline: {
|
|
63
61
|
type: BooleanConstructor;
|
|
64
62
|
};
|
|
@@ -2,20 +2,22 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2
2
|
modelValue: {
|
|
3
3
|
default: string;
|
|
4
4
|
};
|
|
5
|
+
id: {};
|
|
5
6
|
mask: {};
|
|
6
7
|
type: {};
|
|
7
8
|
placeholder: {};
|
|
8
9
|
error: {
|
|
9
10
|
type: (BooleanConstructor | StringConstructor)[];
|
|
10
|
-
default: string;
|
|
11
11
|
};
|
|
12
12
|
readonly: {
|
|
13
13
|
type: BooleanConstructor;
|
|
14
14
|
};
|
|
15
|
-
hint: {};
|
|
16
|
-
label: {};
|
|
17
15
|
tooltipOptions: {};
|
|
18
16
|
validationText: {};
|
|
17
|
+
focusable: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
19
21
|
size: {
|
|
20
22
|
default: string;
|
|
21
23
|
};
|
|
@@ -25,20 +27,22 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
25
27
|
modelValue: {
|
|
26
28
|
default: string;
|
|
27
29
|
};
|
|
30
|
+
id: {};
|
|
28
31
|
mask: {};
|
|
29
32
|
type: {};
|
|
30
33
|
placeholder: {};
|
|
31
34
|
error: {
|
|
32
35
|
type: (BooleanConstructor | StringConstructor)[];
|
|
33
|
-
default: string;
|
|
34
36
|
};
|
|
35
37
|
readonly: {
|
|
36
38
|
type: BooleanConstructor;
|
|
37
39
|
};
|
|
38
|
-
hint: {};
|
|
39
|
-
label: {};
|
|
40
40
|
tooltipOptions: {};
|
|
41
41
|
validationText: {};
|
|
42
|
+
focusable: {
|
|
43
|
+
type: BooleanConstructor;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
42
46
|
size: {
|
|
43
47
|
default: string;
|
|
44
48
|
};
|
|
@@ -46,8 +50,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
46
50
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
47
51
|
}>, {
|
|
48
52
|
size: string;
|
|
49
|
-
error: string | boolean;
|
|
50
53
|
modelValue: string;
|
|
51
54
|
readonly: boolean;
|
|
55
|
+
focusable: boolean;
|
|
52
56
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
53
57
|
export default _default;
|
|
@@ -13,14 +13,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13
13
|
};
|
|
14
14
|
error: {
|
|
15
15
|
type: (BooleanConstructor | StringConstructor)[];
|
|
16
|
-
default: string;
|
|
17
16
|
};
|
|
18
17
|
loading: {
|
|
19
18
|
type: BooleanConstructor;
|
|
20
19
|
};
|
|
21
|
-
hint: {
|
|
22
|
-
default: string;
|
|
23
|
-
};
|
|
24
20
|
modelValue: {
|
|
25
21
|
default: string;
|
|
26
22
|
};
|
|
@@ -32,9 +28,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
32
28
|
readonly: {
|
|
33
29
|
type: BooleanConstructor;
|
|
34
30
|
};
|
|
35
|
-
label: {};
|
|
36
31
|
tooltipOptions: {};
|
|
37
32
|
validationText: {};
|
|
33
|
+
focusable: {
|
|
34
|
+
type: BooleanConstructor;
|
|
35
|
+
};
|
|
38
36
|
size: {
|
|
39
37
|
default: string;
|
|
40
38
|
};
|
|
@@ -56,14 +54,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
56
54
|
};
|
|
57
55
|
error: {
|
|
58
56
|
type: (BooleanConstructor | StringConstructor)[];
|
|
59
|
-
default: string;
|
|
60
57
|
};
|
|
61
58
|
loading: {
|
|
62
59
|
type: BooleanConstructor;
|
|
63
60
|
};
|
|
64
|
-
hint: {
|
|
65
|
-
default: string;
|
|
66
|
-
};
|
|
67
61
|
modelValue: {
|
|
68
62
|
default: string;
|
|
69
63
|
};
|
|
@@ -75,24 +69,25 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
75
69
|
readonly: {
|
|
76
70
|
type: BooleanConstructor;
|
|
77
71
|
};
|
|
78
|
-
label: {};
|
|
79
72
|
tooltipOptions: {};
|
|
80
73
|
validationText: {};
|
|
74
|
+
focusable: {
|
|
75
|
+
type: BooleanConstructor;
|
|
76
|
+
};
|
|
81
77
|
size: {
|
|
82
78
|
default: string;
|
|
83
79
|
};
|
|
84
80
|
maxLength: {};
|
|
85
81
|
}>> & Readonly<{}>, {
|
|
86
82
|
size: string;
|
|
87
|
-
error: string | boolean;
|
|
88
83
|
disabled: boolean;
|
|
89
84
|
placeholder: string;
|
|
90
85
|
selected: boolean;
|
|
91
86
|
active: boolean;
|
|
92
87
|
required: boolean;
|
|
93
88
|
loading: boolean;
|
|
94
|
-
hint: string;
|
|
95
89
|
modelValue: string;
|
|
96
90
|
readonly: boolean;
|
|
91
|
+
focusable: boolean;
|
|
97
92
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
98
93
|
export default _default;
|