ra-element 0.1.53 → 0.1.56
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/docs/ra-upload.md +1 -1
- package/lib/components/ra-button/index.vue.d.ts +301 -1
- package/lib/components/ra-checkbox-group/index.vue.d.ts +219 -1
- package/lib/components/ra-date-picker/index.vue.d.ts +562 -1
- package/lib/components/ra-dialog/index.vue.d.ts +516 -1
- package/lib/components/ra-dialog-select/index.vue.d.ts +1 -1
- package/lib/components/ra-input/index.vue.d.ts +543 -12
- package/lib/components/ra-pagination/index.vue.d.ts +244 -1
- package/lib/components/ra-radio-group/index.vue.d.ts +235 -1
- package/lib/components/ra-table/component/pagination-group.vue.d.ts +1 -1
- package/lib/components/ra-table/component/table-column-item.vue.d.ts +29 -0
- package/lib/components/ra-table/component/top-module.vue.d.ts +85 -0
- package/lib/components/ra-tree-select/index.vue.d.ts +99 -1
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +1880 -9933
- package/lib/ra-element.es.js.map +1 -1
- package/lib/ra-element.umd.js +1 -18
- package/lib/ra-element.umd.js.map +1 -1
- package/package.json +1 -1
package/docs/ra-upload.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
| name | type | desc | default | required |
|
|
6
6
|
| ---- | ---- | ---- | ------- | -------- |
|
|
7
|
-
| action | String | 上传地址 | '
|
|
7
|
+
| action | String | 上传地址 | '' | |
|
|
8
8
|
| modelValue | Array as PropType<UploadFileGroup[]> | 默认文件列表 | [] | |
|
|
9
9
|
| limit | Number | 最大上传数量 | 5 | |
|
|
10
10
|
| multiple | Boolean | 是否支持多选 | false | |
|
|
@@ -321,7 +321,307 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
321
321
|
default: string;
|
|
322
322
|
};
|
|
323
323
|
}>, {
|
|
324
|
-
component:
|
|
324
|
+
component: Readonly<import('vue').ShallowRef<({
|
|
325
|
+
$: import('vue').ComponentInternalInstance;
|
|
326
|
+
$data: {};
|
|
327
|
+
$props: Partial<{
|
|
328
|
+
readonly link: boolean;
|
|
329
|
+
readonly circle: boolean;
|
|
330
|
+
readonly text: boolean;
|
|
331
|
+
readonly disabled: boolean;
|
|
332
|
+
readonly round: boolean;
|
|
333
|
+
readonly dark: boolean;
|
|
334
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
335
|
+
readonly bg: boolean;
|
|
336
|
+
readonly loading: boolean;
|
|
337
|
+
readonly autofocus: boolean;
|
|
338
|
+
readonly tag: string | import('vue').Component;
|
|
339
|
+
readonly plain: boolean;
|
|
340
|
+
readonly autoInsertSpace: boolean;
|
|
341
|
+
readonly nativeType: "button" | "reset" | "submit";
|
|
342
|
+
readonly loadingIcon: string | import('vue').Component;
|
|
343
|
+
}> & Omit<{
|
|
344
|
+
readonly disabled: boolean;
|
|
345
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
346
|
+
readonly link: boolean;
|
|
347
|
+
readonly circle: boolean;
|
|
348
|
+
readonly nativeType: "button" | "reset" | "submit";
|
|
349
|
+
readonly loading: boolean;
|
|
350
|
+
readonly bg: boolean;
|
|
351
|
+
readonly autofocus: boolean;
|
|
352
|
+
readonly dark: boolean;
|
|
353
|
+
readonly tag: string | import('vue').Component;
|
|
354
|
+
readonly text?: boolean | undefined;
|
|
355
|
+
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
356
|
+
readonly icon?: (string | import('vue').Component) | undefined;
|
|
357
|
+
readonly loadingIcon?: (string | import('vue').Component) | undefined;
|
|
358
|
+
readonly plain?: boolean | undefined;
|
|
359
|
+
readonly round?: boolean | undefined;
|
|
360
|
+
readonly color?: string | undefined;
|
|
361
|
+
readonly autoInsertSpace?: boolean | undefined;
|
|
362
|
+
onClick?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
363
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "type" | "link" | "circle" | "text" | "nativeType" | "loading" | "loadingIcon" | "plain" | "bg" | "autofocus" | "round" | "dark" | "autoInsertSpace" | "tag">;
|
|
364
|
+
$attrs: {
|
|
365
|
+
[x: string]: unknown;
|
|
366
|
+
};
|
|
367
|
+
$refs: {
|
|
368
|
+
[x: string]: unknown;
|
|
369
|
+
};
|
|
370
|
+
$slots: Readonly<{
|
|
371
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
372
|
+
}>;
|
|
373
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
374
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
375
|
+
$host: Element | null;
|
|
376
|
+
$emit: (event: "click", evt: MouseEvent) => void;
|
|
377
|
+
$el: any;
|
|
378
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
379
|
+
readonly size: {
|
|
380
|
+
readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
381
|
+
readonly required: false;
|
|
382
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
383
|
+
__epPropKey: true;
|
|
384
|
+
};
|
|
385
|
+
readonly disabled: BooleanConstructor;
|
|
386
|
+
readonly type: {
|
|
387
|
+
readonly type: import('vue').PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
388
|
+
readonly required: false;
|
|
389
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
390
|
+
__epPropKey: true;
|
|
391
|
+
} & {
|
|
392
|
+
readonly default: "";
|
|
393
|
+
};
|
|
394
|
+
readonly icon: {
|
|
395
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
396
|
+
readonly required: false;
|
|
397
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
398
|
+
__epPropKey: true;
|
|
399
|
+
};
|
|
400
|
+
readonly nativeType: {
|
|
401
|
+
readonly type: import('vue').PropType<"button" | "reset" | "submit">;
|
|
402
|
+
readonly required: false;
|
|
403
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
404
|
+
__epPropKey: true;
|
|
405
|
+
} & {
|
|
406
|
+
readonly default: "button";
|
|
407
|
+
};
|
|
408
|
+
readonly loading: BooleanConstructor;
|
|
409
|
+
readonly loadingIcon: {
|
|
410
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
411
|
+
readonly required: false;
|
|
412
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
413
|
+
__epPropKey: true;
|
|
414
|
+
} & {
|
|
415
|
+
readonly default: () => any;
|
|
416
|
+
};
|
|
417
|
+
readonly plain: {
|
|
418
|
+
readonly type: import('vue').PropType<boolean>;
|
|
419
|
+
readonly required: false;
|
|
420
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
421
|
+
__epPropKey: true;
|
|
422
|
+
} & {
|
|
423
|
+
readonly default: undefined;
|
|
424
|
+
};
|
|
425
|
+
readonly text: {
|
|
426
|
+
readonly type: import('vue').PropType<boolean>;
|
|
427
|
+
readonly required: false;
|
|
428
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
429
|
+
__epPropKey: true;
|
|
430
|
+
} & {
|
|
431
|
+
readonly default: undefined;
|
|
432
|
+
};
|
|
433
|
+
readonly link: BooleanConstructor;
|
|
434
|
+
readonly bg: BooleanConstructor;
|
|
435
|
+
readonly autofocus: BooleanConstructor;
|
|
436
|
+
readonly round: {
|
|
437
|
+
readonly type: import('vue').PropType<boolean>;
|
|
438
|
+
readonly required: false;
|
|
439
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
440
|
+
__epPropKey: true;
|
|
441
|
+
} & {
|
|
442
|
+
readonly default: undefined;
|
|
443
|
+
};
|
|
444
|
+
readonly circle: BooleanConstructor;
|
|
445
|
+
readonly color: StringConstructor;
|
|
446
|
+
readonly dark: BooleanConstructor;
|
|
447
|
+
readonly autoInsertSpace: {
|
|
448
|
+
readonly type: import('vue').PropType<boolean>;
|
|
449
|
+
readonly required: false;
|
|
450
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
451
|
+
__epPropKey: true;
|
|
452
|
+
} & {
|
|
453
|
+
readonly default: undefined;
|
|
454
|
+
};
|
|
455
|
+
readonly tag: {
|
|
456
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
457
|
+
readonly required: false;
|
|
458
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
459
|
+
__epPropKey: true;
|
|
460
|
+
} & {
|
|
461
|
+
readonly default: "button";
|
|
462
|
+
};
|
|
463
|
+
}>> & {
|
|
464
|
+
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
465
|
+
}, {
|
|
466
|
+
ref: import('vue').Ref<HTMLButtonElement | undefined>;
|
|
467
|
+
size: import('vue').ComputedRef<"" | "small" | "default" | "large">;
|
|
468
|
+
type: import('vue').ComputedRef<string>;
|
|
469
|
+
disabled: import('vue').ComputedRef<boolean>;
|
|
470
|
+
shouldAddSpace: import('vue').ComputedRef<boolean>;
|
|
471
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
472
|
+
click: (evt: MouseEvent) => void;
|
|
473
|
+
}, string, {
|
|
474
|
+
readonly link: boolean;
|
|
475
|
+
readonly circle: boolean;
|
|
476
|
+
readonly text: boolean;
|
|
477
|
+
readonly disabled: boolean;
|
|
478
|
+
readonly round: boolean;
|
|
479
|
+
readonly dark: boolean;
|
|
480
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
481
|
+
readonly bg: boolean;
|
|
482
|
+
readonly loading: boolean;
|
|
483
|
+
readonly autofocus: boolean;
|
|
484
|
+
readonly tag: string | import('vue').Component;
|
|
485
|
+
readonly plain: boolean;
|
|
486
|
+
readonly autoInsertSpace: boolean;
|
|
487
|
+
readonly nativeType: "button" | "reset" | "submit";
|
|
488
|
+
readonly loadingIcon: string | import('vue').Component;
|
|
489
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
490
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
491
|
+
created?: (() => void) | (() => void)[];
|
|
492
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
493
|
+
mounted?: (() => void) | (() => void)[];
|
|
494
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
495
|
+
updated?: (() => void) | (() => void)[];
|
|
496
|
+
activated?: (() => void) | (() => void)[];
|
|
497
|
+
deactivated?: (() => void) | (() => void)[];
|
|
498
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
499
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
500
|
+
destroyed?: (() => void) | (() => void)[];
|
|
501
|
+
unmounted?: (() => void) | (() => void)[];
|
|
502
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
503
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
504
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
505
|
+
};
|
|
506
|
+
$forceUpdate: () => void;
|
|
507
|
+
$nextTick: typeof import('vue').nextTick;
|
|
508
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
509
|
+
} & Readonly<{
|
|
510
|
+
readonly link: boolean;
|
|
511
|
+
readonly circle: boolean;
|
|
512
|
+
readonly text: boolean;
|
|
513
|
+
readonly disabled: boolean;
|
|
514
|
+
readonly round: boolean;
|
|
515
|
+
readonly dark: boolean;
|
|
516
|
+
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
517
|
+
readonly bg: boolean;
|
|
518
|
+
readonly loading: boolean;
|
|
519
|
+
readonly autofocus: boolean;
|
|
520
|
+
readonly tag: string | import('vue').Component;
|
|
521
|
+
readonly plain: boolean;
|
|
522
|
+
readonly autoInsertSpace: boolean;
|
|
523
|
+
readonly nativeType: "button" | "reset" | "submit";
|
|
524
|
+
readonly loadingIcon: string | import('vue').Component;
|
|
525
|
+
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
526
|
+
readonly size: {
|
|
527
|
+
readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
528
|
+
readonly required: false;
|
|
529
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
530
|
+
__epPropKey: true;
|
|
531
|
+
};
|
|
532
|
+
readonly disabled: BooleanConstructor;
|
|
533
|
+
readonly type: {
|
|
534
|
+
readonly type: import('vue').PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
535
|
+
readonly required: false;
|
|
536
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
537
|
+
__epPropKey: true;
|
|
538
|
+
} & {
|
|
539
|
+
readonly default: "";
|
|
540
|
+
};
|
|
541
|
+
readonly icon: {
|
|
542
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
543
|
+
readonly required: false;
|
|
544
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
545
|
+
__epPropKey: true;
|
|
546
|
+
};
|
|
547
|
+
readonly nativeType: {
|
|
548
|
+
readonly type: import('vue').PropType<"button" | "reset" | "submit">;
|
|
549
|
+
readonly required: false;
|
|
550
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
551
|
+
__epPropKey: true;
|
|
552
|
+
} & {
|
|
553
|
+
readonly default: "button";
|
|
554
|
+
};
|
|
555
|
+
readonly loading: BooleanConstructor;
|
|
556
|
+
readonly loadingIcon: {
|
|
557
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
558
|
+
readonly required: false;
|
|
559
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
560
|
+
__epPropKey: true;
|
|
561
|
+
} & {
|
|
562
|
+
readonly default: () => any;
|
|
563
|
+
};
|
|
564
|
+
readonly plain: {
|
|
565
|
+
readonly type: import('vue').PropType<boolean>;
|
|
566
|
+
readonly required: false;
|
|
567
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
568
|
+
__epPropKey: true;
|
|
569
|
+
} & {
|
|
570
|
+
readonly default: undefined;
|
|
571
|
+
};
|
|
572
|
+
readonly text: {
|
|
573
|
+
readonly type: import('vue').PropType<boolean>;
|
|
574
|
+
readonly required: false;
|
|
575
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
576
|
+
__epPropKey: true;
|
|
577
|
+
} & {
|
|
578
|
+
readonly default: undefined;
|
|
579
|
+
};
|
|
580
|
+
readonly link: BooleanConstructor;
|
|
581
|
+
readonly bg: BooleanConstructor;
|
|
582
|
+
readonly autofocus: BooleanConstructor;
|
|
583
|
+
readonly round: {
|
|
584
|
+
readonly type: import('vue').PropType<boolean>;
|
|
585
|
+
readonly required: false;
|
|
586
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
587
|
+
__epPropKey: true;
|
|
588
|
+
} & {
|
|
589
|
+
readonly default: undefined;
|
|
590
|
+
};
|
|
591
|
+
readonly circle: BooleanConstructor;
|
|
592
|
+
readonly color: StringConstructor;
|
|
593
|
+
readonly dark: BooleanConstructor;
|
|
594
|
+
readonly autoInsertSpace: {
|
|
595
|
+
readonly type: import('vue').PropType<boolean>;
|
|
596
|
+
readonly required: false;
|
|
597
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
598
|
+
__epPropKey: true;
|
|
599
|
+
} & {
|
|
600
|
+
readonly default: undefined;
|
|
601
|
+
};
|
|
602
|
+
readonly tag: {
|
|
603
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
604
|
+
readonly required: false;
|
|
605
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
606
|
+
__epPropKey: true;
|
|
607
|
+
} & {
|
|
608
|
+
readonly default: "button";
|
|
609
|
+
};
|
|
610
|
+
}>> & {
|
|
611
|
+
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
612
|
+
}, "disabled" | "type" | "link" | "circle" | "text" | "ref" | "size" | "nativeType" | "loading" | "loadingIcon" | "plain" | "bg" | "autofocus" | "round" | "dark" | "autoInsertSpace" | "tag" | "shouldAddSpace"> & import('vue').ShallowUnwrapRef<{
|
|
613
|
+
ref: import('vue').Ref<HTMLButtonElement | undefined>;
|
|
614
|
+
size: import('vue').ComputedRef<"" | "small" | "default" | "large">;
|
|
615
|
+
type: import('vue').ComputedRef<string>;
|
|
616
|
+
disabled: import('vue').ComputedRef<boolean>;
|
|
617
|
+
shouldAddSpace: import('vue').ComputedRef<boolean>;
|
|
618
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
619
|
+
$slots: {
|
|
620
|
+
loading?(_: {}): any;
|
|
621
|
+
icon?(_: {}): any;
|
|
622
|
+
default?(_: {}): any;
|
|
623
|
+
};
|
|
624
|
+
}) | null>>;
|
|
325
625
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
326
626
|
click: (...args: any[]) => void;
|
|
327
627
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -243,7 +243,225 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
243
243
|
default: boolean;
|
|
244
244
|
};
|
|
245
245
|
}>, {
|
|
246
|
-
component:
|
|
246
|
+
component: Readonly<import('vue').ShallowRef<({
|
|
247
|
+
$: import('vue').ComponentInternalInstance;
|
|
248
|
+
$data: {};
|
|
249
|
+
$props: Partial<{
|
|
250
|
+
readonly disabled: boolean;
|
|
251
|
+
readonly props: {
|
|
252
|
+
value?: string;
|
|
253
|
+
label?: string;
|
|
254
|
+
disabled?: string;
|
|
255
|
+
};
|
|
256
|
+
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
257
|
+
readonly validateEvent: boolean;
|
|
258
|
+
readonly tag: string;
|
|
259
|
+
}> & Omit<{
|
|
260
|
+
readonly disabled: boolean;
|
|
261
|
+
readonly props: {
|
|
262
|
+
value?: string;
|
|
263
|
+
label?: string;
|
|
264
|
+
disabled?: string;
|
|
265
|
+
};
|
|
266
|
+
readonly tag: string;
|
|
267
|
+
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
268
|
+
readonly validateEvent: boolean;
|
|
269
|
+
readonly fill?: string | undefined;
|
|
270
|
+
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
271
|
+
readonly options?: import('element-plus').CheckboxOption[] | undefined;
|
|
272
|
+
readonly ariaLabel?: string | undefined;
|
|
273
|
+
readonly min?: number | undefined;
|
|
274
|
+
readonly max?: number | undefined;
|
|
275
|
+
readonly textColor?: string | undefined;
|
|
276
|
+
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined | undefined;
|
|
277
|
+
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined | undefined;
|
|
278
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "props" | "tag" | "modelValue" | "validateEvent">;
|
|
279
|
+
$attrs: {
|
|
280
|
+
[x: string]: unknown;
|
|
281
|
+
};
|
|
282
|
+
$refs: {
|
|
283
|
+
[x: string]: unknown;
|
|
284
|
+
};
|
|
285
|
+
$slots: Readonly<{
|
|
286
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
287
|
+
}>;
|
|
288
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
289
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
290
|
+
$host: Element | null;
|
|
291
|
+
$emit: ((event: "change", val: import('element-plus').CheckboxValueType[]) => void) & ((event: "update:modelValue", val: import('element-plus').CheckboxGroupValueType) => void);
|
|
292
|
+
$el: any;
|
|
293
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
294
|
+
readonly ariaLabel: StringConstructor;
|
|
295
|
+
readonly modelValue: {
|
|
296
|
+
readonly type: PropType<import('element-plus').CheckboxGroupValueType>;
|
|
297
|
+
readonly required: false;
|
|
298
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
299
|
+
__epPropKey: true;
|
|
300
|
+
} & {
|
|
301
|
+
readonly default: () => never[];
|
|
302
|
+
};
|
|
303
|
+
readonly disabled: BooleanConstructor;
|
|
304
|
+
readonly min: NumberConstructor;
|
|
305
|
+
readonly max: NumberConstructor;
|
|
306
|
+
readonly size: {
|
|
307
|
+
readonly type: PropType<"" | "default" | "small" | "large">;
|
|
308
|
+
readonly required: false;
|
|
309
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
310
|
+
__epPropKey: true;
|
|
311
|
+
};
|
|
312
|
+
readonly fill: StringConstructor;
|
|
313
|
+
readonly textColor: StringConstructor;
|
|
314
|
+
readonly tag: {
|
|
315
|
+
readonly type: PropType<string>;
|
|
316
|
+
readonly required: false;
|
|
317
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
318
|
+
__epPropKey: true;
|
|
319
|
+
} & {
|
|
320
|
+
readonly default: "div";
|
|
321
|
+
};
|
|
322
|
+
readonly validateEvent: {
|
|
323
|
+
readonly type: PropType<boolean>;
|
|
324
|
+
readonly required: false;
|
|
325
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
326
|
+
__epPropKey: true;
|
|
327
|
+
} & {
|
|
328
|
+
readonly default: true;
|
|
329
|
+
};
|
|
330
|
+
readonly options: {
|
|
331
|
+
readonly type: PropType<import('element-plus').CheckboxOption[]>;
|
|
332
|
+
readonly required: false;
|
|
333
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
334
|
+
__epPropKey: true;
|
|
335
|
+
};
|
|
336
|
+
readonly props: {
|
|
337
|
+
readonly type: PropType<{
|
|
338
|
+
value?: string;
|
|
339
|
+
label?: string;
|
|
340
|
+
disabled?: string;
|
|
341
|
+
}>;
|
|
342
|
+
readonly required: false;
|
|
343
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
344
|
+
__epPropKey: true;
|
|
345
|
+
} & {
|
|
346
|
+
readonly default: () => Required<{
|
|
347
|
+
value?: string;
|
|
348
|
+
label?: string;
|
|
349
|
+
disabled?: string;
|
|
350
|
+
}>;
|
|
351
|
+
};
|
|
352
|
+
}>> & {
|
|
353
|
+
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined;
|
|
354
|
+
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined;
|
|
355
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
356
|
+
"update:modelValue": (val: import('element-plus').CheckboxGroupValueType) => void;
|
|
357
|
+
change: (val: import('element-plus').CheckboxValueType[]) => void;
|
|
358
|
+
}, string, {
|
|
359
|
+
readonly disabled: boolean;
|
|
360
|
+
readonly props: {
|
|
361
|
+
value?: string;
|
|
362
|
+
label?: string;
|
|
363
|
+
disabled?: string;
|
|
364
|
+
};
|
|
365
|
+
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
366
|
+
readonly validateEvent: boolean;
|
|
367
|
+
readonly tag: string;
|
|
368
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
369
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
370
|
+
created?: (() => void) | (() => void)[];
|
|
371
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
372
|
+
mounted?: (() => void) | (() => void)[];
|
|
373
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
374
|
+
updated?: (() => void) | (() => void)[];
|
|
375
|
+
activated?: (() => void) | (() => void)[];
|
|
376
|
+
deactivated?: (() => void) | (() => void)[];
|
|
377
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
378
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
379
|
+
destroyed?: (() => void) | (() => void)[];
|
|
380
|
+
unmounted?: (() => void) | (() => void)[];
|
|
381
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
382
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
383
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
384
|
+
};
|
|
385
|
+
$forceUpdate: () => void;
|
|
386
|
+
$nextTick: typeof import('vue').nextTick;
|
|
387
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
388
|
+
} & Readonly<{
|
|
389
|
+
readonly disabled: boolean;
|
|
390
|
+
readonly props: {
|
|
391
|
+
value?: string;
|
|
392
|
+
label?: string;
|
|
393
|
+
disabled?: string;
|
|
394
|
+
};
|
|
395
|
+
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
396
|
+
readonly validateEvent: boolean;
|
|
397
|
+
readonly tag: string;
|
|
398
|
+
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
399
|
+
readonly ariaLabel: StringConstructor;
|
|
400
|
+
readonly modelValue: {
|
|
401
|
+
readonly type: PropType<import('element-plus').CheckboxGroupValueType>;
|
|
402
|
+
readonly required: false;
|
|
403
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
404
|
+
__epPropKey: true;
|
|
405
|
+
} & {
|
|
406
|
+
readonly default: () => never[];
|
|
407
|
+
};
|
|
408
|
+
readonly disabled: BooleanConstructor;
|
|
409
|
+
readonly min: NumberConstructor;
|
|
410
|
+
readonly max: NumberConstructor;
|
|
411
|
+
readonly size: {
|
|
412
|
+
readonly type: PropType<"" | "default" | "small" | "large">;
|
|
413
|
+
readonly required: false;
|
|
414
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
415
|
+
__epPropKey: true;
|
|
416
|
+
};
|
|
417
|
+
readonly fill: StringConstructor;
|
|
418
|
+
readonly textColor: StringConstructor;
|
|
419
|
+
readonly tag: {
|
|
420
|
+
readonly type: PropType<string>;
|
|
421
|
+
readonly required: false;
|
|
422
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
423
|
+
__epPropKey: true;
|
|
424
|
+
} & {
|
|
425
|
+
readonly default: "div";
|
|
426
|
+
};
|
|
427
|
+
readonly validateEvent: {
|
|
428
|
+
readonly type: PropType<boolean>;
|
|
429
|
+
readonly required: false;
|
|
430
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
431
|
+
__epPropKey: true;
|
|
432
|
+
} & {
|
|
433
|
+
readonly default: true;
|
|
434
|
+
};
|
|
435
|
+
readonly options: {
|
|
436
|
+
readonly type: PropType<import('element-plus').CheckboxOption[]>;
|
|
437
|
+
readonly required: false;
|
|
438
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
439
|
+
__epPropKey: true;
|
|
440
|
+
};
|
|
441
|
+
readonly props: {
|
|
442
|
+
readonly type: PropType<{
|
|
443
|
+
value?: string;
|
|
444
|
+
label?: string;
|
|
445
|
+
disabled?: string;
|
|
446
|
+
}>;
|
|
447
|
+
readonly required: false;
|
|
448
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
449
|
+
__epPropKey: true;
|
|
450
|
+
} & {
|
|
451
|
+
readonly default: () => Required<{
|
|
452
|
+
value?: string;
|
|
453
|
+
label?: string;
|
|
454
|
+
disabled?: string;
|
|
455
|
+
}>;
|
|
456
|
+
};
|
|
457
|
+
}>> & {
|
|
458
|
+
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined;
|
|
459
|
+
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined;
|
|
460
|
+
}, "disabled" | "props" | "tag" | "modelValue" | "validateEvent"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
461
|
+
$slots: {
|
|
462
|
+
default?(_: {}): any;
|
|
463
|
+
};
|
|
464
|
+
}) | null>>;
|
|
247
465
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
248
466
|
options: {
|
|
249
467
|
type: PropType<SelectOptions[]>;
|