prlg-ui 1.3.15 → 1.4.1
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/{SortDownFillIcon-ChTEvM_P.js → WarningFillIcon-Drb2OS3I.js} +83 -60
- package/dist/WarningFillIcon-cHWhG7dF.cjs +1 -0
- package/dist/icons/index.cjs.js +1 -1
- package/dist/icons/index.es.js +242 -217
- package/dist/icons.d.ts +14 -0
- package/dist/index.d.ts +149 -115
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +1205 -1173
- package/dist/types.d.ts +8 -0
- package/dist/utils/dayjs.util.ts +2 -0
- package/dist/utils/index.cjs.js +1 -1
- package/dist/utils/index.es.js +824 -689
- package/dist/utils.d.ts +8 -0
- package/package.json +3 -2
- package/dist/SortDownFillIcon-dXmwRtYI.cjs +0 -1
package/dist/icons.d.ts
CHANGED
|
@@ -77,6 +77,8 @@ export declare const DeliveryTimeIcon: DefineComponent< {}, {}, {}, {}, {}, C
|
|
|
77
77
|
|
|
78
78
|
export declare const DownloadIcon: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
79
79
|
|
|
80
|
+
export declare const ErrorFillIcon: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
81
|
+
|
|
80
82
|
export declare const ErrorIcon: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
81
83
|
|
|
82
84
|
export declare const EyeCloseIcon: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
@@ -103,6 +105,8 @@ export declare const HeartFillIcon: DefineComponent< {}, {}, {}, {}, {}, Comp
|
|
|
103
105
|
|
|
104
106
|
export declare const HeartOutlinedIcon: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
105
107
|
|
|
108
|
+
export declare const InfoFillIcon: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
109
|
+
|
|
106
110
|
export declare const InfoIcon: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
107
111
|
|
|
108
112
|
export declare const LikeIcon: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
@@ -171,6 +175,16 @@ export declare const WarehouseIcon: DefineComponent< {}, {}, {}, {}, {}, Comp
|
|
|
171
175
|
|
|
172
176
|
export declare const WarehousePointIcon: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
173
177
|
|
|
178
|
+
export declare const WarningFillIcon: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
179
|
+
|
|
174
180
|
export declare const WarningIcon: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
175
181
|
|
|
176
182
|
export { }
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
declare module 'vue' {
|
|
187
|
+
export interface GlobalComponents {
|
|
188
|
+
Dropdown: DefineComponent<DropdownProps>
|
|
189
|
+
}
|
|
190
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -11,12 +11,14 @@ import { ComponentPublicInstance } from 'vue';
|
|
|
11
11
|
import { CSSProperties } from 'vue';
|
|
12
12
|
import { DebuggerEvent } from 'vue';
|
|
13
13
|
import { DefineComponent } from 'vue';
|
|
14
|
+
import { ExtractPropTypes } from 'vue';
|
|
14
15
|
import { GlobalComponents } from 'vue';
|
|
15
16
|
import { GlobalDirectives } from 'vue';
|
|
16
17
|
import { nextTick } from 'vue';
|
|
17
18
|
import { OffsetOptions } from '@floating-ui/dom';
|
|
18
19
|
import { OnCleanup } from '@vue/reactivity';
|
|
19
20
|
import { Placement } from '@floating-ui/dom';
|
|
21
|
+
import { PropType } from 'vue';
|
|
20
22
|
import { PublicProps } from 'vue';
|
|
21
23
|
import { Ref } from 'vue';
|
|
22
24
|
import { RouteLocationRaw } from 'vue-router';
|
|
@@ -28,13 +30,19 @@ import { WatchStopHandle } from 'vue';
|
|
|
28
30
|
|
|
29
31
|
declare const __VLS_component: DefineComponent<ButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
30
32
|
|
|
31
|
-
declare const __VLS_component_10: DefineComponent<
|
|
33
|
+
declare const __VLS_component_10: DefineComponent<DrawerProps, {
|
|
34
|
+
isOpen: Ref<boolean, boolean>;
|
|
35
|
+
open: () => void;
|
|
36
|
+
close: () => void;
|
|
37
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DrawerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
38
|
+
|
|
39
|
+
declare const __VLS_component_11: DefineComponent<__VLS_PublicProps_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
32
40
|
"update:open": (value: boolean) => any;
|
|
33
|
-
}, string, PublicProps, Readonly<
|
|
41
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_9> & Readonly<{
|
|
34
42
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
35
43
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
36
44
|
|
|
37
|
-
declare const
|
|
45
|
+
declare const __VLS_component_12: DefineComponent<PopoverProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
38
46
|
show: () => any;
|
|
39
47
|
hide: () => any;
|
|
40
48
|
}, string, PublicProps, Readonly<PopoverProps> & Readonly<{
|
|
@@ -53,26 +61,24 @@ triggerRef: HTMLDivElement;
|
|
|
53
61
|
popoverRef: HTMLDivElement;
|
|
54
62
|
}, HTMLDivElement>;
|
|
55
63
|
|
|
56
|
-
declare const
|
|
64
|
+
declare const __VLS_component_13: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
57
65
|
|
|
58
|
-
declare const
|
|
66
|
+
declare const __VLS_component_14: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
59
67
|
contentRef: HTMLDivElement;
|
|
60
68
|
}, HTMLDivElement>;
|
|
61
69
|
|
|
62
|
-
declare const
|
|
70
|
+
declare const __VLS_component_15: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLButtonElement>;
|
|
63
71
|
|
|
64
|
-
declare const
|
|
72
|
+
declare const __VLS_component_16: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
65
73
|
|
|
66
|
-
declare const
|
|
74
|
+
declare const __VLS_component_17: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
67
75
|
|
|
68
|
-
declare const
|
|
76
|
+
declare const __VLS_component_18: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
69
77
|
"update:value": (value: string | number) => any;
|
|
70
|
-
}, string, PublicProps, Readonly<
|
|
78
|
+
}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{
|
|
71
79
|
"onUpdate:value"?: ((value: string | number) => any) | undefined;
|
|
72
80
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
73
81
|
|
|
74
|
-
declare const __VLS_component_18: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
75
|
-
|
|
76
82
|
declare const __VLS_component_19: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
77
83
|
|
|
78
84
|
declare const __VLS_component_2: DefineComponent<TableProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -89,9 +95,11 @@ index: number;
|
|
|
89
95
|
"onUpdate:selectedRows"?: ((value: DataItem | DataItem[]) => any) | undefined;
|
|
90
96
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableElement>;
|
|
91
97
|
|
|
92
|
-
declare const __VLS_component_20: DefineComponent<
|
|
98
|
+
declare const __VLS_component_20: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
93
99
|
|
|
94
|
-
declare const __VLS_component_21: DefineComponent<
|
|
100
|
+
declare const __VLS_component_21: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
101
|
+
|
|
102
|
+
declare const __VLS_component_22: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
95
103
|
|
|
96
104
|
declare const __VLS_component_3: DefineComponent<ColumnProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ColumnProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
97
105
|
|
|
@@ -113,22 +121,35 @@ onChange?: ((value?: string | undefined) => any) | undefined;
|
|
|
113
121
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
114
122
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
115
123
|
|
|
116
|
-
declare const __VLS_component_6: DefineComponent<
|
|
124
|
+
declare const __VLS_component_6: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
117
125
|
|
|
118
|
-
declare const __VLS_component_7: DefineComponent<
|
|
126
|
+
declare const __VLS_component_7: DefineComponent<ExtractPropTypes< {
|
|
127
|
+
type: {
|
|
128
|
+
type: PropType<"error" | "warning" | "info">;
|
|
129
|
+
default: string;
|
|
130
|
+
};
|
|
131
|
+
message: StringConstructor;
|
|
132
|
+
outlined: BooleanConstructor;
|
|
133
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
134
|
+
type: {
|
|
135
|
+
type: PropType<"error" | "warning" | "info">;
|
|
136
|
+
default: string;
|
|
137
|
+
};
|
|
138
|
+
message: StringConstructor;
|
|
139
|
+
outlined: BooleanConstructor;
|
|
140
|
+
}>> & Readonly<{}>, {
|
|
141
|
+
outlined: boolean;
|
|
142
|
+
type: "error" | "info" | "warning";
|
|
143
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
144
|
+
|
|
145
|
+
declare const __VLS_component_8: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
119
146
|
|
|
120
|
-
declare const
|
|
147
|
+
declare const __VLS_component_9: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
121
148
|
remove: () => any;
|
|
122
|
-
}, string, PublicProps, Readonly<
|
|
149
|
+
}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{
|
|
123
150
|
onRemove?: (() => any) | undefined;
|
|
124
151
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
125
152
|
|
|
126
|
-
declare const __VLS_component_9: DefineComponent<DrawerProps, {
|
|
127
|
-
isOpen: Ref<boolean, boolean>;
|
|
128
|
-
open: () => void;
|
|
129
|
-
close: () => void;
|
|
130
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<DrawerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
131
|
-
|
|
132
153
|
declare type __VLS_Props = {
|
|
133
154
|
items: MenuItem[];
|
|
134
155
|
icon?: Component;
|
|
@@ -137,10 +158,6 @@ declare type __VLS_Props = {
|
|
|
137
158
|
};
|
|
138
159
|
|
|
139
160
|
declare type __VLS_Props_10 = {
|
|
140
|
-
disabled?: boolean;
|
|
141
|
-
};
|
|
142
|
-
|
|
143
|
-
declare type __VLS_Props_11 = {
|
|
144
161
|
label?: string;
|
|
145
162
|
placeholder?: string;
|
|
146
163
|
name?: string;
|
|
@@ -153,17 +170,17 @@ declare type __VLS_Props_11 = {
|
|
|
153
170
|
size?: 'default' | 'small' | 'large';
|
|
154
171
|
};
|
|
155
172
|
|
|
156
|
-
declare type
|
|
173
|
+
declare type __VLS_Props_11 = {
|
|
157
174
|
items: MenuItem[];
|
|
158
175
|
};
|
|
159
176
|
|
|
160
|
-
declare type
|
|
177
|
+
declare type __VLS_Props_12 = {
|
|
161
178
|
value?: string | number;
|
|
162
179
|
variant?: 'primary' | 'danger' | 'neutral';
|
|
163
180
|
strong?: boolean;
|
|
164
181
|
};
|
|
165
182
|
|
|
166
|
-
declare type
|
|
183
|
+
declare type __VLS_Props_13 = {
|
|
167
184
|
value?: number | string;
|
|
168
185
|
variant?: 'danger';
|
|
169
186
|
position?: 'left' | 'right';
|
|
@@ -174,7 +191,7 @@ declare type __VLS_Props_14 = {
|
|
|
174
191
|
};
|
|
175
192
|
};
|
|
176
193
|
|
|
177
|
-
declare type
|
|
194
|
+
declare type __VLS_Props_14 = {
|
|
178
195
|
width?: number | string;
|
|
179
196
|
height?: number | string;
|
|
180
197
|
borderRadius?: string | number;
|
|
@@ -182,12 +199,12 @@ declare type __VLS_Props_15 = {
|
|
|
182
199
|
size?: string;
|
|
183
200
|
};
|
|
184
201
|
|
|
185
|
-
declare type
|
|
202
|
+
declare type __VLS_Props_15 = {
|
|
186
203
|
strokeWidth?: string | number;
|
|
187
204
|
size?: 'small' | 'default' | 'large';
|
|
188
205
|
};
|
|
189
206
|
|
|
190
|
-
declare type
|
|
207
|
+
declare type __VLS_Props_16 = {
|
|
191
208
|
removable?: boolean;
|
|
192
209
|
icon?: string;
|
|
193
210
|
iconPosition?: 'left' | 'right';
|
|
@@ -196,18 +213,22 @@ declare type __VLS_Props_17 = {
|
|
|
196
213
|
strong?: boolean;
|
|
197
214
|
};
|
|
198
215
|
|
|
199
|
-
declare type
|
|
216
|
+
declare type __VLS_Props_17 = {
|
|
200
217
|
title?: string;
|
|
201
218
|
style?: CSSProperties;
|
|
202
219
|
position?: 'top' | 'center' | 'bottom';
|
|
203
220
|
};
|
|
204
221
|
|
|
205
|
-
declare type
|
|
222
|
+
declare type __VLS_Props_18 = {
|
|
206
223
|
value?: string | number | (string | number)[];
|
|
207
224
|
multiple?: boolean;
|
|
208
225
|
styleView?: 'fill' | 'inline';
|
|
209
226
|
};
|
|
210
227
|
|
|
228
|
+
declare type __VLS_Props_19 = {
|
|
229
|
+
value: string | number;
|
|
230
|
+
};
|
|
231
|
+
|
|
211
232
|
declare type __VLS_Props_2 = {
|
|
212
233
|
label?: string;
|
|
213
234
|
value?: string | number | object;
|
|
@@ -217,24 +238,20 @@ declare type __VLS_Props_2 = {
|
|
|
217
238
|
};
|
|
218
239
|
|
|
219
240
|
declare type __VLS_Props_20 = {
|
|
220
|
-
value: string | number;
|
|
221
|
-
};
|
|
222
|
-
|
|
223
|
-
declare type __VLS_Props_21 = {
|
|
224
241
|
layouts?: 'vertical' | 'horizontal';
|
|
225
242
|
type?: 'solid' | 'dashed' | 'dotted';
|
|
226
243
|
align?: 'left' | 'right' | 'center';
|
|
227
244
|
};
|
|
228
245
|
|
|
229
|
-
declare type
|
|
246
|
+
declare type __VLS_Props_21 = {
|
|
230
247
|
value: string | number;
|
|
231
248
|
};
|
|
232
249
|
|
|
233
|
-
declare type
|
|
250
|
+
declare type __VLS_Props_22 = {
|
|
234
251
|
value: string | number;
|
|
235
252
|
};
|
|
236
253
|
|
|
237
|
-
declare type
|
|
254
|
+
declare type __VLS_Props_23 = {
|
|
238
255
|
value: string | number;
|
|
239
256
|
};
|
|
240
257
|
|
|
@@ -251,11 +268,9 @@ declare type __VLS_Props_4 = {
|
|
|
251
268
|
size?: 'small' | 'default' | 'large';
|
|
252
269
|
};
|
|
253
270
|
|
|
254
|
-
declare type __VLS_Props_5 =
|
|
271
|
+
declare type __VLS_Props_5 = InputTextProps;
|
|
255
272
|
|
|
256
|
-
declare type __VLS_Props_6 =
|
|
257
|
-
|
|
258
|
-
declare type __VLS_Props_7 = {
|
|
273
|
+
declare type __VLS_Props_6 = {
|
|
259
274
|
viewButtons?: boolean;
|
|
260
275
|
max?: number;
|
|
261
276
|
countInPackage?: number;
|
|
@@ -264,22 +279,22 @@ declare type __VLS_Props_7 = {
|
|
|
264
279
|
formatter?: (value: number) => string;
|
|
265
280
|
};
|
|
266
281
|
|
|
267
|
-
declare type
|
|
282
|
+
declare type __VLS_Props_7 = InputTextProps;
|
|
268
283
|
|
|
269
|
-
declare type
|
|
284
|
+
declare type __VLS_Props_8 = {
|
|
270
285
|
icon: Component;
|
|
271
286
|
position?: 'left' | 'right';
|
|
272
287
|
disabled?: boolean;
|
|
273
288
|
};
|
|
274
289
|
|
|
290
|
+
declare type __VLS_Props_9 = {
|
|
291
|
+
disabled?: boolean;
|
|
292
|
+
};
|
|
293
|
+
|
|
275
294
|
declare type __VLS_PublicProps = {
|
|
276
295
|
modelValue?: string[] | string | boolean | any | null;
|
|
277
296
|
} & __VLS_Props_2;
|
|
278
297
|
|
|
279
|
-
declare type __VLS_PublicProps_10 = {
|
|
280
|
-
'open': boolean;
|
|
281
|
-
} & __VLS_Props_18;
|
|
282
|
-
|
|
283
298
|
declare type __VLS_PublicProps_2 = {
|
|
284
299
|
modelValue: any;
|
|
285
300
|
} & __VLS_Props_3;
|
|
@@ -289,28 +304,28 @@ declare type __VLS_PublicProps_3 = {
|
|
|
289
304
|
} & __VLS_Props_4;
|
|
290
305
|
|
|
291
306
|
declare type __VLS_PublicProps_4 = {
|
|
292
|
-
modelValue:
|
|
307
|
+
modelValue: string;
|
|
293
308
|
} & __VLS_Props_5;
|
|
294
309
|
|
|
295
310
|
declare type __VLS_PublicProps_5 = {
|
|
296
|
-
modelValue:
|
|
311
|
+
modelValue: number;
|
|
297
312
|
} & __VLS_Props_6;
|
|
298
313
|
|
|
299
314
|
declare type __VLS_PublicProps_6 = {
|
|
300
|
-
modelValue:
|
|
315
|
+
modelValue: string;
|
|
301
316
|
} & __VLS_Props_7;
|
|
302
317
|
|
|
303
318
|
declare type __VLS_PublicProps_7 = {
|
|
304
|
-
modelValue:
|
|
305
|
-
} &
|
|
319
|
+
modelValue: boolean;
|
|
320
|
+
} & __VLS_Props_9;
|
|
306
321
|
|
|
307
322
|
declare type __VLS_PublicProps_8 = {
|
|
308
|
-
modelValue
|
|
323
|
+
modelValue?: string;
|
|
309
324
|
} & __VLS_Props_10;
|
|
310
325
|
|
|
311
326
|
declare type __VLS_PublicProps_9 = {
|
|
312
|
-
|
|
313
|
-
} &
|
|
327
|
+
'open': boolean;
|
|
328
|
+
} & __VLS_Props_17;
|
|
314
329
|
|
|
315
330
|
declare function __VLS_template(): {
|
|
316
331
|
attrs: Partial<{}>;
|
|
@@ -331,6 +346,15 @@ declare function __VLS_template_10(): {
|
|
|
331
346
|
};
|
|
332
347
|
|
|
333
348
|
declare function __VLS_template_11(): {
|
|
349
|
+
attrs: Partial<{}>;
|
|
350
|
+
slots: {
|
|
351
|
+
default?(_: {}): any;
|
|
352
|
+
};
|
|
353
|
+
refs: {};
|
|
354
|
+
rootEl: any;
|
|
355
|
+
};
|
|
356
|
+
|
|
357
|
+
declare function __VLS_template_12(): {
|
|
334
358
|
attrs: Partial<{}>;
|
|
335
359
|
slots: {
|
|
336
360
|
trigger?(_: {}): any;
|
|
@@ -343,7 +367,7 @@ declare function __VLS_template_11(): {
|
|
|
343
367
|
rootEl: HTMLDivElement;
|
|
344
368
|
};
|
|
345
369
|
|
|
346
|
-
declare function
|
|
370
|
+
declare function __VLS_template_13(): {
|
|
347
371
|
attrs: Partial<{}>;
|
|
348
372
|
slots: {
|
|
349
373
|
default?(_: {}): any;
|
|
@@ -352,7 +376,7 @@ declare function __VLS_template_12(): {
|
|
|
352
376
|
rootEl: HTMLDivElement;
|
|
353
377
|
};
|
|
354
378
|
|
|
355
|
-
declare function
|
|
379
|
+
declare function __VLS_template_14(): {
|
|
356
380
|
attrs: Partial<{}>;
|
|
357
381
|
slots: {
|
|
358
382
|
default?(_: {}): any;
|
|
@@ -363,22 +387,13 @@ declare function __VLS_template_13(): {
|
|
|
363
387
|
rootEl: HTMLDivElement;
|
|
364
388
|
};
|
|
365
389
|
|
|
366
|
-
declare function __VLS_template_14(): {
|
|
367
|
-
attrs: Partial<{}>;
|
|
368
|
-
slots: {
|
|
369
|
-
default?(_: {}): any;
|
|
370
|
-
};
|
|
371
|
-
refs: {};
|
|
372
|
-
rootEl: HTMLButtonElement;
|
|
373
|
-
};
|
|
374
|
-
|
|
375
390
|
declare function __VLS_template_15(): {
|
|
376
391
|
attrs: Partial<{}>;
|
|
377
392
|
slots: {
|
|
378
393
|
default?(_: {}): any;
|
|
379
394
|
};
|
|
380
395
|
refs: {};
|
|
381
|
-
rootEl:
|
|
396
|
+
rootEl: HTMLButtonElement;
|
|
382
397
|
};
|
|
383
398
|
|
|
384
399
|
declare function __VLS_template_16(): {
|
|
@@ -430,10 +445,19 @@ declare function __VLS_template_20(): {
|
|
|
430
445
|
default?(_: {}): any;
|
|
431
446
|
};
|
|
432
447
|
refs: {};
|
|
433
|
-
rootEl:
|
|
448
|
+
rootEl: HTMLDivElement;
|
|
434
449
|
};
|
|
435
450
|
|
|
436
451
|
declare function __VLS_template_21(): {
|
|
452
|
+
attrs: Partial<{}>;
|
|
453
|
+
slots: {
|
|
454
|
+
default?(_: {}): any;
|
|
455
|
+
};
|
|
456
|
+
refs: {};
|
|
457
|
+
rootEl: HTMLButtonElement;
|
|
458
|
+
};
|
|
459
|
+
|
|
460
|
+
declare function __VLS_template_22(): {
|
|
437
461
|
attrs: Partial<{}>;
|
|
438
462
|
slots: {
|
|
439
463
|
default?(_: {}): any;
|
|
@@ -500,7 +524,7 @@ declare function __VLS_template_9(): {
|
|
|
500
524
|
default?(_: {}): any;
|
|
501
525
|
};
|
|
502
526
|
refs: {};
|
|
503
|
-
rootEl:
|
|
527
|
+
rootEl: HTMLDivElement;
|
|
504
528
|
};
|
|
505
529
|
|
|
506
530
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
@@ -531,6 +555,8 @@ declare type __VLS_TemplateResult_20 = ReturnType<typeof __VLS_template_20>;
|
|
|
531
555
|
|
|
532
556
|
declare type __VLS_TemplateResult_21 = ReturnType<typeof __VLS_template_21>;
|
|
533
557
|
|
|
558
|
+
declare type __VLS_TemplateResult_22 = ReturnType<typeof __VLS_template_22>;
|
|
559
|
+
|
|
534
560
|
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
535
561
|
|
|
536
562
|
declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
|
|
@@ -629,6 +655,12 @@ declare type __VLS_WithTemplateSlots_21<T, S> = T & {
|
|
|
629
655
|
};
|
|
630
656
|
};
|
|
631
657
|
|
|
658
|
+
declare type __VLS_WithTemplateSlots_22<T, S> = T & {
|
|
659
|
+
new (): {
|
|
660
|
+
$slots: S;
|
|
661
|
+
};
|
|
662
|
+
};
|
|
663
|
+
|
|
632
664
|
declare type __VLS_WithTemplateSlots_3<T, S> = T & {
|
|
633
665
|
new (): {
|
|
634
666
|
$slots: S;
|
|
@@ -671,17 +703,17 @@ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
|
|
|
671
703
|
};
|
|
672
704
|
};
|
|
673
705
|
|
|
674
|
-
export declare const Accordion:
|
|
706
|
+
export declare const Accordion: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
675
707
|
|
|
676
|
-
export declare const AccordionContent:
|
|
708
|
+
export declare const AccordionContent: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
|
|
677
709
|
|
|
678
|
-
export declare const AccordionHeader:
|
|
710
|
+
export declare const AccordionHeader: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
|
|
679
711
|
|
|
680
|
-
export declare const AccordionPanel:
|
|
712
|
+
export declare const AccordionPanel: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
|
|
681
713
|
|
|
682
|
-
export declare const Badge: DefineComponent<
|
|
714
|
+
export declare const Badge: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
683
715
|
|
|
684
|
-
export declare const Breadcrumb: DefineComponent<
|
|
716
|
+
export declare const Breadcrumb: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
685
717
|
|
|
686
718
|
export declare const Button: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
687
719
|
|
|
@@ -764,58 +796,50 @@ declare type DataItem = Record<string, any>;
|
|
|
764
796
|
|
|
765
797
|
export declare const DataTable: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
766
798
|
|
|
767
|
-
export declare const Divider:
|
|
799
|
+
export declare const Divider: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
|
|
768
800
|
|
|
769
|
-
export declare const Drawer:
|
|
801
|
+
export declare const Drawer: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
|
|
770
802
|
|
|
771
803
|
declare type DrawerProps = {
|
|
772
804
|
position?: 'left' | 'right' | 'bottom' | 'top';
|
|
773
805
|
width?: number | string;
|
|
774
806
|
};
|
|
775
807
|
|
|
776
|
-
export declare const Dropdown: DefineComponent<
|
|
777
|
-
"update:modelValue": (value: any) => any;
|
|
778
|
-
} & {
|
|
779
|
-
search: (value: string) => any;
|
|
780
|
-
}, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
|
|
781
|
-
onSearch?: ((value: string) => any) | undefined;
|
|
782
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
783
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
784
|
-
trigger: HTMLDivElement;
|
|
785
|
-
popover: HTMLDivElement;
|
|
786
|
-
}, HTMLDivElement>;
|
|
808
|
+
export declare const Dropdown: DefineComponent<DropdownProps>;
|
|
787
809
|
|
|
788
810
|
declare interface DropdownProps {
|
|
789
811
|
options: any[];
|
|
790
812
|
optionLabel?: string;
|
|
791
813
|
optionValue?: string;
|
|
814
|
+
|
|
792
815
|
placeholder?: string;
|
|
793
816
|
searchable?: boolean;
|
|
794
817
|
multiple?: boolean;
|
|
818
|
+
|
|
795
819
|
returnObject?: boolean;
|
|
796
820
|
loading?: boolean;
|
|
797
821
|
}
|
|
798
822
|
|
|
799
823
|
export declare const IconField: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
800
824
|
|
|
801
|
-
export declare const InputNumber: DefineComponent<
|
|
825
|
+
export declare const InputNumber: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
802
826
|
"update:modelValue": (value: number) => any;
|
|
803
|
-
}, string, PublicProps, Readonly<
|
|
827
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
|
|
804
828
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
805
829
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
806
830
|
|
|
807
|
-
export declare const InputPhone: DefineComponent<
|
|
831
|
+
export declare const InputPhone: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
808
832
|
"update:modelValue": (value: string) => any;
|
|
809
|
-
}, string, PublicProps, Readonly<
|
|
833
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
|
|
810
834
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
811
835
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
812
836
|
|
|
813
|
-
export declare const InputText: DefineComponent<
|
|
837
|
+
export declare const InputText: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
814
838
|
"update:modelValue": (value: string) => any;
|
|
815
839
|
} & {
|
|
816
840
|
input: (value: Event) => any;
|
|
817
841
|
blur: () => any;
|
|
818
|
-
}, string, PublicProps, Readonly<
|
|
842
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
|
|
819
843
|
onInput?: ((value: Event) => any) | undefined;
|
|
820
844
|
onBlur?: (() => any) | undefined;
|
|
821
845
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
@@ -844,11 +868,13 @@ declare type MenuItem = {
|
|
|
844
868
|
command?: () => void;
|
|
845
869
|
};
|
|
846
870
|
|
|
847
|
-
export declare const
|
|
871
|
+
export declare const Message: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
872
|
+
|
|
873
|
+
export declare const Modal: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
|
|
848
874
|
|
|
849
|
-
export declare const OverlayBadge:
|
|
875
|
+
export declare const OverlayBadge: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
850
876
|
|
|
851
|
-
export declare const Popover:
|
|
877
|
+
export declare const Popover: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
|
|
852
878
|
|
|
853
879
|
declare interface PopoverProps {
|
|
854
880
|
placement?: Placement;
|
|
@@ -865,7 +891,7 @@ export declare const Radio: __VLS_WithTemplateSlots_5<typeof __VLS_component_5,
|
|
|
865
891
|
|
|
866
892
|
declare type SelectedMode = 'multiple' | 'single';
|
|
867
893
|
|
|
868
|
-
export declare const Skeleton: DefineComponent<
|
|
894
|
+
export declare const Skeleton: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
869
895
|
|
|
870
896
|
export declare const SleedDeal: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
871
897
|
menuRef: HTMLDivElement;
|
|
@@ -926,15 +952,15 @@ default?(_: {}): any;
|
|
|
926
952
|
}) | null;
|
|
927
953
|
}, HTMLDivElement>;
|
|
928
954
|
|
|
929
|
-
export declare const Spinner: DefineComponent<
|
|
955
|
+
export declare const Spinner: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
930
956
|
|
|
931
|
-
export declare const Switch: DefineComponent<
|
|
957
|
+
export declare const Switch: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
932
958
|
"update:modelValue": (value: boolean) => any;
|
|
933
|
-
}, string, PublicProps, Readonly<
|
|
959
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
|
|
934
960
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
935
961
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
936
962
|
|
|
937
|
-
export declare const Tab:
|
|
963
|
+
export declare const Tab: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
|
|
938
964
|
|
|
939
965
|
declare type TableProps = {
|
|
940
966
|
theme?: 'default';
|
|
@@ -955,19 +981,19 @@ declare type TableSlots = {
|
|
|
955
981
|
default(): any;
|
|
956
982
|
};
|
|
957
983
|
|
|
958
|
-
export declare const TabList:
|
|
984
|
+
export declare const TabList: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
|
|
959
985
|
|
|
960
|
-
export declare const TabPanel:
|
|
986
|
+
export declare const TabPanel: __VLS_WithTemplateSlots_22<typeof __VLS_component_22, __VLS_TemplateResult_22["slots"]>;
|
|
961
987
|
|
|
962
|
-
export declare const TabPanels:
|
|
988
|
+
export declare const TabPanels: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
|
|
963
989
|
|
|
964
|
-
export declare const Tabs:
|
|
990
|
+
export declare const Tabs: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
|
|
965
991
|
|
|
966
|
-
export declare const Tag:
|
|
992
|
+
export declare const Tag: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|
|
967
993
|
|
|
968
|
-
export declare const Textarea: DefineComponent<
|
|
994
|
+
export declare const Textarea: DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
969
995
|
"update:modelValue": (value: string) => any;
|
|
970
|
-
}, string, PublicProps, Readonly<
|
|
996
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
|
|
971
997
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
972
998
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
973
999
|
textareaRef: HTMLTextAreaElement;
|
|
@@ -1067,3 +1093,11 @@ declare interface ToastServiceMethods {
|
|
|
1067
1093
|
export declare function useToast(): ToastServiceMethods;
|
|
1068
1094
|
|
|
1069
1095
|
export { }
|
|
1096
|
+
|
|
1097
|
+
|
|
1098
|
+
|
|
1099
|
+
declare module 'vue' {
|
|
1100
|
+
export interface GlobalComponents {
|
|
1101
|
+
Dropdown: DefineComponent<DropdownProps>
|
|
1102
|
+
}
|
|
1103
|
+
}
|