plugin-ui-for-kzt 0.0.18 → 0.0.19
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 +2 -0
- package/dist/components/BaseCheckbox/BaseCheckbox.vue.d.ts +2 -0
- package/dist/components/BaseDropdown/BaseDropdown.vue.d.ts +2 -0
- package/dist/components/BaseInput/BaseInput.vue.d.ts +1 -1
- package/dist/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +1 -1
- package/dist/components/BaseInputCurrency/BaseInputCurrency.vue.d.ts +1 -1
- package/dist/components/BaseInputEmail/BaseInputEmail.vue.d.ts +1 -1
- package/dist/components/BaseInputPhone/BaseInputPhone.vue.d.ts +1 -1
- package/dist/components/BaseOpenedListItem/BaseOpenedListItem.vue.d.ts +2 -0
- package/dist/components/BaseRadio/BaseRadio.vue.d.ts +2 -0
- package/dist/components/BaseSegmentedButtons/BaseSegmentedButtons.vue.d.ts +2 -0
- package/dist/components/BaseTextarea/BaseTextarea.vue.d.ts +7 -7
- package/dist/components/BaseToggle/BaseToggle.vue.d.ts +2 -0
- package/dist/composables/kit/state.d.ts +1 -0
- package/dist/index.js +1 -1
- package/example/App.vue +21 -24
- package/package.json +1 -1
- package/src/components/BaseInput/BaseInput.vue +20 -3
- package/src/components/BaseInputCurrency/BaseInputCurrency.vue +94 -53
- package/src/components/BaseInputPhone/BaseInputPhone.vue +41 -0
- package/src/components/BaseSiteInput/BaseSiteInput.vue +43 -1
- package/src/components/BaseUpload/BaseUpload.vue +1 -1
- package/src/composables/kit/state.ts +1 -0
- package/src/types/utils.d.ts +1 -0
- package/webpack.config.js +1 -1
|
@@ -24,6 +24,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
24
24
|
loading: {
|
|
25
25
|
type: BooleanConstructor;
|
|
26
26
|
};
|
|
27
|
+
hint: {};
|
|
27
28
|
outline: {
|
|
28
29
|
type: BooleanConstructor;
|
|
29
30
|
};
|
|
@@ -61,6 +62,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
61
62
|
loading: {
|
|
62
63
|
type: BooleanConstructor;
|
|
63
64
|
};
|
|
65
|
+
hint: {};
|
|
64
66
|
outline: {
|
|
65
67
|
type: BooleanConstructor;
|
|
66
68
|
};
|
|
@@ -29,6 +29,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
29
29
|
loading: {
|
|
30
30
|
type: BooleanConstructor;
|
|
31
31
|
};
|
|
32
|
+
hint: {};
|
|
32
33
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
33
34
|
[key: string]: any;
|
|
34
35
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -62,6 +63,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
62
63
|
loading: {
|
|
63
64
|
type: BooleanConstructor;
|
|
64
65
|
};
|
|
66
|
+
hint: {};
|
|
65
67
|
}>> & Readonly<{
|
|
66
68
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
67
69
|
}>, {
|
|
@@ -31,6 +31,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
31
31
|
loading: {
|
|
32
32
|
type: BooleanConstructor;
|
|
33
33
|
};
|
|
34
|
+
hint: {};
|
|
34
35
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
35
36
|
[key: string]: any;
|
|
36
37
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -66,6 +67,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
66
67
|
loading: {
|
|
67
68
|
type: BooleanConstructor;
|
|
68
69
|
};
|
|
70
|
+
hint: {};
|
|
69
71
|
}>> & Readonly<{
|
|
70
72
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
71
73
|
}>, {
|
|
@@ -100,9 +100,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
100
100
|
active: boolean;
|
|
101
101
|
required: boolean;
|
|
102
102
|
loading: boolean;
|
|
103
|
+
hint: string;
|
|
103
104
|
modelValue: string;
|
|
104
105
|
readonly: boolean;
|
|
105
106
|
mask: string;
|
|
106
|
-
hint: string;
|
|
107
107
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
108
108
|
export default _default;
|
|
@@ -110,10 +110,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
110
110
|
active: boolean;
|
|
111
111
|
required: boolean;
|
|
112
112
|
loading: boolean;
|
|
113
|
+
hint: string;
|
|
113
114
|
modelValue: string;
|
|
114
115
|
range: boolean | Record<string, any>;
|
|
115
116
|
minDate: null;
|
|
116
117
|
readonly: boolean;
|
|
117
|
-
hint: string;
|
|
118
118
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
119
119
|
export default _default;
|
|
@@ -96,8 +96,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
96
96
|
active: boolean;
|
|
97
97
|
required: boolean;
|
|
98
98
|
loading: boolean;
|
|
99
|
+
hint: string;
|
|
99
100
|
modelValue: string;
|
|
100
101
|
readonly: boolean;
|
|
101
|
-
hint: string;
|
|
102
102
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
103
103
|
export default _default;
|
|
@@ -98,8 +98,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
98
98
|
active: boolean;
|
|
99
99
|
required: boolean;
|
|
100
100
|
loading: boolean;
|
|
101
|
+
hint: string;
|
|
101
102
|
modelValue: string;
|
|
102
103
|
readonly: boolean;
|
|
103
|
-
hint: string;
|
|
104
104
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
105
105
|
export default _default;
|
|
@@ -96,8 +96,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
96
96
|
active: boolean;
|
|
97
97
|
required: boolean;
|
|
98
98
|
loading: boolean;
|
|
99
|
+
hint: string;
|
|
99
100
|
modelValue: string;
|
|
100
101
|
readonly: boolean;
|
|
101
|
-
hint: string;
|
|
102
102
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
103
103
|
export default _default;
|
|
@@ -25,6 +25,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
25
25
|
loading: {
|
|
26
26
|
type: BooleanConstructor;
|
|
27
27
|
};
|
|
28
|
+
hint: {};
|
|
28
29
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
29
30
|
[key: string]: any;
|
|
30
31
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -54,6 +55,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
54
55
|
loading: {
|
|
55
56
|
type: BooleanConstructor;
|
|
56
57
|
};
|
|
58
|
+
hint: {};
|
|
57
59
|
}>> & Readonly<{}>, {
|
|
58
60
|
size: string;
|
|
59
61
|
disabled: boolean;
|
|
@@ -29,6 +29,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
29
29
|
loading: {
|
|
30
30
|
type: BooleanConstructor;
|
|
31
31
|
};
|
|
32
|
+
hint: {};
|
|
32
33
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
33
34
|
[key: string]: any;
|
|
34
35
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -62,6 +63,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
62
63
|
loading: {
|
|
63
64
|
type: BooleanConstructor;
|
|
64
65
|
};
|
|
66
|
+
hint: {};
|
|
65
67
|
}>> & Readonly<{
|
|
66
68
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
67
69
|
}>, {
|
|
@@ -20,6 +20,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
20
20
|
loading: {
|
|
21
21
|
type: BooleanConstructor;
|
|
22
22
|
};
|
|
23
|
+
hint: {};
|
|
23
24
|
outline: {
|
|
24
25
|
type: BooleanConstructor;
|
|
25
26
|
};
|
|
@@ -57,6 +58,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
57
58
|
loading: {
|
|
58
59
|
type: BooleanConstructor;
|
|
59
60
|
};
|
|
61
|
+
hint: {};
|
|
60
62
|
outline: {
|
|
61
63
|
type: BooleanConstructor;
|
|
62
64
|
};
|
|
@@ -18,6 +18,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
18
18
|
loading: {
|
|
19
19
|
type: BooleanConstructor;
|
|
20
20
|
};
|
|
21
|
+
hint: {
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
21
24
|
modelValue: {
|
|
22
25
|
default: string;
|
|
23
26
|
};
|
|
@@ -29,9 +32,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
29
32
|
readonly: {
|
|
30
33
|
type: BooleanConstructor;
|
|
31
34
|
};
|
|
32
|
-
hint: {
|
|
33
|
-
default: string;
|
|
34
|
-
};
|
|
35
35
|
label: {};
|
|
36
36
|
tooltipOptions: {};
|
|
37
37
|
validationText: {};
|
|
@@ -61,6 +61,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
61
61
|
loading: {
|
|
62
62
|
type: BooleanConstructor;
|
|
63
63
|
};
|
|
64
|
+
hint: {
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
64
67
|
modelValue: {
|
|
65
68
|
default: string;
|
|
66
69
|
};
|
|
@@ -72,9 +75,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
72
75
|
readonly: {
|
|
73
76
|
type: BooleanConstructor;
|
|
74
77
|
};
|
|
75
|
-
hint: {
|
|
76
|
-
default: string;
|
|
77
|
-
};
|
|
78
78
|
label: {};
|
|
79
79
|
tooltipOptions: {};
|
|
80
80
|
validationText: {};
|
|
@@ -91,8 +91,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
91
91
|
active: boolean;
|
|
92
92
|
required: boolean;
|
|
93
93
|
loading: boolean;
|
|
94
|
+
hint: string;
|
|
94
95
|
modelValue: string;
|
|
95
96
|
readonly: boolean;
|
|
96
|
-
hint: string;
|
|
97
97
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
98
98
|
export default _default;
|
|
@@ -28,6 +28,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
28
28
|
loading: {
|
|
29
29
|
type: BooleanConstructor;
|
|
30
30
|
};
|
|
31
|
+
hint: {};
|
|
31
32
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
32
33
|
[key: string]: any;
|
|
33
34
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -60,6 +61,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
60
61
|
loading: {
|
|
61
62
|
type: BooleanConstructor;
|
|
62
63
|
};
|
|
64
|
+
hint: {};
|
|
63
65
|
}>> & Readonly<{
|
|
64
66
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
65
67
|
}>, {
|
|
@@ -7,6 +7,7 @@ export declare function useKitState(props: ICoreState): {
|
|
|
7
7
|
'--is-error': import("../../types/utils").Nullable<string | number | boolean> | undefined;
|
|
8
8
|
'--is-loading': boolean | undefined;
|
|
9
9
|
'--is-disabled': boolean | undefined;
|
|
10
|
+
'--is-has-hint': import("../../types/utils").Nullable<string | number | boolean> | undefined;
|
|
10
11
|
}[]>;
|
|
11
12
|
stateAttrs: import("vue").ComputedRef<{
|
|
12
13
|
disabled?: true | undefined;
|