ra-element 0.1.53 → 0.1.62
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/docs/ra-upload.md +1 -1
- package/lib/components/ra-button/index.vue.d.ts +211 -1
- package/lib/components/ra-checkbox-group/index.vue.d.ts +163 -1
- package/lib/components/ra-date-picker/index.vue.d.ts +580 -1
- package/lib/components/ra-dialog/index.vue.d.ts +358 -1
- package/lib/components/ra-dialog-select/index.vue.d.ts +1 -1
- package/lib/components/ra-input/index.vue.d.ts +378 -3
- package/lib/components/ra-pagination/index.vue.d.ts +232 -1
- package/lib/components/ra-radio-group/index.vue.d.ts +163 -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 +24 -0
- package/lib/components/ra-table/component/top-module.vue.d.ts +85 -0
- 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 +101 -1
- package/lib/components/ra-upload/index.vue.d.ts +385 -15
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +1859 -9855
- 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
|
@@ -48,11 +48,11 @@ declare function __VLS_template(): {
|
|
|
48
48
|
readonly form?: string | undefined;
|
|
49
49
|
readonly resize?: ("none" | "both" | "horizontal" | "vertical") | undefined;
|
|
50
50
|
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
51
|
+
readonly placeholder?: string | undefined;
|
|
51
52
|
readonly id?: string | undefined;
|
|
52
53
|
readonly ariaLabel?: string | undefined;
|
|
53
54
|
readonly clearIcon?: (string | import('vue').Component) | undefined;
|
|
54
55
|
readonly prefixIcon?: (string | import('vue').Component) | undefined;
|
|
55
|
-
readonly placeholder?: string | undefined;
|
|
56
56
|
readonly inputmode?: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
57
57
|
readonly maxlength?: (string | number) | undefined;
|
|
58
58
|
readonly minlength?: (string | number) | undefined;
|
|
@@ -550,7 +550,382 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
550
550
|
default: string;
|
|
551
551
|
};
|
|
552
552
|
}>, {
|
|
553
|
-
|
|
553
|
+
$: import('vue').ComponentInternalInstance;
|
|
554
|
+
$data: {};
|
|
555
|
+
$props: Partial<{
|
|
556
|
+
readonly disabled: boolean;
|
|
557
|
+
readonly tabindex: string | number;
|
|
558
|
+
readonly id: string;
|
|
559
|
+
readonly type: string;
|
|
560
|
+
readonly modelValue: string | number | null | undefined;
|
|
561
|
+
readonly readonly: boolean;
|
|
562
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
563
|
+
readonly autocomplete: AutoFill;
|
|
564
|
+
readonly containerRole: string;
|
|
565
|
+
readonly validateEvent: boolean;
|
|
566
|
+
readonly inputStyle: import('vue').StyleValue;
|
|
567
|
+
readonly rows: number;
|
|
568
|
+
readonly inputmode: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
569
|
+
readonly clearable: boolean;
|
|
570
|
+
readonly showPassword: boolean;
|
|
571
|
+
readonly showWordLimit: boolean;
|
|
572
|
+
readonly autofocus: boolean;
|
|
573
|
+
}> & Omit<{
|
|
574
|
+
readonly disabled: boolean;
|
|
575
|
+
readonly type: string;
|
|
576
|
+
readonly autofocus: boolean;
|
|
577
|
+
readonly modelValue: string | number | null;
|
|
578
|
+
readonly tabindex: string | number;
|
|
579
|
+
readonly validateEvent: boolean;
|
|
580
|
+
readonly clearable: boolean;
|
|
581
|
+
readonly readonly: boolean;
|
|
582
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
583
|
+
readonly autocomplete: AutoFill;
|
|
584
|
+
readonly showPassword: boolean;
|
|
585
|
+
readonly showWordLimit: boolean;
|
|
586
|
+
readonly inputStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
587
|
+
readonly rows: number;
|
|
588
|
+
readonly name?: string | undefined;
|
|
589
|
+
readonly form?: string | undefined;
|
|
590
|
+
readonly resize?: ("none" | "both" | "horizontal" | "vertical") | undefined;
|
|
591
|
+
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
592
|
+
readonly placeholder?: string | undefined;
|
|
593
|
+
readonly id?: string | undefined;
|
|
594
|
+
readonly ariaLabel?: string | undefined;
|
|
595
|
+
readonly clearIcon?: (string | import('vue').Component) | undefined;
|
|
596
|
+
readonly prefixIcon?: (string | import('vue').Component) | undefined;
|
|
597
|
+
readonly inputmode?: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
598
|
+
readonly maxlength?: (string | number) | undefined;
|
|
599
|
+
readonly minlength?: (string | number) | undefined;
|
|
600
|
+
readonly formatter?: Function | undefined;
|
|
601
|
+
readonly parser?: Function | undefined;
|
|
602
|
+
readonly suffixIcon?: (string | import('vue').Component) | undefined;
|
|
603
|
+
readonly containerRole?: string | undefined;
|
|
604
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
605
|
+
onChange?: ((value: string) => any) | undefined | undefined;
|
|
606
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
607
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
608
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
609
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
610
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
611
|
+
onInput?: ((value: string) => any) | undefined | undefined;
|
|
612
|
+
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined | undefined;
|
|
613
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
614
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
615
|
+
onClear?: (() => any) | undefined | undefined;
|
|
616
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "type" | "autofocus" | "modelValue" | "id" | "tabindex" | "validateEvent" | "clearable" | "readonly" | "inputmode" | "autosize" | "autocomplete" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows">;
|
|
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
|
+
prepend?(_: {}): any;
|
|
627
|
+
prefix?(_: {}): any;
|
|
628
|
+
suffix?(_: {}): any;
|
|
629
|
+
append?(_: {}): any;
|
|
630
|
+
};
|
|
631
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
632
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
633
|
+
$host: Element | null;
|
|
634
|
+
$emit: ((event: "input", value: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "change", value: string) => void) & ((event: "compositionend", evt: CompositionEvent) => void) & ((event: "compositionstart", evt: CompositionEvent) => void) & ((event: "compositionupdate", evt: CompositionEvent) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "keydown", evt: Event | KeyboardEvent) => void) & ((event: "mouseenter", evt: MouseEvent) => void) & ((event: "mouseleave", evt: MouseEvent) => void) & ((event: "clear") => void) & ((event: "update:modelValue", value: string) => void);
|
|
635
|
+
$el: any;
|
|
636
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
637
|
+
readonly inputmode: {
|
|
638
|
+
readonly type: import('vue').PropType<"none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined>;
|
|
639
|
+
readonly required: false;
|
|
640
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
641
|
+
__epPropKey: true;
|
|
642
|
+
} & {
|
|
643
|
+
readonly default: undefined;
|
|
644
|
+
};
|
|
645
|
+
readonly name: StringConstructor;
|
|
646
|
+
readonly ariaLabel: StringConstructor;
|
|
647
|
+
readonly id: {
|
|
648
|
+
readonly type: import('vue').PropType<string>;
|
|
649
|
+
readonly required: false;
|
|
650
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
651
|
+
__epPropKey: true;
|
|
652
|
+
} & {
|
|
653
|
+
readonly default: undefined;
|
|
654
|
+
};
|
|
655
|
+
readonly size: {
|
|
656
|
+
readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
657
|
+
readonly required: false;
|
|
658
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
659
|
+
__epPropKey: true;
|
|
660
|
+
};
|
|
661
|
+
readonly disabled: BooleanConstructor;
|
|
662
|
+
readonly modelValue: {
|
|
663
|
+
readonly type: import('vue').PropType<string | number | null | undefined>;
|
|
664
|
+
readonly required: false;
|
|
665
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
666
|
+
__epPropKey: true;
|
|
667
|
+
} & {
|
|
668
|
+
readonly default: "";
|
|
669
|
+
};
|
|
670
|
+
readonly maxlength: {
|
|
671
|
+
readonly type: import('vue').PropType<string | number>;
|
|
672
|
+
readonly required: false;
|
|
673
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
674
|
+
__epPropKey: true;
|
|
675
|
+
};
|
|
676
|
+
readonly minlength: {
|
|
677
|
+
readonly type: import('vue').PropType<string | number>;
|
|
678
|
+
readonly required: false;
|
|
679
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
680
|
+
__epPropKey: true;
|
|
681
|
+
};
|
|
682
|
+
readonly type: {
|
|
683
|
+
readonly type: import('vue').PropType<string>;
|
|
684
|
+
readonly required: false;
|
|
685
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
686
|
+
__epPropKey: true;
|
|
687
|
+
} & {
|
|
688
|
+
readonly default: "text";
|
|
689
|
+
};
|
|
690
|
+
readonly resize: {
|
|
691
|
+
readonly type: import('vue').PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
692
|
+
readonly required: false;
|
|
693
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
694
|
+
__epPropKey: true;
|
|
695
|
+
};
|
|
696
|
+
readonly autosize: {
|
|
697
|
+
readonly type: import('vue').PropType<import('element-plus').InputAutoSize>;
|
|
698
|
+
readonly required: false;
|
|
699
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
700
|
+
__epPropKey: true;
|
|
701
|
+
} & {
|
|
702
|
+
readonly default: false;
|
|
703
|
+
};
|
|
704
|
+
readonly autocomplete: {
|
|
705
|
+
readonly type: import('vue').PropType<AutoFill>;
|
|
706
|
+
readonly required: false;
|
|
707
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
708
|
+
__epPropKey: true;
|
|
709
|
+
} & {
|
|
710
|
+
readonly default: "off";
|
|
711
|
+
};
|
|
712
|
+
readonly formatter: {
|
|
713
|
+
readonly type: import('vue').PropType<Function>;
|
|
714
|
+
readonly required: false;
|
|
715
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
716
|
+
__epPropKey: true;
|
|
717
|
+
};
|
|
718
|
+
readonly parser: {
|
|
719
|
+
readonly type: import('vue').PropType<Function>;
|
|
720
|
+
readonly required: false;
|
|
721
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
722
|
+
__epPropKey: true;
|
|
723
|
+
};
|
|
724
|
+
readonly placeholder: {
|
|
725
|
+
readonly type: import('vue').PropType<string>;
|
|
726
|
+
readonly required: false;
|
|
727
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
728
|
+
__epPropKey: true;
|
|
729
|
+
};
|
|
730
|
+
readonly form: {
|
|
731
|
+
readonly type: import('vue').PropType<string>;
|
|
732
|
+
readonly required: false;
|
|
733
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
734
|
+
__epPropKey: true;
|
|
735
|
+
};
|
|
736
|
+
readonly readonly: BooleanConstructor;
|
|
737
|
+
readonly clearable: BooleanConstructor;
|
|
738
|
+
readonly clearIcon: {
|
|
739
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
740
|
+
readonly required: false;
|
|
741
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
742
|
+
__epPropKey: true;
|
|
743
|
+
};
|
|
744
|
+
readonly showPassword: BooleanConstructor;
|
|
745
|
+
readonly showWordLimit: BooleanConstructor;
|
|
746
|
+
readonly suffixIcon: {
|
|
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 prefixIcon: {
|
|
753
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
754
|
+
readonly required: false;
|
|
755
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
756
|
+
__epPropKey: true;
|
|
757
|
+
};
|
|
758
|
+
readonly containerRole: {
|
|
759
|
+
readonly type: import('vue').PropType<string>;
|
|
760
|
+
readonly required: false;
|
|
761
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
762
|
+
__epPropKey: true;
|
|
763
|
+
} & {
|
|
764
|
+
readonly default: undefined;
|
|
765
|
+
};
|
|
766
|
+
readonly tabindex: {
|
|
767
|
+
readonly type: import('vue').PropType<string | number>;
|
|
768
|
+
readonly required: false;
|
|
769
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
770
|
+
__epPropKey: true;
|
|
771
|
+
} & {
|
|
772
|
+
readonly default: 0;
|
|
773
|
+
};
|
|
774
|
+
readonly validateEvent: {
|
|
775
|
+
readonly type: import('vue').PropType<boolean>;
|
|
776
|
+
readonly required: false;
|
|
777
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
778
|
+
__epPropKey: true;
|
|
779
|
+
} & {
|
|
780
|
+
readonly default: true;
|
|
781
|
+
};
|
|
782
|
+
readonly inputStyle: {
|
|
783
|
+
readonly type: import('vue').PropType<import('vue').StyleValue>;
|
|
784
|
+
readonly required: false;
|
|
785
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
786
|
+
__epPropKey: true;
|
|
787
|
+
} & {
|
|
788
|
+
readonly default: () => {};
|
|
789
|
+
};
|
|
790
|
+
readonly autofocus: BooleanConstructor;
|
|
791
|
+
readonly rows: {
|
|
792
|
+
readonly type: import('vue').PropType<number>;
|
|
793
|
+
readonly required: false;
|
|
794
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
795
|
+
__epPropKey: true;
|
|
796
|
+
} & {
|
|
797
|
+
readonly default: 2;
|
|
798
|
+
};
|
|
799
|
+
}>> & {
|
|
800
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
801
|
+
onChange?: ((value: string) => any) | undefined;
|
|
802
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
803
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
804
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
805
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
806
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
807
|
+
onInput?: ((value: string) => any) | undefined;
|
|
808
|
+
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
809
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
810
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
811
|
+
onClear?: (() => any) | undefined;
|
|
812
|
+
}, {
|
|
813
|
+
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
814
|
+
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
815
|
+
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
816
|
+
textareaStyle: import('vue').ComputedRef<import('vue').StyleValue>;
|
|
817
|
+
autosize: import('vue').Ref<import('element-plus').InputAutoSize>;
|
|
818
|
+
isComposing: import('vue').Ref<boolean>;
|
|
819
|
+
focus: () => void | undefined;
|
|
820
|
+
blur: () => void | undefined;
|
|
821
|
+
select: () => void;
|
|
822
|
+
clear: () => void;
|
|
823
|
+
resizeTextarea: () => void;
|
|
824
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
825
|
+
input: (value: string) => void;
|
|
826
|
+
focus: (evt: FocusEvent) => void;
|
|
827
|
+
clear: () => void;
|
|
828
|
+
"update:modelValue": (value: string) => void;
|
|
829
|
+
change: (value: string) => void;
|
|
830
|
+
blur: (evt: FocusEvent) => void;
|
|
831
|
+
compositionend: (evt: CompositionEvent) => void;
|
|
832
|
+
compositionstart: (evt: CompositionEvent) => void;
|
|
833
|
+
compositionupdate: (evt: CompositionEvent) => void;
|
|
834
|
+
keydown: (evt: Event | KeyboardEvent) => void;
|
|
835
|
+
mouseenter: (evt: MouseEvent) => void;
|
|
836
|
+
mouseleave: (evt: MouseEvent) => void;
|
|
837
|
+
}, string, {
|
|
838
|
+
readonly disabled: boolean;
|
|
839
|
+
readonly tabindex: string | number;
|
|
840
|
+
readonly id: string;
|
|
841
|
+
readonly type: string;
|
|
842
|
+
readonly modelValue: string | number | null | undefined;
|
|
843
|
+
readonly readonly: boolean;
|
|
844
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
845
|
+
readonly autocomplete: AutoFill;
|
|
846
|
+
readonly containerRole: string;
|
|
847
|
+
readonly validateEvent: boolean;
|
|
848
|
+
readonly inputStyle: import('vue').StyleValue;
|
|
849
|
+
readonly rows: number;
|
|
850
|
+
readonly inputmode: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
851
|
+
readonly clearable: boolean;
|
|
852
|
+
readonly showPassword: boolean;
|
|
853
|
+
readonly showWordLimit: boolean;
|
|
854
|
+
readonly autofocus: boolean;
|
|
855
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
856
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
857
|
+
created?: (() => void) | (() => void)[];
|
|
858
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
859
|
+
mounted?: (() => void) | (() => void)[];
|
|
860
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
861
|
+
updated?: (() => void) | (() => void)[];
|
|
862
|
+
activated?: (() => void) | (() => void)[];
|
|
863
|
+
deactivated?: (() => void) | (() => void)[];
|
|
864
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
865
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
866
|
+
destroyed?: (() => void) | (() => void)[];
|
|
867
|
+
unmounted?: (() => void) | (() => void)[];
|
|
868
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
869
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
870
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
871
|
+
};
|
|
872
|
+
$forceUpdate: () => void;
|
|
873
|
+
$nextTick: typeof import('vue').nextTick;
|
|
874
|
+
$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;
|
|
875
|
+
disabled: boolean;
|
|
876
|
+
tabindex: string | number;
|
|
877
|
+
id: string;
|
|
878
|
+
type: string;
|
|
879
|
+
modelValue: string | number | null | undefined;
|
|
880
|
+
readonly: boolean;
|
|
881
|
+
autosize: import('element-plus').InputAutoSize;
|
|
882
|
+
autocomplete: AutoFill;
|
|
883
|
+
containerRole: string;
|
|
884
|
+
validateEvent: boolean;
|
|
885
|
+
inputStyle: import('vue').StyleValue;
|
|
886
|
+
rows: number;
|
|
887
|
+
inputmode: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
888
|
+
clearable: boolean;
|
|
889
|
+
showPassword: boolean;
|
|
890
|
+
showWordLimit: boolean;
|
|
891
|
+
autofocus: boolean;
|
|
892
|
+
name?: string | undefined;
|
|
893
|
+
form?: string | undefined;
|
|
894
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
895
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
896
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
897
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
898
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
899
|
+
onChange?: ((value: string) => any) | undefined | undefined;
|
|
900
|
+
onInput?: ((value: string) => any) | undefined | undefined;
|
|
901
|
+
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined | undefined;
|
|
902
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
903
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
904
|
+
resize?: ("none" | "both" | "horizontal" | "vertical") | undefined;
|
|
905
|
+
size?: ("" | "default" | "small" | "large") | undefined;
|
|
906
|
+
placeholder?: string | undefined;
|
|
907
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
908
|
+
ariaLabel?: string | undefined;
|
|
909
|
+
clearIcon?: (string | import('vue').Component) | undefined;
|
|
910
|
+
prefixIcon?: (string | import('vue').Component) | undefined;
|
|
911
|
+
maxlength?: (string | number) | undefined;
|
|
912
|
+
minlength?: (string | number) | undefined;
|
|
913
|
+
formatter?: Function | undefined;
|
|
914
|
+
parser?: Function | undefined;
|
|
915
|
+
suffixIcon?: (string | import('vue').Component) | undefined;
|
|
916
|
+
onClear?: (() => any) | undefined | undefined;
|
|
917
|
+
input: HTMLInputElement | undefined;
|
|
918
|
+
textarea: HTMLTextAreaElement | undefined;
|
|
919
|
+
ref: HTMLInputElement | HTMLTextAreaElement | undefined;
|
|
920
|
+
textareaStyle: import('vue').StyleValue;
|
|
921
|
+
isComposing: boolean;
|
|
922
|
+
focus: () => void | undefined;
|
|
923
|
+
blur: () => void | undefined;
|
|
924
|
+
select: () => void;
|
|
925
|
+
clear: () => void;
|
|
926
|
+
resizeTextarea: () => void;
|
|
927
|
+
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
928
|
+
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
554
929
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
555
930
|
cssStyle: {
|
|
556
931
|
type: StringConstructor;
|
|
@@ -599,11 +974,11 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
599
974
|
readonly form?: string | undefined;
|
|
600
975
|
readonly resize?: ("none" | "both" | "horizontal" | "vertical") | undefined;
|
|
601
976
|
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
977
|
+
readonly placeholder?: string | undefined;
|
|
602
978
|
readonly id?: string | undefined;
|
|
603
979
|
readonly ariaLabel?: string | undefined;
|
|
604
980
|
readonly clearIcon?: (string | import('vue').Component) | undefined;
|
|
605
981
|
readonly prefixIcon?: (string | import('vue').Component) | undefined;
|
|
606
|
-
readonly placeholder?: string | undefined;
|
|
607
982
|
readonly inputmode?: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
608
983
|
readonly maxlength?: (string | number) | undefined;
|
|
609
984
|
readonly minlength?: (string | number) | undefined;
|
|
@@ -266,7 +266,238 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
266
266
|
default: number;
|
|
267
267
|
};
|
|
268
268
|
}>, {
|
|
269
|
-
|
|
269
|
+
$: import('vue').ComponentInternalInstance;
|
|
270
|
+
$data: {};
|
|
271
|
+
$props: Partial<{
|
|
272
|
+
readonly small: boolean;
|
|
273
|
+
readonly disabled: boolean;
|
|
274
|
+
readonly background: boolean;
|
|
275
|
+
readonly layout: string;
|
|
276
|
+
readonly popperClass: string;
|
|
277
|
+
readonly teleported: boolean;
|
|
278
|
+
readonly prevText: string;
|
|
279
|
+
readonly prevIcon: string | import('vue').Component;
|
|
280
|
+
readonly nextText: string;
|
|
281
|
+
readonly nextIcon: string | import('vue').Component;
|
|
282
|
+
readonly pageSizes: number[];
|
|
283
|
+
readonly pagerCount: number;
|
|
284
|
+
readonly hideOnSinglePage: boolean;
|
|
285
|
+
}> & Omit<{
|
|
286
|
+
readonly disabled: boolean;
|
|
287
|
+
readonly small: boolean;
|
|
288
|
+
readonly popperClass: string;
|
|
289
|
+
readonly teleported: boolean;
|
|
290
|
+
readonly pagerCount: number;
|
|
291
|
+
readonly layout: string;
|
|
292
|
+
readonly pageSizes: number[];
|
|
293
|
+
readonly prevText: string;
|
|
294
|
+
readonly nextText: string;
|
|
295
|
+
readonly background: boolean;
|
|
296
|
+
readonly hideOnSinglePage: boolean;
|
|
297
|
+
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
298
|
+
readonly currentPage?: number | undefined;
|
|
299
|
+
readonly pageSize?: number | undefined;
|
|
300
|
+
readonly defaultPageSize?: number | undefined;
|
|
301
|
+
readonly total?: number | undefined;
|
|
302
|
+
readonly pageCount?: number | undefined;
|
|
303
|
+
readonly defaultCurrentPage?: number | undefined;
|
|
304
|
+
readonly prevIcon?: (string | import('vue').Component) | undefined;
|
|
305
|
+
readonly nextIcon?: (string | import('vue').Component) | undefined;
|
|
306
|
+
readonly appendSizeTo?: string | undefined;
|
|
307
|
+
onChange?: ((currentPage: number, pageSize: number) => any) | undefined | undefined;
|
|
308
|
+
"onUpdate:current-page"?: ((val: number) => any) | undefined | undefined;
|
|
309
|
+
"onUpdate:page-size"?: ((val: number) => any) | undefined | undefined;
|
|
310
|
+
"onSize-change"?: ((val: number) => any) | undefined | undefined;
|
|
311
|
+
"onCurrent-change"?: ((val: number) => any) | undefined | undefined;
|
|
312
|
+
"onPrev-click"?: ((val: number) => any) | undefined | undefined;
|
|
313
|
+
"onNext-click"?: ((val: number) => any) | undefined | undefined;
|
|
314
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "small" | "popperClass" | "teleported" | "pagerCount" | "layout" | "pageSizes" | "prevText" | "prevIcon" | "nextText" | "nextIcon" | "background" | "hideOnSinglePage">;
|
|
315
|
+
$attrs: {
|
|
316
|
+
[x: string]: unknown;
|
|
317
|
+
};
|
|
318
|
+
$refs: {
|
|
319
|
+
[x: string]: unknown;
|
|
320
|
+
};
|
|
321
|
+
$slots: Readonly<{
|
|
322
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
323
|
+
}>;
|
|
324
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
325
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
326
|
+
$host: Element | null;
|
|
327
|
+
$emit: ((event: "change", currentPage: number, pageSize: number) => void) & ((event: "update:current-page", val: number) => void) & ((event: "update:page-size", val: number) => void) & ((event: "size-change", val: number) => void) & ((event: "current-change", val: number) => void) & ((event: "prev-click", val: number) => void) & ((event: "next-click", val: number) => void);
|
|
328
|
+
$el: any;
|
|
329
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
330
|
+
readonly pageSize: NumberConstructor;
|
|
331
|
+
readonly defaultPageSize: NumberConstructor;
|
|
332
|
+
readonly total: NumberConstructor;
|
|
333
|
+
readonly pageCount: NumberConstructor;
|
|
334
|
+
readonly pagerCount: {
|
|
335
|
+
readonly type: import('vue').PropType<number>;
|
|
336
|
+
readonly required: false;
|
|
337
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
338
|
+
__epPropKey: true;
|
|
339
|
+
} & {
|
|
340
|
+
readonly default: 7;
|
|
341
|
+
};
|
|
342
|
+
readonly currentPage: NumberConstructor;
|
|
343
|
+
readonly defaultCurrentPage: NumberConstructor;
|
|
344
|
+
readonly layout: {
|
|
345
|
+
readonly type: import('vue').PropType<string>;
|
|
346
|
+
readonly required: false;
|
|
347
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
348
|
+
__epPropKey: true;
|
|
349
|
+
} & {
|
|
350
|
+
readonly default: string;
|
|
351
|
+
};
|
|
352
|
+
readonly pageSizes: {
|
|
353
|
+
readonly type: import('vue').PropType<number[]>;
|
|
354
|
+
readonly required: false;
|
|
355
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
356
|
+
__epPropKey: true;
|
|
357
|
+
} & {
|
|
358
|
+
readonly default: () => [10, 20, 30, 40, 50, 100];
|
|
359
|
+
};
|
|
360
|
+
readonly popperClass: {
|
|
361
|
+
readonly type: import('vue').PropType<string>;
|
|
362
|
+
readonly required: false;
|
|
363
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
364
|
+
__epPropKey: true;
|
|
365
|
+
} & {
|
|
366
|
+
readonly default: "";
|
|
367
|
+
};
|
|
368
|
+
readonly prevText: {
|
|
369
|
+
readonly type: import('vue').PropType<string>;
|
|
370
|
+
readonly required: false;
|
|
371
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
372
|
+
__epPropKey: true;
|
|
373
|
+
} & {
|
|
374
|
+
readonly default: "";
|
|
375
|
+
};
|
|
376
|
+
readonly prevIcon: {
|
|
377
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
378
|
+
readonly required: false;
|
|
379
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
380
|
+
__epPropKey: true;
|
|
381
|
+
} & {
|
|
382
|
+
readonly default: () => any;
|
|
383
|
+
};
|
|
384
|
+
readonly nextText: {
|
|
385
|
+
readonly type: import('vue').PropType<string>;
|
|
386
|
+
readonly required: false;
|
|
387
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
388
|
+
__epPropKey: true;
|
|
389
|
+
} & {
|
|
390
|
+
readonly default: "";
|
|
391
|
+
};
|
|
392
|
+
readonly nextIcon: {
|
|
393
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
394
|
+
readonly required: false;
|
|
395
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
396
|
+
__epPropKey: true;
|
|
397
|
+
} & {
|
|
398
|
+
readonly default: () => any;
|
|
399
|
+
};
|
|
400
|
+
readonly teleported: {
|
|
401
|
+
readonly type: import('vue').PropType<boolean>;
|
|
402
|
+
readonly required: false;
|
|
403
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
404
|
+
__epPropKey: true;
|
|
405
|
+
} & {
|
|
406
|
+
readonly default: true;
|
|
407
|
+
};
|
|
408
|
+
readonly small: BooleanConstructor;
|
|
409
|
+
readonly size: {
|
|
410
|
+
readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
411
|
+
readonly required: false;
|
|
412
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
413
|
+
__epPropKey: true;
|
|
414
|
+
};
|
|
415
|
+
readonly background: BooleanConstructor;
|
|
416
|
+
readonly disabled: BooleanConstructor;
|
|
417
|
+
readonly hideOnSinglePage: BooleanConstructor;
|
|
418
|
+
readonly appendSizeTo: StringConstructor;
|
|
419
|
+
}>> & {
|
|
420
|
+
onChange?: ((currentPage: number, pageSize: number) => any) | undefined;
|
|
421
|
+
"onUpdate:current-page"?: ((val: number) => any) | undefined;
|
|
422
|
+
"onUpdate:page-size"?: ((val: number) => any) | undefined;
|
|
423
|
+
"onSize-change"?: ((val: number) => any) | undefined;
|
|
424
|
+
"onCurrent-change"?: ((val: number) => any) | undefined;
|
|
425
|
+
"onPrev-click"?: ((val: number) => any) | undefined;
|
|
426
|
+
"onNext-click"?: ((val: number) => any) | undefined;
|
|
427
|
+
}, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
428
|
+
[key: string]: any;
|
|
429
|
+
}> | null, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
430
|
+
"update:current-page": (val: number) => boolean;
|
|
431
|
+
"update:page-size": (val: number) => boolean;
|
|
432
|
+
"size-change": (val: number) => boolean;
|
|
433
|
+
change: (currentPage: number, pageSize: number) => boolean;
|
|
434
|
+
"current-change": (val: number) => boolean;
|
|
435
|
+
"prev-click": (val: number) => boolean;
|
|
436
|
+
"next-click": (val: number) => boolean;
|
|
437
|
+
}, string, {
|
|
438
|
+
readonly small: boolean;
|
|
439
|
+
readonly disabled: boolean;
|
|
440
|
+
readonly background: boolean;
|
|
441
|
+
readonly layout: string;
|
|
442
|
+
readonly popperClass: string;
|
|
443
|
+
readonly teleported: boolean;
|
|
444
|
+
readonly prevText: string;
|
|
445
|
+
readonly prevIcon: string | import('vue').Component;
|
|
446
|
+
readonly nextText: string;
|
|
447
|
+
readonly nextIcon: string | import('vue').Component;
|
|
448
|
+
readonly pageSizes: number[];
|
|
449
|
+
readonly pagerCount: number;
|
|
450
|
+
readonly hideOnSinglePage: boolean;
|
|
451
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
452
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
453
|
+
created?: (() => void) | (() => void)[];
|
|
454
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
455
|
+
mounted?: (() => void) | (() => void)[];
|
|
456
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
457
|
+
updated?: (() => void) | (() => void)[];
|
|
458
|
+
activated?: (() => void) | (() => void)[];
|
|
459
|
+
deactivated?: (() => void) | (() => void)[];
|
|
460
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
461
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
462
|
+
destroyed?: (() => void) | (() => void)[];
|
|
463
|
+
unmounted?: (() => void) | (() => void)[];
|
|
464
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
465
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
466
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
467
|
+
};
|
|
468
|
+
$forceUpdate: () => void;
|
|
469
|
+
$nextTick: typeof import('vue').nextTick;
|
|
470
|
+
$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;
|
|
471
|
+
small: boolean;
|
|
472
|
+
disabled: boolean;
|
|
473
|
+
background: boolean;
|
|
474
|
+
layout: string;
|
|
475
|
+
popperClass: string;
|
|
476
|
+
teleported: boolean;
|
|
477
|
+
prevText: string;
|
|
478
|
+
prevIcon: string | import('vue').Component;
|
|
479
|
+
nextText: string;
|
|
480
|
+
nextIcon: string | import('vue').Component;
|
|
481
|
+
pageSizes: number[];
|
|
482
|
+
pagerCount: number;
|
|
483
|
+
hideOnSinglePage: boolean;
|
|
484
|
+
onChange?: ((currentPage: number, pageSize: number) => any) | undefined | undefined;
|
|
485
|
+
size?: ("" | "default" | "small" | "large") | undefined;
|
|
486
|
+
currentPage?: number | undefined;
|
|
487
|
+
pageSize?: number | undefined;
|
|
488
|
+
defaultPageSize?: number | undefined;
|
|
489
|
+
total?: number | undefined;
|
|
490
|
+
pageCount?: number | undefined;
|
|
491
|
+
defaultCurrentPage?: number | undefined;
|
|
492
|
+
appendSizeTo?: string | undefined;
|
|
493
|
+
"onUpdate:current-page"?: ((val: number) => any) | undefined | undefined;
|
|
494
|
+
"onUpdate:page-size"?: ((val: number) => any) | undefined | undefined;
|
|
495
|
+
"onSize-change"?: ((val: number) => any) | undefined | undefined;
|
|
496
|
+
"onCurrent-change"?: ((val: number) => any) | undefined | undefined;
|
|
497
|
+
"onPrev-click"?: ((val: number) => any) | undefined | undefined;
|
|
498
|
+
"onNext-click"?: ((val: number) => any) | undefined | undefined;
|
|
499
|
+
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
500
|
+
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
270
501
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
271
502
|
"update:currentPage": (...args: any[]) => void;
|
|
272
503
|
"update:pageSize": (...args: any[]) => void;
|