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
|
@@ -548,7 +548,522 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
548
548
|
default: boolean;
|
|
549
549
|
};
|
|
550
550
|
}>, {
|
|
551
|
-
component:
|
|
551
|
+
component: Readonly<import('vue').ShallowRef<({
|
|
552
|
+
$: import('vue').ComponentInternalInstance;
|
|
553
|
+
$data: {};
|
|
554
|
+
$props: Partial<{
|
|
555
|
+
readonly title: string;
|
|
556
|
+
readonly center: boolean;
|
|
557
|
+
readonly overflow: boolean;
|
|
558
|
+
readonly transition: import('element-plus').DialogTransition;
|
|
559
|
+
readonly modelValue: boolean;
|
|
560
|
+
readonly ariaLevel: string;
|
|
561
|
+
readonly appendTo: string | HTMLElement;
|
|
562
|
+
readonly alignCenter: boolean;
|
|
563
|
+
readonly draggable: boolean;
|
|
564
|
+
readonly showClose: boolean;
|
|
565
|
+
readonly fullscreen: boolean;
|
|
566
|
+
readonly closeOnClickModal: boolean;
|
|
567
|
+
readonly closeOnPressEscape: boolean;
|
|
568
|
+
readonly lockScroll: boolean;
|
|
569
|
+
readonly modal: boolean;
|
|
570
|
+
readonly openDelay: number;
|
|
571
|
+
readonly closeDelay: number;
|
|
572
|
+
readonly headerAriaLevel: string;
|
|
573
|
+
readonly appendToBody: boolean;
|
|
574
|
+
readonly destroyOnClose: boolean;
|
|
575
|
+
readonly modalPenetrable: boolean;
|
|
576
|
+
readonly trapFocus: boolean;
|
|
577
|
+
}> & Omit<{
|
|
578
|
+
readonly title: string;
|
|
579
|
+
readonly modelValue: boolean;
|
|
580
|
+
readonly appendToBody: boolean;
|
|
581
|
+
readonly destroyOnClose: boolean;
|
|
582
|
+
readonly appendTo: string | HTMLElement;
|
|
583
|
+
readonly closeOnClickModal: boolean;
|
|
584
|
+
readonly closeOnPressEscape: boolean;
|
|
585
|
+
readonly lockScroll: boolean;
|
|
586
|
+
readonly modal: boolean;
|
|
587
|
+
readonly modalPenetrable: boolean;
|
|
588
|
+
readonly openDelay: number;
|
|
589
|
+
readonly closeDelay: number;
|
|
590
|
+
readonly trapFocus: boolean;
|
|
591
|
+
readonly headerAriaLevel: string;
|
|
592
|
+
readonly center: boolean;
|
|
593
|
+
readonly fullscreen: boolean;
|
|
594
|
+
readonly showClose: boolean;
|
|
595
|
+
readonly ariaLevel: string;
|
|
596
|
+
readonly overflow?: boolean | undefined;
|
|
597
|
+
readonly width?: (string | number) | undefined;
|
|
598
|
+
readonly transition?: import('element-plus').DialogTransition | undefined;
|
|
599
|
+
readonly top?: string | undefined;
|
|
600
|
+
readonly draggable?: boolean | undefined;
|
|
601
|
+
readonly beforeClose?: import('element-plus').DialogBeforeCloseFn | undefined;
|
|
602
|
+
readonly modalClass?: string | undefined;
|
|
603
|
+
readonly headerClass?: string | undefined;
|
|
604
|
+
readonly bodyClass?: string | undefined;
|
|
605
|
+
readonly footerClass?: string | undefined;
|
|
606
|
+
readonly zIndex?: number | undefined;
|
|
607
|
+
readonly alignCenter?: boolean | undefined;
|
|
608
|
+
readonly closeIcon?: (string | import('vue').Component) | undefined;
|
|
609
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined | undefined;
|
|
610
|
+
onOpen?: (() => any) | undefined | undefined;
|
|
611
|
+
onClose?: (() => any) | undefined | undefined;
|
|
612
|
+
onOpened?: (() => any) | undefined | undefined;
|
|
613
|
+
onClosed?: (() => any) | undefined | undefined;
|
|
614
|
+
onOpenAutoFocus?: (() => any) | undefined | undefined;
|
|
615
|
+
onCloseAutoFocus?: (() => any) | undefined | undefined;
|
|
616
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "title" | "overflow" | "transition" | "modelValue" | "appendToBody" | "draggable" | "destroyOnClose" | "appendTo" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "fullscreen" | "showClose" | "ariaLevel">;
|
|
617
|
+
$attrs: {
|
|
618
|
+
[x: string]: unknown;
|
|
619
|
+
};
|
|
620
|
+
$refs: {
|
|
621
|
+
[x: string]: unknown;
|
|
622
|
+
};
|
|
623
|
+
$slots: Readonly<{
|
|
624
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
625
|
+
}>;
|
|
626
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
627
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
628
|
+
$host: Element | null;
|
|
629
|
+
$emit: ((event: "close") => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "open") => void) & ((event: "opened") => void) & ((event: "closed") => void) & ((event: "openAutoFocus") => void) & ((event: "closeAutoFocus") => void);
|
|
630
|
+
$el: any;
|
|
631
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
632
|
+
readonly appendToBody: BooleanConstructor;
|
|
633
|
+
readonly appendTo: {
|
|
634
|
+
readonly type: import('vue').PropType<string | HTMLElement>;
|
|
635
|
+
readonly required: false;
|
|
636
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
637
|
+
__epPropKey: true;
|
|
638
|
+
} & {
|
|
639
|
+
readonly default: "body";
|
|
640
|
+
};
|
|
641
|
+
readonly beforeClose: {
|
|
642
|
+
readonly type: import('vue').PropType<import('element-plus').DialogBeforeCloseFn>;
|
|
643
|
+
readonly required: false;
|
|
644
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
645
|
+
__epPropKey: true;
|
|
646
|
+
};
|
|
647
|
+
readonly destroyOnClose: BooleanConstructor;
|
|
648
|
+
readonly closeOnClickModal: {
|
|
649
|
+
readonly type: import('vue').PropType<boolean>;
|
|
650
|
+
readonly required: false;
|
|
651
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
652
|
+
__epPropKey: true;
|
|
653
|
+
} & {
|
|
654
|
+
readonly default: true;
|
|
655
|
+
};
|
|
656
|
+
readonly closeOnPressEscape: {
|
|
657
|
+
readonly type: import('vue').PropType<boolean>;
|
|
658
|
+
readonly required: false;
|
|
659
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
660
|
+
__epPropKey: true;
|
|
661
|
+
} & {
|
|
662
|
+
readonly default: true;
|
|
663
|
+
};
|
|
664
|
+
readonly lockScroll: {
|
|
665
|
+
readonly type: import('vue').PropType<boolean>;
|
|
666
|
+
readonly required: false;
|
|
667
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
668
|
+
__epPropKey: true;
|
|
669
|
+
} & {
|
|
670
|
+
readonly default: true;
|
|
671
|
+
};
|
|
672
|
+
readonly modal: {
|
|
673
|
+
readonly type: import('vue').PropType<boolean>;
|
|
674
|
+
readonly required: false;
|
|
675
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
676
|
+
__epPropKey: true;
|
|
677
|
+
} & {
|
|
678
|
+
readonly default: true;
|
|
679
|
+
};
|
|
680
|
+
readonly modalPenetrable: BooleanConstructor;
|
|
681
|
+
readonly openDelay: {
|
|
682
|
+
readonly type: import('vue').PropType<number>;
|
|
683
|
+
readonly required: false;
|
|
684
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
685
|
+
__epPropKey: true;
|
|
686
|
+
} & {
|
|
687
|
+
readonly default: 0;
|
|
688
|
+
};
|
|
689
|
+
readonly closeDelay: {
|
|
690
|
+
readonly type: import('vue').PropType<number>;
|
|
691
|
+
readonly required: false;
|
|
692
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
693
|
+
__epPropKey: true;
|
|
694
|
+
} & {
|
|
695
|
+
readonly default: 0;
|
|
696
|
+
};
|
|
697
|
+
readonly top: {
|
|
698
|
+
readonly type: import('vue').PropType<string>;
|
|
699
|
+
readonly required: false;
|
|
700
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
701
|
+
__epPropKey: true;
|
|
702
|
+
};
|
|
703
|
+
readonly modelValue: BooleanConstructor;
|
|
704
|
+
readonly modalClass: StringConstructor;
|
|
705
|
+
readonly headerClass: StringConstructor;
|
|
706
|
+
readonly bodyClass: StringConstructor;
|
|
707
|
+
readonly footerClass: StringConstructor;
|
|
708
|
+
readonly width: {
|
|
709
|
+
readonly type: import('vue').PropType<string | number>;
|
|
710
|
+
readonly required: false;
|
|
711
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
712
|
+
__epPropKey: true;
|
|
713
|
+
};
|
|
714
|
+
readonly zIndex: {
|
|
715
|
+
readonly type: import('vue').PropType<number>;
|
|
716
|
+
readonly required: false;
|
|
717
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
718
|
+
__epPropKey: true;
|
|
719
|
+
};
|
|
720
|
+
readonly trapFocus: BooleanConstructor;
|
|
721
|
+
readonly headerAriaLevel: {
|
|
722
|
+
readonly type: import('vue').PropType<string>;
|
|
723
|
+
readonly required: false;
|
|
724
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
725
|
+
__epPropKey: true;
|
|
726
|
+
} & {
|
|
727
|
+
readonly default: "2";
|
|
728
|
+
};
|
|
729
|
+
readonly transition: {
|
|
730
|
+
readonly type: import('vue').PropType<import('element-plus').DialogTransition>;
|
|
731
|
+
readonly required: false;
|
|
732
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
733
|
+
__epPropKey: true;
|
|
734
|
+
} & {
|
|
735
|
+
readonly default: undefined;
|
|
736
|
+
};
|
|
737
|
+
readonly center: BooleanConstructor;
|
|
738
|
+
readonly alignCenter: {
|
|
739
|
+
readonly type: import('vue').PropType<boolean>;
|
|
740
|
+
readonly required: false;
|
|
741
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
742
|
+
__epPropKey: true;
|
|
743
|
+
} & {
|
|
744
|
+
readonly default: undefined;
|
|
745
|
+
};
|
|
746
|
+
readonly closeIcon: {
|
|
747
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
748
|
+
readonly required: false;
|
|
749
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
750
|
+
__epPropKey: true;
|
|
751
|
+
};
|
|
752
|
+
readonly draggable: {
|
|
753
|
+
readonly type: import('vue').PropType<boolean>;
|
|
754
|
+
readonly required: false;
|
|
755
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
756
|
+
__epPropKey: true;
|
|
757
|
+
} & {
|
|
758
|
+
readonly default: undefined;
|
|
759
|
+
};
|
|
760
|
+
readonly overflow: {
|
|
761
|
+
readonly type: import('vue').PropType<boolean>;
|
|
762
|
+
readonly required: false;
|
|
763
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
764
|
+
__epPropKey: true;
|
|
765
|
+
} & {
|
|
766
|
+
readonly default: undefined;
|
|
767
|
+
};
|
|
768
|
+
readonly fullscreen: BooleanConstructor;
|
|
769
|
+
readonly showClose: {
|
|
770
|
+
readonly type: import('vue').PropType<boolean>;
|
|
771
|
+
readonly required: false;
|
|
772
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
773
|
+
__epPropKey: true;
|
|
774
|
+
} & {
|
|
775
|
+
readonly default: true;
|
|
776
|
+
};
|
|
777
|
+
readonly title: {
|
|
778
|
+
readonly type: import('vue').PropType<string>;
|
|
779
|
+
readonly required: false;
|
|
780
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
781
|
+
__epPropKey: true;
|
|
782
|
+
} & {
|
|
783
|
+
readonly default: "";
|
|
784
|
+
};
|
|
785
|
+
readonly ariaLevel: {
|
|
786
|
+
readonly type: import('vue').PropType<string>;
|
|
787
|
+
readonly required: false;
|
|
788
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
789
|
+
__epPropKey: true;
|
|
790
|
+
} & {
|
|
791
|
+
readonly default: "2";
|
|
792
|
+
};
|
|
793
|
+
}>> & {
|
|
794
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
795
|
+
onOpen?: (() => any) | undefined;
|
|
796
|
+
onClose?: (() => any) | undefined;
|
|
797
|
+
onOpened?: (() => any) | undefined;
|
|
798
|
+
onClosed?: (() => any) | undefined;
|
|
799
|
+
onOpenAutoFocus?: (() => any) | undefined;
|
|
800
|
+
onCloseAutoFocus?: (() => any) | undefined;
|
|
801
|
+
}, {
|
|
802
|
+
visible: import('vue').Ref<boolean>;
|
|
803
|
+
dialogContentRef: import('vue').Ref<any>;
|
|
804
|
+
resetPosition: () => void;
|
|
805
|
+
handleClose: () => void;
|
|
806
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
807
|
+
open: () => void;
|
|
808
|
+
"update:modelValue": (value: boolean) => void;
|
|
809
|
+
close: () => void;
|
|
810
|
+
opened: () => void;
|
|
811
|
+
closed: () => void;
|
|
812
|
+
openAutoFocus: () => void;
|
|
813
|
+
closeAutoFocus: () => void;
|
|
814
|
+
}, string, {
|
|
815
|
+
readonly title: string;
|
|
816
|
+
readonly center: boolean;
|
|
817
|
+
readonly overflow: boolean;
|
|
818
|
+
readonly transition: import('element-plus').DialogTransition;
|
|
819
|
+
readonly modelValue: boolean;
|
|
820
|
+
readonly ariaLevel: string;
|
|
821
|
+
readonly appendTo: string | HTMLElement;
|
|
822
|
+
readonly alignCenter: boolean;
|
|
823
|
+
readonly draggable: boolean;
|
|
824
|
+
readonly showClose: boolean;
|
|
825
|
+
readonly fullscreen: boolean;
|
|
826
|
+
readonly closeOnClickModal: boolean;
|
|
827
|
+
readonly closeOnPressEscape: boolean;
|
|
828
|
+
readonly lockScroll: boolean;
|
|
829
|
+
readonly modal: boolean;
|
|
830
|
+
readonly openDelay: number;
|
|
831
|
+
readonly closeDelay: number;
|
|
832
|
+
readonly headerAriaLevel: string;
|
|
833
|
+
readonly appendToBody: boolean;
|
|
834
|
+
readonly destroyOnClose: boolean;
|
|
835
|
+
readonly modalPenetrable: boolean;
|
|
836
|
+
readonly trapFocus: boolean;
|
|
837
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
838
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
839
|
+
created?: (() => void) | (() => void)[];
|
|
840
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
841
|
+
mounted?: (() => void) | (() => void)[];
|
|
842
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
843
|
+
updated?: (() => void) | (() => void)[];
|
|
844
|
+
activated?: (() => void) | (() => void)[];
|
|
845
|
+
deactivated?: (() => void) | (() => void)[];
|
|
846
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
847
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
848
|
+
destroyed?: (() => void) | (() => void)[];
|
|
849
|
+
unmounted?: (() => void) | (() => void)[];
|
|
850
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
851
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
852
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
853
|
+
};
|
|
854
|
+
$forceUpdate: () => void;
|
|
855
|
+
$nextTick: typeof import('vue').nextTick;
|
|
856
|
+
$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;
|
|
857
|
+
} & Readonly<{
|
|
858
|
+
readonly title: string;
|
|
859
|
+
readonly center: boolean;
|
|
860
|
+
readonly overflow: boolean;
|
|
861
|
+
readonly transition: import('element-plus').DialogTransition;
|
|
862
|
+
readonly modelValue: boolean;
|
|
863
|
+
readonly ariaLevel: string;
|
|
864
|
+
readonly appendTo: string | HTMLElement;
|
|
865
|
+
readonly alignCenter: boolean;
|
|
866
|
+
readonly draggable: boolean;
|
|
867
|
+
readonly showClose: boolean;
|
|
868
|
+
readonly fullscreen: boolean;
|
|
869
|
+
readonly closeOnClickModal: boolean;
|
|
870
|
+
readonly closeOnPressEscape: boolean;
|
|
871
|
+
readonly lockScroll: boolean;
|
|
872
|
+
readonly modal: boolean;
|
|
873
|
+
readonly openDelay: number;
|
|
874
|
+
readonly closeDelay: number;
|
|
875
|
+
readonly headerAriaLevel: string;
|
|
876
|
+
readonly appendToBody: boolean;
|
|
877
|
+
readonly destroyOnClose: boolean;
|
|
878
|
+
readonly modalPenetrable: boolean;
|
|
879
|
+
readonly trapFocus: boolean;
|
|
880
|
+
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
881
|
+
readonly appendToBody: BooleanConstructor;
|
|
882
|
+
readonly appendTo: {
|
|
883
|
+
readonly type: import('vue').PropType<string | HTMLElement>;
|
|
884
|
+
readonly required: false;
|
|
885
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
886
|
+
__epPropKey: true;
|
|
887
|
+
} & {
|
|
888
|
+
readonly default: "body";
|
|
889
|
+
};
|
|
890
|
+
readonly beforeClose: {
|
|
891
|
+
readonly type: import('vue').PropType<import('element-plus').DialogBeforeCloseFn>;
|
|
892
|
+
readonly required: false;
|
|
893
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
894
|
+
__epPropKey: true;
|
|
895
|
+
};
|
|
896
|
+
readonly destroyOnClose: BooleanConstructor;
|
|
897
|
+
readonly closeOnClickModal: {
|
|
898
|
+
readonly type: import('vue').PropType<boolean>;
|
|
899
|
+
readonly required: false;
|
|
900
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
901
|
+
__epPropKey: true;
|
|
902
|
+
} & {
|
|
903
|
+
readonly default: true;
|
|
904
|
+
};
|
|
905
|
+
readonly closeOnPressEscape: {
|
|
906
|
+
readonly type: import('vue').PropType<boolean>;
|
|
907
|
+
readonly required: false;
|
|
908
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
909
|
+
__epPropKey: true;
|
|
910
|
+
} & {
|
|
911
|
+
readonly default: true;
|
|
912
|
+
};
|
|
913
|
+
readonly lockScroll: {
|
|
914
|
+
readonly type: import('vue').PropType<boolean>;
|
|
915
|
+
readonly required: false;
|
|
916
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
917
|
+
__epPropKey: true;
|
|
918
|
+
} & {
|
|
919
|
+
readonly default: true;
|
|
920
|
+
};
|
|
921
|
+
readonly modal: {
|
|
922
|
+
readonly type: import('vue').PropType<boolean>;
|
|
923
|
+
readonly required: false;
|
|
924
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
925
|
+
__epPropKey: true;
|
|
926
|
+
} & {
|
|
927
|
+
readonly default: true;
|
|
928
|
+
};
|
|
929
|
+
readonly modalPenetrable: BooleanConstructor;
|
|
930
|
+
readonly openDelay: {
|
|
931
|
+
readonly type: import('vue').PropType<number>;
|
|
932
|
+
readonly required: false;
|
|
933
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
934
|
+
__epPropKey: true;
|
|
935
|
+
} & {
|
|
936
|
+
readonly default: 0;
|
|
937
|
+
};
|
|
938
|
+
readonly closeDelay: {
|
|
939
|
+
readonly type: import('vue').PropType<number>;
|
|
940
|
+
readonly required: false;
|
|
941
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
942
|
+
__epPropKey: true;
|
|
943
|
+
} & {
|
|
944
|
+
readonly default: 0;
|
|
945
|
+
};
|
|
946
|
+
readonly top: {
|
|
947
|
+
readonly type: import('vue').PropType<string>;
|
|
948
|
+
readonly required: false;
|
|
949
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
950
|
+
__epPropKey: true;
|
|
951
|
+
};
|
|
952
|
+
readonly modelValue: BooleanConstructor;
|
|
953
|
+
readonly modalClass: StringConstructor;
|
|
954
|
+
readonly headerClass: StringConstructor;
|
|
955
|
+
readonly bodyClass: StringConstructor;
|
|
956
|
+
readonly footerClass: StringConstructor;
|
|
957
|
+
readonly width: {
|
|
958
|
+
readonly type: import('vue').PropType<string | number>;
|
|
959
|
+
readonly required: false;
|
|
960
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
961
|
+
__epPropKey: true;
|
|
962
|
+
};
|
|
963
|
+
readonly zIndex: {
|
|
964
|
+
readonly type: import('vue').PropType<number>;
|
|
965
|
+
readonly required: false;
|
|
966
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
967
|
+
__epPropKey: true;
|
|
968
|
+
};
|
|
969
|
+
readonly trapFocus: BooleanConstructor;
|
|
970
|
+
readonly headerAriaLevel: {
|
|
971
|
+
readonly type: import('vue').PropType<string>;
|
|
972
|
+
readonly required: false;
|
|
973
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
974
|
+
__epPropKey: true;
|
|
975
|
+
} & {
|
|
976
|
+
readonly default: "2";
|
|
977
|
+
};
|
|
978
|
+
readonly transition: {
|
|
979
|
+
readonly type: import('vue').PropType<import('element-plus').DialogTransition>;
|
|
980
|
+
readonly required: false;
|
|
981
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
982
|
+
__epPropKey: true;
|
|
983
|
+
} & {
|
|
984
|
+
readonly default: undefined;
|
|
985
|
+
};
|
|
986
|
+
readonly center: BooleanConstructor;
|
|
987
|
+
readonly alignCenter: {
|
|
988
|
+
readonly type: import('vue').PropType<boolean>;
|
|
989
|
+
readonly required: false;
|
|
990
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
991
|
+
__epPropKey: true;
|
|
992
|
+
} & {
|
|
993
|
+
readonly default: undefined;
|
|
994
|
+
};
|
|
995
|
+
readonly closeIcon: {
|
|
996
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
997
|
+
readonly required: false;
|
|
998
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
999
|
+
__epPropKey: true;
|
|
1000
|
+
};
|
|
1001
|
+
readonly draggable: {
|
|
1002
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1003
|
+
readonly required: false;
|
|
1004
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1005
|
+
__epPropKey: true;
|
|
1006
|
+
} & {
|
|
1007
|
+
readonly default: undefined;
|
|
1008
|
+
};
|
|
1009
|
+
readonly overflow: {
|
|
1010
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1011
|
+
readonly required: false;
|
|
1012
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1013
|
+
__epPropKey: true;
|
|
1014
|
+
} & {
|
|
1015
|
+
readonly default: undefined;
|
|
1016
|
+
};
|
|
1017
|
+
readonly fullscreen: BooleanConstructor;
|
|
1018
|
+
readonly showClose: {
|
|
1019
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1020
|
+
readonly required: false;
|
|
1021
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1022
|
+
__epPropKey: true;
|
|
1023
|
+
} & {
|
|
1024
|
+
readonly default: true;
|
|
1025
|
+
};
|
|
1026
|
+
readonly title: {
|
|
1027
|
+
readonly type: import('vue').PropType<string>;
|
|
1028
|
+
readonly required: false;
|
|
1029
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1030
|
+
__epPropKey: true;
|
|
1031
|
+
} & {
|
|
1032
|
+
readonly default: "";
|
|
1033
|
+
};
|
|
1034
|
+
readonly ariaLevel: {
|
|
1035
|
+
readonly type: import('vue').PropType<string>;
|
|
1036
|
+
readonly required: false;
|
|
1037
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1038
|
+
__epPropKey: true;
|
|
1039
|
+
} & {
|
|
1040
|
+
readonly default: "2";
|
|
1041
|
+
};
|
|
1042
|
+
}>> & {
|
|
1043
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1044
|
+
onOpen?: (() => any) | undefined;
|
|
1045
|
+
onClose?: (() => any) | undefined;
|
|
1046
|
+
onOpened?: (() => any) | undefined;
|
|
1047
|
+
onClosed?: (() => any) | undefined;
|
|
1048
|
+
onOpenAutoFocus?: (() => any) | undefined;
|
|
1049
|
+
onCloseAutoFocus?: (() => any) | undefined;
|
|
1050
|
+
}, "title" | "overflow" | "visible" | "transition" | "modelValue" | "appendToBody" | "draggable" | "destroyOnClose" | "appendTo" | "closeOnClickModal" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "trapFocus" | "headerAriaLevel" | "center" | "alignCenter" | "fullscreen" | "showClose" | "ariaLevel" | "dialogContentRef" | "resetPosition" | "handleClose"> & import('vue').ShallowUnwrapRef<{
|
|
1051
|
+
visible: import('vue').Ref<boolean>;
|
|
1052
|
+
dialogContentRef: import('vue').Ref<any>;
|
|
1053
|
+
resetPosition: () => void;
|
|
1054
|
+
handleClose: () => void;
|
|
1055
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
1056
|
+
$slots: {
|
|
1057
|
+
header?(_: {
|
|
1058
|
+
close: () => void;
|
|
1059
|
+
titleId: string;
|
|
1060
|
+
titleClass: string;
|
|
1061
|
+
}): any;
|
|
1062
|
+
title?(_: {}): any;
|
|
1063
|
+
default?(_: {}): any;
|
|
1064
|
+
footer?(_: {}): any;
|
|
1065
|
+
};
|
|
1066
|
+
}) | null>>;
|
|
552
1067
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
553
1068
|
appendToBody: {
|
|
554
1069
|
type: BooleanConstructor;
|
|
@@ -57,9 +57,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
57
57
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
58
58
|
}>, {
|
|
59
59
|
width: number;
|
|
60
|
+
placeholder: string;
|
|
60
61
|
options: OptionsItem[];
|
|
61
62
|
modelValue: string[];
|
|
62
|
-
placeholder: string;
|
|
63
63
|
dialogTitle: string;
|
|
64
64
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
65
65
|
export default _default;
|