plugin-ui-for-kzt 0.0.23 → 0.0.27
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/assets/0e28e37419c99ac65b12.png +0 -0
- package/dist/assets/264165b2b0e8a6840eb0.png +0 -0
- package/dist/components/BaseBadge/BaseBadge.vue.d.ts +2 -2
- package/dist/components/BaseButton/BaseButton.vue.d.ts +1 -1
- package/dist/components/BaseCalendar/BaseCalendar.vue.d.ts +10 -1
- package/dist/components/BaseCheckbox/BaseCheckbox.vue.d.ts +2 -2
- package/dist/components/{DataTable/DataTable.vue.d.ts → BaseDefaultPages/BaseDefaultPages.vue.d.ts} +8 -6
- package/dist/components/BaseDropdown/BaseDropdown.vue.d.ts +1 -1
- package/dist/components/BaseInput/BaseInput.vue.d.ts +4 -4
- package/dist/components/BaseInputCalendar/BaseInputCalendar.vue.d.ts +11 -4
- package/dist/components/BaseInputCurrency/BaseInputCurrency.vue.d.ts +3 -3
- package/dist/components/BaseInputEmail/BaseInputEmail.vue.d.ts +2 -2
- package/dist/components/BaseInputPhone/BaseInputPhone.vue.d.ts +2 -2
- package/dist/components/{Tooltip/Tooltip.vue.d.ts → BasePageLoader/BasePageLoader.vue.d.ts} +24 -11
- package/dist/components/BasePagination/BasePagination.vue.d.ts +1 -1
- package/dist/components/BaseRadio/BaseRadio.vue.d.ts +2 -2
- package/dist/components/BaseSegmentedButtons/BaseSegmentedButtons.vue.d.ts +1 -1
- package/dist/components/BaseSelect/BaseSelect.vue.d.ts +2 -2
- package/dist/components/BaseTable/BaseTable.vue.d.ts +44 -0
- package/dist/components/BaseTag/BaseTag.vue.d.ts +1 -1
- package/dist/components/BaseTextarea/BaseTextarea.vue.d.ts +2 -2
- package/dist/components/BaseToast/BaseToast.vue.d.ts +69 -0
- package/dist/components/BaseToggle/BaseToggle.vue.d.ts +2 -2
- package/dist/composables/useToast.d.ts +2 -0
- package/dist/index.d.ts +6 -5
- package/dist/index.js +1 -1
- package/dist/plugins/toastPlugin.d.ts +4 -0
- package/dist/sprite.svg +1 -1
- package/dist/store/toast.d.ts +8 -0
- package/example/App.vue +12 -38
- package/package.json +1 -1
- package/src/assets/404.png +0 -0
- package/src/assets/icons/arrow-down-stick.svg +4 -0
- package/src/assets/icons/edit-table.svg +5 -0
- package/src/assets/icons/ellipsis.svg +5 -0
- package/src/assets/icons/loading-page-default.svg +4 -0
- package/src/assets/icons/loading-page-error.svg +6 -0
- package/src/assets/icons/loading-page-success.svg +5 -0
- package/src/assets/icons/loading-page-warning.svg +6 -0
- package/src/assets/icons/more-dots.svg +5 -0
- package/src/assets/icons/time-table.svg +7 -0
- package/src/assets/icons/toast-error.svg +3 -0
- package/src/assets/icons/toast-info.svg +3 -0
- package/src/assets/icons/toast-success.svg +3 -0
- package/src/assets/icons/toast-warning.svg +3 -0
- package/src/assets/icons/trash-table.svg +7 -0
- package/src/assets/tech-work.png +0 -0
- package/src/components/BaseCalendar/BaseCalendar.vue +2 -0
- package/src/components/BaseChips/BaseChips.vue +3 -1
- package/src/components/BaseDefaultPages/BaseDefaultPages.vue +140 -0
- package/src/components/BaseDefaultPages/README.md +128 -0
- package/src/components/BaseOpenedListItem/BaseOpenedListItem.vue +3 -3
- package/src/components/BasePageLoader/BasePageLoader.vue +211 -0
- package/src/components/BasePageLoader/README.md +80 -0
- package/src/components/BaseSelect/BaseSelect.vue +8 -3
- package/src/components/BaseTable/BaseTable.vue +411 -0
- package/src/components/BaseTable/README.md +294 -0
- package/src/components/BaseToast/BaseToast.vue +200 -0
- package/src/components/BaseToast/README.md +103 -0
- package/src/components/BaseTooltip/BaseTooltip.vue +1 -0
- package/src/components/BaseUpload/BaseUpload.vue +1 -1
- package/src/composables/useToast.ts +10 -0
- package/src/index.ts +17 -13
- package/src/plugins/toastPlugin.ts +100 -0
- package/src/store/toast.ts +59 -0
- package/src/styles/root.scss +2 -0
- package/src/styles/toast.scss +36 -0
- package/src/types/calendar.d.ts +1 -0
- package/src/types/default-pages.d.ts +6 -0
- package/src/types/loading-page.d.ts +12 -0
- package/src/types/pagination.d.ts +1 -0
- package/src/types/table.d.ts +33 -0
- package/src/types/toast.d.ts +25 -0
- package/webpack.config.js +12 -0
- package/dist/components/Spinner/Spinner.vue.d.ts +0 -20
- package/dist/components/Toaster/Toaster.vue.d.ts +0 -80
- package/dist/components/Toaster/timer.d.ts +0 -12
- package/dist/plugins/toasterPlugin.d.ts +0 -26
- package/src/components/DataTable/DataTable.vue +0 -169
- package/src/components/DataTable/README.md +0 -57
- package/src/components/Spinner/README.md +0 -35
- package/src/components/Spinner/Spinner.vue +0 -60
- package/src/components/Toaster/README.md +0 -70
- package/src/components/Toaster/Toaster.vue +0 -235
- package/src/components/Toaster/timer.ts +0 -45
- package/src/components/Tooltip/README.md +0 -37
- package/src/components/Tooltip/Tooltip.vue +0 -96
- package/src/components/icons/CloseIcon.vue +0 -5
- package/src/components/icons/ErrorIcon.vue +0 -7
- package/src/components/icons/InfoIcon.vue +0 -7
- package/src/components/icons/SuccessIcon.vue +0 -6
- package/src/components/icons/WarningIcon.vue +0 -7
- package/src/plugins/toasterPlugin.ts +0 -179
|
Binary file
|
|
Binary file
|
|
@@ -40,10 +40,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
40
40
|
};
|
|
41
41
|
}>> & Readonly<{}>, {
|
|
42
42
|
size: string;
|
|
43
|
-
color: string;
|
|
44
43
|
closable: boolean;
|
|
44
|
+
color: string;
|
|
45
|
+
arrowRightIcon: boolean;
|
|
45
46
|
hasDot: boolean;
|
|
46
47
|
arrowUpIcon: boolean;
|
|
47
|
-
arrowRightIcon: boolean;
|
|
48
48
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
49
49
|
export default _default;
|
|
@@ -72,13 +72,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
72
72
|
};
|
|
73
73
|
}>> & Readonly<{}>, {
|
|
74
74
|
size: string;
|
|
75
|
-
color: string;
|
|
76
75
|
tag: string;
|
|
77
76
|
selected: boolean;
|
|
78
77
|
active: boolean;
|
|
79
78
|
disabled: boolean;
|
|
80
79
|
required: boolean;
|
|
81
80
|
loading: boolean;
|
|
81
|
+
color: string;
|
|
82
82
|
outline: boolean;
|
|
83
83
|
rounded: boolean;
|
|
84
84
|
underline: boolean;
|
|
@@ -15,6 +15,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
15
15
|
error: {
|
|
16
16
|
type: (BooleanConstructor | StringConstructor)[];
|
|
17
17
|
};
|
|
18
|
+
inline: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
18
22
|
size: {
|
|
19
23
|
default: string;
|
|
20
24
|
};
|
|
@@ -36,13 +40,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
36
40
|
error: {
|
|
37
41
|
type: (BooleanConstructor | StringConstructor)[];
|
|
38
42
|
};
|
|
43
|
+
inline: {
|
|
44
|
+
type: BooleanConstructor;
|
|
45
|
+
default: boolean;
|
|
46
|
+
};
|
|
39
47
|
size: {
|
|
40
48
|
default: string;
|
|
41
49
|
};
|
|
42
50
|
}>> & Readonly<{}>, {
|
|
43
51
|
size: string;
|
|
52
|
+
readonly: boolean;
|
|
44
53
|
range: boolean | Record<string, any>;
|
|
45
54
|
minDate: null;
|
|
46
|
-
|
|
55
|
+
inline: boolean;
|
|
47
56
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
48
57
|
export default _default;
|
|
@@ -66,12 +66,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
66
66
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
67
67
|
}>, {
|
|
68
68
|
size: string;
|
|
69
|
+
modelValue: boolean;
|
|
70
|
+
readonly: boolean;
|
|
69
71
|
selected: boolean;
|
|
70
72
|
active: boolean;
|
|
71
73
|
disabled: boolean;
|
|
72
74
|
required: boolean;
|
|
73
75
|
loading: boolean;
|
|
74
|
-
modelValue: boolean;
|
|
75
|
-
readonly: boolean;
|
|
76
76
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
77
77
|
export default _default;
|
package/dist/components/{DataTable/DataTable.vue.d.ts → BaseDefaultPages/BaseDefaultPages.vue.d.ts}
RENAMED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
title: {};
|
|
3
|
+
description: {};
|
|
4
|
+
buttonText: {};
|
|
5
|
+
type: {};
|
|
5
6
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
6
7
|
[key: string]: any;
|
|
7
8
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
title: {};
|
|
10
|
+
description: {};
|
|
11
|
+
buttonText: {};
|
|
12
|
+
type: {};
|
|
11
13
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12
14
|
export default _default;
|
|
@@ -70,12 +70,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
70
70
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
71
71
|
}>, {
|
|
72
72
|
size: string;
|
|
73
|
+
modelValue: boolean;
|
|
73
74
|
selected: boolean;
|
|
74
75
|
active: boolean;
|
|
75
76
|
disabled: boolean;
|
|
76
77
|
required: boolean;
|
|
77
78
|
loading: boolean;
|
|
78
|
-
modelValue: boolean;
|
|
79
79
|
parentWidth: boolean;
|
|
80
80
|
preventControl: boolean;
|
|
81
81
|
autoClose: boolean;
|
|
@@ -94,17 +94,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
94
94
|
};
|
|
95
95
|
}>> & Readonly<{}>, {
|
|
96
96
|
size: string;
|
|
97
|
-
type: string;
|
|
98
97
|
id: string;
|
|
98
|
+
mask: string;
|
|
99
|
+
type: string;
|
|
100
|
+
modelValue: string;
|
|
101
|
+
readonly: boolean;
|
|
99
102
|
selected: boolean;
|
|
100
103
|
active: boolean;
|
|
101
104
|
disabled: boolean;
|
|
102
105
|
required: boolean;
|
|
103
106
|
loading: boolean;
|
|
104
|
-
modelValue: string;
|
|
105
|
-
readonly: boolean;
|
|
106
107
|
placeholder: string;
|
|
107
|
-
mask: string;
|
|
108
108
|
focusable: boolean;
|
|
109
109
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
110
110
|
export default _default;
|
|
@@ -46,6 +46,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
46
46
|
minDate: {
|
|
47
47
|
default: null;
|
|
48
48
|
};
|
|
49
|
+
inline: {
|
|
50
|
+
type: BooleanConstructor;
|
|
51
|
+
};
|
|
49
52
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
50
53
|
[key: string]: any;
|
|
51
54
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "validationError")[], "update:modelValue" | "validationError", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -96,22 +99,26 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
96
99
|
minDate: {
|
|
97
100
|
default: null;
|
|
98
101
|
};
|
|
102
|
+
inline: {
|
|
103
|
+
type: BooleanConstructor;
|
|
104
|
+
};
|
|
99
105
|
}>> & Readonly<{
|
|
100
106
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
101
107
|
onValidationError?: ((...args: any[]) => any) | undefined;
|
|
102
108
|
}>, {
|
|
103
109
|
size: string;
|
|
104
110
|
type: string;
|
|
111
|
+
modelValue: string;
|
|
112
|
+
readonly: boolean;
|
|
105
113
|
selected: boolean;
|
|
106
114
|
active: boolean;
|
|
107
115
|
disabled: boolean;
|
|
108
116
|
required: boolean;
|
|
109
117
|
loading: boolean;
|
|
110
|
-
modelValue: string;
|
|
111
|
-
range: boolean | Record<string, any>;
|
|
112
|
-
minDate: null;
|
|
113
|
-
readonly: boolean;
|
|
114
118
|
placeholder: string;
|
|
115
119
|
focusable: boolean;
|
|
120
|
+
range: boolean | Record<string, any>;
|
|
121
|
+
minDate: null;
|
|
122
|
+
inline: boolean;
|
|
116
123
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
117
124
|
export default _default;
|
|
@@ -86,15 +86,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
86
86
|
};
|
|
87
87
|
}>> & Readonly<{}>, {
|
|
88
88
|
size: string;
|
|
89
|
-
type: string;
|
|
90
89
|
error: string | boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
modelValue: string;
|
|
92
|
+
readonly: boolean;
|
|
91
93
|
selected: boolean;
|
|
92
94
|
active: boolean;
|
|
93
95
|
disabled: boolean;
|
|
94
96
|
required: boolean;
|
|
95
97
|
loading: boolean;
|
|
96
|
-
modelValue: string;
|
|
97
|
-
readonly: boolean;
|
|
98
98
|
placeholder: string;
|
|
99
99
|
focusable: boolean;
|
|
100
100
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -87,13 +87,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
87
87
|
}>, {
|
|
88
88
|
size: string;
|
|
89
89
|
type: string;
|
|
90
|
+
modelValue: string;
|
|
91
|
+
readonly: boolean;
|
|
90
92
|
selected: boolean;
|
|
91
93
|
active: boolean;
|
|
92
94
|
disabled: boolean;
|
|
93
95
|
required: boolean;
|
|
94
96
|
loading: boolean;
|
|
95
|
-
modelValue: string;
|
|
96
|
-
readonly: boolean;
|
|
97
97
|
placeholder: string;
|
|
98
98
|
focusable: boolean;
|
|
99
99
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -85,13 +85,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
85
85
|
}>> & Readonly<{}>, {
|
|
86
86
|
size: string;
|
|
87
87
|
type: string;
|
|
88
|
+
modelValue: string;
|
|
89
|
+
readonly: boolean;
|
|
88
90
|
selected: boolean;
|
|
89
91
|
active: boolean;
|
|
90
92
|
disabled: boolean;
|
|
91
93
|
required: boolean;
|
|
92
94
|
loading: boolean;
|
|
93
|
-
modelValue: string;
|
|
94
|
-
readonly: boolean;
|
|
95
95
|
placeholder: string;
|
|
96
96
|
focusable: boolean;
|
|
97
97
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -1,28 +1,41 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
loading: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
4
5
|
};
|
|
5
|
-
|
|
6
|
+
iconType: {};
|
|
7
|
+
message: {
|
|
6
8
|
default: string;
|
|
7
9
|
};
|
|
8
|
-
|
|
10
|
+
modal: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
size: {
|
|
9
15
|
default: string;
|
|
10
16
|
};
|
|
11
17
|
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
12
18
|
[key: string]: any;
|
|
13
19
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14
|
-
|
|
15
|
-
|
|
20
|
+
loading: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
default: boolean;
|
|
16
23
|
};
|
|
17
|
-
|
|
24
|
+
iconType: {};
|
|
25
|
+
message: {
|
|
18
26
|
default: string;
|
|
19
27
|
};
|
|
20
|
-
|
|
28
|
+
modal: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
32
|
+
size: {
|
|
21
33
|
default: string;
|
|
22
34
|
};
|
|
23
35
|
}>> & Readonly<{}>, {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
36
|
+
size: string;
|
|
37
|
+
modal: boolean;
|
|
38
|
+
message: string;
|
|
39
|
+
loading: boolean;
|
|
27
40
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
28
41
|
export default _default;
|
|
@@ -42,8 +42,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
42
42
|
"onUpdate:currentPage"?: ((...args: any[]) => any) | undefined;
|
|
43
43
|
}>, {
|
|
44
44
|
size: string;
|
|
45
|
-
color: string;
|
|
46
45
|
type: string;
|
|
46
|
+
color: string;
|
|
47
47
|
currentPage: number;
|
|
48
48
|
totalPages: number;
|
|
49
49
|
maxDisplayedPages: number;
|
|
@@ -66,12 +66,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
66
66
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
67
67
|
}>, {
|
|
68
68
|
size: string;
|
|
69
|
+
modelValue: boolean;
|
|
70
|
+
readonly: boolean;
|
|
69
71
|
selected: boolean;
|
|
70
72
|
active: boolean;
|
|
71
73
|
disabled: boolean;
|
|
72
74
|
required: boolean;
|
|
73
75
|
loading: boolean;
|
|
74
|
-
modelValue: boolean;
|
|
75
|
-
readonly: boolean;
|
|
76
76
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
77
77
|
export default _default;
|
|
@@ -79,9 +79,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
79
79
|
disabled: boolean;
|
|
80
80
|
required: boolean;
|
|
81
81
|
loading: boolean;
|
|
82
|
+
options: never[];
|
|
82
83
|
outline: boolean;
|
|
83
84
|
rounded: boolean;
|
|
84
85
|
underline: boolean;
|
|
85
|
-
options: never[];
|
|
86
86
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
87
87
|
export default _default;
|
|
@@ -106,16 +106,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
106
106
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
107
107
|
}>, {
|
|
108
108
|
size: string;
|
|
109
|
+
readonly: boolean;
|
|
109
110
|
selected: boolean;
|
|
110
111
|
active: boolean;
|
|
111
112
|
disabled: boolean;
|
|
112
113
|
required: boolean;
|
|
113
114
|
loading: boolean;
|
|
115
|
+
options: never[];
|
|
114
116
|
outline: boolean;
|
|
115
117
|
rounded: boolean;
|
|
116
118
|
underline: boolean;
|
|
117
|
-
readonly: boolean;
|
|
118
|
-
options: never[];
|
|
119
119
|
parentWidth: boolean;
|
|
120
120
|
multiple: boolean;
|
|
121
121
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
columns: {};
|
|
3
|
+
data: {};
|
|
4
|
+
rowKey: {
|
|
5
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
6
|
+
};
|
|
7
|
+
showRowSelection: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
};
|
|
10
|
+
checkboxTitle: {};
|
|
11
|
+
showActions: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
};
|
|
14
|
+
actions: {};
|
|
15
|
+
pagination: {};
|
|
16
|
+
subTable: {};
|
|
17
|
+
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:selected" | "select-all" | "sort-change" | "page-change")[], "update:selected" | "select-all" | "sort-change" | "page-change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
|
+
columns: {};
|
|
21
|
+
data: {};
|
|
22
|
+
rowKey: {
|
|
23
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
24
|
+
};
|
|
25
|
+
showRowSelection: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
};
|
|
28
|
+
checkboxTitle: {};
|
|
29
|
+
showActions: {
|
|
30
|
+
type: BooleanConstructor;
|
|
31
|
+
};
|
|
32
|
+
actions: {};
|
|
33
|
+
pagination: {};
|
|
34
|
+
subTable: {};
|
|
35
|
+
}>> & Readonly<{
|
|
36
|
+
"onUpdate:selected"?: ((...args: any[]) => any) | undefined;
|
|
37
|
+
"onSelect-all"?: ((...args: any[]) => any) | undefined;
|
|
38
|
+
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
39
|
+
"onPage-change"?: ((...args: any[]) => any) | undefined;
|
|
40
|
+
}>, {
|
|
41
|
+
showRowSelection: boolean;
|
|
42
|
+
showActions: boolean;
|
|
43
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
44
|
+
export default _default;
|
|
@@ -52,9 +52,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
52
52
|
onAddTag?: ((...args: any[]) => any) | undefined;
|
|
53
53
|
}>, {
|
|
54
54
|
size: string;
|
|
55
|
-
color: string;
|
|
56
55
|
closable: boolean;
|
|
57
56
|
text: string;
|
|
57
|
+
color: string;
|
|
58
58
|
isHasAddTag: boolean;
|
|
59
59
|
addingTag: boolean;
|
|
60
60
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -80,13 +80,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
80
80
|
maxLength: {};
|
|
81
81
|
}>> & Readonly<{}>, {
|
|
82
82
|
size: string;
|
|
83
|
+
modelValue: string;
|
|
84
|
+
readonly: boolean;
|
|
83
85
|
selected: boolean;
|
|
84
86
|
active: boolean;
|
|
85
87
|
disabled: boolean;
|
|
86
88
|
required: boolean;
|
|
87
89
|
loading: boolean;
|
|
88
|
-
modelValue: string;
|
|
89
|
-
readonly: boolean;
|
|
90
90
|
placeholder: string;
|
|
91
91
|
focusable: boolean;
|
|
92
92
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
title: {};
|
|
3
|
+
type: {
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
withBackground: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
description: {};
|
|
11
|
+
showIcon: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
closable: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
primaryActionText: {};
|
|
20
|
+
secondaryActionText: {};
|
|
21
|
+
isOpen: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
duration: {
|
|
26
|
+
default: undefined;
|
|
27
|
+
};
|
|
28
|
+
}>, (_ctx: any, _cache: any) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
29
|
+
[key: string]: any;
|
|
30
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "primaryAction" | "secondaryAction")[], "close" | "primaryAction" | "secondaryAction", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
+
title: {};
|
|
32
|
+
type: {
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
withBackground: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
description: {};
|
|
40
|
+
showIcon: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
44
|
+
closable: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
default: boolean;
|
|
47
|
+
};
|
|
48
|
+
primaryActionText: {};
|
|
49
|
+
secondaryActionText: {};
|
|
50
|
+
isOpen: {
|
|
51
|
+
type: BooleanConstructor;
|
|
52
|
+
default: boolean;
|
|
53
|
+
};
|
|
54
|
+
duration: {
|
|
55
|
+
default: undefined;
|
|
56
|
+
};
|
|
57
|
+
}>> & Readonly<{
|
|
58
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
59
|
+
onPrimaryAction?: ((...args: any[]) => any) | undefined;
|
|
60
|
+
onSecondaryAction?: ((...args: any[]) => any) | undefined;
|
|
61
|
+
}>, {
|
|
62
|
+
isOpen: boolean;
|
|
63
|
+
closable: boolean;
|
|
64
|
+
type: string;
|
|
65
|
+
withBackground: boolean;
|
|
66
|
+
showIcon: boolean;
|
|
67
|
+
duration: undefined;
|
|
68
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
69
|
+
export default _default;
|
|
@@ -64,12 +64,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
64
64
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
65
65
|
}>, {
|
|
66
66
|
size: string;
|
|
67
|
+
modelValue: boolean;
|
|
68
|
+
readonly: boolean;
|
|
67
69
|
selected: boolean;
|
|
68
70
|
active: boolean;
|
|
69
71
|
disabled: boolean;
|
|
70
72
|
required: boolean;
|
|
71
73
|
loading: boolean;
|
|
72
|
-
modelValue: boolean;
|
|
73
|
-
readonly: boolean;
|
|
74
74
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
75
75
|
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
import DataTable from "./components/DataTable/DataTable.vue";
|
|
2
|
-
import Tooltip from "./components/Tooltip/Tooltip.vue";
|
|
3
|
-
import Spinner from "./components/Spinner/Spinner.vue";
|
|
4
1
|
import { useModal } from "./composables/useModal";
|
|
5
|
-
import { useToast } from "./
|
|
2
|
+
import { useToast } from "./composables/useToast";
|
|
6
3
|
import "./sprite";
|
|
7
4
|
import "./styles/root.scss";
|
|
8
5
|
import BaseIcon from "./components/BaseIcon/BaseIcon.vue";
|
|
@@ -34,9 +31,13 @@ import BaseBadge from "./components/BaseBadge/BaseBadge.vue";
|
|
|
34
31
|
import BaseTag from "./components/BaseTag/BaseTag.vue";
|
|
35
32
|
import BaseBadgeGroup from "./components/BaseBadge/BaseBadgeGroup.vue";
|
|
36
33
|
import BaseField from "./components/BaseField/BaseField.vue";
|
|
34
|
+
import BaseToast from "./components/BaseToast/BaseToast.vue";
|
|
35
|
+
import BasePageLoader from "./components/BasePageLoader/BasePageLoader.vue";
|
|
37
36
|
import BaseTabs from "./components/BaseTabs/BaseTabs.vue";
|
|
37
|
+
import BaseTable from "./components/BaseTable/BaseTable.vue";
|
|
38
|
+
import BaseDefaultPages from "./components/BaseDefaultPages/BaseDefaultPages.vue";
|
|
38
39
|
declare const _default: {
|
|
39
40
|
install(app: any): void;
|
|
40
41
|
};
|
|
41
42
|
export default _default;
|
|
42
|
-
export { BaseModal, BaseBadgeGroup, BaseBadge,
|
|
43
|
+
export { BaseModal, BaseBadgeGroup, BaseBadge, BaseTag, 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, BaseToast, BasePageLoader, BaseTabs, BaseTable, BaseDefaultPages };
|