prizm-ui-vue 2.2.45 → 2.2.47
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/PrizmButton.vue.d.ts +4 -0
- package/dist/components/PrizmCheckbox/PrizmCheckbox.vue.d.ts +4 -0
- package/dist/components/PrizmCheckbox/PrizmCheckboxGroup.vue.d.ts +4 -0
- package/dist/components/PrizmCollapse/PrizmCollapse.vue.d.ts +4 -0
- package/dist/components/PrizmCollapse/PrizmCollapseItem.vue.d.ts +4 -0
- package/dist/components/PrizmDatePicker.vue.d.ts +5 -1
- package/dist/components/PrizmDialog.vue.d.ts +4 -0
- package/dist/components/PrizmDrawer.vue.d.ts +4 -0
- package/dist/components/PrizmDropdown/PrizmDropdown.vue.d.ts +4 -0
- package/dist/components/PrizmDropdown/PrizmDropdownItem.vue.d.ts +4 -0
- package/dist/components/PrizmForm/PrizmForm.vue.d.ts +4 -0
- package/dist/components/PrizmForm/PrizmFormItem.vue.d.ts +4 -0
- package/dist/components/PrizmIcon.vue.d.ts +4 -0
- package/dist/components/PrizmInput.vue.d.ts +4 -0
- package/dist/components/PrizmMessageBox/PrizmMessageBox.d.ts +4 -0
- package/dist/components/PrizmNotification/PrizmNotification.d.ts +2 -3
- package/dist/components/PrizmRadio/PrizmRadio.vue.d.ts +4 -0
- package/dist/components/PrizmRadio/PrizmRadioButton.vue.d.ts +4 -0
- package/dist/components/PrizmRadio/PrizmRadioGroup.vue.d.ts +4 -0
- package/dist/components/PrizmSelect/PrizmOption.vue.d.ts +138 -14
- package/dist/components/PrizmSelect/PrizmSelect.vue.d.ts +4 -0
- package/dist/components/PrizmTable/PrizmTable.vue.d.ts +4 -0
- package/dist/components/PrizmTable/PrizmTableColumn.vue.d.ts +4 -0
- package/dist/components/PrizmTabs/PrizmTabPane.vue.d.ts +4 -0
- package/dist/components/PrizmTabs/PrizmTabs.vue.d.ts +4 -0
- package/dist/components/PrizmTag.vue.d.ts +4 -0
- package/dist/components/PrizmTimePicker.vue.d.ts +318 -0
- package/dist/prizm-ui.es.js +2 -2
- package/dist/prizm-ui.umd.js +1 -1
- package/package.json +1 -1
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @author Garaev.VM
|
|
3
|
+
* @components ElDatePicker
|
|
4
|
+
*/
|
|
1
5
|
import { ElDatePicker } from 'element-plus';
|
|
2
6
|
import 'element-plus/es/components/date-picker/style/css';
|
|
3
7
|
type ElDatePickerProps = InstanceType<typeof ElDatePicker>['$props'];
|
|
@@ -18,7 +22,7 @@ type Props = {
|
|
|
18
22
|
placeholder?: PickedProps['placeholder'];
|
|
19
23
|
size?: PickedProps['size'];
|
|
20
24
|
onVisibility?: (visibility: boolean) => void;
|
|
21
|
-
|
|
25
|
+
onCalendarChange?: (val: [Date, null | Date]) => void;
|
|
22
26
|
onClear?: () => void;
|
|
23
27
|
onPanelChange?: (date: Date | [Date, Date], mode: 'month' | 'year', view?: string) => void;
|
|
24
28
|
};
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @author Garaev.VM
|
|
3
|
+
* @components ElMessageBox
|
|
4
|
+
*/
|
|
1
5
|
import { type ElMessageBoxOptions, type MessageBoxData, type MessageBoxType } from 'element-plus';
|
|
2
6
|
import 'element-plus/es/components/message-box/style/css';
|
|
3
7
|
export type Props = Pick<ElMessageBoxOptions, 'title' | 'message' | 'showCancelButton' | 'showConfirmButton' | 'center' | 'customClass' | 'confirmButtonClass' | 'cancelButtonClass' | 'buttonSize' | 'customStyle'> & {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @author Garaev.VM
|
|
3
|
-
* @components
|
|
4
|
-
* https://element-plus.org/en-US/component/notification.html
|
|
2
|
+
* @author Garaev.VM
|
|
3
|
+
* @components ElNotificaton
|
|
5
4
|
*/
|
|
6
5
|
import { type NotificationInstance } from 'element-plus';
|
|
7
6
|
import 'element-plus/es/components/notification/style/css';
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @author Garaev.VM
|
|
3
|
+
* @components ElOption
|
|
4
|
+
*/
|
|
1
5
|
import { ElOption } from 'element-plus';
|
|
2
6
|
import 'element-plus/es/components/option/style/css';
|
|
3
7
|
type ElSelectProps = InstanceType<typeof ElOption>['$props'];
|
|
@@ -24,13 +28,73 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {
|
|
|
24
28
|
}>>, {
|
|
25
29
|
ns: {
|
|
26
30
|
namespace: import("vue").ComputedRef<string>;
|
|
27
|
-
b: (blockSuffix
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
b: (blockSuffix
|
|
32
|
+
/**
|
|
33
|
+
* @author Garaev.VM
|
|
34
|
+
* @components ElOption
|
|
35
|
+
*/
|
|
36
|
+
?: string) => string;
|
|
37
|
+
e: (element
|
|
38
|
+
/**
|
|
39
|
+
* @author Garaev.VM
|
|
40
|
+
* @components ElOption
|
|
41
|
+
*/
|
|
42
|
+
?: string) => string;
|
|
43
|
+
m: (modifier
|
|
44
|
+
/**
|
|
45
|
+
* @author Garaev.VM
|
|
46
|
+
* @components ElOption
|
|
47
|
+
*/
|
|
48
|
+
?: string) => string;
|
|
49
|
+
be: (blockSuffix
|
|
50
|
+
/**
|
|
51
|
+
* @author Garaev.VM
|
|
52
|
+
* @components ElOption
|
|
53
|
+
*/
|
|
54
|
+
?: string, element
|
|
55
|
+
/**
|
|
56
|
+
* @author Garaev.VM
|
|
57
|
+
* @components ElOption
|
|
58
|
+
*/
|
|
59
|
+
?: string) => string;
|
|
60
|
+
em: (element
|
|
61
|
+
/**
|
|
62
|
+
* @author Garaev.VM
|
|
63
|
+
* @components ElOption
|
|
64
|
+
*/
|
|
65
|
+
?: string, modifier
|
|
66
|
+
/**
|
|
67
|
+
* @author Garaev.VM
|
|
68
|
+
* @components ElOption
|
|
69
|
+
*/
|
|
70
|
+
?: string) => string;
|
|
71
|
+
bm: (blockSuffix
|
|
72
|
+
/**
|
|
73
|
+
* @author Garaev.VM
|
|
74
|
+
* @components ElOption
|
|
75
|
+
*/
|
|
76
|
+
?: string, modifier
|
|
77
|
+
/**
|
|
78
|
+
* @author Garaev.VM
|
|
79
|
+
* @components ElOption
|
|
80
|
+
*/
|
|
81
|
+
?: string) => string;
|
|
82
|
+
bem: (blockSuffix
|
|
83
|
+
/**
|
|
84
|
+
* @author Garaev.VM
|
|
85
|
+
* @components ElOption
|
|
86
|
+
*/
|
|
87
|
+
?: string, element
|
|
88
|
+
/**
|
|
89
|
+
* @author Garaev.VM
|
|
90
|
+
* @components ElOption
|
|
91
|
+
*/
|
|
92
|
+
?: string, modifier
|
|
93
|
+
/**
|
|
94
|
+
* @author Garaev.VM
|
|
95
|
+
* @components ElOption
|
|
96
|
+
*/
|
|
97
|
+
?: string) => string;
|
|
34
98
|
is: {
|
|
35
99
|
(name: string, state: boolean | undefined): string;
|
|
36
100
|
(name: string): string;
|
|
@@ -78,13 +142,73 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {
|
|
|
78
142
|
}>>, {
|
|
79
143
|
ns: {
|
|
80
144
|
namespace: import("vue").ComputedRef<string>;
|
|
81
|
-
b: (blockSuffix
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
145
|
+
b: (blockSuffix
|
|
146
|
+
/**
|
|
147
|
+
* @author Garaev.VM
|
|
148
|
+
* @components ElOption
|
|
149
|
+
*/
|
|
150
|
+
?: string) => string;
|
|
151
|
+
e: (element
|
|
152
|
+
/**
|
|
153
|
+
* @author Garaev.VM
|
|
154
|
+
* @components ElOption
|
|
155
|
+
*/
|
|
156
|
+
?: string) => string;
|
|
157
|
+
m: (modifier
|
|
158
|
+
/**
|
|
159
|
+
* @author Garaev.VM
|
|
160
|
+
* @components ElOption
|
|
161
|
+
*/
|
|
162
|
+
?: string) => string;
|
|
163
|
+
be: (blockSuffix
|
|
164
|
+
/**
|
|
165
|
+
* @author Garaev.VM
|
|
166
|
+
* @components ElOption
|
|
167
|
+
*/
|
|
168
|
+
?: string, element
|
|
169
|
+
/**
|
|
170
|
+
* @author Garaev.VM
|
|
171
|
+
* @components ElOption
|
|
172
|
+
*/
|
|
173
|
+
?: string) => string;
|
|
174
|
+
em: (element
|
|
175
|
+
/**
|
|
176
|
+
* @author Garaev.VM
|
|
177
|
+
* @components ElOption
|
|
178
|
+
*/
|
|
179
|
+
?: string, modifier
|
|
180
|
+
/**
|
|
181
|
+
* @author Garaev.VM
|
|
182
|
+
* @components ElOption
|
|
183
|
+
*/
|
|
184
|
+
?: string) => string;
|
|
185
|
+
bm: (blockSuffix
|
|
186
|
+
/**
|
|
187
|
+
* @author Garaev.VM
|
|
188
|
+
* @components ElOption
|
|
189
|
+
*/
|
|
190
|
+
?: string, modifier
|
|
191
|
+
/**
|
|
192
|
+
* @author Garaev.VM
|
|
193
|
+
* @components ElOption
|
|
194
|
+
*/
|
|
195
|
+
?: string) => string;
|
|
196
|
+
bem: (blockSuffix
|
|
197
|
+
/**
|
|
198
|
+
* @author Garaev.VM
|
|
199
|
+
* @components ElOption
|
|
200
|
+
*/
|
|
201
|
+
?: string, element
|
|
202
|
+
/**
|
|
203
|
+
* @author Garaev.VM
|
|
204
|
+
* @components ElOption
|
|
205
|
+
*/
|
|
206
|
+
?: string, modifier
|
|
207
|
+
/**
|
|
208
|
+
* @author Garaev.VM
|
|
209
|
+
* @components ElOption
|
|
210
|
+
*/
|
|
211
|
+
?: string) => string;
|
|
88
212
|
is: {
|
|
89
213
|
(name: string, state: boolean | undefined): string;
|
|
90
214
|
(name: string): string;
|