ra-element 0.1.56 → 0.1.63
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-form.md +2 -1
- package/lib/components/ra-button/index.vue.d.ts +105 -195
- package/lib/components/ra-checkbox-group/index.vue.d.ts +92 -148
- package/lib/components/ra-date-picker/index.vue.d.ts +282 -264
- package/lib/components/ra-dialog/index.vue.d.ts +163 -321
- package/lib/components/ra-input/index.vue.d.ts +173 -329
- package/lib/components/ra-pagination/index.vue.d.ts +107 -119
- package/lib/components/ra-radio-group/index.vue.d.ts +82 -154
- package/lib/components/ra-table/component/table-column-item.vue.d.ts +1 -6
- package/lib/components/ra-textarea/index.vue.d.ts +912 -2
- package/lib/components/ra-tool-tip/index.vue.d.ts +2426 -3
- package/lib/components/ra-tree-select/index.vue.d.ts +98 -96
- package/lib/components/ra-upload/index.vue.d.ts +385 -15
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +1712 -1655
- package/lib/ra-element.es.js.map +1 -1
- package/lib/ra-element.umd.js +1 -1
- package/lib/ra-element.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -548,313 +548,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
548
548
|
default: boolean;
|
|
549
549
|
};
|
|
550
550
|
}>, {
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
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<{
|
|
551
|
+
$: import('vue').ComponentInternalInstance;
|
|
552
|
+
$data: {};
|
|
553
|
+
$props: Partial<{
|
|
858
554
|
readonly title: string;
|
|
859
555
|
readonly center: boolean;
|
|
860
556
|
readonly overflow: boolean;
|
|
@@ -877,7 +573,70 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
877
573
|
readonly destroyOnClose: boolean;
|
|
878
574
|
readonly modalPenetrable: boolean;
|
|
879
575
|
readonly trapFocus: boolean;
|
|
880
|
-
}> & Omit<
|
|
576
|
+
}> & Omit<{
|
|
577
|
+
readonly title: string;
|
|
578
|
+
readonly modelValue: boolean;
|
|
579
|
+
readonly appendToBody: boolean;
|
|
580
|
+
readonly destroyOnClose: boolean;
|
|
581
|
+
readonly appendTo: string | HTMLElement;
|
|
582
|
+
readonly closeOnClickModal: boolean;
|
|
583
|
+
readonly closeOnPressEscape: boolean;
|
|
584
|
+
readonly lockScroll: boolean;
|
|
585
|
+
readonly modal: boolean;
|
|
586
|
+
readonly modalPenetrable: boolean;
|
|
587
|
+
readonly openDelay: number;
|
|
588
|
+
readonly closeDelay: number;
|
|
589
|
+
readonly trapFocus: boolean;
|
|
590
|
+
readonly headerAriaLevel: string;
|
|
591
|
+
readonly center: boolean;
|
|
592
|
+
readonly fullscreen: boolean;
|
|
593
|
+
readonly showClose: boolean;
|
|
594
|
+
readonly ariaLevel: string;
|
|
595
|
+
readonly overflow?: boolean | undefined;
|
|
596
|
+
readonly width?: (string | number) | undefined;
|
|
597
|
+
readonly transition?: import('element-plus').DialogTransition | undefined;
|
|
598
|
+
readonly top?: string | undefined;
|
|
599
|
+
readonly draggable?: boolean | undefined;
|
|
600
|
+
readonly beforeClose?: import('element-plus').DialogBeforeCloseFn | undefined;
|
|
601
|
+
readonly modalClass?: string | undefined;
|
|
602
|
+
readonly headerClass?: string | undefined;
|
|
603
|
+
readonly bodyClass?: string | undefined;
|
|
604
|
+
readonly footerClass?: string | undefined;
|
|
605
|
+
readonly zIndex?: number | undefined;
|
|
606
|
+
readonly alignCenter?: boolean | undefined;
|
|
607
|
+
readonly closeIcon?: (string | import('vue').Component) | undefined;
|
|
608
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined | undefined;
|
|
609
|
+
onOpen?: (() => any) | undefined | undefined;
|
|
610
|
+
onClose?: (() => any) | undefined | undefined;
|
|
611
|
+
onOpened?: (() => any) | undefined | undefined;
|
|
612
|
+
onClosed?: (() => any) | undefined | undefined;
|
|
613
|
+
onOpenAutoFocus?: (() => any) | undefined | undefined;
|
|
614
|
+
onCloseAutoFocus?: (() => any) | undefined | undefined;
|
|
615
|
+
} & 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">;
|
|
616
|
+
$attrs: {
|
|
617
|
+
[x: string]: unknown;
|
|
618
|
+
};
|
|
619
|
+
$refs: {
|
|
620
|
+
[x: string]: unknown;
|
|
621
|
+
};
|
|
622
|
+
$slots: Readonly<{
|
|
623
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
624
|
+
}> & {
|
|
625
|
+
header?(_: {
|
|
626
|
+
close: () => void;
|
|
627
|
+
titleId: string;
|
|
628
|
+
titleClass: string;
|
|
629
|
+
}): any;
|
|
630
|
+
title?(_: {}): any;
|
|
631
|
+
default?(_: {}): any;
|
|
632
|
+
footer?(_: {}): any;
|
|
633
|
+
};
|
|
634
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
635
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
636
|
+
$host: Element | null;
|
|
637
|
+
$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);
|
|
638
|
+
$el: any;
|
|
639
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
881
640
|
readonly appendToBody: BooleanConstructor;
|
|
882
641
|
readonly appendTo: {
|
|
883
642
|
readonly type: import('vue').PropType<string | HTMLElement>;
|
|
@@ -1047,23 +806,106 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1047
806
|
onClosed?: (() => any) | undefined;
|
|
1048
807
|
onOpenAutoFocus?: (() => any) | undefined;
|
|
1049
808
|
onCloseAutoFocus?: (() => any) | undefined;
|
|
1050
|
-
},
|
|
809
|
+
}, {
|
|
1051
810
|
visible: import('vue').Ref<boolean>;
|
|
1052
811
|
dialogContentRef: import('vue').Ref<any>;
|
|
1053
812
|
resetPosition: () => void;
|
|
1054
813
|
handleClose: () => void;
|
|
1055
|
-
}
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
814
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
815
|
+
open: () => void;
|
|
816
|
+
"update:modelValue": (value: boolean) => void;
|
|
817
|
+
close: () => void;
|
|
818
|
+
opened: () => void;
|
|
819
|
+
closed: () => void;
|
|
820
|
+
openAutoFocus: () => void;
|
|
821
|
+
closeAutoFocus: () => void;
|
|
822
|
+
}, string, {
|
|
823
|
+
readonly title: string;
|
|
824
|
+
readonly center: boolean;
|
|
825
|
+
readonly overflow: boolean;
|
|
826
|
+
readonly transition: import('element-plus').DialogTransition;
|
|
827
|
+
readonly modelValue: boolean;
|
|
828
|
+
readonly ariaLevel: string;
|
|
829
|
+
readonly appendTo: string | HTMLElement;
|
|
830
|
+
readonly alignCenter: boolean;
|
|
831
|
+
readonly draggable: boolean;
|
|
832
|
+
readonly showClose: boolean;
|
|
833
|
+
readonly fullscreen: boolean;
|
|
834
|
+
readonly closeOnClickModal: boolean;
|
|
835
|
+
readonly closeOnPressEscape: boolean;
|
|
836
|
+
readonly lockScroll: boolean;
|
|
837
|
+
readonly modal: boolean;
|
|
838
|
+
readonly openDelay: number;
|
|
839
|
+
readonly closeDelay: number;
|
|
840
|
+
readonly headerAriaLevel: string;
|
|
841
|
+
readonly appendToBody: boolean;
|
|
842
|
+
readonly destroyOnClose: boolean;
|
|
843
|
+
readonly modalPenetrable: boolean;
|
|
844
|
+
readonly trapFocus: boolean;
|
|
845
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
846
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
847
|
+
created?: (() => void) | (() => void)[];
|
|
848
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
849
|
+
mounted?: (() => void) | (() => void)[];
|
|
850
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
851
|
+
updated?: (() => void) | (() => void)[];
|
|
852
|
+
activated?: (() => void) | (() => void)[];
|
|
853
|
+
deactivated?: (() => void) | (() => void)[];
|
|
854
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
855
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
856
|
+
destroyed?: (() => void) | (() => void)[];
|
|
857
|
+
unmounted?: (() => void) | (() => void)[];
|
|
858
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
859
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
860
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
861
|
+
};
|
|
862
|
+
$forceUpdate: () => void;
|
|
863
|
+
$nextTick: typeof import('vue').nextTick;
|
|
864
|
+
$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;
|
|
865
|
+
title: string;
|
|
866
|
+
center: boolean;
|
|
867
|
+
overflow: boolean;
|
|
868
|
+
transition: import('element-plus').DialogTransition;
|
|
869
|
+
modelValue: boolean;
|
|
870
|
+
ariaLevel: string;
|
|
871
|
+
appendTo: string | HTMLElement;
|
|
872
|
+
alignCenter: boolean;
|
|
873
|
+
draggable: boolean;
|
|
874
|
+
showClose: boolean;
|
|
875
|
+
fullscreen: boolean;
|
|
876
|
+
closeOnClickModal: boolean;
|
|
877
|
+
closeOnPressEscape: boolean;
|
|
878
|
+
lockScroll: boolean;
|
|
879
|
+
modal: boolean;
|
|
880
|
+
openDelay: number;
|
|
881
|
+
closeDelay: number;
|
|
882
|
+
headerAriaLevel: string;
|
|
883
|
+
appendToBody: boolean;
|
|
884
|
+
destroyOnClose: boolean;
|
|
885
|
+
modalPenetrable: boolean;
|
|
886
|
+
trapFocus: boolean;
|
|
887
|
+
width?: (string | number) | undefined;
|
|
888
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined | undefined;
|
|
889
|
+
top?: string | undefined;
|
|
890
|
+
beforeClose?: import('element-plus').DialogBeforeCloseFn | undefined;
|
|
891
|
+
modalClass?: string | undefined;
|
|
892
|
+
headerClass?: string | undefined;
|
|
893
|
+
bodyClass?: string | undefined;
|
|
894
|
+
footerClass?: string | undefined;
|
|
895
|
+
zIndex?: number | undefined;
|
|
896
|
+
closeIcon?: (string | import('vue').Component) | undefined;
|
|
897
|
+
onOpen?: (() => any) | undefined | undefined;
|
|
898
|
+
onClose?: (() => any) | undefined | undefined;
|
|
899
|
+
onOpened?: (() => any) | undefined | undefined;
|
|
900
|
+
onClosed?: (() => any) | undefined | undefined;
|
|
901
|
+
onOpenAutoFocus?: (() => any) | undefined | undefined;
|
|
902
|
+
onCloseAutoFocus?: (() => any) | undefined | undefined;
|
|
903
|
+
visible: boolean;
|
|
904
|
+
dialogContentRef: any;
|
|
905
|
+
resetPosition: () => void;
|
|
906
|
+
handleClose: () => void;
|
|
907
|
+
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
908
|
+
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
1067
909
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1068
910
|
appendToBody: {
|
|
1069
911
|
type: BooleanConstructor;
|