ninemoon-ui 0.0.27 → 0.1.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/components/alert/alert.d.ts +3 -11
- package/dist/components/alert/alertcomponent.vue.d.ts +22 -11
- package/dist/components/badge/badge.vue.d.ts +2 -0
- package/dist/components/carousel/carousel.vue.d.ts +29 -3
- package/dist/components/{tree/tree.vue.d.ts → carousel/clickbutton.vue.d.ts} +6 -19
- package/dist/components/check/checkbox.vue.d.ts +24 -16
- package/dist/components/check/checkgroup.vue.d.ts +15 -3
- package/dist/components/date/datepicker.vue.d.ts +28 -6
- package/dist/components/date/datepickerRange.vue.d.ts +15 -4
- package/dist/components/form/form.vue.d.ts +7 -20
- package/dist/components/form/formlabel.vue.d.ts +3 -3
- package/dist/components/form/type.d.ts +11 -0
- package/dist/components/icon/add.vue.d.ts +2 -0
- package/dist/components/icon/alertTip.vue.d.ts +2 -0
- package/dist/components/icon/arrow.vue.d.ts +2 -0
- package/dist/components/icon/calendar.vue.d.ts +2 -0
- package/dist/components/icon/close.vue.d.ts +2 -0
- package/dist/components/icon/dateArrow.vue.d.ts +2 -0
- package/dist/components/icon/dateArrowplus.vue.d.ts +2 -0
- package/dist/components/icon/delete.vue.d.ts +2 -0
- package/dist/components/icon/ellipsis.vue.d.ts +2 -0
- package/dist/components/icon/errTip.vue.d.ts +2 -0
- package/dist/components/icon/eye.vue.d.ts +2 -0
- package/dist/components/icon/infoTip.vue.d.ts +2 -0
- package/dist/components/icon/minus.vue.d.ts +2 -0
- package/dist/components/icon/successTip.vue.d.ts +2 -0
- package/dist/components/icon/turnleft.vue.d.ts +2 -0
- package/dist/components/icon/turnright.vue.d.ts +2 -0
- package/dist/components/icon/warnTip.vue.d.ts +2 -0
- package/dist/components/input/input.vue.d.ts +13 -8
- package/dist/components/loadding/loadcomponent.vue.d.ts +24 -4
- package/dist/components/loadding/loadding.d.ts +12 -19
- package/dist/components/menu/menu.vue.d.ts +13 -3
- package/dist/components/message/message.d.ts +68 -14
- package/dist/components/message/messagecomponent.vue.d.ts +5 -13
- package/dist/components/numberInput/numberinput.vue.d.ts +3 -3
- package/dist/components/pagination/pagination.vue.d.ts +24 -0
- package/dist/components/popover/poparrow.d.ts +55 -0
- package/dist/components/popover/popover.vue.d.ts +10 -4
- package/dist/components/radio/radiobox.vue.d.ts +24 -16
- package/dist/components/radio/radiogroup.vue.d.ts +15 -3
- package/dist/components/scrollBar/movebar.vue.d.ts +2 -2
- package/dist/components/scrollBar/scrollBar.vue.d.ts +12 -16
- package/dist/components/scrollloading/scrolllead.d.ts +18 -11
- package/dist/components/select/select.vue.d.ts +15 -1
- package/dist/components/select/selectoption.vue.d.ts +18 -6
- package/dist/components/switch/switch.vue.d.ts +14 -14
- package/dist/components/table/table.vue.d.ts +20 -9
- package/dist/components/table/tableItem.vue.d.ts +10 -4
- package/dist/components/tabs/tabs.vue.d.ts +14 -1
- package/dist/dialog.css +9 -0
- package/dist/directives/arrowKeys.d.ts +10 -0
- package/dist/directives/drag.d.ts +20 -0
- package/dist/directives/escape.d.ts +7 -0
- package/dist/directives/outsideclick.d.ts +14 -0
- package/dist/directives/watchwindow.d.ts +13 -0
- package/dist/directives/wheel.d.ts +12 -0
- package/dist/directives/whitespaceclick.d.ts +12 -0
- package/dist/index.css +1186 -873
- package/dist/index.d.ts +831 -401
- package/dist/index.es.js +22 -23
- package/dist/index.umd.js +4019 -3764
- package/dist/js/arrow/arrow.js +17 -0
- package/dist/js/badge/badge.js +9 -16
- package/dist/js/calendar/calendar.js +87 -0
- package/dist/js/carousel/carousel.js +101 -117
- package/dist/js/carousel/carouselitem.js +1 -7
- package/dist/js/check/checkbox.js +38 -4
- package/dist/js/check/checkgroup.js +40 -51
- package/dist/js/date/datepicker.js +146 -150
- package/dist/js/date/datepickerRange.js +265 -354
- package/dist/js/dateArrowplus/dateArrowplus.js +25 -0
- package/dist/js/delete/delete.js +19 -0
- package/dist/js/dialog/dialog.js +41 -57
- package/dist/js/form/form.js +30 -38
- package/dist/js/form/formlabel.js +99 -130
- package/dist/js/image/image.js +199 -149
- package/dist/js/index/index.js +605 -507
- package/dist/js/input/input.js +60 -43
- package/dist/js/menu/menu.js +47 -20
- package/dist/js/numberInput/numberinput.js +52 -60
- package/dist/js/pagination/pagination.js +125 -156
- package/dist/js/popover/popover.js +238 -134
- package/dist/js/radio/radiobox.js +37 -4
- package/dist/js/radio/radiogroup.js +15 -51
- package/dist/js/scrollBar/scrollBar.js +100 -56
- package/dist/js/select/select.js +155 -70
- package/dist/js/select/selectoption.js +45 -4
- package/dist/js/shapeFlag/shapeFlag.js +17 -0
- package/dist/js/switch/switch.js +14 -14
- package/dist/js/table/table.js +165 -111
- package/dist/js/table/tableItem.js +1 -1
- package/dist/js/tabs/tabs.js +57 -59
- package/dist/js/upload/upload.js +8 -23
- package/dist/tabs.css +3 -3
- package/dist/types/shapeFlag.d.ts +13 -0
- package/dist/{components/utils → utils}/tool.d.ts +11 -4
- package/package.json +1 -1
- package/dist/badge.css +0 -27
- package/dist/carousel.css +0 -13
- package/dist/checkgroup.css +0 -41
- package/dist/datepickerRange.css +0 -79
- package/dist/image.css +0 -8
- package/dist/js/getcalendar/getcalendar.js +0 -48
- package/dist/js/tree/tree.js +0 -72
- package/dist/js/tree/treeleaf.js +0 -116
- package/dist/radiogroup.css +0 -44
- package/dist/scrollBar.css +0 -37
- package/dist/select.css +0 -20
package/dist/index.d.ts
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
import { App } from 'vue';
|
|
2
|
-
import {
|
|
2
|
+
import { MessageClass as LibMessage } from './components/message/message';
|
|
3
3
|
import { default as LibAlert } from './components/alert/alert';
|
|
4
4
|
import { default as LibLoad } from './components/loadding/loadding';
|
|
5
|
-
import {
|
|
5
|
+
import { createScrollDirective } from './components/scrollloading/scrolllead';
|
|
6
6
|
|
|
7
7
|
declare const LibDialog: {
|
|
8
8
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
9
9
|
title: {
|
|
10
10
|
type: import('vue').PropType<string>;
|
|
11
11
|
};
|
|
12
|
+
visible: {
|
|
13
|
+
type: import('vue').PropType<boolean>;
|
|
14
|
+
required: true;
|
|
15
|
+
default: boolean;
|
|
16
|
+
};
|
|
12
17
|
width: {
|
|
13
18
|
type: import('vue').PropType<string | number>;
|
|
14
19
|
};
|
|
15
20
|
beforeHidden: {
|
|
16
21
|
type: import('vue').PropType<Function>;
|
|
17
22
|
};
|
|
18
|
-
visible: {
|
|
19
|
-
type: import('vue').PropType<boolean>;
|
|
20
|
-
required: true;
|
|
21
|
-
default: boolean;
|
|
22
|
-
};
|
|
23
23
|
bodyClickAble: {
|
|
24
24
|
type: import('vue').PropType<boolean>;
|
|
25
25
|
default: boolean;
|
|
@@ -57,17 +57,17 @@ declare const LibDialog: {
|
|
|
57
57
|
title: {
|
|
58
58
|
type: import('vue').PropType<string>;
|
|
59
59
|
};
|
|
60
|
+
visible: {
|
|
61
|
+
type: import('vue').PropType<boolean>;
|
|
62
|
+
required: true;
|
|
63
|
+
default: boolean;
|
|
64
|
+
};
|
|
60
65
|
width: {
|
|
61
66
|
type: import('vue').PropType<string | number>;
|
|
62
67
|
};
|
|
63
68
|
beforeHidden: {
|
|
64
69
|
type: import('vue').PropType<Function>;
|
|
65
70
|
};
|
|
66
|
-
visible: {
|
|
67
|
-
type: import('vue').PropType<boolean>;
|
|
68
|
-
required: true;
|
|
69
|
-
default: boolean;
|
|
70
|
-
};
|
|
71
71
|
bodyClickAble: {
|
|
72
72
|
type: import('vue').PropType<boolean>;
|
|
73
73
|
default: boolean;
|
|
@@ -100,17 +100,17 @@ declare const LibDialog: {
|
|
|
100
100
|
title: {
|
|
101
101
|
type: import('vue').PropType<string>;
|
|
102
102
|
};
|
|
103
|
+
visible: {
|
|
104
|
+
type: import('vue').PropType<boolean>;
|
|
105
|
+
required: true;
|
|
106
|
+
default: boolean;
|
|
107
|
+
};
|
|
103
108
|
width: {
|
|
104
109
|
type: import('vue').PropType<string | number>;
|
|
105
110
|
};
|
|
106
111
|
beforeHidden: {
|
|
107
112
|
type: import('vue').PropType<Function>;
|
|
108
113
|
};
|
|
109
|
-
visible: {
|
|
110
|
-
type: import('vue').PropType<boolean>;
|
|
111
|
-
required: true;
|
|
112
|
-
default: boolean;
|
|
113
|
-
};
|
|
114
114
|
bodyClickAble: {
|
|
115
115
|
type: import('vue').PropType<boolean>;
|
|
116
116
|
default: boolean;
|
|
@@ -145,22 +145,10 @@ declare const LibDialog: {
|
|
|
145
145
|
declare const LibForm: {
|
|
146
146
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
147
147
|
rule: {
|
|
148
|
-
type: import('vue').PropType<
|
|
149
|
-
[key: string]: {
|
|
150
|
-
required?: boolean;
|
|
151
|
-
message?: string;
|
|
152
|
-
trigger?: string;
|
|
153
|
-
validator?: Function;
|
|
154
|
-
min?: number;
|
|
155
|
-
max?: number;
|
|
156
|
-
type?: string;
|
|
157
|
-
}[];
|
|
158
|
-
}>;
|
|
148
|
+
type: import('vue').PropType<import('./components/form/type').FormRules>;
|
|
159
149
|
};
|
|
160
150
|
model: {
|
|
161
|
-
type: import('vue').PropType<
|
|
162
|
-
[key: string]: any;
|
|
163
|
-
}>;
|
|
151
|
+
type: import('vue').PropType<import('./components/form/type').FormModel>;
|
|
164
152
|
required: true;
|
|
165
153
|
};
|
|
166
154
|
inline: {
|
|
@@ -168,7 +156,7 @@ declare const LibForm: {
|
|
|
168
156
|
default: boolean;
|
|
169
157
|
};
|
|
170
158
|
}>> & Readonly<{}>, {
|
|
171
|
-
validate: (callBack:
|
|
159
|
+
validate: (callBack: (isValid: boolean) => void) => Promise<boolean>;
|
|
172
160
|
validateField: (propname: string, callBack: Function) => Promise<void>;
|
|
173
161
|
resetField: () => void;
|
|
174
162
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
@@ -182,22 +170,10 @@ declare const LibForm: {
|
|
|
182
170
|
Defaults: {};
|
|
183
171
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
184
172
|
rule: {
|
|
185
|
-
type: import('vue').PropType<
|
|
186
|
-
[key: string]: {
|
|
187
|
-
required?: boolean;
|
|
188
|
-
message?: string;
|
|
189
|
-
trigger?: string;
|
|
190
|
-
validator?: Function;
|
|
191
|
-
min?: number;
|
|
192
|
-
max?: number;
|
|
193
|
-
type?: string;
|
|
194
|
-
}[];
|
|
195
|
-
}>;
|
|
173
|
+
type: import('vue').PropType<import('./components/form/type').FormRules>;
|
|
196
174
|
};
|
|
197
175
|
model: {
|
|
198
|
-
type: import('vue').PropType<
|
|
199
|
-
[key: string]: any;
|
|
200
|
-
}>;
|
|
176
|
+
type: import('vue').PropType<import('./components/form/type').FormModel>;
|
|
201
177
|
required: true;
|
|
202
178
|
};
|
|
203
179
|
inline: {
|
|
@@ -205,7 +181,7 @@ declare const LibForm: {
|
|
|
205
181
|
default: boolean;
|
|
206
182
|
};
|
|
207
183
|
}>> & Readonly<{}>, {
|
|
208
|
-
validate: (callBack:
|
|
184
|
+
validate: (callBack: (isValid: boolean) => void) => Promise<boolean>;
|
|
209
185
|
validateField: (propname: string, callBack: Function) => Promise<void>;
|
|
210
186
|
resetField: () => void;
|
|
211
187
|
}, {}, {}, {}, {
|
|
@@ -216,22 +192,10 @@ declare const LibForm: {
|
|
|
216
192
|
__isSuspense?: never;
|
|
217
193
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
218
194
|
rule: {
|
|
219
|
-
type: import('vue').PropType<
|
|
220
|
-
[key: string]: {
|
|
221
|
-
required?: boolean;
|
|
222
|
-
message?: string;
|
|
223
|
-
trigger?: string;
|
|
224
|
-
validator?: Function;
|
|
225
|
-
min?: number;
|
|
226
|
-
max?: number;
|
|
227
|
-
type?: string;
|
|
228
|
-
}[];
|
|
229
|
-
}>;
|
|
195
|
+
type: import('vue').PropType<import('./components/form/type').FormRules>;
|
|
230
196
|
};
|
|
231
197
|
model: {
|
|
232
|
-
type: import('vue').PropType<
|
|
233
|
-
[key: string]: any;
|
|
234
|
-
}>;
|
|
198
|
+
type: import('vue').PropType<import('./components/form/type').FormModel>;
|
|
235
199
|
required: true;
|
|
236
200
|
};
|
|
237
201
|
inline: {
|
|
@@ -239,7 +203,7 @@ declare const LibForm: {
|
|
|
239
203
|
default: boolean;
|
|
240
204
|
};
|
|
241
205
|
}>> & Readonly<{}>, {
|
|
242
|
-
validate: (callBack:
|
|
206
|
+
validate: (callBack: (isValid: boolean) => void) => Promise<boolean>;
|
|
243
207
|
validateField: (propname: string, callBack: Function) => Promise<void>;
|
|
244
208
|
resetField: () => void;
|
|
245
209
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
@@ -266,7 +230,7 @@ declare const LibFormLabel: {
|
|
|
266
230
|
type: import('vue').PropType<string>;
|
|
267
231
|
};
|
|
268
232
|
}>> & Readonly<{}>, {
|
|
269
|
-
validateLabel: (callBack
|
|
233
|
+
validateLabel: (callBack?: Function, eventName?: string) => Promise<void>;
|
|
270
234
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
271
235
|
width: number;
|
|
272
236
|
inline: boolean;
|
|
@@ -293,7 +257,7 @@ declare const LibFormLabel: {
|
|
|
293
257
|
type: import('vue').PropType<string>;
|
|
294
258
|
};
|
|
295
259
|
}>> & Readonly<{}>, {
|
|
296
|
-
validateLabel: (callBack
|
|
260
|
+
validateLabel: (callBack?: Function, eventName?: string) => Promise<void>;
|
|
297
261
|
}, {}, {}, {}, {
|
|
298
262
|
width: number;
|
|
299
263
|
inline: boolean;
|
|
@@ -317,7 +281,7 @@ declare const LibFormLabel: {
|
|
|
317
281
|
type: import('vue').PropType<string>;
|
|
318
282
|
};
|
|
319
283
|
}>> & Readonly<{}>, {
|
|
320
|
-
validateLabel: (callBack
|
|
284
|
+
validateLabel: (callBack?: Function, eventName?: string) => Promise<void>;
|
|
321
285
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
322
286
|
width: number;
|
|
323
287
|
inline: boolean;
|
|
@@ -332,6 +296,10 @@ declare const LibInput: {
|
|
|
332
296
|
type: import('vue').PropType<string>;
|
|
333
297
|
default: string;
|
|
334
298
|
};
|
|
299
|
+
size: {
|
|
300
|
+
type: import('vue').PropType<"small" | "default" | "large">;
|
|
301
|
+
default: string;
|
|
302
|
+
};
|
|
335
303
|
modelValue: {
|
|
336
304
|
type: import('vue').PropType<any>;
|
|
337
305
|
required: true;
|
|
@@ -353,17 +321,18 @@ declare const LibInput: {
|
|
|
353
321
|
default: boolean;
|
|
354
322
|
};
|
|
355
323
|
}>> & Readonly<{
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
"onUpdate:modelValue"?: ((
|
|
324
|
+
onBlur?: ((value: string | number | null) => any) | undefined;
|
|
325
|
+
onChange?: ((value: string | number | null) => any) | undefined;
|
|
326
|
+
onInput?: ((value: string | number | null) => any) | undefined;
|
|
327
|
+
"onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
360
328
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
361
|
-
|
|
362
|
-
blur: (
|
|
363
|
-
|
|
364
|
-
|
|
329
|
+
"update:modelValue": (value: string | number | null) => void;
|
|
330
|
+
blur: (value: string | number | null) => void;
|
|
331
|
+
input: (value: string | number | null) => void;
|
|
332
|
+
change: (value: string | number | null) => void;
|
|
365
333
|
}, import('vue').PublicProps, {
|
|
366
334
|
type: string;
|
|
335
|
+
size: "large" | "default" | "small";
|
|
367
336
|
modelValue: any;
|
|
368
337
|
clearable: boolean;
|
|
369
338
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
@@ -378,6 +347,10 @@ declare const LibInput: {
|
|
|
378
347
|
type: import('vue').PropType<string>;
|
|
379
348
|
default: string;
|
|
380
349
|
};
|
|
350
|
+
size: {
|
|
351
|
+
type: import('vue').PropType<"small" | "default" | "large">;
|
|
352
|
+
default: string;
|
|
353
|
+
};
|
|
381
354
|
modelValue: {
|
|
382
355
|
type: import('vue').PropType<any>;
|
|
383
356
|
required: true;
|
|
@@ -399,12 +372,13 @@ declare const LibInput: {
|
|
|
399
372
|
default: boolean;
|
|
400
373
|
};
|
|
401
374
|
}>> & Readonly<{
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
"onUpdate:modelValue"?: ((
|
|
375
|
+
onBlur?: ((value: string | number | null) => any) | undefined;
|
|
376
|
+
onChange?: ((value: string | number | null) => any) | undefined;
|
|
377
|
+
onInput?: ((value: string | number | null) => any) | undefined;
|
|
378
|
+
"onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
406
379
|
}>, {}, {}, {}, {}, {
|
|
407
380
|
type: string;
|
|
381
|
+
size: "large" | "default" | "small";
|
|
408
382
|
modelValue: any;
|
|
409
383
|
clearable: boolean;
|
|
410
384
|
}>;
|
|
@@ -416,6 +390,10 @@ declare const LibInput: {
|
|
|
416
390
|
type: import('vue').PropType<string>;
|
|
417
391
|
default: string;
|
|
418
392
|
};
|
|
393
|
+
size: {
|
|
394
|
+
type: import('vue').PropType<"small" | "default" | "large">;
|
|
395
|
+
default: string;
|
|
396
|
+
};
|
|
419
397
|
modelValue: {
|
|
420
398
|
type: import('vue').PropType<any>;
|
|
421
399
|
required: true;
|
|
@@ -437,17 +415,18 @@ declare const LibInput: {
|
|
|
437
415
|
default: boolean;
|
|
438
416
|
};
|
|
439
417
|
}>> & Readonly<{
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
"onUpdate:modelValue"?: ((
|
|
418
|
+
onBlur?: ((value: string | number | null) => any) | undefined;
|
|
419
|
+
onChange?: ((value: string | number | null) => any) | undefined;
|
|
420
|
+
onInput?: ((value: string | number | null) => any) | undefined;
|
|
421
|
+
"onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
444
422
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
445
|
-
|
|
446
|
-
blur: (
|
|
447
|
-
|
|
448
|
-
|
|
423
|
+
"update:modelValue": (value: string | number | null) => void;
|
|
424
|
+
blur: (value: string | number | null) => void;
|
|
425
|
+
input: (value: string | number | null) => void;
|
|
426
|
+
change: (value: string | number | null) => void;
|
|
449
427
|
}, string, {
|
|
450
428
|
type: string;
|
|
429
|
+
size: "large" | "default" | "small";
|
|
451
430
|
modelValue: any;
|
|
452
431
|
clearable: boolean;
|
|
453
432
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
@@ -456,31 +435,88 @@ declare const LibInput: {
|
|
|
456
435
|
append?(_: {}): any;
|
|
457
436
|
};
|
|
458
437
|
});
|
|
459
|
-
declare const LibSelect:
|
|
438
|
+
declare const LibSelect: {
|
|
439
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
440
|
+
filter: {
|
|
441
|
+
type: import('vue').PropType<boolean>;
|
|
442
|
+
default: boolean;
|
|
443
|
+
};
|
|
444
|
+
size: {
|
|
445
|
+
type: import('vue').PropType<"small" | "default" | "large">;
|
|
446
|
+
default: string;
|
|
447
|
+
};
|
|
448
|
+
modelValue: {
|
|
449
|
+
type: import('vue').PropType<string | number | null>;
|
|
450
|
+
required: true;
|
|
451
|
+
};
|
|
452
|
+
disabled: {
|
|
453
|
+
type: import('vue').PropType<boolean>;
|
|
454
|
+
default: boolean;
|
|
455
|
+
};
|
|
456
|
+
placeHolder: {
|
|
457
|
+
type: import('vue').PropType<string>;
|
|
458
|
+
default: string;
|
|
459
|
+
};
|
|
460
|
+
}>> & Readonly<{
|
|
461
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
462
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
463
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
464
|
+
change: (...args: any[]) => void;
|
|
465
|
+
"update:modelValue": (...args: any[]) => void;
|
|
466
|
+
}, import('vue').PublicProps, {
|
|
467
|
+
filter: boolean;
|
|
468
|
+
size: "large" | "default" | "small";
|
|
469
|
+
disabled: boolean;
|
|
470
|
+
placeHolder: string;
|
|
471
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
472
|
+
P: {};
|
|
473
|
+
B: {};
|
|
474
|
+
D: {};
|
|
475
|
+
C: {};
|
|
476
|
+
M: {};
|
|
477
|
+
Defaults: {};
|
|
478
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
479
|
+
filter: {
|
|
480
|
+
type: import('vue').PropType<boolean>;
|
|
481
|
+
default: boolean;
|
|
482
|
+
};
|
|
483
|
+
size: {
|
|
484
|
+
type: import('vue').PropType<"small" | "default" | "large">;
|
|
485
|
+
default: string;
|
|
486
|
+
};
|
|
487
|
+
modelValue: {
|
|
488
|
+
type: import('vue').PropType<string | number | null>;
|
|
489
|
+
required: true;
|
|
490
|
+
};
|
|
491
|
+
disabled: {
|
|
492
|
+
type: import('vue').PropType<boolean>;
|
|
493
|
+
default: boolean;
|
|
494
|
+
};
|
|
495
|
+
placeHolder: {
|
|
496
|
+
type: import('vue').PropType<string>;
|
|
497
|
+
default: string;
|
|
498
|
+
};
|
|
499
|
+
}>> & Readonly<{
|
|
500
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
501
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
502
|
+
}>, {}, {}, {}, {}, {
|
|
503
|
+
filter: boolean;
|
|
504
|
+
size: "large" | "default" | "small";
|
|
505
|
+
disabled: boolean;
|
|
506
|
+
placeHolder: string;
|
|
507
|
+
}>;
|
|
508
|
+
__isFragment?: never;
|
|
509
|
+
__isTeleport?: never;
|
|
510
|
+
__isSuspense?: never;
|
|
511
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
460
512
|
filter: {
|
|
461
513
|
type: import('vue').PropType<boolean>;
|
|
462
514
|
default: boolean;
|
|
463
515
|
};
|
|
464
|
-
|
|
465
|
-
type: import('vue').PropType<
|
|
466
|
-
required: true;
|
|
467
|
-
};
|
|
468
|
-
disabled: {
|
|
469
|
-
type: import('vue').PropType<boolean>;
|
|
470
|
-
default: boolean;
|
|
471
|
-
};
|
|
472
|
-
placeHolder: {
|
|
473
|
-
type: import('vue').PropType<string>;
|
|
516
|
+
size: {
|
|
517
|
+
type: import('vue').PropType<"small" | "default" | "large">;
|
|
474
518
|
default: string;
|
|
475
519
|
};
|
|
476
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
477
|
-
change: (...args: any[]) => void;
|
|
478
|
-
"update:modelValue": (...args: any[]) => void;
|
|
479
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
480
|
-
filter: {
|
|
481
|
-
type: import('vue').PropType<boolean>;
|
|
482
|
-
default: boolean;
|
|
483
|
-
};
|
|
484
520
|
modelValue: {
|
|
485
521
|
type: import('vue').PropType<string | number | null>;
|
|
486
522
|
required: true;
|
|
@@ -496,21 +532,38 @@ declare const LibSelect: import('vue').DefineComponent<import('vue').ExtractProp
|
|
|
496
532
|
}>> & Readonly<{
|
|
497
533
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
498
534
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
499
|
-
}>, {
|
|
535
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
536
|
+
change: (...args: any[]) => void;
|
|
537
|
+
"update:modelValue": (...args: any[]) => void;
|
|
538
|
+
}, string, {
|
|
500
539
|
filter: boolean;
|
|
540
|
+
size: "large" | "default" | "small";
|
|
501
541
|
disabled: boolean;
|
|
502
542
|
placeHolder: string;
|
|
503
|
-
}, {},
|
|
543
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
544
|
+
$slots: {
|
|
545
|
+
default?(_: {}): any;
|
|
546
|
+
};
|
|
547
|
+
});
|
|
504
548
|
declare const LibSelectOption: {
|
|
505
549
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
506
550
|
label: {
|
|
507
|
-
type: import('vue').PropType<string | number>;
|
|
551
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
508
552
|
required: true;
|
|
509
553
|
};
|
|
510
554
|
value: {
|
|
511
|
-
type: import('vue').PropType<string | number>;
|
|
555
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
556
|
+
required: true;
|
|
512
557
|
};
|
|
513
|
-
|
|
558
|
+
disabled: {
|
|
559
|
+
type: import('vue').PropType<boolean>;
|
|
560
|
+
default: boolean;
|
|
561
|
+
};
|
|
562
|
+
}>> & Readonly<{}>, {
|
|
563
|
+
el: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
564
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
565
|
+
disabled: boolean;
|
|
566
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
514
567
|
P: {};
|
|
515
568
|
B: {};
|
|
516
569
|
D: {};
|
|
@@ -519,34 +572,137 @@ declare const LibSelectOption: {
|
|
|
519
572
|
Defaults: {};
|
|
520
573
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
521
574
|
label: {
|
|
522
|
-
type: import('vue').PropType<string | number>;
|
|
575
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
523
576
|
required: true;
|
|
524
577
|
};
|
|
525
578
|
value: {
|
|
526
|
-
type: import('vue').PropType<string | number>;
|
|
579
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
580
|
+
required: true;
|
|
527
581
|
};
|
|
528
|
-
|
|
582
|
+
disabled: {
|
|
583
|
+
type: import('vue').PropType<boolean>;
|
|
584
|
+
default: boolean;
|
|
585
|
+
};
|
|
586
|
+
}>> & Readonly<{}>, {
|
|
587
|
+
el: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
588
|
+
}, {}, {}, {}, {
|
|
589
|
+
disabled: boolean;
|
|
590
|
+
}>;
|
|
529
591
|
__isFragment?: never;
|
|
530
592
|
__isTeleport?: never;
|
|
531
593
|
__isSuspense?: never;
|
|
532
594
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
533
595
|
label: {
|
|
534
|
-
type: import('vue').PropType<string | number>;
|
|
596
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
535
597
|
required: true;
|
|
536
598
|
};
|
|
537
599
|
value: {
|
|
538
|
-
type: import('vue').PropType<string | number>;
|
|
600
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
601
|
+
required: true;
|
|
539
602
|
};
|
|
540
|
-
|
|
603
|
+
disabled: {
|
|
604
|
+
type: import('vue').PropType<boolean>;
|
|
605
|
+
default: boolean;
|
|
606
|
+
};
|
|
607
|
+
}>> & Readonly<{}>, {
|
|
608
|
+
el: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
609
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
610
|
+
disabled: boolean;
|
|
611
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
541
612
|
$slots: {
|
|
542
613
|
default?(_: {}): any;
|
|
543
614
|
};
|
|
544
615
|
});
|
|
545
|
-
declare const LibTable:
|
|
616
|
+
declare const LibTable: {
|
|
617
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
618
|
+
data: {
|
|
619
|
+
type: import('vue').PropType<any[]>;
|
|
620
|
+
required: true;
|
|
621
|
+
};
|
|
622
|
+
whiteword: {
|
|
623
|
+
type: import('vue').PropType<string>;
|
|
624
|
+
default: string;
|
|
625
|
+
};
|
|
626
|
+
showHead: {
|
|
627
|
+
type: import('vue').PropType<boolean>;
|
|
628
|
+
default: boolean;
|
|
629
|
+
};
|
|
630
|
+
headclass: {
|
|
631
|
+
type: import('vue').PropType<string>;
|
|
632
|
+
};
|
|
633
|
+
cellclass: {
|
|
634
|
+
type: import('vue').PropType<string>;
|
|
635
|
+
};
|
|
636
|
+
tableclass: {
|
|
637
|
+
type: import('vue').PropType<string>;
|
|
638
|
+
};
|
|
639
|
+
idKey: {
|
|
640
|
+
type: import('vue').PropType<string>;
|
|
641
|
+
};
|
|
642
|
+
}>> & Readonly<{
|
|
643
|
+
onRowClick?: ((...args: any[]) => any) | undefined;
|
|
644
|
+
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
|
645
|
+
}>, {
|
|
646
|
+
clearSelection: () => void;
|
|
647
|
+
allSelection: () => void;
|
|
648
|
+
toggleSelection: () => void;
|
|
649
|
+
setSelection: (arr: Array<string>) => void;
|
|
650
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
651
|
+
rowClick: (...args: any[]) => void;
|
|
652
|
+
selectionChange: (...args: any[]) => void;
|
|
653
|
+
}, import('vue').PublicProps, {
|
|
654
|
+
whiteword: string;
|
|
655
|
+
showHead: boolean;
|
|
656
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
657
|
+
P: {};
|
|
658
|
+
B: {};
|
|
659
|
+
D: {};
|
|
660
|
+
C: {};
|
|
661
|
+
M: {};
|
|
662
|
+
Defaults: {};
|
|
663
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
664
|
+
data: {
|
|
665
|
+
type: import('vue').PropType<any[]>;
|
|
666
|
+
required: true;
|
|
667
|
+
};
|
|
668
|
+
whiteword: {
|
|
669
|
+
type: import('vue').PropType<string>;
|
|
670
|
+
default: string;
|
|
671
|
+
};
|
|
672
|
+
showHead: {
|
|
673
|
+
type: import('vue').PropType<boolean>;
|
|
674
|
+
default: boolean;
|
|
675
|
+
};
|
|
676
|
+
headclass: {
|
|
677
|
+
type: import('vue').PropType<string>;
|
|
678
|
+
};
|
|
679
|
+
cellclass: {
|
|
680
|
+
type: import('vue').PropType<string>;
|
|
681
|
+
};
|
|
682
|
+
tableclass: {
|
|
683
|
+
type: import('vue').PropType<string>;
|
|
684
|
+
};
|
|
685
|
+
idKey: {
|
|
686
|
+
type: import('vue').PropType<string>;
|
|
687
|
+
};
|
|
688
|
+
}>> & Readonly<{
|
|
689
|
+
onRowClick?: ((...args: any[]) => any) | undefined;
|
|
690
|
+
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
|
691
|
+
}>, {
|
|
692
|
+
clearSelection: () => void;
|
|
693
|
+
allSelection: () => void;
|
|
694
|
+
toggleSelection: () => void;
|
|
695
|
+
setSelection: (arr: Array<string>) => void;
|
|
696
|
+
}, {}, {}, {}, {
|
|
697
|
+
whiteword: string;
|
|
698
|
+
showHead: boolean;
|
|
699
|
+
}>;
|
|
700
|
+
__isFragment?: never;
|
|
701
|
+
__isTeleport?: never;
|
|
702
|
+
__isSuspense?: never;
|
|
703
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
546
704
|
data: {
|
|
547
|
-
type: import('vue').PropType<
|
|
548
|
-
[key: string]: any;
|
|
549
|
-
}[]>;
|
|
705
|
+
type: import('vue').PropType<any[]>;
|
|
550
706
|
required: true;
|
|
551
707
|
};
|
|
552
708
|
whiteword: {
|
|
@@ -566,62 +722,48 @@ declare const LibTable: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
566
722
|
tableclass: {
|
|
567
723
|
type: import('vue').PropType<string>;
|
|
568
724
|
};
|
|
725
|
+
idKey: {
|
|
726
|
+
type: import('vue').PropType<string>;
|
|
727
|
+
};
|
|
728
|
+
}>> & Readonly<{
|
|
729
|
+
onRowClick?: ((...args: any[]) => any) | undefined;
|
|
730
|
+
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
|
569
731
|
}>, {
|
|
570
732
|
clearSelection: () => void;
|
|
571
733
|
allSelection: () => void;
|
|
572
|
-
|
|
573
|
-
|
|
734
|
+
toggleSelection: () => void;
|
|
735
|
+
setSelection: (arr: Array<string>) => void;
|
|
574
736
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
575
737
|
rowClick: (...args: any[]) => void;
|
|
576
738
|
selectionChange: (...args: any[]) => void;
|
|
577
|
-
}, string,
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
}
|
|
584
|
-
|
|
585
|
-
type: import('vue').PropType<string>;
|
|
586
|
-
default: string;
|
|
739
|
+
}, string, {
|
|
740
|
+
whiteword: string;
|
|
741
|
+
showHead: boolean;
|
|
742
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
743
|
+
$slots: Readonly<{
|
|
744
|
+
default: () => import('./types/types').MyVNode[];
|
|
745
|
+
}> & {
|
|
746
|
+
default: () => import('./types/types').MyVNode[];
|
|
587
747
|
};
|
|
588
|
-
|
|
589
|
-
type: import('vue').PropType<boolean>;
|
|
590
|
-
default: boolean;
|
|
591
|
-
};
|
|
592
|
-
headclass: {
|
|
593
|
-
type: import('vue').PropType<string>;
|
|
594
|
-
};
|
|
595
|
-
cellclass: {
|
|
596
|
-
type: import('vue').PropType<string>;
|
|
597
|
-
};
|
|
598
|
-
tableclass: {
|
|
599
|
-
type: import('vue').PropType<string>;
|
|
600
|
-
};
|
|
601
|
-
}>> & Readonly<{
|
|
602
|
-
onRowClick?: ((...args: any[]) => any) | undefined;
|
|
603
|
-
onSelectionChange?: ((...args: any[]) => any) | undefined;
|
|
604
|
-
}>, {
|
|
605
|
-
whiteword: string;
|
|
606
|
-
showHead: boolean;
|
|
607
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
748
|
+
});
|
|
608
749
|
declare const LibTableItem: {
|
|
609
750
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
610
|
-
index: {
|
|
611
|
-
type: import('vue').PropType<number>;
|
|
612
|
-
};
|
|
613
|
-
type: {
|
|
614
|
-
type: import('vue').PropType<"index" | "selection" | "expand">;
|
|
615
|
-
};
|
|
616
751
|
label: {
|
|
617
752
|
type: import('vue').PropType<string | number>;
|
|
618
753
|
};
|
|
754
|
+
type: {
|
|
755
|
+
type: import('vue').PropType<"default" | "index" | "append" | "prepend" | "selection">;
|
|
756
|
+
default: string;
|
|
757
|
+
};
|
|
619
758
|
fixed: {
|
|
620
759
|
type: import('vue').PropType<"right" | "left">;
|
|
621
760
|
};
|
|
622
761
|
width: {
|
|
623
762
|
type: import('vue').PropType<string | number>;
|
|
624
763
|
};
|
|
764
|
+
index: {
|
|
765
|
+
type: import('vue').PropType<number>;
|
|
766
|
+
};
|
|
625
767
|
prop: {
|
|
626
768
|
type: import('vue').PropType<string>;
|
|
627
769
|
};
|
|
@@ -633,7 +775,9 @@ declare const LibTableItem: {
|
|
|
633
775
|
[key: string]: any;
|
|
634
776
|
}>;
|
|
635
777
|
};
|
|
636
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
778
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
779
|
+
type: "selection" | "index" | "append" | "prepend" | "default";
|
|
780
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
637
781
|
P: {};
|
|
638
782
|
B: {};
|
|
639
783
|
D: {};
|
|
@@ -641,21 +785,22 @@ declare const LibTableItem: {
|
|
|
641
785
|
M: {};
|
|
642
786
|
Defaults: {};
|
|
643
787
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
644
|
-
index: {
|
|
645
|
-
type: import('vue').PropType<number>;
|
|
646
|
-
};
|
|
647
|
-
type: {
|
|
648
|
-
type: import('vue').PropType<"index" | "selection" | "expand">;
|
|
649
|
-
};
|
|
650
788
|
label: {
|
|
651
789
|
type: import('vue').PropType<string | number>;
|
|
652
790
|
};
|
|
791
|
+
type: {
|
|
792
|
+
type: import('vue').PropType<"default" | "index" | "append" | "prepend" | "selection">;
|
|
793
|
+
default: string;
|
|
794
|
+
};
|
|
653
795
|
fixed: {
|
|
654
796
|
type: import('vue').PropType<"right" | "left">;
|
|
655
797
|
};
|
|
656
798
|
width: {
|
|
657
799
|
type: import('vue').PropType<string | number>;
|
|
658
800
|
};
|
|
801
|
+
index: {
|
|
802
|
+
type: import('vue').PropType<number>;
|
|
803
|
+
};
|
|
659
804
|
prop: {
|
|
660
805
|
type: import('vue').PropType<string>;
|
|
661
806
|
};
|
|
@@ -667,26 +812,29 @@ declare const LibTableItem: {
|
|
|
667
812
|
[key: string]: any;
|
|
668
813
|
}>;
|
|
669
814
|
};
|
|
670
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
815
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
816
|
+
type: "selection" | "index" | "append" | "prepend" | "default";
|
|
817
|
+
}>;
|
|
671
818
|
__isFragment?: never;
|
|
672
819
|
__isTeleport?: never;
|
|
673
820
|
__isSuspense?: never;
|
|
674
821
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
675
|
-
index: {
|
|
676
|
-
type: import('vue').PropType<number>;
|
|
677
|
-
};
|
|
678
|
-
type: {
|
|
679
|
-
type: import('vue').PropType<"index" | "selection" | "expand">;
|
|
680
|
-
};
|
|
681
822
|
label: {
|
|
682
823
|
type: import('vue').PropType<string | number>;
|
|
683
824
|
};
|
|
825
|
+
type: {
|
|
826
|
+
type: import('vue').PropType<"default" | "index" | "append" | "prepend" | "selection">;
|
|
827
|
+
default: string;
|
|
828
|
+
};
|
|
684
829
|
fixed: {
|
|
685
830
|
type: import('vue').PropType<"right" | "left">;
|
|
686
831
|
};
|
|
687
832
|
width: {
|
|
688
833
|
type: import('vue').PropType<string | number>;
|
|
689
834
|
};
|
|
835
|
+
index: {
|
|
836
|
+
type: import('vue').PropType<number>;
|
|
837
|
+
};
|
|
690
838
|
prop: {
|
|
691
839
|
type: import('vue').PropType<string>;
|
|
692
840
|
};
|
|
@@ -698,7 +846,9 @@ declare const LibTableItem: {
|
|
|
698
846
|
[key: string]: any;
|
|
699
847
|
}>;
|
|
700
848
|
};
|
|
701
|
-
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
849
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
850
|
+
type: "selection" | "index" | "append" | "prepend" | "default";
|
|
851
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
702
852
|
$slots: {
|
|
703
853
|
default?(_: {
|
|
704
854
|
row: any;
|
|
@@ -708,13 +858,13 @@ declare const LibTableItem: {
|
|
|
708
858
|
});
|
|
709
859
|
declare const LibImage: {
|
|
710
860
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
861
|
+
width: {
|
|
862
|
+
type: import('vue').PropType<number>;
|
|
863
|
+
};
|
|
711
864
|
src: {
|
|
712
865
|
type: import('vue').PropType<string>;
|
|
713
866
|
required: true;
|
|
714
867
|
};
|
|
715
|
-
width: {
|
|
716
|
-
type: import('vue').PropType<number>;
|
|
717
|
-
};
|
|
718
868
|
preview: {
|
|
719
869
|
type: import('vue').PropType<boolean>;
|
|
720
870
|
default: boolean;
|
|
@@ -735,13 +885,13 @@ declare const LibImage: {
|
|
|
735
885
|
M: {};
|
|
736
886
|
Defaults: {};
|
|
737
887
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
888
|
+
width: {
|
|
889
|
+
type: import('vue').PropType<number>;
|
|
890
|
+
};
|
|
738
891
|
src: {
|
|
739
892
|
type: import('vue').PropType<string>;
|
|
740
893
|
required: true;
|
|
741
894
|
};
|
|
742
|
-
width: {
|
|
743
|
-
type: import('vue').PropType<number>;
|
|
744
|
-
};
|
|
745
895
|
preview: {
|
|
746
896
|
type: import('vue').PropType<boolean>;
|
|
747
897
|
default: boolean;
|
|
@@ -756,13 +906,13 @@ declare const LibImage: {
|
|
|
756
906
|
__isTeleport?: never;
|
|
757
907
|
__isSuspense?: never;
|
|
758
908
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
909
|
+
width: {
|
|
910
|
+
type: import('vue').PropType<number>;
|
|
911
|
+
};
|
|
759
912
|
src: {
|
|
760
913
|
type: import('vue').PropType<string>;
|
|
761
914
|
required: true;
|
|
762
915
|
};
|
|
763
|
-
width: {
|
|
764
|
-
type: import('vue').PropType<number>;
|
|
765
|
-
};
|
|
766
916
|
preview: {
|
|
767
917
|
type: import('vue').PropType<boolean>;
|
|
768
918
|
default: boolean;
|
|
@@ -784,10 +934,25 @@ declare const LibDatePicker: import('vue').DefineComponent<import('vue').Extract
|
|
|
784
934
|
type: {
|
|
785
935
|
type: import('vue').PropType<string>;
|
|
786
936
|
};
|
|
937
|
+
size: {
|
|
938
|
+
type: import('vue').PropType<"small" | "default" | "large">;
|
|
939
|
+
default: string;
|
|
940
|
+
};
|
|
787
941
|
modelValue: {
|
|
788
|
-
type: import('vue').PropType<string | Date>;
|
|
942
|
+
type: import('vue').PropType<string | Date | null>;
|
|
789
943
|
required: true;
|
|
790
944
|
};
|
|
945
|
+
disabled: {
|
|
946
|
+
type: import('vue').PropType<boolean>;
|
|
947
|
+
default: boolean;
|
|
948
|
+
};
|
|
949
|
+
disabledDate: {
|
|
950
|
+
type: import('vue').PropType<(params: any) => boolean>;
|
|
951
|
+
};
|
|
952
|
+
placeholder: {
|
|
953
|
+
type: import('vue').PropType<string>;
|
|
954
|
+
default: string;
|
|
955
|
+
};
|
|
791
956
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
792
957
|
change: (...args: any[]) => void;
|
|
793
958
|
"update:modelValue": (...args: any[]) => void;
|
|
@@ -795,44 +960,105 @@ declare const LibDatePicker: import('vue').DefineComponent<import('vue').Extract
|
|
|
795
960
|
type: {
|
|
796
961
|
type: import('vue').PropType<string>;
|
|
797
962
|
};
|
|
963
|
+
size: {
|
|
964
|
+
type: import('vue').PropType<"small" | "default" | "large">;
|
|
965
|
+
default: string;
|
|
966
|
+
};
|
|
798
967
|
modelValue: {
|
|
799
|
-
type: import('vue').PropType<string | Date>;
|
|
968
|
+
type: import('vue').PropType<string | Date | null>;
|
|
800
969
|
required: true;
|
|
801
970
|
};
|
|
971
|
+
disabled: {
|
|
972
|
+
type: import('vue').PropType<boolean>;
|
|
973
|
+
default: boolean;
|
|
974
|
+
};
|
|
975
|
+
disabledDate: {
|
|
976
|
+
type: import('vue').PropType<(params: any) => boolean>;
|
|
977
|
+
};
|
|
978
|
+
placeholder: {
|
|
979
|
+
type: import('vue').PropType<string>;
|
|
980
|
+
default: string;
|
|
981
|
+
};
|
|
802
982
|
}>> & Readonly<{
|
|
803
983
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
804
984
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
805
|
-
}>, {
|
|
985
|
+
}>, {
|
|
986
|
+
size: "large" | "default" | "small";
|
|
987
|
+
disabled: boolean;
|
|
988
|
+
placeholder: string;
|
|
989
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
806
990
|
declare const LibDatePickerRange: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
991
|
+
size: {
|
|
992
|
+
type: import('vue').PropType<"small" | "default" | "large">;
|
|
993
|
+
default: string;
|
|
994
|
+
};
|
|
807
995
|
modelValue: {
|
|
808
|
-
type: import('vue').PropType<
|
|
996
|
+
type: import('vue').PropType<[string | Date | null, string | Date | null]>;
|
|
809
997
|
required: true;
|
|
810
998
|
};
|
|
999
|
+
disabledDate: {
|
|
1000
|
+
type: import('vue').PropType<(params: any) => boolean>;
|
|
1001
|
+
};
|
|
1002
|
+
startPlaceholder: {
|
|
1003
|
+
type: import('vue').PropType<string>;
|
|
1004
|
+
};
|
|
1005
|
+
endPlaceholder: {
|
|
1006
|
+
type: import('vue').PropType<string>;
|
|
1007
|
+
};
|
|
811
1008
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
812
1009
|
"update:modelValue": (...args: any[]) => void;
|
|
813
1010
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1011
|
+
size: {
|
|
1012
|
+
type: import('vue').PropType<"small" | "default" | "large">;
|
|
1013
|
+
default: string;
|
|
1014
|
+
};
|
|
814
1015
|
modelValue: {
|
|
815
|
-
type: import('vue').PropType<
|
|
1016
|
+
type: import('vue').PropType<[string | Date | null, string | Date | null]>;
|
|
816
1017
|
required: true;
|
|
817
1018
|
};
|
|
1019
|
+
disabledDate: {
|
|
1020
|
+
type: import('vue').PropType<(params: any) => boolean>;
|
|
1021
|
+
};
|
|
1022
|
+
startPlaceholder: {
|
|
1023
|
+
type: import('vue').PropType<string>;
|
|
1024
|
+
};
|
|
1025
|
+
endPlaceholder: {
|
|
1026
|
+
type: import('vue').PropType<string>;
|
|
1027
|
+
};
|
|
818
1028
|
}>> & Readonly<{
|
|
819
1029
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
820
|
-
}>, {
|
|
1030
|
+
}>, {
|
|
1031
|
+
size: "large" | "default" | "small";
|
|
1032
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
821
1033
|
declare const LibMenu: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
822
1034
|
menulist: {
|
|
823
1035
|
type: import('vue').PropType<string[]>;
|
|
824
1036
|
required: true;
|
|
825
1037
|
};
|
|
1038
|
+
activeIndex: {
|
|
1039
|
+
type: import('vue').PropType<number>;
|
|
1040
|
+
required: true;
|
|
1041
|
+
default: number;
|
|
1042
|
+
};
|
|
826
1043
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
827
1044
|
updatemenu: (...args: any[]) => void;
|
|
1045
|
+
"update:activeIndex": (...args: any[]) => void;
|
|
828
1046
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
829
1047
|
menulist: {
|
|
830
1048
|
type: import('vue').PropType<string[]>;
|
|
831
1049
|
required: true;
|
|
832
1050
|
};
|
|
1051
|
+
activeIndex: {
|
|
1052
|
+
type: import('vue').PropType<number>;
|
|
1053
|
+
required: true;
|
|
1054
|
+
default: number;
|
|
1055
|
+
};
|
|
833
1056
|
}>> & Readonly<{
|
|
834
1057
|
onUpdatemenu?: ((...args: any[]) => any) | undefined;
|
|
835
|
-
|
|
1058
|
+
"onUpdate:activeIndex"?: ((...args: any[]) => any) | undefined;
|
|
1059
|
+
}>, {
|
|
1060
|
+
activeIndex: number;
|
|
1061
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
836
1062
|
declare const LibPagination: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
837
1063
|
sizeArr: {
|
|
838
1064
|
type: import('vue').PropType<number[]>;
|
|
@@ -845,9 +1071,27 @@ declare const LibPagination: import('vue').DefineComponent<import('vue').Extract
|
|
|
845
1071
|
type: import('vue').PropType<boolean>;
|
|
846
1072
|
default: boolean;
|
|
847
1073
|
};
|
|
1074
|
+
currentPage: {
|
|
1075
|
+
type: import('vue').PropType<number>;
|
|
1076
|
+
default: number;
|
|
1077
|
+
};
|
|
1078
|
+
activeSize: {
|
|
1079
|
+
type: import('vue').PropType<number>;
|
|
1080
|
+
default: number;
|
|
1081
|
+
};
|
|
1082
|
+
visibleRange: {
|
|
1083
|
+
type: import('vue').PropType<number>;
|
|
1084
|
+
default: number;
|
|
1085
|
+
};
|
|
1086
|
+
edgeVisibleCount: {
|
|
1087
|
+
type: import('vue').PropType<number>;
|
|
1088
|
+
default: number;
|
|
1089
|
+
};
|
|
848
1090
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
849
1091
|
"size-change": (...args: any[]) => void;
|
|
850
1092
|
"current-change": (...args: any[]) => void;
|
|
1093
|
+
"update:currentPage": (...args: any[]) => void;
|
|
1094
|
+
"update:activeSize": (...args: any[]) => void;
|
|
851
1095
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
852
1096
|
sizeArr: {
|
|
853
1097
|
type: import('vue').PropType<number[]>;
|
|
@@ -860,11 +1104,33 @@ declare const LibPagination: import('vue').DefineComponent<import('vue').Extract
|
|
|
860
1104
|
type: import('vue').PropType<boolean>;
|
|
861
1105
|
default: boolean;
|
|
862
1106
|
};
|
|
1107
|
+
currentPage: {
|
|
1108
|
+
type: import('vue').PropType<number>;
|
|
1109
|
+
default: number;
|
|
1110
|
+
};
|
|
1111
|
+
activeSize: {
|
|
1112
|
+
type: import('vue').PropType<number>;
|
|
1113
|
+
default: number;
|
|
1114
|
+
};
|
|
1115
|
+
visibleRange: {
|
|
1116
|
+
type: import('vue').PropType<number>;
|
|
1117
|
+
default: number;
|
|
1118
|
+
};
|
|
1119
|
+
edgeVisibleCount: {
|
|
1120
|
+
type: import('vue').PropType<number>;
|
|
1121
|
+
default: number;
|
|
1122
|
+
};
|
|
863
1123
|
}>> & Readonly<{
|
|
864
1124
|
"onSize-change"?: ((...args: any[]) => any) | undefined;
|
|
865
1125
|
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
1126
|
+
"onUpdate:currentPage"?: ((...args: any[]) => any) | undefined;
|
|
1127
|
+
"onUpdate:activeSize"?: ((...args: any[]) => any) | undefined;
|
|
866
1128
|
}>, {
|
|
867
1129
|
hideOnSinglePage: boolean;
|
|
1130
|
+
currentPage: number;
|
|
1131
|
+
activeSize: number;
|
|
1132
|
+
visibleRange: number;
|
|
1133
|
+
edgeVisibleCount: number;
|
|
868
1134
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
869
1135
|
declare const LibBadge: {
|
|
870
1136
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -880,6 +1146,9 @@ declare const LibBadge: {
|
|
|
880
1146
|
type: import('vue').PropType<"rightTop" | "right">;
|
|
881
1147
|
default: string;
|
|
882
1148
|
};
|
|
1149
|
+
customClass: {
|
|
1150
|
+
type: import('vue').PropType<string>;
|
|
1151
|
+
};
|
|
883
1152
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
884
1153
|
max: number | string;
|
|
885
1154
|
placement: "rightTop" | "right";
|
|
@@ -903,6 +1172,9 @@ declare const LibBadge: {
|
|
|
903
1172
|
type: import('vue').PropType<"rightTop" | "right">;
|
|
904
1173
|
default: string;
|
|
905
1174
|
};
|
|
1175
|
+
customClass: {
|
|
1176
|
+
type: import('vue').PropType<string>;
|
|
1177
|
+
};
|
|
906
1178
|
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
907
1179
|
max: number | string;
|
|
908
1180
|
placement: "rightTop" | "right";
|
|
@@ -923,6 +1195,9 @@ declare const LibBadge: {
|
|
|
923
1195
|
type: import('vue').PropType<"rightTop" | "right">;
|
|
924
1196
|
default: string;
|
|
925
1197
|
};
|
|
1198
|
+
customClass: {
|
|
1199
|
+
type: import('vue').PropType<string>;
|
|
1200
|
+
};
|
|
926
1201
|
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
927
1202
|
max: number | string;
|
|
928
1203
|
placement: "rightTop" | "right";
|
|
@@ -943,6 +1218,13 @@ declare const LibPopover: {
|
|
|
943
1218
|
width: {
|
|
944
1219
|
type: import('vue').PropType<string | number>;
|
|
945
1220
|
};
|
|
1221
|
+
arrowshow: {
|
|
1222
|
+
type: import('vue').PropType<boolean>;
|
|
1223
|
+
default: boolean;
|
|
1224
|
+
};
|
|
1225
|
+
beforebgcolor: {
|
|
1226
|
+
type: import('vue').PropType<string>;
|
|
1227
|
+
};
|
|
946
1228
|
trigger: {
|
|
947
1229
|
type: import('vue').PropType<"click" | "hover" | "native">;
|
|
948
1230
|
default: string;
|
|
@@ -953,10 +1235,7 @@ declare const LibPopover: {
|
|
|
953
1235
|
beforeHidden: {
|
|
954
1236
|
type: import('vue').PropType<Function>;
|
|
955
1237
|
};
|
|
956
|
-
|
|
957
|
-
type: import('vue').PropType<string>;
|
|
958
|
-
};
|
|
959
|
-
arrowshow: {
|
|
1238
|
+
isselectMode: {
|
|
960
1239
|
type: import('vue').PropType<boolean>;
|
|
961
1240
|
default: boolean;
|
|
962
1241
|
};
|
|
@@ -968,8 +1247,9 @@ declare const LibPopover: {
|
|
|
968
1247
|
"update:modelValue": (...args: any[]) => void;
|
|
969
1248
|
}, import('vue').PublicProps, {
|
|
970
1249
|
placement: "topleft" | "topmiddle" | "topright" | "bottomleft" | "bottommiddle" | "bottomright" | "centerleft" | "centerright";
|
|
971
|
-
trigger: "click" | "hover" | "native";
|
|
972
1250
|
arrowshow: boolean;
|
|
1251
|
+
trigger: "click" | "hover" | "native";
|
|
1252
|
+
isselectMode: boolean;
|
|
973
1253
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
974
1254
|
P: {};
|
|
975
1255
|
B: {};
|
|
@@ -988,6 +1268,13 @@ declare const LibPopover: {
|
|
|
988
1268
|
width: {
|
|
989
1269
|
type: import('vue').PropType<string | number>;
|
|
990
1270
|
};
|
|
1271
|
+
arrowshow: {
|
|
1272
|
+
type: import('vue').PropType<boolean>;
|
|
1273
|
+
default: boolean;
|
|
1274
|
+
};
|
|
1275
|
+
beforebgcolor: {
|
|
1276
|
+
type: import('vue').PropType<string>;
|
|
1277
|
+
};
|
|
991
1278
|
trigger: {
|
|
992
1279
|
type: import('vue').PropType<"click" | "hover" | "native">;
|
|
993
1280
|
default: string;
|
|
@@ -998,10 +1285,7 @@ declare const LibPopover: {
|
|
|
998
1285
|
beforeHidden: {
|
|
999
1286
|
type: import('vue').PropType<Function>;
|
|
1000
1287
|
};
|
|
1001
|
-
|
|
1002
|
-
type: import('vue').PropType<string>;
|
|
1003
|
-
};
|
|
1004
|
-
arrowshow: {
|
|
1288
|
+
isselectMode: {
|
|
1005
1289
|
type: import('vue').PropType<boolean>;
|
|
1006
1290
|
default: boolean;
|
|
1007
1291
|
};
|
|
@@ -1011,8 +1295,9 @@ declare const LibPopover: {
|
|
|
1011
1295
|
hideHandle: (disablecancelflag?: boolean) => void;
|
|
1012
1296
|
}, {}, {}, {}, {
|
|
1013
1297
|
placement: "topleft" | "topmiddle" | "topright" | "bottomleft" | "bottommiddle" | "bottomright" | "centerleft" | "centerright";
|
|
1014
|
-
trigger: "click" | "hover" | "native";
|
|
1015
1298
|
arrowshow: boolean;
|
|
1299
|
+
trigger: "click" | "hover" | "native";
|
|
1300
|
+
isselectMode: boolean;
|
|
1016
1301
|
}>;
|
|
1017
1302
|
__isFragment?: never;
|
|
1018
1303
|
__isTeleport?: never;
|
|
@@ -1028,6 +1313,13 @@ declare const LibPopover: {
|
|
|
1028
1313
|
width: {
|
|
1029
1314
|
type: import('vue').PropType<string | number>;
|
|
1030
1315
|
};
|
|
1316
|
+
arrowshow: {
|
|
1317
|
+
type: import('vue').PropType<boolean>;
|
|
1318
|
+
default: boolean;
|
|
1319
|
+
};
|
|
1320
|
+
beforebgcolor: {
|
|
1321
|
+
type: import('vue').PropType<string>;
|
|
1322
|
+
};
|
|
1031
1323
|
trigger: {
|
|
1032
1324
|
type: import('vue').PropType<"click" | "hover" | "native">;
|
|
1033
1325
|
default: string;
|
|
@@ -1038,10 +1330,7 @@ declare const LibPopover: {
|
|
|
1038
1330
|
beforeHidden: {
|
|
1039
1331
|
type: import('vue').PropType<Function>;
|
|
1040
1332
|
};
|
|
1041
|
-
|
|
1042
|
-
type: import('vue').PropType<string>;
|
|
1043
|
-
};
|
|
1044
|
-
arrowshow: {
|
|
1333
|
+
isselectMode: {
|
|
1045
1334
|
type: import('vue').PropType<boolean>;
|
|
1046
1335
|
default: boolean;
|
|
1047
1336
|
};
|
|
@@ -1053,8 +1342,9 @@ declare const LibPopover: {
|
|
|
1053
1342
|
"update:modelValue": (...args: any[]) => void;
|
|
1054
1343
|
}, string, {
|
|
1055
1344
|
placement: "topleft" | "topmiddle" | "topright" | "bottomleft" | "bottommiddle" | "bottomright" | "centerleft" | "centerright";
|
|
1056
|
-
trigger: "click" | "hover" | "native";
|
|
1057
1345
|
arrowshow: boolean;
|
|
1346
|
+
trigger: "click" | "hover" | "native";
|
|
1347
|
+
isselectMode: boolean;
|
|
1058
1348
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1059
1349
|
$slots: {
|
|
1060
1350
|
reference?(_: {}): any;
|
|
@@ -1066,7 +1356,7 @@ declare const LibNumberInput: import('vue').DefineComponent<import('vue').Extrac
|
|
|
1066
1356
|
type: import('vue').PropType<number>;
|
|
1067
1357
|
};
|
|
1068
1358
|
size: {
|
|
1069
|
-
type: import('vue').PropType<"
|
|
1359
|
+
type: import('vue').PropType<"small" | "default" | "large">;
|
|
1070
1360
|
default: string;
|
|
1071
1361
|
};
|
|
1072
1362
|
modelValue: {
|
|
@@ -1096,7 +1386,7 @@ declare const LibNumberInput: import('vue').DefineComponent<import('vue').Extrac
|
|
|
1096
1386
|
type: import('vue').PropType<number>;
|
|
1097
1387
|
};
|
|
1098
1388
|
size: {
|
|
1099
|
-
type: import('vue').PropType<"
|
|
1389
|
+
type: import('vue').PropType<"small" | "default" | "large">;
|
|
1100
1390
|
default: string;
|
|
1101
1391
|
};
|
|
1102
1392
|
modelValue: {
|
|
@@ -1122,48 +1412,33 @@ declare const LibNumberInput: import('vue').DefineComponent<import('vue').Extrac
|
|
|
1122
1412
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1123
1413
|
onNumChange?: ((...args: any[]) => any) | undefined;
|
|
1124
1414
|
}>, {
|
|
1125
|
-
size: "
|
|
1415
|
+
size: "large" | "default" | "small";
|
|
1126
1416
|
strict: boolean;
|
|
1127
1417
|
step: number;
|
|
1128
1418
|
integer: boolean;
|
|
1129
1419
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1130
|
-
declare const LibRadioGroup:
|
|
1131
|
-
modelValue: {
|
|
1132
|
-
type: import('vue').PropType<string | number>;
|
|
1133
|
-
required: true;
|
|
1134
|
-
};
|
|
1135
|
-
showinput: {
|
|
1136
|
-
type: import('vue').PropType<boolean>;
|
|
1137
|
-
default: boolean;
|
|
1138
|
-
};
|
|
1139
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1140
|
-
change: (...args: any[]) => void;
|
|
1141
|
-
"update:modelValue": (...args: any[]) => void;
|
|
1142
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1143
|
-
modelValue: {
|
|
1144
|
-
type: import('vue').PropType<string | number>;
|
|
1145
|
-
required: true;
|
|
1146
|
-
};
|
|
1147
|
-
showinput: {
|
|
1148
|
-
type: import('vue').PropType<boolean>;
|
|
1149
|
-
default: boolean;
|
|
1150
|
-
};
|
|
1151
|
-
}>> & Readonly<{
|
|
1152
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
1153
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1154
|
-
}>, {
|
|
1155
|
-
showinput: boolean;
|
|
1156
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1157
|
-
declare const LibRadioBox: {
|
|
1420
|
+
declare const LibRadioGroup: {
|
|
1158
1421
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
1159
|
-
|
|
1160
|
-
type: import('vue').PropType<string | number>;
|
|
1422
|
+
modelValue: {
|
|
1423
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
1161
1424
|
required: true;
|
|
1162
1425
|
};
|
|
1163
|
-
|
|
1164
|
-
type: import('vue').PropType<
|
|
1426
|
+
disabled: {
|
|
1427
|
+
type: import('vue').PropType<boolean>;
|
|
1165
1428
|
};
|
|
1166
|
-
|
|
1429
|
+
showinput: {
|
|
1430
|
+
type: import('vue').PropType<boolean>;
|
|
1431
|
+
default: boolean;
|
|
1432
|
+
};
|
|
1433
|
+
}>> & Readonly<{
|
|
1434
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1435
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1436
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1437
|
+
change: (...args: any[]) => void;
|
|
1438
|
+
"update:modelValue": (...args: any[]) => void;
|
|
1439
|
+
}, import('vue').PublicProps, {
|
|
1440
|
+
showinput: boolean;
|
|
1441
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1167
1442
|
P: {};
|
|
1168
1443
|
B: {};
|
|
1169
1444
|
D: {};
|
|
@@ -1171,67 +1446,118 @@ declare const LibRadioBox: {
|
|
|
1171
1446
|
M: {};
|
|
1172
1447
|
Defaults: {};
|
|
1173
1448
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
1174
|
-
|
|
1175
|
-
type: import('vue').PropType<string | number>;
|
|
1449
|
+
modelValue: {
|
|
1450
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
1176
1451
|
required: true;
|
|
1177
1452
|
};
|
|
1178
|
-
|
|
1179
|
-
type: import('vue').PropType<
|
|
1453
|
+
disabled: {
|
|
1454
|
+
type: import('vue').PropType<boolean>;
|
|
1180
1455
|
};
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
} &
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1456
|
+
showinput: {
|
|
1457
|
+
type: import('vue').PropType<boolean>;
|
|
1458
|
+
default: boolean;
|
|
1459
|
+
};
|
|
1460
|
+
}>> & Readonly<{
|
|
1461
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1462
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1463
|
+
}>, {}, {}, {}, {}, {
|
|
1464
|
+
showinput: boolean;
|
|
1465
|
+
}>;
|
|
1466
|
+
__isFragment?: never;
|
|
1467
|
+
__isTeleport?: never;
|
|
1468
|
+
__isSuspense?: never;
|
|
1469
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
1470
|
+
modelValue: {
|
|
1471
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
1472
|
+
required: true;
|
|
1189
1473
|
};
|
|
1190
|
-
|
|
1191
|
-
type: import('vue').PropType<
|
|
1474
|
+
disabled: {
|
|
1475
|
+
type: import('vue').PropType<boolean>;
|
|
1192
1476
|
};
|
|
1193
|
-
|
|
1477
|
+
showinput: {
|
|
1478
|
+
type: import('vue').PropType<boolean>;
|
|
1479
|
+
default: boolean;
|
|
1480
|
+
};
|
|
1481
|
+
}>> & Readonly<{
|
|
1482
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1483
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1484
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1485
|
+
change: (...args: any[]) => void;
|
|
1486
|
+
"update:modelValue": (...args: any[]) => void;
|
|
1487
|
+
}, string, {
|
|
1488
|
+
showinput: boolean;
|
|
1489
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1194
1490
|
$slots: {
|
|
1195
1491
|
default?(_: {}): any;
|
|
1196
1492
|
};
|
|
1197
1493
|
});
|
|
1198
|
-
declare const
|
|
1199
|
-
|
|
1200
|
-
type: import('vue').PropType<
|
|
1494
|
+
declare const LibRadioBox: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1495
|
+
button: {
|
|
1496
|
+
type: import('vue').PropType<boolean>;
|
|
1497
|
+
};
|
|
1498
|
+
label: {
|
|
1499
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
1201
1500
|
required: true;
|
|
1202
1501
|
};
|
|
1203
|
-
|
|
1502
|
+
value: {
|
|
1503
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
1504
|
+
required: true;
|
|
1505
|
+
};
|
|
1506
|
+
modelValue: {
|
|
1507
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
1508
|
+
};
|
|
1509
|
+
disabled: {
|
|
1204
1510
|
type: import('vue').PropType<boolean>;
|
|
1205
1511
|
default: boolean;
|
|
1206
1512
|
};
|
|
1207
1513
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1208
|
-
change: (...args: any[]) => void;
|
|
1209
1514
|
"update:modelValue": (...args: any[]) => void;
|
|
1210
1515
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1211
|
-
|
|
1212
|
-
type: import('vue').PropType<
|
|
1516
|
+
button: {
|
|
1517
|
+
type: import('vue').PropType<boolean>;
|
|
1518
|
+
};
|
|
1519
|
+
label: {
|
|
1520
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
1213
1521
|
required: true;
|
|
1214
1522
|
};
|
|
1215
|
-
|
|
1523
|
+
value: {
|
|
1524
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
1525
|
+
required: true;
|
|
1526
|
+
};
|
|
1527
|
+
modelValue: {
|
|
1528
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
1529
|
+
};
|
|
1530
|
+
disabled: {
|
|
1216
1531
|
type: import('vue').PropType<boolean>;
|
|
1217
1532
|
default: boolean;
|
|
1218
1533
|
};
|
|
1219
1534
|
}>> & Readonly<{
|
|
1220
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
1221
1535
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1222
1536
|
}>, {
|
|
1223
|
-
|
|
1537
|
+
disabled: boolean;
|
|
1224
1538
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1225
|
-
declare const
|
|
1539
|
+
declare const LibCheckGroup: {
|
|
1226
1540
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
1227
|
-
|
|
1228
|
-
type: import('vue').PropType<string | number>;
|
|
1541
|
+
modelValue: {
|
|
1542
|
+
type: import('vue').PropType<(string | number | symbol)[]>;
|
|
1229
1543
|
required: true;
|
|
1230
1544
|
};
|
|
1231
|
-
|
|
1232
|
-
type: import('vue').PropType<
|
|
1545
|
+
disabled: {
|
|
1546
|
+
type: import('vue').PropType<boolean>;
|
|
1233
1547
|
};
|
|
1234
|
-
|
|
1548
|
+
showinput: {
|
|
1549
|
+
type: import('vue').PropType<boolean>;
|
|
1550
|
+
default: boolean;
|
|
1551
|
+
};
|
|
1552
|
+
}>> & Readonly<{
|
|
1553
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1554
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1555
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1556
|
+
change: (...args: any[]) => void;
|
|
1557
|
+
"update:modelValue": (...args: any[]) => void;
|
|
1558
|
+
}, import('vue').PublicProps, {
|
|
1559
|
+
showinput: boolean;
|
|
1560
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1235
1561
|
P: {};
|
|
1236
1562
|
B: {};
|
|
1237
1563
|
D: {};
|
|
@@ -1239,30 +1565,96 @@ declare const LibCheckBox: {
|
|
|
1239
1565
|
M: {};
|
|
1240
1566
|
Defaults: {};
|
|
1241
1567
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
1242
|
-
|
|
1243
|
-
type: import('vue').PropType<string | number>;
|
|
1568
|
+
modelValue: {
|
|
1569
|
+
type: import('vue').PropType<(string | number | symbol)[]>;
|
|
1244
1570
|
required: true;
|
|
1245
1571
|
};
|
|
1246
|
-
|
|
1247
|
-
type: import('vue').PropType<
|
|
1572
|
+
disabled: {
|
|
1573
|
+
type: import('vue').PropType<boolean>;
|
|
1248
1574
|
};
|
|
1249
|
-
|
|
1575
|
+
showinput: {
|
|
1576
|
+
type: import('vue').PropType<boolean>;
|
|
1577
|
+
default: boolean;
|
|
1578
|
+
};
|
|
1579
|
+
}>> & Readonly<{
|
|
1580
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1581
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1582
|
+
}>, {}, {}, {}, {}, {
|
|
1583
|
+
showinput: boolean;
|
|
1584
|
+
}>;
|
|
1250
1585
|
__isFragment?: never;
|
|
1251
1586
|
__isTeleport?: never;
|
|
1252
1587
|
__isSuspense?: never;
|
|
1253
1588
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
1254
|
-
|
|
1255
|
-
type: import('vue').PropType<string | number>;
|
|
1589
|
+
modelValue: {
|
|
1590
|
+
type: import('vue').PropType<(string | number | symbol)[]>;
|
|
1256
1591
|
required: true;
|
|
1257
1592
|
};
|
|
1258
|
-
|
|
1259
|
-
type: import('vue').PropType<
|
|
1593
|
+
disabled: {
|
|
1594
|
+
type: import('vue').PropType<boolean>;
|
|
1260
1595
|
};
|
|
1261
|
-
|
|
1596
|
+
showinput: {
|
|
1597
|
+
type: import('vue').PropType<boolean>;
|
|
1598
|
+
default: boolean;
|
|
1599
|
+
};
|
|
1600
|
+
}>> & Readonly<{
|
|
1601
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1602
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1603
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1604
|
+
change: (...args: any[]) => void;
|
|
1605
|
+
"update:modelValue": (...args: any[]) => void;
|
|
1606
|
+
}, string, {
|
|
1607
|
+
showinput: boolean;
|
|
1608
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1262
1609
|
$slots: {
|
|
1263
1610
|
default?(_: {}): any;
|
|
1264
1611
|
};
|
|
1265
1612
|
});
|
|
1613
|
+
declare const LibCheckBox: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1614
|
+
button: {
|
|
1615
|
+
type: import('vue').PropType<boolean>;
|
|
1616
|
+
};
|
|
1617
|
+
label: {
|
|
1618
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
1619
|
+
required: true;
|
|
1620
|
+
};
|
|
1621
|
+
value: {
|
|
1622
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
1623
|
+
required: true;
|
|
1624
|
+
};
|
|
1625
|
+
modelValue: {
|
|
1626
|
+
type: import('vue').PropType<boolean>;
|
|
1627
|
+
};
|
|
1628
|
+
disabled: {
|
|
1629
|
+
type: import('vue').PropType<boolean>;
|
|
1630
|
+
default: boolean;
|
|
1631
|
+
};
|
|
1632
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1633
|
+
"update:modelValue": (...args: any[]) => void;
|
|
1634
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1635
|
+
button: {
|
|
1636
|
+
type: import('vue').PropType<boolean>;
|
|
1637
|
+
};
|
|
1638
|
+
label: {
|
|
1639
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
1640
|
+
required: true;
|
|
1641
|
+
};
|
|
1642
|
+
value: {
|
|
1643
|
+
type: import('vue').PropType<string | number | symbol>;
|
|
1644
|
+
required: true;
|
|
1645
|
+
};
|
|
1646
|
+
modelValue: {
|
|
1647
|
+
type: import('vue').PropType<boolean>;
|
|
1648
|
+
};
|
|
1649
|
+
disabled: {
|
|
1650
|
+
type: import('vue').PropType<boolean>;
|
|
1651
|
+
default: boolean;
|
|
1652
|
+
};
|
|
1653
|
+
}>> & Readonly<{
|
|
1654
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1655
|
+
}>, {
|
|
1656
|
+
disabled: boolean;
|
|
1657
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1266
1658
|
declare const LibUpload: {
|
|
1267
1659
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
1268
1660
|
type: {
|
|
@@ -1385,17 +1777,45 @@ declare const LibUpload: {
|
|
|
1385
1777
|
default?(_: {}): any;
|
|
1386
1778
|
};
|
|
1387
1779
|
});
|
|
1388
|
-
declare const LibTabs:
|
|
1389
|
-
|
|
1390
|
-
type:
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
}
|
|
1397
|
-
|
|
1398
|
-
|
|
1780
|
+
declare const LibTabs: {
|
|
1781
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
1782
|
+
type: {
|
|
1783
|
+
type: import('vue').PropType<"line" | "card">;
|
|
1784
|
+
default: string;
|
|
1785
|
+
};
|
|
1786
|
+
active: {
|
|
1787
|
+
type: import('vue').PropType<string>;
|
|
1788
|
+
};
|
|
1789
|
+
}>> & Readonly<{
|
|
1790
|
+
"onUpdate:active"?: ((...args: any[]) => any) | undefined;
|
|
1791
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1792
|
+
"update:active": (...args: any[]) => void;
|
|
1793
|
+
}, import('vue').PublicProps, {
|
|
1794
|
+
type: "line" | "card";
|
|
1795
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1796
|
+
P: {};
|
|
1797
|
+
B: {};
|
|
1798
|
+
D: {};
|
|
1799
|
+
C: {};
|
|
1800
|
+
M: {};
|
|
1801
|
+
Defaults: {};
|
|
1802
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
1803
|
+
type: {
|
|
1804
|
+
type: import('vue').PropType<"line" | "card">;
|
|
1805
|
+
default: string;
|
|
1806
|
+
};
|
|
1807
|
+
active: {
|
|
1808
|
+
type: import('vue').PropType<string>;
|
|
1809
|
+
};
|
|
1810
|
+
}>> & Readonly<{
|
|
1811
|
+
"onUpdate:active"?: ((...args: any[]) => any) | undefined;
|
|
1812
|
+
}>, {}, {}, {}, {}, {
|
|
1813
|
+
type: "line" | "card";
|
|
1814
|
+
}>;
|
|
1815
|
+
__isFragment?: never;
|
|
1816
|
+
__isTeleport?: never;
|
|
1817
|
+
__isSuspense?: never;
|
|
1818
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
1399
1819
|
type: {
|
|
1400
1820
|
type: import('vue').PropType<"line" | "card">;
|
|
1401
1821
|
default: string;
|
|
@@ -1405,9 +1825,17 @@ declare const LibTabs: import('vue').DefineComponent<import('vue').ExtractPropTy
|
|
|
1405
1825
|
};
|
|
1406
1826
|
}>> & Readonly<{
|
|
1407
1827
|
"onUpdate:active"?: ((...args: any[]) => any) | undefined;
|
|
1408
|
-
}>, {
|
|
1828
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1829
|
+
"update:active": (...args: any[]) => void;
|
|
1830
|
+
}, string, {
|
|
1409
1831
|
type: "line" | "card";
|
|
1410
|
-
}, {},
|
|
1832
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1833
|
+
$slots: Readonly<{
|
|
1834
|
+
default: () => import('./types/types').MyVNode[];
|
|
1835
|
+
}> & {
|
|
1836
|
+
default: () => import('./types/types').MyVNode[];
|
|
1837
|
+
};
|
|
1838
|
+
});
|
|
1411
1839
|
declare const LibTabsPane: {
|
|
1412
1840
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
1413
1841
|
name: {
|
|
@@ -1442,27 +1870,25 @@ declare const LibTabsPane: {
|
|
|
1442
1870
|
});
|
|
1443
1871
|
declare const LibScrollBar: {
|
|
1444
1872
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
1445
|
-
|
|
1446
|
-
type: import('vue').PropType<
|
|
1447
|
-
default: boolean;
|
|
1448
|
-
};
|
|
1449
|
-
vertical: {
|
|
1450
|
-
type: import('vue').PropType<boolean>;
|
|
1451
|
-
default: boolean;
|
|
1873
|
+
height: {
|
|
1874
|
+
type: import('vue').PropType<string>;
|
|
1452
1875
|
};
|
|
1453
|
-
|
|
1876
|
+
native: {
|
|
1454
1877
|
type: import('vue').PropType<boolean>;
|
|
1455
1878
|
default: boolean;
|
|
1456
1879
|
};
|
|
1457
|
-
|
|
1458
|
-
type: import('vue').PropType<
|
|
1459
|
-
default: boolean;
|
|
1880
|
+
maxHeight: {
|
|
1881
|
+
type: import('vue').PropType<string>;
|
|
1460
1882
|
};
|
|
1461
|
-
}>> & Readonly<{}>, {
|
|
1883
|
+
}>> & Readonly<{}>, {
|
|
1884
|
+
setScrollTop: (percentage: number, options?: {
|
|
1885
|
+
behavior?: "auto" | "smooth";
|
|
1886
|
+
}) => void;
|
|
1887
|
+
setScrollLeft: (percentage: number, options?: {
|
|
1888
|
+
behavior?: "auto" | "smooth";
|
|
1889
|
+
}) => void;
|
|
1890
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
1462
1891
|
native: boolean;
|
|
1463
|
-
vertical: boolean;
|
|
1464
|
-
noresize: boolean;
|
|
1465
|
-
isSelectdom: boolean;
|
|
1466
1892
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1467
1893
|
P: {};
|
|
1468
1894
|
B: {};
|
|
@@ -1471,67 +1897,118 @@ declare const LibScrollBar: {
|
|
|
1471
1897
|
M: {};
|
|
1472
1898
|
Defaults: {};
|
|
1473
1899
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
1474
|
-
|
|
1475
|
-
type: import('vue').PropType<
|
|
1476
|
-
default: boolean;
|
|
1477
|
-
};
|
|
1478
|
-
vertical: {
|
|
1479
|
-
type: import('vue').PropType<boolean>;
|
|
1480
|
-
default: boolean;
|
|
1900
|
+
height: {
|
|
1901
|
+
type: import('vue').PropType<string>;
|
|
1481
1902
|
};
|
|
1482
|
-
|
|
1903
|
+
native: {
|
|
1483
1904
|
type: import('vue').PropType<boolean>;
|
|
1484
1905
|
default: boolean;
|
|
1485
1906
|
};
|
|
1486
|
-
|
|
1487
|
-
type: import('vue').PropType<
|
|
1488
|
-
default: boolean;
|
|
1907
|
+
maxHeight: {
|
|
1908
|
+
type: import('vue').PropType<string>;
|
|
1489
1909
|
};
|
|
1490
|
-
}>> & Readonly<{}>, {
|
|
1910
|
+
}>> & Readonly<{}>, {
|
|
1911
|
+
setScrollTop: (percentage: number, options?: {
|
|
1912
|
+
behavior?: "auto" | "smooth";
|
|
1913
|
+
}) => void;
|
|
1914
|
+
setScrollLeft: (percentage: number, options?: {
|
|
1915
|
+
behavior?: "auto" | "smooth";
|
|
1916
|
+
}) => void;
|
|
1917
|
+
}, {}, {}, {}, {
|
|
1491
1918
|
native: boolean;
|
|
1492
|
-
vertical: boolean;
|
|
1493
|
-
noresize: boolean;
|
|
1494
|
-
isSelectdom: boolean;
|
|
1495
1919
|
}>;
|
|
1496
1920
|
__isFragment?: never;
|
|
1497
1921
|
__isTeleport?: never;
|
|
1498
1922
|
__isSuspense?: never;
|
|
1499
1923
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
1500
|
-
|
|
1501
|
-
type: import('vue').PropType<
|
|
1502
|
-
default: boolean;
|
|
1503
|
-
};
|
|
1504
|
-
vertical: {
|
|
1505
|
-
type: import('vue').PropType<boolean>;
|
|
1506
|
-
default: boolean;
|
|
1924
|
+
height: {
|
|
1925
|
+
type: import('vue').PropType<string>;
|
|
1507
1926
|
};
|
|
1508
|
-
|
|
1927
|
+
native: {
|
|
1509
1928
|
type: import('vue').PropType<boolean>;
|
|
1510
1929
|
default: boolean;
|
|
1511
1930
|
};
|
|
1512
|
-
|
|
1513
|
-
type: import('vue').PropType<
|
|
1514
|
-
default: boolean;
|
|
1931
|
+
maxHeight: {
|
|
1932
|
+
type: import('vue').PropType<string>;
|
|
1515
1933
|
};
|
|
1516
|
-
}>> & Readonly<{}>, {
|
|
1934
|
+
}>> & Readonly<{}>, {
|
|
1935
|
+
setScrollTop: (percentage: number, options?: {
|
|
1936
|
+
behavior?: "auto" | "smooth";
|
|
1937
|
+
}) => void;
|
|
1938
|
+
setScrollLeft: (percentage: number, options?: {
|
|
1939
|
+
behavior?: "auto" | "smooth";
|
|
1940
|
+
}) => void;
|
|
1941
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
1517
1942
|
native: boolean;
|
|
1518
|
-
vertical: boolean;
|
|
1519
|
-
noresize: boolean;
|
|
1520
|
-
isSelectdom: boolean;
|
|
1521
1943
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1522
1944
|
$slots: {
|
|
1523
1945
|
default?(_: {}): any;
|
|
1524
1946
|
};
|
|
1525
1947
|
});
|
|
1526
|
-
declare const LibCarousel:
|
|
1948
|
+
declare const LibCarousel: {
|
|
1949
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
1950
|
+
height: {
|
|
1951
|
+
type: import('vue').PropType<number>;
|
|
1952
|
+
};
|
|
1953
|
+
holdstop: {
|
|
1954
|
+
type: import('vue').PropType<boolean>;
|
|
1955
|
+
default: boolean;
|
|
1956
|
+
};
|
|
1957
|
+
startindex: {
|
|
1958
|
+
type: import('vue').PropType<number>;
|
|
1959
|
+
default: number;
|
|
1960
|
+
};
|
|
1961
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
1962
|
+
holdstop: boolean;
|
|
1963
|
+
startindex: number;
|
|
1964
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1965
|
+
P: {};
|
|
1966
|
+
B: {};
|
|
1967
|
+
D: {};
|
|
1968
|
+
C: {};
|
|
1969
|
+
M: {};
|
|
1970
|
+
Defaults: {};
|
|
1971
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
1972
|
+
height: {
|
|
1973
|
+
type: import('vue').PropType<number>;
|
|
1974
|
+
};
|
|
1975
|
+
holdstop: {
|
|
1976
|
+
type: import('vue').PropType<boolean>;
|
|
1977
|
+
default: boolean;
|
|
1978
|
+
};
|
|
1979
|
+
startindex: {
|
|
1980
|
+
type: import('vue').PropType<number>;
|
|
1981
|
+
default: number;
|
|
1982
|
+
};
|
|
1983
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, {
|
|
1984
|
+
holdstop: boolean;
|
|
1985
|
+
startindex: number;
|
|
1986
|
+
}>;
|
|
1987
|
+
__isFragment?: never;
|
|
1988
|
+
__isTeleport?: never;
|
|
1989
|
+
__isSuspense?: never;
|
|
1990
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
1527
1991
|
height: {
|
|
1528
1992
|
type: import('vue').PropType<number>;
|
|
1529
1993
|
};
|
|
1530
|
-
|
|
1531
|
-
|
|
1994
|
+
holdstop: {
|
|
1995
|
+
type: import('vue').PropType<boolean>;
|
|
1996
|
+
default: boolean;
|
|
1997
|
+
};
|
|
1998
|
+
startindex: {
|
|
1532
1999
|
type: import('vue').PropType<number>;
|
|
2000
|
+
default: number;
|
|
2001
|
+
};
|
|
2002
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
2003
|
+
holdstop: boolean;
|
|
2004
|
+
startindex: number;
|
|
2005
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
2006
|
+
$slots: Readonly<{
|
|
2007
|
+
default: () => import('./types/types').MyVNode[];
|
|
2008
|
+
}> & {
|
|
2009
|
+
default: () => import('./types/types').MyVNode[];
|
|
1533
2010
|
};
|
|
1534
|
-
}
|
|
2011
|
+
});
|
|
1535
2012
|
declare const LibCarouselItem: {
|
|
1536
2013
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1537
2014
|
P: {};
|
|
@@ -1555,17 +2032,17 @@ declare const LibSwitch: import('vue').DefineComponent<import('vue').ExtractProp
|
|
|
1555
2032
|
required: true;
|
|
1556
2033
|
default: boolean;
|
|
1557
2034
|
};
|
|
1558
|
-
|
|
2035
|
+
checkedLabel: {
|
|
1559
2036
|
type: import('vue').PropType<string>;
|
|
1560
2037
|
};
|
|
1561
|
-
|
|
2038
|
+
uncheckedLabel: {
|
|
1562
2039
|
type: import('vue').PropType<string>;
|
|
1563
2040
|
};
|
|
1564
|
-
|
|
2041
|
+
checkedColor: {
|
|
1565
2042
|
type: import('vue').PropType<string>;
|
|
1566
2043
|
default: string;
|
|
1567
2044
|
};
|
|
1568
|
-
|
|
2045
|
+
uncheckedColor: {
|
|
1569
2046
|
type: import('vue').PropType<string>;
|
|
1570
2047
|
default: string;
|
|
1571
2048
|
};
|
|
@@ -1578,17 +2055,17 @@ declare const LibSwitch: import('vue').DefineComponent<import('vue').ExtractProp
|
|
|
1578
2055
|
required: true;
|
|
1579
2056
|
default: boolean;
|
|
1580
2057
|
};
|
|
1581
|
-
|
|
2058
|
+
checkedLabel: {
|
|
1582
2059
|
type: import('vue').PropType<string>;
|
|
1583
2060
|
};
|
|
1584
|
-
|
|
2061
|
+
uncheckedLabel: {
|
|
1585
2062
|
type: import('vue').PropType<string>;
|
|
1586
2063
|
};
|
|
1587
|
-
|
|
2064
|
+
checkedColor: {
|
|
1588
2065
|
type: import('vue').PropType<string>;
|
|
1589
2066
|
default: string;
|
|
1590
2067
|
};
|
|
1591
|
-
|
|
2068
|
+
uncheckedColor: {
|
|
1592
2069
|
type: import('vue').PropType<string>;
|
|
1593
2070
|
default: string;
|
|
1594
2071
|
};
|
|
@@ -1597,66 +2074,20 @@ declare const LibSwitch: import('vue').DefineComponent<import('vue').ExtractProp
|
|
|
1597
2074
|
onSwitchChange?: ((...args: any[]) => any) | undefined;
|
|
1598
2075
|
}>, {
|
|
1599
2076
|
modelValue: boolean;
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1603
|
-
declare const LibTree: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1604
|
-
data: {
|
|
1605
|
-
type: import('vue').PropType<any[]>;
|
|
1606
|
-
required: true;
|
|
1607
|
-
};
|
|
1608
|
-
lazy: {
|
|
1609
|
-
type: import('vue').PropType<boolean>;
|
|
1610
|
-
default: boolean;
|
|
1611
|
-
};
|
|
1612
|
-
nodeKey: {
|
|
1613
|
-
type: import('vue').PropType<string>;
|
|
1614
|
-
required: true;
|
|
1615
|
-
};
|
|
1616
|
-
defaultExpandAll: {
|
|
1617
|
-
type: import('vue').PropType<boolean>;
|
|
1618
|
-
default: boolean;
|
|
1619
|
-
};
|
|
1620
|
-
defaultCheckedKeys: {
|
|
1621
|
-
type: import('vue').PropType<(string | number)[]>;
|
|
1622
|
-
};
|
|
1623
|
-
}>, {
|
|
1624
|
-
getCheckedKeys: (leafOnly?: boolean) => any[];
|
|
1625
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1626
|
-
data: {
|
|
1627
|
-
type: import('vue').PropType<any[]>;
|
|
1628
|
-
required: true;
|
|
1629
|
-
};
|
|
1630
|
-
lazy: {
|
|
1631
|
-
type: import('vue').PropType<boolean>;
|
|
1632
|
-
default: boolean;
|
|
1633
|
-
};
|
|
1634
|
-
nodeKey: {
|
|
1635
|
-
type: import('vue').PropType<string>;
|
|
1636
|
-
required: true;
|
|
1637
|
-
};
|
|
1638
|
-
defaultExpandAll: {
|
|
1639
|
-
type: import('vue').PropType<boolean>;
|
|
1640
|
-
default: boolean;
|
|
1641
|
-
};
|
|
1642
|
-
defaultCheckedKeys: {
|
|
1643
|
-
type: import('vue').PropType<(string | number)[]>;
|
|
1644
|
-
};
|
|
1645
|
-
}>> & Readonly<{}>, {
|
|
1646
|
-
lazy: boolean;
|
|
1647
|
-
defaultExpandAll: boolean;
|
|
2077
|
+
checkedColor: string;
|
|
2078
|
+
uncheckedColor: string;
|
|
1648
2079
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1649
2080
|
declare const _default: {
|
|
1650
2081
|
install(app: App): void;
|
|
1651
2082
|
};
|
|
1652
2083
|
export default _default;
|
|
1653
|
-
export { LibDialog, LibForm, LibFormLabel, LibInput, LibSelect, LibSelectOption, LibTable, LibTableItem, LibImage, LibDatePicker, LibDatePickerRange, LibMenu, LibPagination, LibBadge, LibPopover, LibNumberInput, LibRadioBox, LibRadioGroup, LibCheckGroup, LibCheckBox, LibUpload, LibTabs, LibTabsPane, LibScrollBar, LibMessage, LibAlert, LibLoad,
|
|
2084
|
+
export { LibDialog, LibForm, LibFormLabel, LibInput, LibSelect, LibSelectOption, LibTable, LibTableItem, LibImage, LibDatePicker, LibDatePickerRange, LibMenu, LibPagination, LibBadge, LibPopover, LibNumberInput, LibRadioBox, LibRadioGroup, LibCheckGroup, LibCheckBox, LibUpload, LibTabs, LibTabsPane, LibScrollBar, LibMessage, LibAlert, LibLoad, createScrollDirective, LibCarousel, LibCarouselItem, LibSwitch, };
|
|
1654
2085
|
declare module '@vue/runtime-core' {
|
|
1655
2086
|
interface ComponentCustomProperties {
|
|
1656
2087
|
$alert: typeof LibAlert;
|
|
1657
2088
|
$message: typeof LibMessage;
|
|
1658
2089
|
LibLoad: typeof LibLoad;
|
|
1659
|
-
|
|
2090
|
+
createScrollDirective: typeof createScrollDirective;
|
|
1660
2091
|
LibDialog: typeof LibDialog;
|
|
1661
2092
|
LibForm: typeof LibForm;
|
|
1662
2093
|
LibFormLabel: typeof LibFormLabel;
|
|
@@ -1683,6 +2114,5 @@ declare module '@vue/runtime-core' {
|
|
|
1683
2114
|
LibCarousel: typeof LibCarousel;
|
|
1684
2115
|
LibCarouselItem: typeof LibCarouselItem;
|
|
1685
2116
|
LibSwitch: typeof LibSwitch;
|
|
1686
|
-
LibTree: typeof LibTree;
|
|
1687
2117
|
}
|
|
1688
2118
|
}
|