plugin-ui-for-kzt 0.0.20 → 0.0.21

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