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
|
@@ -550,325 +550,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
550
550
|
default: string;
|
|
551
551
|
};
|
|
552
552
|
}>, {
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
$props: Partial<{
|
|
557
|
-
readonly disabled: boolean;
|
|
558
|
-
readonly tabindex: string | number;
|
|
559
|
-
readonly id: string;
|
|
560
|
-
readonly type: string;
|
|
561
|
-
readonly modelValue: string | number | null | undefined;
|
|
562
|
-
readonly readonly: boolean;
|
|
563
|
-
readonly autosize: import('element-plus').InputAutoSize;
|
|
564
|
-
readonly autocomplete: AutoFill;
|
|
565
|
-
readonly containerRole: string;
|
|
566
|
-
readonly validateEvent: boolean;
|
|
567
|
-
readonly inputStyle: import('vue').StyleValue;
|
|
568
|
-
readonly rows: number;
|
|
569
|
-
readonly inputmode: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
570
|
-
readonly clearable: boolean;
|
|
571
|
-
readonly showPassword: boolean;
|
|
572
|
-
readonly showWordLimit: boolean;
|
|
573
|
-
readonly autofocus: boolean;
|
|
574
|
-
}> & Omit<{
|
|
575
|
-
readonly disabled: boolean;
|
|
576
|
-
readonly type: string;
|
|
577
|
-
readonly autofocus: boolean;
|
|
578
|
-
readonly modelValue: string | number | null;
|
|
579
|
-
readonly tabindex: string | number;
|
|
580
|
-
readonly validateEvent: boolean;
|
|
581
|
-
readonly clearable: boolean;
|
|
582
|
-
readonly readonly: boolean;
|
|
583
|
-
readonly autosize: import('element-plus').InputAutoSize;
|
|
584
|
-
readonly autocomplete: AutoFill;
|
|
585
|
-
readonly showPassword: boolean;
|
|
586
|
-
readonly showWordLimit: boolean;
|
|
587
|
-
readonly inputStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
588
|
-
readonly rows: number;
|
|
589
|
-
readonly name?: string | undefined;
|
|
590
|
-
readonly form?: string | undefined;
|
|
591
|
-
readonly resize?: ("none" | "both" | "horizontal" | "vertical") | undefined;
|
|
592
|
-
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
593
|
-
readonly placeholder?: string | undefined;
|
|
594
|
-
readonly id?: string | undefined;
|
|
595
|
-
readonly ariaLabel?: string | undefined;
|
|
596
|
-
readonly clearIcon?: (string | import('vue').Component) | undefined;
|
|
597
|
-
readonly prefixIcon?: (string | import('vue').Component) | undefined;
|
|
598
|
-
readonly inputmode?: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
599
|
-
readonly maxlength?: (string | number) | undefined;
|
|
600
|
-
readonly minlength?: (string | number) | undefined;
|
|
601
|
-
readonly formatter?: Function | undefined;
|
|
602
|
-
readonly parser?: Function | undefined;
|
|
603
|
-
readonly suffixIcon?: (string | import('vue').Component) | undefined;
|
|
604
|
-
readonly containerRole?: string | undefined;
|
|
605
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
606
|
-
onChange?: ((value: string) => any) | undefined | undefined;
|
|
607
|
-
onCompositionend?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
608
|
-
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
609
|
-
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
610
|
-
onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
611
|
-
onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
612
|
-
onInput?: ((value: string) => any) | undefined | undefined;
|
|
613
|
-
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined | undefined;
|
|
614
|
-
onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
615
|
-
onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
616
|
-
onClear?: (() => any) | undefined | undefined;
|
|
617
|
-
} & 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">;
|
|
618
|
-
$attrs: {
|
|
619
|
-
[x: string]: unknown;
|
|
620
|
-
};
|
|
621
|
-
$refs: {
|
|
622
|
-
[x: string]: unknown;
|
|
623
|
-
};
|
|
624
|
-
$slots: Readonly<{
|
|
625
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
626
|
-
}>;
|
|
627
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
628
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
629
|
-
$host: Element | null;
|
|
630
|
-
$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);
|
|
631
|
-
$el: any;
|
|
632
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
633
|
-
readonly inputmode: {
|
|
634
|
-
readonly type: import('vue').PropType<"none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined>;
|
|
635
|
-
readonly required: false;
|
|
636
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
637
|
-
__epPropKey: true;
|
|
638
|
-
} & {
|
|
639
|
-
readonly default: undefined;
|
|
640
|
-
};
|
|
641
|
-
readonly name: StringConstructor;
|
|
642
|
-
readonly ariaLabel: StringConstructor;
|
|
643
|
-
readonly id: {
|
|
644
|
-
readonly type: import('vue').PropType<string>;
|
|
645
|
-
readonly required: false;
|
|
646
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
647
|
-
__epPropKey: true;
|
|
648
|
-
} & {
|
|
649
|
-
readonly default: undefined;
|
|
650
|
-
};
|
|
651
|
-
readonly size: {
|
|
652
|
-
readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
653
|
-
readonly required: false;
|
|
654
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
655
|
-
__epPropKey: true;
|
|
656
|
-
};
|
|
657
|
-
readonly disabled: BooleanConstructor;
|
|
658
|
-
readonly modelValue: {
|
|
659
|
-
readonly type: import('vue').PropType<string | number | null | undefined>;
|
|
660
|
-
readonly required: false;
|
|
661
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
662
|
-
__epPropKey: true;
|
|
663
|
-
} & {
|
|
664
|
-
readonly default: "";
|
|
665
|
-
};
|
|
666
|
-
readonly maxlength: {
|
|
667
|
-
readonly type: import('vue').PropType<string | number>;
|
|
668
|
-
readonly required: false;
|
|
669
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
670
|
-
__epPropKey: true;
|
|
671
|
-
};
|
|
672
|
-
readonly minlength: {
|
|
673
|
-
readonly type: import('vue').PropType<string | number>;
|
|
674
|
-
readonly required: false;
|
|
675
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
676
|
-
__epPropKey: true;
|
|
677
|
-
};
|
|
678
|
-
readonly type: {
|
|
679
|
-
readonly type: import('vue').PropType<string>;
|
|
680
|
-
readonly required: false;
|
|
681
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
682
|
-
__epPropKey: true;
|
|
683
|
-
} & {
|
|
684
|
-
readonly default: "text";
|
|
685
|
-
};
|
|
686
|
-
readonly resize: {
|
|
687
|
-
readonly type: import('vue').PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
688
|
-
readonly required: false;
|
|
689
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
690
|
-
__epPropKey: true;
|
|
691
|
-
};
|
|
692
|
-
readonly autosize: {
|
|
693
|
-
readonly type: import('vue').PropType<import('element-plus').InputAutoSize>;
|
|
694
|
-
readonly required: false;
|
|
695
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
696
|
-
__epPropKey: true;
|
|
697
|
-
} & {
|
|
698
|
-
readonly default: false;
|
|
699
|
-
};
|
|
700
|
-
readonly autocomplete: {
|
|
701
|
-
readonly type: import('vue').PropType<AutoFill>;
|
|
702
|
-
readonly required: false;
|
|
703
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
704
|
-
__epPropKey: true;
|
|
705
|
-
} & {
|
|
706
|
-
readonly default: "off";
|
|
707
|
-
};
|
|
708
|
-
readonly formatter: {
|
|
709
|
-
readonly type: import('vue').PropType<Function>;
|
|
710
|
-
readonly required: false;
|
|
711
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
712
|
-
__epPropKey: true;
|
|
713
|
-
};
|
|
714
|
-
readonly parser: {
|
|
715
|
-
readonly type: import('vue').PropType<Function>;
|
|
716
|
-
readonly required: false;
|
|
717
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
718
|
-
__epPropKey: true;
|
|
719
|
-
};
|
|
720
|
-
readonly placeholder: {
|
|
721
|
-
readonly type: import('vue').PropType<string>;
|
|
722
|
-
readonly required: false;
|
|
723
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
724
|
-
__epPropKey: true;
|
|
725
|
-
};
|
|
726
|
-
readonly form: {
|
|
727
|
-
readonly type: import('vue').PropType<string>;
|
|
728
|
-
readonly required: false;
|
|
729
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
730
|
-
__epPropKey: true;
|
|
731
|
-
};
|
|
732
|
-
readonly readonly: BooleanConstructor;
|
|
733
|
-
readonly clearable: BooleanConstructor;
|
|
734
|
-
readonly clearIcon: {
|
|
735
|
-
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
736
|
-
readonly required: false;
|
|
737
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
738
|
-
__epPropKey: true;
|
|
739
|
-
};
|
|
740
|
-
readonly showPassword: BooleanConstructor;
|
|
741
|
-
readonly showWordLimit: BooleanConstructor;
|
|
742
|
-
readonly suffixIcon: {
|
|
743
|
-
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
744
|
-
readonly required: false;
|
|
745
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
746
|
-
__epPropKey: true;
|
|
747
|
-
};
|
|
748
|
-
readonly prefixIcon: {
|
|
749
|
-
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
750
|
-
readonly required: false;
|
|
751
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
752
|
-
__epPropKey: true;
|
|
753
|
-
};
|
|
754
|
-
readonly containerRole: {
|
|
755
|
-
readonly type: import('vue').PropType<string>;
|
|
756
|
-
readonly required: false;
|
|
757
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
758
|
-
__epPropKey: true;
|
|
759
|
-
} & {
|
|
760
|
-
readonly default: undefined;
|
|
761
|
-
};
|
|
762
|
-
readonly tabindex: {
|
|
763
|
-
readonly type: import('vue').PropType<string | number>;
|
|
764
|
-
readonly required: false;
|
|
765
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
766
|
-
__epPropKey: true;
|
|
767
|
-
} & {
|
|
768
|
-
readonly default: 0;
|
|
769
|
-
};
|
|
770
|
-
readonly validateEvent: {
|
|
771
|
-
readonly type: import('vue').PropType<boolean>;
|
|
772
|
-
readonly required: false;
|
|
773
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
774
|
-
__epPropKey: true;
|
|
775
|
-
} & {
|
|
776
|
-
readonly default: true;
|
|
777
|
-
};
|
|
778
|
-
readonly inputStyle: {
|
|
779
|
-
readonly type: import('vue').PropType<import('vue').StyleValue>;
|
|
780
|
-
readonly required: false;
|
|
781
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
782
|
-
__epPropKey: true;
|
|
783
|
-
} & {
|
|
784
|
-
readonly default: () => {};
|
|
785
|
-
};
|
|
786
|
-
readonly autofocus: BooleanConstructor;
|
|
787
|
-
readonly rows: {
|
|
788
|
-
readonly type: import('vue').PropType<number>;
|
|
789
|
-
readonly required: false;
|
|
790
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
791
|
-
__epPropKey: true;
|
|
792
|
-
} & {
|
|
793
|
-
readonly default: 2;
|
|
794
|
-
};
|
|
795
|
-
}>> & {
|
|
796
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
797
|
-
onChange?: ((value: string) => any) | undefined;
|
|
798
|
-
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
799
|
-
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
800
|
-
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
801
|
-
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
802
|
-
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
803
|
-
onInput?: ((value: string) => any) | undefined;
|
|
804
|
-
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
805
|
-
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
806
|
-
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
807
|
-
onClear?: (() => any) | undefined;
|
|
808
|
-
}, {
|
|
809
|
-
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
810
|
-
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
811
|
-
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
812
|
-
textareaStyle: import('vue').ComputedRef<import('vue').StyleValue>;
|
|
813
|
-
autosize: import('vue').Ref<import('element-plus').InputAutoSize>;
|
|
814
|
-
isComposing: import('vue').Ref<boolean>;
|
|
815
|
-
focus: () => void | undefined;
|
|
816
|
-
blur: () => void | undefined;
|
|
817
|
-
select: () => void;
|
|
818
|
-
clear: () => void;
|
|
819
|
-
resizeTextarea: () => void;
|
|
820
|
-
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
821
|
-
input: (value: string) => void;
|
|
822
|
-
focus: (evt: FocusEvent) => void;
|
|
823
|
-
clear: () => void;
|
|
824
|
-
"update:modelValue": (value: string) => void;
|
|
825
|
-
change: (value: string) => void;
|
|
826
|
-
blur: (evt: FocusEvent) => void;
|
|
827
|
-
compositionend: (evt: CompositionEvent) => void;
|
|
828
|
-
compositionstart: (evt: CompositionEvent) => void;
|
|
829
|
-
compositionupdate: (evt: CompositionEvent) => void;
|
|
830
|
-
keydown: (evt: Event | KeyboardEvent) => void;
|
|
831
|
-
mouseenter: (evt: MouseEvent) => void;
|
|
832
|
-
mouseleave: (evt: MouseEvent) => void;
|
|
833
|
-
}, string, {
|
|
834
|
-
readonly disabled: boolean;
|
|
835
|
-
readonly tabindex: string | number;
|
|
836
|
-
readonly id: string;
|
|
837
|
-
readonly type: string;
|
|
838
|
-
readonly modelValue: string | number | null | undefined;
|
|
839
|
-
readonly readonly: boolean;
|
|
840
|
-
readonly autosize: import('element-plus').InputAutoSize;
|
|
841
|
-
readonly autocomplete: AutoFill;
|
|
842
|
-
readonly containerRole: string;
|
|
843
|
-
readonly validateEvent: boolean;
|
|
844
|
-
readonly inputStyle: import('vue').StyleValue;
|
|
845
|
-
readonly rows: number;
|
|
846
|
-
readonly inputmode: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
847
|
-
readonly clearable: boolean;
|
|
848
|
-
readonly showPassword: boolean;
|
|
849
|
-
readonly showWordLimit: boolean;
|
|
850
|
-
readonly autofocus: boolean;
|
|
851
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
852
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
853
|
-
created?: (() => void) | (() => void)[];
|
|
854
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
855
|
-
mounted?: (() => void) | (() => void)[];
|
|
856
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
857
|
-
updated?: (() => void) | (() => void)[];
|
|
858
|
-
activated?: (() => void) | (() => void)[];
|
|
859
|
-
deactivated?: (() => void) | (() => void)[];
|
|
860
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
861
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
862
|
-
destroyed?: (() => void) | (() => void)[];
|
|
863
|
-
unmounted?: (() => void) | (() => void)[];
|
|
864
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
865
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
866
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
867
|
-
};
|
|
868
|
-
$forceUpdate: () => void;
|
|
869
|
-
$nextTick: typeof import('vue').nextTick;
|
|
870
|
-
$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;
|
|
871
|
-
} & Readonly<{
|
|
553
|
+
$: import('vue').ComponentInternalInstance;
|
|
554
|
+
$data: {};
|
|
555
|
+
$props: Partial<{
|
|
872
556
|
readonly disabled: boolean;
|
|
873
557
|
readonly tabindex: string | number;
|
|
874
558
|
readonly id: string;
|
|
@@ -886,7 +570,70 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
886
570
|
readonly showPassword: boolean;
|
|
887
571
|
readonly showWordLimit: boolean;
|
|
888
572
|
readonly autofocus: boolean;
|
|
889
|
-
}> & Omit<
|
|
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<{
|
|
890
637
|
readonly inputmode: {
|
|
891
638
|
readonly type: import('vue').PropType<"none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined>;
|
|
892
639
|
readonly required: false;
|
|
@@ -1062,7 +809,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1062
809
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
1063
810
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
1064
811
|
onClear?: (() => any) | undefined;
|
|
1065
|
-
},
|
|
812
|
+
}, {
|
|
1066
813
|
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
1067
814
|
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
1068
815
|
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
@@ -1074,14 +821,111 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1074
821
|
select: () => void;
|
|
1075
822
|
clear: () => void;
|
|
1076
823
|
resizeTextarea: () => void;
|
|
1077
|
-
}
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
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;
|
|
1085
929
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1086
930
|
cssStyle: {
|
|
1087
931
|
type: StringConstructor;
|