plugin-ui-for-kzt 0.0.18 → 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/BaseCalendar/BaseCalendar.vue.d.ts +9 -1
- 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/BaseSiteInput/BaseSiteInput.vue.d.ts +11 -7
- package/dist/components/BaseTextarea/BaseTextarea.vue.d.ts +7 -12
- package/dist/components/BaseTooltip/BaseTooltip.vue.d.ts +1 -1
- package/dist/composables/kit/state.d.ts +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -1
- package/example/App.vue +172 -133
- 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 +161 -210
- package/src/components/BaseInputCalendar/BaseInputCalendar.vue +10 -7
- package/src/components/BaseInputCurrency/BaseInputCurrency.vue +56 -54
- package/src/components/BaseInputEmail/BaseInputEmail.vue +2 -4
- package/src/components/BaseInputPhone/BaseInputPhone.vue +29 -48
- package/src/components/BaseSelect/BaseSelect.vue +9 -52
- package/src/components/BaseSiteInput/BaseSiteInput.vue +10 -20
- package/src/components/BaseTextarea/BaseTextarea.vue +3 -30
- package/src/components/BaseUpload/BaseUpload.vue +1 -1
- package/src/composables/kit/state.ts +1 -1
- 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/webpack.config.js +1 -1
|
@@ -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;
|
|
@@ -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;
|
|
@@ -103,6 +105,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
103
105
|
modelValue: string;
|
|
104
106
|
readonly: boolean;
|
|
105
107
|
mask: string;
|
|
106
|
-
|
|
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;
|
|
@@ -111,9 +109,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
111
109
|
required: boolean;
|
|
112
110
|
loading: boolean;
|
|
113
111
|
modelValue: string;
|
|
112
|
+
readonly: boolean;
|
|
114
113
|
range: boolean | Record<string, any>;
|
|
115
114
|
minDate: null;
|
|
116
|
-
|
|
117
|
-
hint: string;
|
|
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
|
};
|
|
@@ -98,6 +96,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
98
96
|
loading: boolean;
|
|
99
97
|
modelValue: string;
|
|
100
98
|
readonly: boolean;
|
|
101
|
-
|
|
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;
|
|
@@ -100,6 +95,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
100
95
|
loading: boolean;
|
|
101
96
|
modelValue: string;
|
|
102
97
|
readonly: boolean;
|
|
103
|
-
|
|
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;
|
|
@@ -98,6 +93,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
98
93
|
loading: boolean;
|
|
99
94
|
modelValue: string;
|
|
100
95
|
readonly: boolean;
|
|
101
|
-
|
|
96
|
+
focusable: boolean;
|
|
102
97
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
103
98
|
export default _default;
|
|
@@ -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,7 +13,6 @@ 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;
|
|
@@ -29,12 +28,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
29
28
|
readonly: {
|
|
30
29
|
type: BooleanConstructor;
|
|
31
30
|
};
|
|
32
|
-
hint: {
|
|
33
|
-
default: string;
|
|
34
|
-
};
|
|
35
|
-
label: {};
|
|
36
31
|
tooltipOptions: {};
|
|
37
32
|
validationText: {};
|
|
33
|
+
focusable: {
|
|
34
|
+
type: BooleanConstructor;
|
|
35
|
+
};
|
|
38
36
|
size: {
|
|
39
37
|
default: string;
|
|
40
38
|
};
|
|
@@ -56,7 +54,6 @@ 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;
|
|
@@ -72,19 +69,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
72
69
|
readonly: {
|
|
73
70
|
type: BooleanConstructor;
|
|
74
71
|
};
|
|
75
|
-
hint: {
|
|
76
|
-
default: string;
|
|
77
|
-
};
|
|
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;
|
|
@@ -93,6 +88,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
93
88
|
loading: boolean;
|
|
94
89
|
modelValue: string;
|
|
95
90
|
readonly: boolean;
|
|
96
|
-
|
|
91
|
+
focusable: boolean;
|
|
97
92
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
98
93
|
export default _default;
|
|
@@ -34,8 +34,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
34
34
|
};
|
|
35
35
|
}>> & Readonly<{}>, {
|
|
36
36
|
position: string;
|
|
37
|
-
arrow: boolean;
|
|
38
37
|
theme: string;
|
|
39
38
|
trigger: string;
|
|
39
|
+
arrow: boolean;
|
|
40
40
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
41
41
|
export default _default;
|
|
@@ -4,7 +4,7 @@ export declare function useKitState(props: ICoreState): {
|
|
|
4
4
|
'--is-selected': boolean | undefined;
|
|
5
5
|
'--is-active': boolean | undefined;
|
|
6
6
|
'--is-required': boolean | undefined;
|
|
7
|
-
'--is-error':
|
|
7
|
+
'--is-error': boolean;
|
|
8
8
|
'--is-loading': boolean | undefined;
|
|
9
9
|
'--is-disabled': boolean | undefined;
|
|
10
10
|
}[]>;
|
package/dist/index.d.ts
CHANGED
|
@@ -33,8 +33,9 @@ import BaseUpload from "./components/BaseUpload/BaseUpload.vue";
|
|
|
33
33
|
import BaseBadge from "./components/BaseBadge/BaseBadge.vue";
|
|
34
34
|
import BaseTag from "./components/BaseTag/BaseTag.vue";
|
|
35
35
|
import BaseBadgeGroup from "./components/BaseBadge/BaseBadgeGroup.vue";
|
|
36
|
+
import BaseField from "./components/BaseField/BaseField.vue";
|
|
36
37
|
declare const _default: {
|
|
37
38
|
install(app: any): void;
|
|
38
39
|
};
|
|
39
40
|
export default _default;
|
|
40
|
-
export { BaseModal, BaseBadgeGroup, BaseBadge, DataTable, BaseTag, Tooltip, Spinner, useModal, useToast, BaseIcon, BaseBreadCrumbs, BaseButton, BaseLoader, BaseCalendar, BaseCheckbox, BaseRadio, BaseTextarea, BaseToggle, BaseTooltip, BaseInput, BaseInputEmail, BaseInputCalendar, BaseOpenedListItem, BaseDropdown, BaseSelect, BaseSiteInput, BaseInputPhone, BaseInputCurrency, BasePagination, BaseSegmentedButtons, BaseChips, BaseSwiper, BaseUpload };
|
|
41
|
+
export { BaseModal, BaseBadgeGroup, BaseBadge, DataTable, BaseTag, Tooltip, Spinner, useModal, useToast, BaseIcon, BaseBreadCrumbs, BaseButton, BaseLoader, BaseCalendar, BaseCheckbox, BaseRadio, BaseTextarea, BaseToggle, BaseTooltip, BaseInput, BaseInputEmail, BaseInputCalendar, BaseOpenedListItem, BaseDropdown, BaseSelect, BaseSiteInput, BaseInputPhone, BaseInputCurrency, BasePagination, BaseSegmentedButtons, BaseChips, BaseSwiper, BaseUpload, BaseField };
|