plugin-ui-for-kzt 0.0.16 → 0.0.17
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 +3 -3
- package/dist/components/BaseCalendar/BaseCalendar.vue.d.ts +1 -1
- package/dist/components/BaseCheckbox/BaseCheckbox.vue.d.ts +4 -4
- package/dist/components/BaseChips/BaseChips.vue.d.ts +27 -0
- package/dist/components/BaseDropdown/BaseDropdown.vue.d.ts +3 -3
- package/dist/components/BaseInput/BaseInput.vue.d.ts +5 -5
- package/dist/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +6 -6
- package/dist/components/BaseInputCurrency/BaseInputCurrency.vue.d.ts +5 -5
- package/dist/components/BaseInputEmail/BaseInputEmail.vue.d.ts +5 -5
- package/dist/components/BaseInputPhone/BaseInputPhone.vue.d.ts +5 -5
- package/dist/components/BaseOpenedListItem/BaseOpenedListItem.vue.d.ts +3 -3
- package/dist/components/BaseRadio/BaseRadio.vue.d.ts +4 -4
- package/dist/components/BaseSegmentedButtons/BaseSegmentedButtons.vue.d.ts +2 -2
- package/dist/components/BaseSelect/BaseSelect.vue.d.ts +3 -3
- package/dist/components/BaseSiteInput/BaseSiteInput.vue.d.ts +1 -1
- package/dist/components/BaseSwiper/BaseSwiper.vue.d.ts +57 -0
- package/dist/components/BaseTextarea/BaseTextarea.vue.d.ts +5 -5
- package/dist/components/BaseToggle/BaseToggle.vue.d.ts +4 -4
- package/dist/components/BaseTooltip/BaseTooltip.vue.d.ts +1 -1
- package/dist/components/Toaster/Toaster.vue.d.ts +4 -4
- package/dist/index.d.ts +3 -1
- package/dist/index.js +1 -1
- package/dist/sprite.svg +1 -1
- package/example/App.vue +45 -23
- package/package.json +1 -1
- package/src/assets/icons/arrow-left-circle.svg +3 -0
- package/src/assets/icons/arrow-right-circle.svg +3 -0
- package/src/assets/icons/star.svg +3 -0
- package/src/components/BaseBreadCrumbs/BaseBreadCrumbs.vue +1 -2
- package/src/components/BaseButton/BaseButton.vue +29 -10
- package/src/components/BaseChips/BaseChips.vue +182 -0
- package/src/components/BaseChips/README.md +64 -0
- package/src/components/BaseInput/BaseInput.vue +1 -0
- package/src/components/BaseOpenedListItem/BaseOpenedListItem.vue +4 -4
- package/src/components/BasePagination/BasePagination.vue +146 -123
- package/src/components/BaseSiteInput/BaseSiteInput.vue +26 -9
- package/src/components/BaseSwiper/BaseSwiper.vue +229 -0
- package/src/components/BaseTextarea/BaseTextarea.vue +1 -0
- package/src/index.ts +8 -2
- package/src/styles/root.scss +2 -0
- package/src/types/chips.d.ts +10 -0
- package/src/types/pagination.d.ts +2 -2
- package/src/types/swiper.d.ts +17 -0
|
@@ -71,14 +71,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
71
71
|
type: BooleanConstructor;
|
|
72
72
|
};
|
|
73
73
|
}>> & Readonly<{}>, {
|
|
74
|
+
active: boolean;
|
|
74
75
|
size: string;
|
|
75
76
|
disabled: boolean;
|
|
76
77
|
color: string;
|
|
78
|
+
tag: string;
|
|
79
|
+
selected: boolean;
|
|
77
80
|
required: boolean;
|
|
78
81
|
loading: boolean;
|
|
79
|
-
selected: boolean;
|
|
80
|
-
active: boolean;
|
|
81
|
-
tag: string;
|
|
82
82
|
outline: boolean;
|
|
83
83
|
rounded: boolean;
|
|
84
84
|
underline: boolean;
|
|
@@ -33,8 +33,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
33
33
|
};
|
|
34
34
|
}>> & Readonly<{}>, {
|
|
35
35
|
size: string;
|
|
36
|
+
readonly: boolean;
|
|
36
37
|
range: boolean | Record<string, any>;
|
|
37
38
|
minDate: null;
|
|
38
|
-
readonly: boolean;
|
|
39
39
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
40
40
|
export default _default;
|
|
@@ -65,13 +65,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
65
65
|
}>> & Readonly<{
|
|
66
66
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
67
67
|
}>, {
|
|
68
|
+
active: boolean;
|
|
68
69
|
size: string;
|
|
69
70
|
disabled: boolean;
|
|
70
|
-
|
|
71
|
-
readonly: boolean;
|
|
71
|
+
selected: boolean;
|
|
72
72
|
required: boolean;
|
|
73
73
|
loading: boolean;
|
|
74
|
-
|
|
75
|
-
|
|
74
|
+
modelValue: boolean;
|
|
75
|
+
readonly: boolean;
|
|
76
76
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
77
77
|
export default _default;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
text: {};
|
|
3
|
+
active: {
|
|
4
|
+
type: BooleanConstructor;
|
|
5
|
+
};
|
|
6
|
+
iconName: {};
|
|
7
|
+
count: {};
|
|
8
|
+
size: {
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14
|
+
text: {};
|
|
15
|
+
active: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
};
|
|
18
|
+
iconName: {};
|
|
19
|
+
count: {};
|
|
20
|
+
size: {
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
}>> & Readonly<{}>, {
|
|
24
|
+
active: boolean;
|
|
25
|
+
size: string;
|
|
26
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
27
|
+
export default _default;
|
|
@@ -69,13 +69,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
69
69
|
}>> & Readonly<{
|
|
70
70
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
71
71
|
}>, {
|
|
72
|
+
active: boolean;
|
|
72
73
|
size: string;
|
|
73
74
|
disabled: boolean;
|
|
74
|
-
|
|
75
|
+
selected: boolean;
|
|
75
76
|
required: boolean;
|
|
76
77
|
loading: boolean;
|
|
77
|
-
|
|
78
|
-
active: boolean;
|
|
78
|
+
modelValue: boolean;
|
|
79
79
|
parentWidth: boolean;
|
|
80
80
|
preventControl: boolean;
|
|
81
81
|
autoClose: boolean;
|
|
@@ -91,17 +91,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
91
91
|
type: BooleanConstructor;
|
|
92
92
|
};
|
|
93
93
|
}>> & Readonly<{}>, {
|
|
94
|
-
|
|
94
|
+
active: boolean;
|
|
95
95
|
type: string;
|
|
96
96
|
size: string;
|
|
97
|
+
error: string | boolean;
|
|
97
98
|
disabled: boolean;
|
|
98
99
|
placeholder: string;
|
|
99
|
-
|
|
100
|
-
readonly: boolean;
|
|
100
|
+
selected: boolean;
|
|
101
101
|
required: boolean;
|
|
102
102
|
loading: boolean;
|
|
103
|
-
|
|
104
|
-
|
|
103
|
+
modelValue: string;
|
|
104
|
+
readonly: boolean;
|
|
105
105
|
mask: string;
|
|
106
106
|
hint: string;
|
|
107
107
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -101,19 +101,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
101
101
|
default: null;
|
|
102
102
|
};
|
|
103
103
|
}>> & Readonly<{}>, {
|
|
104
|
-
|
|
104
|
+
active: boolean;
|
|
105
105
|
type: string;
|
|
106
106
|
size: string;
|
|
107
|
+
error: string | boolean;
|
|
107
108
|
disabled: boolean;
|
|
108
109
|
placeholder: string;
|
|
110
|
+
selected: boolean;
|
|
111
|
+
required: boolean;
|
|
112
|
+
loading: boolean;
|
|
109
113
|
modelValue: string;
|
|
114
|
+
readonly: boolean;
|
|
110
115
|
range: boolean | Record<string, any>;
|
|
111
116
|
minDate: null;
|
|
112
|
-
readonly: boolean;
|
|
113
|
-
required: boolean;
|
|
114
|
-
loading: boolean;
|
|
115
|
-
selected: boolean;
|
|
116
|
-
active: boolean;
|
|
117
117
|
hint: string;
|
|
118
118
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
119
119
|
export default _default;
|
|
@@ -87,17 +87,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
87
87
|
type: BooleanConstructor;
|
|
88
88
|
};
|
|
89
89
|
}>> & Readonly<{}>, {
|
|
90
|
-
|
|
90
|
+
active: boolean;
|
|
91
91
|
type: string;
|
|
92
92
|
size: string;
|
|
93
|
+
error: string | boolean;
|
|
93
94
|
disabled: boolean;
|
|
94
95
|
placeholder: string;
|
|
95
|
-
|
|
96
|
-
readonly: boolean;
|
|
96
|
+
selected: boolean;
|
|
97
97
|
required: boolean;
|
|
98
98
|
loading: boolean;
|
|
99
|
-
|
|
100
|
-
|
|
99
|
+
modelValue: string;
|
|
100
|
+
readonly: boolean;
|
|
101
101
|
hint: string;
|
|
102
102
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
103
103
|
export default _default;
|
|
@@ -89,17 +89,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
89
89
|
}>> & Readonly<{
|
|
90
90
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
91
91
|
}>, {
|
|
92
|
-
|
|
92
|
+
active: boolean;
|
|
93
93
|
type: string;
|
|
94
94
|
size: string;
|
|
95
|
+
error: string | boolean;
|
|
95
96
|
disabled: boolean;
|
|
96
97
|
placeholder: string;
|
|
97
|
-
|
|
98
|
-
readonly: boolean;
|
|
98
|
+
selected: boolean;
|
|
99
99
|
required: boolean;
|
|
100
100
|
loading: boolean;
|
|
101
|
-
|
|
102
|
-
|
|
101
|
+
modelValue: string;
|
|
102
|
+
readonly: boolean;
|
|
103
103
|
hint: string;
|
|
104
104
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
105
105
|
export default _default;
|
|
@@ -87,17 +87,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
87
87
|
type: BooleanConstructor;
|
|
88
88
|
};
|
|
89
89
|
}>> & Readonly<{}>, {
|
|
90
|
-
|
|
90
|
+
active: boolean;
|
|
91
91
|
type: string;
|
|
92
92
|
size: string;
|
|
93
|
+
error: string | boolean;
|
|
93
94
|
disabled: boolean;
|
|
94
95
|
placeholder: string;
|
|
95
|
-
|
|
96
|
-
readonly: boolean;
|
|
96
|
+
selected: boolean;
|
|
97
97
|
required: boolean;
|
|
98
98
|
loading: boolean;
|
|
99
|
-
|
|
100
|
-
|
|
99
|
+
modelValue: string;
|
|
100
|
+
readonly: boolean;
|
|
101
101
|
hint: string;
|
|
102
102
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
103
103
|
export default _default;
|
|
@@ -55,12 +55,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
55
55
|
type: BooleanConstructor;
|
|
56
56
|
};
|
|
57
57
|
}>> & Readonly<{}>, {
|
|
58
|
+
active: boolean;
|
|
58
59
|
size: string;
|
|
59
60
|
disabled: boolean;
|
|
61
|
+
tag: string;
|
|
62
|
+
selected: boolean;
|
|
60
63
|
required: boolean;
|
|
61
64
|
loading: boolean;
|
|
62
|
-
selected: boolean;
|
|
63
|
-
active: boolean;
|
|
64
|
-
tag: string;
|
|
65
65
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
66
66
|
export default _default;
|
|
@@ -65,13 +65,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
65
65
|
}>> & Readonly<{
|
|
66
66
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
67
67
|
}>, {
|
|
68
|
+
active: boolean;
|
|
68
69
|
size: string;
|
|
69
70
|
disabled: boolean;
|
|
70
|
-
|
|
71
|
-
readonly: boolean;
|
|
71
|
+
selected: boolean;
|
|
72
72
|
required: boolean;
|
|
73
73
|
loading: boolean;
|
|
74
|
-
|
|
75
|
-
|
|
74
|
+
modelValue: boolean;
|
|
75
|
+
readonly: boolean;
|
|
76
76
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
77
77
|
export default _default;
|
|
@@ -73,13 +73,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
73
73
|
}>> & Readonly<{
|
|
74
74
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
75
75
|
}>, {
|
|
76
|
+
active: boolean;
|
|
76
77
|
size: string;
|
|
77
78
|
options: never[];
|
|
78
79
|
disabled: boolean;
|
|
80
|
+
selected: boolean;
|
|
79
81
|
required: boolean;
|
|
80
82
|
loading: boolean;
|
|
81
|
-
selected: boolean;
|
|
82
|
-
active: boolean;
|
|
83
83
|
outline: boolean;
|
|
84
84
|
rounded: boolean;
|
|
85
85
|
underline: boolean;
|
|
@@ -105,17 +105,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
105
105
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
106
106
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
107
107
|
}>, {
|
|
108
|
+
active: boolean;
|
|
108
109
|
size: string;
|
|
109
110
|
options: never[];
|
|
110
111
|
disabled: boolean;
|
|
111
|
-
|
|
112
|
+
selected: boolean;
|
|
112
113
|
required: boolean;
|
|
113
114
|
loading: boolean;
|
|
114
|
-
selected: boolean;
|
|
115
|
-
active: boolean;
|
|
116
115
|
outline: boolean;
|
|
117
116
|
rounded: boolean;
|
|
118
117
|
underline: boolean;
|
|
118
|
+
readonly: boolean;
|
|
119
119
|
parentWidth: boolean;
|
|
120
120
|
multiple: boolean;
|
|
121
121
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -45,8 +45,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
45
45
|
}>> & Readonly<{
|
|
46
46
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
47
47
|
}>, {
|
|
48
|
-
error: string | boolean;
|
|
49
48
|
size: string;
|
|
49
|
+
error: string | boolean;
|
|
50
50
|
modelValue: string;
|
|
51
51
|
readonly: boolean;
|
|
52
52
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
images: {
|
|
3
|
+
default: () => never[];
|
|
4
|
+
};
|
|
5
|
+
paginationSettings: {
|
|
6
|
+
default: {
|
|
7
|
+
type: string;
|
|
8
|
+
color: string;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
currentSlide: {};
|
|
12
|
+
autoplay: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
default: boolean;
|
|
15
|
+
};
|
|
16
|
+
autoplayInterval: {
|
|
17
|
+
default: number;
|
|
18
|
+
};
|
|
19
|
+
buttonSize: {
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
23
|
+
[key: string]: any;
|
|
24
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:currentSlide"[], "update:currentSlide", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
25
|
+
images: {
|
|
26
|
+
default: () => never[];
|
|
27
|
+
};
|
|
28
|
+
paginationSettings: {
|
|
29
|
+
default: {
|
|
30
|
+
type: string;
|
|
31
|
+
color: string;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
currentSlide: {};
|
|
35
|
+
autoplay: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
autoplayInterval: {
|
|
40
|
+
default: number;
|
|
41
|
+
};
|
|
42
|
+
buttonSize: {
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
}>> & Readonly<{
|
|
46
|
+
"onUpdate:currentSlide"?: ((...args: any[]) => any) | undefined;
|
|
47
|
+
}>, {
|
|
48
|
+
images: never[];
|
|
49
|
+
paginationSettings: {
|
|
50
|
+
type: string;
|
|
51
|
+
color: string;
|
|
52
|
+
};
|
|
53
|
+
autoplay: boolean;
|
|
54
|
+
autoplayInterval: number;
|
|
55
|
+
buttonSize: string;
|
|
56
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
57
|
+
export default _default;
|
|
@@ -83,16 +83,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
83
83
|
};
|
|
84
84
|
maxLength: {};
|
|
85
85
|
}>> & Readonly<{}>, {
|
|
86
|
-
|
|
86
|
+
active: boolean;
|
|
87
87
|
size: string;
|
|
88
|
+
error: string | boolean;
|
|
88
89
|
disabled: boolean;
|
|
89
90
|
placeholder: string;
|
|
90
|
-
|
|
91
|
-
readonly: boolean;
|
|
91
|
+
selected: boolean;
|
|
92
92
|
required: boolean;
|
|
93
93
|
loading: boolean;
|
|
94
|
-
|
|
95
|
-
|
|
94
|
+
modelValue: string;
|
|
95
|
+
readonly: boolean;
|
|
96
96
|
hint: string;
|
|
97
97
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
98
98
|
export default _default;
|
|
@@ -63,13 +63,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
63
63
|
}>> & Readonly<{
|
|
64
64
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
65
65
|
}>, {
|
|
66
|
+
active: boolean;
|
|
66
67
|
size: string;
|
|
67
68
|
disabled: boolean;
|
|
68
|
-
|
|
69
|
-
readonly: boolean;
|
|
69
|
+
selected: boolean;
|
|
70
70
|
required: boolean;
|
|
71
71
|
loading: boolean;
|
|
72
|
-
|
|
73
|
-
|
|
72
|
+
modelValue: boolean;
|
|
73
|
+
readonly: boolean;
|
|
74
74
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
75
75
|
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;
|
|
@@ -67,14 +67,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
67
67
|
default: () => void;
|
|
68
68
|
};
|
|
69
69
|
}>> & Readonly<{}>, {
|
|
70
|
-
message: string;
|
|
71
70
|
type: string;
|
|
71
|
+
message: string;
|
|
72
|
+
onClick: Function;
|
|
72
73
|
position: string;
|
|
74
|
+
duration: number;
|
|
73
75
|
dismissible: boolean;
|
|
74
|
-
onDismiss: Function;
|
|
75
|
-
onClick: Function;
|
|
76
76
|
pauseOnHover: boolean;
|
|
77
|
-
|
|
77
|
+
onDismiss: Function;
|
|
78
78
|
onHeightUpdate: Function;
|
|
79
79
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
80
80
|
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -27,8 +27,10 @@ import BaseSiteInput from "./components/BaseSiteInput/BaseSiteInput.vue";
|
|
|
27
27
|
import BaseInputPhone from "./components/BaseInputPhone/BaseInputPhone.vue";
|
|
28
28
|
import BaseInputCurrency from "./components/BaseInputCurrency/BaseInputCurrency.vue";
|
|
29
29
|
import BaseSegmentedButtons from "./components/BaseSegmentedButtons/BaseSegmentedButtons.vue";
|
|
30
|
+
import BaseChips from "./components/BaseChips/BaseChips.vue";
|
|
31
|
+
import BaseSwiper from "./components/BaseSwiper/BaseSwiper.vue";
|
|
30
32
|
declare const _default: {
|
|
31
33
|
install(app: any): void;
|
|
32
34
|
};
|
|
33
35
|
export default _default;
|
|
34
|
-
export { Modal, DataTable, 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 };
|
|
36
|
+
export { Modal, DataTable, 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 };
|