z-ui-pc 1.1.19 → 1.1.21

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/dist/index.d.ts CHANGED
@@ -8,14 +8,18 @@ import { cascaderProps } from 'element-plus/es/components/cascader/src/cascader'
8
8
  import { CascaderValue } from 'element-plus';
9
9
  import { ColProps } from 'element-plus';
10
10
  import { Component } from 'vue';
11
+ import { ComponentCustomProperties } from 'vue';
11
12
  import { ComponentCustomProps } from 'vue';
13
+ import { ComponentInternalInstance } from 'vue';
12
14
  import { ComponentOptionsBase } from 'vue';
13
15
  import { ComponentOptionsMixin } from 'vue';
14
16
  import { ComponentProvideOptions } from 'vue';
15
17
  import { ComponentPublicInstance } from 'vue';
16
18
  import { ComputedRef } from 'vue';
17
19
  import { CreateComponentPublicInstanceWithMixins } from 'vue';
20
+ import { CSSProperties } from 'vue';
18
21
  import { DatePickerProps } from 'element-plus';
22
+ import { DebuggerEvent } from 'vue';
19
23
  import { default as default_2 } from 'lodash';
20
24
  import { DefineComponent } from 'vue';
21
25
  import { Directive } from 'vue';
@@ -39,6 +43,7 @@ import { h } from 'vue';
39
43
 
40
44
 
41
45
 
46
+ import { InputAutoSize } from 'element-plus';
42
47
  import { InputEmits } from 'element-plus';
43
48
  import { InputProps } from 'element-plus';
44
49
 
@@ -48,8 +53,11 @@ import { JSX } from 'vue/jsx-runtime';
48
53
  import { ManipulateType } from 'dayjs';
49
54
  import { MessageBoxData } from 'element-plus';
50
55
  import { MessageOptions } from 'element-plus';
56
+ import { nextTick } from 'vue';
57
+ import { OnCleanup } from '@vue/reactivity';
51
58
  import { PaginationProps } from 'element-plus';
52
59
  import { Plugin as Plugin_2 } from 'vue';
60
+ import { PropType } from 'vue';
53
61
  import { PublicProps } from 'vue';
54
62
  import { RadioGroupProps } from 'element-plus';
55
63
  import { Raw } from 'vue';
@@ -57,12 +65,17 @@ import { Ref } from 'vue';
57
65
  import { RowProps } from 'element-plus';
58
66
  import { SelectProps } from 'element-plus/es/components/select/src/select';
59
67
  import { ShallowRef } from 'vue';
68
+ import { ShallowUnwrapRef } from 'vue';
69
+ import { Slot } from 'vue';
70
+ import { StyleValue } from 'vue';
60
71
  import { SwitchProps } from 'element-plus';
61
72
  import { TableColumnCtx } from 'element-plus/es/components/table/src/table-column/defaults';
62
73
  import { TableProps } from 'element-plus';
63
74
 
64
75
  import { VNode } from 'vue';
65
76
  import { VNodeProps } from 'vue';
77
+ import { WatchOptions } from 'vue';
78
+ import { WatchStopHandle } from 'vue';
66
79
 
67
80
  export declare function $alert(content: string, options?: ElMessageBoxOptions): Promise<MessageBoxData>;
68
81
 
@@ -654,7 +667,1046 @@ inputWidth: string;
654
667
 
655
668
  export declare const BaseRadio: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
656
669
 
657
- export declare const BaseSearchInput: DefineComponent<IBaseSearchInputProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
670
+ export declare const BaseSearchInput: DefineComponent<IBaseSearchInputProps, {
671
+ focus: () => void;
672
+ inputRef: Ref<({
673
+ $: ComponentInternalInstance;
674
+ $data: {};
675
+ $props: Partial<{
676
+ readonly disabled: boolean;
677
+ readonly id: string;
678
+ readonly type: string;
679
+ readonly modelValue: string | number | null | undefined;
680
+ readonly tabindex: string | number;
681
+ readonly readonly: boolean;
682
+ readonly autosize: InputAutoSize;
683
+ readonly autocomplete: string;
684
+ readonly containerRole: string;
685
+ readonly validateEvent: boolean;
686
+ readonly inputStyle: StyleValue;
687
+ readonly rows: number;
688
+ readonly inputmode: "text" | "none" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
689
+ readonly clearable: boolean;
690
+ readonly showPassword: boolean;
691
+ readonly showWordLimit: boolean;
692
+ readonly autofocus: boolean;
693
+ }> & Omit<{
694
+ readonly modelValue: string | number | null;
695
+ readonly autocomplete: string;
696
+ readonly disabled: boolean;
697
+ readonly clearable: boolean;
698
+ readonly validateEvent: boolean;
699
+ readonly tabindex: string | number;
700
+ readonly type: string;
701
+ readonly autosize: InputAutoSize;
702
+ readonly readonly: boolean;
703
+ readonly showPassword: boolean;
704
+ readonly showWordLimit: boolean;
705
+ readonly inputStyle: string | false | CSSProperties | StyleValue[] | null;
706
+ readonly autofocus: boolean;
707
+ readonly rows: number;
708
+ readonly size?: ("" | "small" | "default" | "large") | undefined;
709
+ readonly name?: string | undefined;
710
+ readonly form?: string | undefined;
711
+ readonly ariaLabel?: string | undefined;
712
+ readonly id?: string | undefined;
713
+ readonly placeholder?: string | undefined;
714
+ readonly suffixIcon?: (string | Component) | undefined;
715
+ readonly inputmode?: "text" | "none" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
716
+ readonly maxlength?: (string | number) | undefined;
717
+ readonly minlength?: (string | number) | undefined;
718
+ readonly resize?: ("none" | "both" | "horizontal" | "vertical") | undefined;
719
+ readonly formatter?: Function | undefined;
720
+ readonly parser?: Function | undefined;
721
+ readonly prefixIcon?: (string | Component) | undefined;
722
+ readonly containerRole?: string | undefined;
723
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
724
+ onChange?: ((value: string) => any) | undefined | undefined;
725
+ onCompositionend?: ((evt: CompositionEvent) => any) | undefined | undefined;
726
+ onCompositionstart?: ((evt: CompositionEvent) => any) | undefined | undefined;
727
+ onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined | undefined;
728
+ onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
729
+ onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
730
+ onInput?: ((value: string) => any) | undefined | undefined;
731
+ onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined | undefined;
732
+ onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
733
+ onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
734
+ onClear?: (() => any) | undefined | undefined;
735
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "modelValue" | "id" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "type" | "inputmode" | "autosize" | "readonly" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "autofocus" | "rows">;
736
+ $attrs: {
737
+ [x: string]: unknown;
738
+ };
739
+ $refs: {
740
+ [x: string]: unknown;
741
+ };
742
+ $slots: Readonly<{
743
+ [name: string]: Slot<any> | undefined;
744
+ }>;
745
+ $root: ComponentPublicInstance | null;
746
+ $parent: ComponentPublicInstance | null;
747
+ $host: Element | null;
748
+ $emit: ((event: "clear") => void) & ((event: "input", value: string) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "change", value: string) => void) & ((event: "blur", evt: FocusEvent) => 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);
749
+ $el: any;
750
+ $options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
751
+ readonly inputmode: {
752
+ readonly type: PropType<"text" | "none" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined>;
753
+ readonly required: false;
754
+ readonly validator: ((val: unknown) => boolean) | undefined;
755
+ __epPropKey: true;
756
+ } & {
757
+ readonly default: undefined;
758
+ };
759
+ readonly name: StringConstructor;
760
+ readonly ariaLabel: StringConstructor;
761
+ readonly id: {
762
+ readonly type: PropType<string>;
763
+ readonly required: false;
764
+ readonly validator: ((val: unknown) => boolean) | undefined;
765
+ __epPropKey: true;
766
+ } & {
767
+ readonly default: undefined;
768
+ };
769
+ readonly size: {
770
+ readonly type: PropType<"" | "small" | "default" | "large">;
771
+ readonly required: false;
772
+ readonly validator: ((val: unknown) => boolean) | undefined;
773
+ __epPropKey: true;
774
+ };
775
+ readonly disabled: BooleanConstructor;
776
+ readonly modelValue: {
777
+ readonly type: PropType<string | number | null | undefined>;
778
+ readonly required: false;
779
+ readonly validator: ((val: unknown) => boolean) | undefined;
780
+ __epPropKey: true;
781
+ } & {
782
+ readonly default: "";
783
+ };
784
+ readonly maxlength: {
785
+ readonly type: PropType<string | number>;
786
+ readonly required: false;
787
+ readonly validator: ((val: unknown) => boolean) | undefined;
788
+ __epPropKey: true;
789
+ };
790
+ readonly minlength: {
791
+ readonly type: PropType<string | number>;
792
+ readonly required: false;
793
+ readonly validator: ((val: unknown) => boolean) | undefined;
794
+ __epPropKey: true;
795
+ };
796
+ readonly type: {
797
+ readonly type: PropType<string>;
798
+ readonly required: false;
799
+ readonly validator: ((val: unknown) => boolean) | undefined;
800
+ __epPropKey: true;
801
+ } & {
802
+ readonly default: "text";
803
+ };
804
+ readonly resize: {
805
+ readonly type: PropType<"none" | "both" | "horizontal" | "vertical">;
806
+ readonly required: false;
807
+ readonly validator: ((val: unknown) => boolean) | undefined;
808
+ __epPropKey: true;
809
+ };
810
+ readonly autosize: {
811
+ readonly type: PropType<InputAutoSize>;
812
+ readonly required: false;
813
+ readonly validator: ((val: unknown) => boolean) | undefined;
814
+ __epPropKey: true;
815
+ } & {
816
+ readonly default: false;
817
+ };
818
+ readonly autocomplete: {
819
+ readonly type: PropType<string>;
820
+ readonly required: false;
821
+ readonly validator: ((val: unknown) => boolean) | undefined;
822
+ __epPropKey: true;
823
+ } & {
824
+ readonly default: "off";
825
+ };
826
+ readonly formatter: {
827
+ readonly type: PropType<Function>;
828
+ readonly required: false;
829
+ readonly validator: ((val: unknown) => boolean) | undefined;
830
+ __epPropKey: true;
831
+ };
832
+ readonly parser: {
833
+ readonly type: PropType<Function>;
834
+ readonly required: false;
835
+ readonly validator: ((val: unknown) => boolean) | undefined;
836
+ __epPropKey: true;
837
+ };
838
+ readonly placeholder: {
839
+ readonly type: PropType<string>;
840
+ readonly required: false;
841
+ readonly validator: ((val: unknown) => boolean) | undefined;
842
+ __epPropKey: true;
843
+ };
844
+ readonly form: {
845
+ readonly type: PropType<string>;
846
+ readonly required: false;
847
+ readonly validator: ((val: unknown) => boolean) | undefined;
848
+ __epPropKey: true;
849
+ };
850
+ readonly readonly: BooleanConstructor;
851
+ readonly clearable: BooleanConstructor;
852
+ readonly showPassword: BooleanConstructor;
853
+ readonly showWordLimit: BooleanConstructor;
854
+ readonly suffixIcon: {
855
+ readonly type: PropType<string | Component>;
856
+ readonly required: false;
857
+ readonly validator: ((val: unknown) => boolean) | undefined;
858
+ __epPropKey: true;
859
+ };
860
+ readonly prefixIcon: {
861
+ readonly type: PropType<string | Component>;
862
+ readonly required: false;
863
+ readonly validator: ((val: unknown) => boolean) | undefined;
864
+ __epPropKey: true;
865
+ };
866
+ readonly containerRole: {
867
+ readonly type: PropType<string>;
868
+ readonly required: false;
869
+ readonly validator: ((val: unknown) => boolean) | undefined;
870
+ __epPropKey: true;
871
+ } & {
872
+ readonly default: undefined;
873
+ };
874
+ readonly tabindex: {
875
+ readonly type: PropType<string | number>;
876
+ readonly required: false;
877
+ readonly validator: ((val: unknown) => boolean) | undefined;
878
+ __epPropKey: true;
879
+ } & {
880
+ readonly default: 0;
881
+ };
882
+ readonly validateEvent: {
883
+ readonly type: PropType<boolean>;
884
+ readonly required: false;
885
+ readonly validator: ((val: unknown) => boolean) | undefined;
886
+ __epPropKey: true;
887
+ } & {
888
+ readonly default: true;
889
+ };
890
+ readonly inputStyle: {
891
+ readonly type: PropType<StyleValue>;
892
+ readonly required: false;
893
+ readonly validator: ((val: unknown) => boolean) | undefined;
894
+ __epPropKey: true;
895
+ } & {
896
+ readonly default: () => {};
897
+ };
898
+ readonly autofocus: BooleanConstructor;
899
+ readonly rows: {
900
+ readonly type: PropType<number>;
901
+ readonly required: false;
902
+ readonly validator: ((val: unknown) => boolean) | undefined;
903
+ __epPropKey: true;
904
+ } & {
905
+ readonly default: 2;
906
+ };
907
+ }>> & {
908
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
909
+ onChange?: ((value: string) => any) | undefined;
910
+ onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
911
+ onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
912
+ onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
913
+ onFocus?: ((evt: FocusEvent) => any) | undefined;
914
+ onBlur?: ((evt: FocusEvent) => any) | undefined;
915
+ onInput?: ((value: string) => any) | undefined;
916
+ onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
917
+ onMouseenter?: ((evt: MouseEvent) => any) | undefined;
918
+ onMouseleave?: ((evt: MouseEvent) => any) | undefined;
919
+ onClear?: (() => any) | undefined;
920
+ }, {
921
+ input: ShallowRef<HTMLInputElement | undefined>;
922
+ textarea: ShallowRef<HTMLTextAreaElement | undefined>;
923
+ ref: ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
924
+ textareaStyle: ComputedRef<StyleValue>;
925
+ autosize: Ref<InputAutoSize>;
926
+ isComposing: Ref<boolean>;
927
+ focus: () => void | undefined;
928
+ blur: () => void | undefined;
929
+ select: () => void;
930
+ clear: () => void;
931
+ resizeTextarea: () => void;
932
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
933
+ input: (value: string) => void;
934
+ clear: () => void;
935
+ "update:modelValue": (value: string) => void;
936
+ change: (value: string) => void;
937
+ blur: (evt: FocusEvent) => void;
938
+ compositionend: (evt: CompositionEvent) => void;
939
+ compositionstart: (evt: CompositionEvent) => void;
940
+ compositionupdate: (evt: CompositionEvent) => void;
941
+ focus: (evt: FocusEvent) => void;
942
+ keydown: (evt: Event | KeyboardEvent) => void;
943
+ mouseenter: (evt: MouseEvent) => void;
944
+ mouseleave: (evt: MouseEvent) => void;
945
+ }, string, {
946
+ readonly disabled: boolean;
947
+ readonly id: string;
948
+ readonly type: string;
949
+ readonly modelValue: string | number | null | undefined;
950
+ readonly tabindex: string | number;
951
+ readonly readonly: boolean;
952
+ readonly autosize: InputAutoSize;
953
+ readonly autocomplete: string;
954
+ readonly containerRole: string;
955
+ readonly validateEvent: boolean;
956
+ readonly inputStyle: StyleValue;
957
+ readonly rows: number;
958
+ readonly inputmode: "text" | "none" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
959
+ readonly clearable: boolean;
960
+ readonly showPassword: boolean;
961
+ readonly showWordLimit: boolean;
962
+ readonly autofocus: boolean;
963
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
964
+ beforeCreate?: (() => void) | (() => void)[];
965
+ created?: (() => void) | (() => void)[];
966
+ beforeMount?: (() => void) | (() => void)[];
967
+ mounted?: (() => void) | (() => void)[];
968
+ beforeUpdate?: (() => void) | (() => void)[];
969
+ updated?: (() => void) | (() => void)[];
970
+ activated?: (() => void) | (() => void)[];
971
+ deactivated?: (() => void) | (() => void)[];
972
+ beforeDestroy?: (() => void) | (() => void)[];
973
+ beforeUnmount?: (() => void) | (() => void)[];
974
+ destroyed?: (() => void) | (() => void)[];
975
+ unmounted?: (() => void) | (() => void)[];
976
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
977
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
978
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
979
+ };
980
+ $forceUpdate: () => void;
981
+ $nextTick: nextTick;
982
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
983
+ } & Readonly<{
984
+ readonly disabled: boolean;
985
+ readonly id: string;
986
+ readonly type: string;
987
+ readonly modelValue: string | number | null | undefined;
988
+ readonly tabindex: string | number;
989
+ readonly readonly: boolean;
990
+ readonly autosize: InputAutoSize;
991
+ readonly autocomplete: string;
992
+ readonly containerRole: string;
993
+ readonly validateEvent: boolean;
994
+ readonly inputStyle: StyleValue;
995
+ readonly rows: number;
996
+ readonly inputmode: "text" | "none" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
997
+ readonly clearable: boolean;
998
+ readonly showPassword: boolean;
999
+ readonly showWordLimit: boolean;
1000
+ readonly autofocus: boolean;
1001
+ }> & Omit<Readonly<ExtractPropTypes< {
1002
+ readonly inputmode: {
1003
+ readonly type: PropType<"text" | "none" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined>;
1004
+ readonly required: false;
1005
+ readonly validator: ((val: unknown) => boolean) | undefined;
1006
+ __epPropKey: true;
1007
+ } & {
1008
+ readonly default: undefined;
1009
+ };
1010
+ readonly name: StringConstructor;
1011
+ readonly ariaLabel: StringConstructor;
1012
+ readonly id: {
1013
+ readonly type: PropType<string>;
1014
+ readonly required: false;
1015
+ readonly validator: ((val: unknown) => boolean) | undefined;
1016
+ __epPropKey: true;
1017
+ } & {
1018
+ readonly default: undefined;
1019
+ };
1020
+ readonly size: {
1021
+ readonly type: PropType<"" | "small" | "default" | "large">;
1022
+ readonly required: false;
1023
+ readonly validator: ((val: unknown) => boolean) | undefined;
1024
+ __epPropKey: true;
1025
+ };
1026
+ readonly disabled: BooleanConstructor;
1027
+ readonly modelValue: {
1028
+ readonly type: PropType<string | number | null | undefined>;
1029
+ readonly required: false;
1030
+ readonly validator: ((val: unknown) => boolean) | undefined;
1031
+ __epPropKey: true;
1032
+ } & {
1033
+ readonly default: "";
1034
+ };
1035
+ readonly maxlength: {
1036
+ readonly type: PropType<string | number>;
1037
+ readonly required: false;
1038
+ readonly validator: ((val: unknown) => boolean) | undefined;
1039
+ __epPropKey: true;
1040
+ };
1041
+ readonly minlength: {
1042
+ readonly type: PropType<string | number>;
1043
+ readonly required: false;
1044
+ readonly validator: ((val: unknown) => boolean) | undefined;
1045
+ __epPropKey: true;
1046
+ };
1047
+ readonly type: {
1048
+ readonly type: PropType<string>;
1049
+ readonly required: false;
1050
+ readonly validator: ((val: unknown) => boolean) | undefined;
1051
+ __epPropKey: true;
1052
+ } & {
1053
+ readonly default: "text";
1054
+ };
1055
+ readonly resize: {
1056
+ readonly type: PropType<"none" | "both" | "horizontal" | "vertical">;
1057
+ readonly required: false;
1058
+ readonly validator: ((val: unknown) => boolean) | undefined;
1059
+ __epPropKey: true;
1060
+ };
1061
+ readonly autosize: {
1062
+ readonly type: PropType<InputAutoSize>;
1063
+ readonly required: false;
1064
+ readonly validator: ((val: unknown) => boolean) | undefined;
1065
+ __epPropKey: true;
1066
+ } & {
1067
+ readonly default: false;
1068
+ };
1069
+ readonly autocomplete: {
1070
+ readonly type: PropType<string>;
1071
+ readonly required: false;
1072
+ readonly validator: ((val: unknown) => boolean) | undefined;
1073
+ __epPropKey: true;
1074
+ } & {
1075
+ readonly default: "off";
1076
+ };
1077
+ readonly formatter: {
1078
+ readonly type: PropType<Function>;
1079
+ readonly required: false;
1080
+ readonly validator: ((val: unknown) => boolean) | undefined;
1081
+ __epPropKey: true;
1082
+ };
1083
+ readonly parser: {
1084
+ readonly type: PropType<Function>;
1085
+ readonly required: false;
1086
+ readonly validator: ((val: unknown) => boolean) | undefined;
1087
+ __epPropKey: true;
1088
+ };
1089
+ readonly placeholder: {
1090
+ readonly type: PropType<string>;
1091
+ readonly required: false;
1092
+ readonly validator: ((val: unknown) => boolean) | undefined;
1093
+ __epPropKey: true;
1094
+ };
1095
+ readonly form: {
1096
+ readonly type: PropType<string>;
1097
+ readonly required: false;
1098
+ readonly validator: ((val: unknown) => boolean) | undefined;
1099
+ __epPropKey: true;
1100
+ };
1101
+ readonly readonly: BooleanConstructor;
1102
+ readonly clearable: BooleanConstructor;
1103
+ readonly showPassword: BooleanConstructor;
1104
+ readonly showWordLimit: BooleanConstructor;
1105
+ readonly suffixIcon: {
1106
+ readonly type: PropType<string | Component>;
1107
+ readonly required: false;
1108
+ readonly validator: ((val: unknown) => boolean) | undefined;
1109
+ __epPropKey: true;
1110
+ };
1111
+ readonly prefixIcon: {
1112
+ readonly type: PropType<string | Component>;
1113
+ readonly required: false;
1114
+ readonly validator: ((val: unknown) => boolean) | undefined;
1115
+ __epPropKey: true;
1116
+ };
1117
+ readonly containerRole: {
1118
+ readonly type: PropType<string>;
1119
+ readonly required: false;
1120
+ readonly validator: ((val: unknown) => boolean) | undefined;
1121
+ __epPropKey: true;
1122
+ } & {
1123
+ readonly default: undefined;
1124
+ };
1125
+ readonly tabindex: {
1126
+ readonly type: PropType<string | number>;
1127
+ readonly required: false;
1128
+ readonly validator: ((val: unknown) => boolean) | undefined;
1129
+ __epPropKey: true;
1130
+ } & {
1131
+ readonly default: 0;
1132
+ };
1133
+ readonly validateEvent: {
1134
+ readonly type: PropType<boolean>;
1135
+ readonly required: false;
1136
+ readonly validator: ((val: unknown) => boolean) | undefined;
1137
+ __epPropKey: true;
1138
+ } & {
1139
+ readonly default: true;
1140
+ };
1141
+ readonly inputStyle: {
1142
+ readonly type: PropType<StyleValue>;
1143
+ readonly required: false;
1144
+ readonly validator: ((val: unknown) => boolean) | undefined;
1145
+ __epPropKey: true;
1146
+ } & {
1147
+ readonly default: () => {};
1148
+ };
1149
+ readonly autofocus: BooleanConstructor;
1150
+ readonly rows: {
1151
+ readonly type: PropType<number>;
1152
+ readonly required: false;
1153
+ readonly validator: ((val: unknown) => boolean) | undefined;
1154
+ __epPropKey: true;
1155
+ } & {
1156
+ readonly default: 2;
1157
+ };
1158
+ }>> & {
1159
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1160
+ onChange?: ((value: string) => any) | undefined;
1161
+ onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
1162
+ onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
1163
+ onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
1164
+ onFocus?: ((evt: FocusEvent) => any) | undefined;
1165
+ onBlur?: ((evt: FocusEvent) => any) | undefined;
1166
+ onInput?: ((value: string) => any) | undefined;
1167
+ onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
1168
+ onMouseenter?: ((evt: MouseEvent) => any) | undefined;
1169
+ onMouseleave?: ((evt: MouseEvent) => any) | undefined;
1170
+ onClear?: (() => any) | undefined;
1171
+ }, "clear" | "input" | "select" | "textarea" | "modelValue" | "id" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "type" | "inputmode" | "autosize" | "readonly" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "autofocus" | "rows" | "blur" | "focus" | "ref" | "textareaStyle" | "isComposing" | "resizeTextarea"> & ShallowUnwrapRef< {
1172
+ input: ShallowRef<HTMLInputElement | undefined>;
1173
+ textarea: ShallowRef<HTMLTextAreaElement | undefined>;
1174
+ ref: ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
1175
+ textareaStyle: ComputedRef<StyleValue>;
1176
+ autosize: Ref<InputAutoSize>;
1177
+ isComposing: Ref<boolean>;
1178
+ focus: () => void | undefined;
1179
+ blur: () => void | undefined;
1180
+ select: () => void;
1181
+ clear: () => void;
1182
+ resizeTextarea: () => void;
1183
+ }> & {} & ComponentCustomProperties & {} & {
1184
+ $slots: {
1185
+ prepend?(_: {}): any;
1186
+ prefix?(_: {}): any;
1187
+ suffix?(_: {}): any;
1188
+ append?(_: {}): any;
1189
+ };
1190
+ }) | undefined, ({
1191
+ $: ComponentInternalInstance;
1192
+ $data: {};
1193
+ $props: Partial<{
1194
+ readonly disabled: boolean;
1195
+ readonly id: string;
1196
+ readonly type: string;
1197
+ readonly modelValue: string | number | null | undefined;
1198
+ readonly tabindex: string | number;
1199
+ readonly readonly: boolean;
1200
+ readonly autosize: InputAutoSize;
1201
+ readonly autocomplete: string;
1202
+ readonly containerRole: string;
1203
+ readonly validateEvent: boolean;
1204
+ readonly inputStyle: StyleValue;
1205
+ readonly rows: number;
1206
+ readonly inputmode: "text" | "none" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
1207
+ readonly clearable: boolean;
1208
+ readonly showPassword: boolean;
1209
+ readonly showWordLimit: boolean;
1210
+ readonly autofocus: boolean;
1211
+ }> & Omit<{
1212
+ readonly modelValue: string | number | null;
1213
+ readonly autocomplete: string;
1214
+ readonly disabled: boolean;
1215
+ readonly clearable: boolean;
1216
+ readonly validateEvent: boolean;
1217
+ readonly tabindex: string | number;
1218
+ readonly type: string;
1219
+ readonly autosize: InputAutoSize;
1220
+ readonly readonly: boolean;
1221
+ readonly showPassword: boolean;
1222
+ readonly showWordLimit: boolean;
1223
+ readonly inputStyle: string | false | CSSProperties | StyleValue[] | null;
1224
+ readonly autofocus: boolean;
1225
+ readonly rows: number;
1226
+ readonly size?: ("" | "small" | "default" | "large") | undefined;
1227
+ readonly name?: string | undefined;
1228
+ readonly form?: string | undefined;
1229
+ readonly ariaLabel?: string | undefined;
1230
+ readonly id?: string | undefined;
1231
+ readonly placeholder?: string | undefined;
1232
+ readonly suffixIcon?: (string | Component) | undefined;
1233
+ readonly inputmode?: "text" | "none" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
1234
+ readonly maxlength?: (string | number) | undefined;
1235
+ readonly minlength?: (string | number) | undefined;
1236
+ readonly resize?: ("none" | "both" | "horizontal" | "vertical") | undefined;
1237
+ readonly formatter?: Function | undefined;
1238
+ readonly parser?: Function | undefined;
1239
+ readonly prefixIcon?: (string | Component) | undefined;
1240
+ readonly containerRole?: string | undefined;
1241
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
1242
+ onChange?: ((value: string) => any) | undefined | undefined;
1243
+ onCompositionend?: ((evt: CompositionEvent) => any) | undefined | undefined;
1244
+ onCompositionstart?: ((evt: CompositionEvent) => any) | undefined | undefined;
1245
+ onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined | undefined;
1246
+ onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
1247
+ onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
1248
+ onInput?: ((value: string) => any) | undefined | undefined;
1249
+ onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined | undefined;
1250
+ onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
1251
+ onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
1252
+ onClear?: (() => any) | undefined | undefined;
1253
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "modelValue" | "id" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "type" | "inputmode" | "autosize" | "readonly" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "autofocus" | "rows">;
1254
+ $attrs: {
1255
+ [x: string]: unknown;
1256
+ };
1257
+ $refs: {
1258
+ [x: string]: unknown;
1259
+ };
1260
+ $slots: Readonly<{
1261
+ [name: string]: Slot<any> | undefined;
1262
+ }>;
1263
+ $root: ComponentPublicInstance | null;
1264
+ $parent: ComponentPublicInstance | null;
1265
+ $host: Element | null;
1266
+ $emit: ((event: "clear") => void) & ((event: "input", value: string) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "change", value: string) => void) & ((event: "blur", evt: FocusEvent) => 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);
1267
+ $el: any;
1268
+ $options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
1269
+ readonly inputmode: {
1270
+ readonly type: PropType<"text" | "none" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined>;
1271
+ readonly required: false;
1272
+ readonly validator: ((val: unknown) => boolean) | undefined;
1273
+ __epPropKey: true;
1274
+ } & {
1275
+ readonly default: undefined;
1276
+ };
1277
+ readonly name: StringConstructor;
1278
+ readonly ariaLabel: StringConstructor;
1279
+ readonly id: {
1280
+ readonly type: PropType<string>;
1281
+ readonly required: false;
1282
+ readonly validator: ((val: unknown) => boolean) | undefined;
1283
+ __epPropKey: true;
1284
+ } & {
1285
+ readonly default: undefined;
1286
+ };
1287
+ readonly size: {
1288
+ readonly type: PropType<"" | "small" | "default" | "large">;
1289
+ readonly required: false;
1290
+ readonly validator: ((val: unknown) => boolean) | undefined;
1291
+ __epPropKey: true;
1292
+ };
1293
+ readonly disabled: BooleanConstructor;
1294
+ readonly modelValue: {
1295
+ readonly type: PropType<string | number | null | undefined>;
1296
+ readonly required: false;
1297
+ readonly validator: ((val: unknown) => boolean) | undefined;
1298
+ __epPropKey: true;
1299
+ } & {
1300
+ readonly default: "";
1301
+ };
1302
+ readonly maxlength: {
1303
+ readonly type: PropType<string | number>;
1304
+ readonly required: false;
1305
+ readonly validator: ((val: unknown) => boolean) | undefined;
1306
+ __epPropKey: true;
1307
+ };
1308
+ readonly minlength: {
1309
+ readonly type: PropType<string | number>;
1310
+ readonly required: false;
1311
+ readonly validator: ((val: unknown) => boolean) | undefined;
1312
+ __epPropKey: true;
1313
+ };
1314
+ readonly type: {
1315
+ readonly type: PropType<string>;
1316
+ readonly required: false;
1317
+ readonly validator: ((val: unknown) => boolean) | undefined;
1318
+ __epPropKey: true;
1319
+ } & {
1320
+ readonly default: "text";
1321
+ };
1322
+ readonly resize: {
1323
+ readonly type: PropType<"none" | "both" | "horizontal" | "vertical">;
1324
+ readonly required: false;
1325
+ readonly validator: ((val: unknown) => boolean) | undefined;
1326
+ __epPropKey: true;
1327
+ };
1328
+ readonly autosize: {
1329
+ readonly type: PropType<InputAutoSize>;
1330
+ readonly required: false;
1331
+ readonly validator: ((val: unknown) => boolean) | undefined;
1332
+ __epPropKey: true;
1333
+ } & {
1334
+ readonly default: false;
1335
+ };
1336
+ readonly autocomplete: {
1337
+ readonly type: PropType<string>;
1338
+ readonly required: false;
1339
+ readonly validator: ((val: unknown) => boolean) | undefined;
1340
+ __epPropKey: true;
1341
+ } & {
1342
+ readonly default: "off";
1343
+ };
1344
+ readonly formatter: {
1345
+ readonly type: PropType<Function>;
1346
+ readonly required: false;
1347
+ readonly validator: ((val: unknown) => boolean) | undefined;
1348
+ __epPropKey: true;
1349
+ };
1350
+ readonly parser: {
1351
+ readonly type: PropType<Function>;
1352
+ readonly required: false;
1353
+ readonly validator: ((val: unknown) => boolean) | undefined;
1354
+ __epPropKey: true;
1355
+ };
1356
+ readonly placeholder: {
1357
+ readonly type: PropType<string>;
1358
+ readonly required: false;
1359
+ readonly validator: ((val: unknown) => boolean) | undefined;
1360
+ __epPropKey: true;
1361
+ };
1362
+ readonly form: {
1363
+ readonly type: PropType<string>;
1364
+ readonly required: false;
1365
+ readonly validator: ((val: unknown) => boolean) | undefined;
1366
+ __epPropKey: true;
1367
+ };
1368
+ readonly readonly: BooleanConstructor;
1369
+ readonly clearable: BooleanConstructor;
1370
+ readonly showPassword: BooleanConstructor;
1371
+ readonly showWordLimit: BooleanConstructor;
1372
+ readonly suffixIcon: {
1373
+ readonly type: PropType<string | Component>;
1374
+ readonly required: false;
1375
+ readonly validator: ((val: unknown) => boolean) | undefined;
1376
+ __epPropKey: true;
1377
+ };
1378
+ readonly prefixIcon: {
1379
+ readonly type: PropType<string | Component>;
1380
+ readonly required: false;
1381
+ readonly validator: ((val: unknown) => boolean) | undefined;
1382
+ __epPropKey: true;
1383
+ };
1384
+ readonly containerRole: {
1385
+ readonly type: PropType<string>;
1386
+ readonly required: false;
1387
+ readonly validator: ((val: unknown) => boolean) | undefined;
1388
+ __epPropKey: true;
1389
+ } & {
1390
+ readonly default: undefined;
1391
+ };
1392
+ readonly tabindex: {
1393
+ readonly type: PropType<string | number>;
1394
+ readonly required: false;
1395
+ readonly validator: ((val: unknown) => boolean) | undefined;
1396
+ __epPropKey: true;
1397
+ } & {
1398
+ readonly default: 0;
1399
+ };
1400
+ readonly validateEvent: {
1401
+ readonly type: PropType<boolean>;
1402
+ readonly required: false;
1403
+ readonly validator: ((val: unknown) => boolean) | undefined;
1404
+ __epPropKey: true;
1405
+ } & {
1406
+ readonly default: true;
1407
+ };
1408
+ readonly inputStyle: {
1409
+ readonly type: PropType<StyleValue>;
1410
+ readonly required: false;
1411
+ readonly validator: ((val: unknown) => boolean) | undefined;
1412
+ __epPropKey: true;
1413
+ } & {
1414
+ readonly default: () => {};
1415
+ };
1416
+ readonly autofocus: BooleanConstructor;
1417
+ readonly rows: {
1418
+ readonly type: PropType<number>;
1419
+ readonly required: false;
1420
+ readonly validator: ((val: unknown) => boolean) | undefined;
1421
+ __epPropKey: true;
1422
+ } & {
1423
+ readonly default: 2;
1424
+ };
1425
+ }>> & {
1426
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1427
+ onChange?: ((value: string) => any) | undefined;
1428
+ onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
1429
+ onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
1430
+ onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
1431
+ onFocus?: ((evt: FocusEvent) => any) | undefined;
1432
+ onBlur?: ((evt: FocusEvent) => any) | undefined;
1433
+ onInput?: ((value: string) => any) | undefined;
1434
+ onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
1435
+ onMouseenter?: ((evt: MouseEvent) => any) | undefined;
1436
+ onMouseleave?: ((evt: MouseEvent) => any) | undefined;
1437
+ onClear?: (() => any) | undefined;
1438
+ }, {
1439
+ input: ShallowRef<HTMLInputElement | undefined>;
1440
+ textarea: ShallowRef<HTMLTextAreaElement | undefined>;
1441
+ ref: ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
1442
+ textareaStyle: ComputedRef<StyleValue>;
1443
+ autosize: Ref<InputAutoSize>;
1444
+ isComposing: Ref<boolean>;
1445
+ focus: () => void | undefined;
1446
+ blur: () => void | undefined;
1447
+ select: () => void;
1448
+ clear: () => void;
1449
+ resizeTextarea: () => void;
1450
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1451
+ input: (value: string) => void;
1452
+ clear: () => void;
1453
+ "update:modelValue": (value: string) => void;
1454
+ change: (value: string) => void;
1455
+ blur: (evt: FocusEvent) => void;
1456
+ compositionend: (evt: CompositionEvent) => void;
1457
+ compositionstart: (evt: CompositionEvent) => void;
1458
+ compositionupdate: (evt: CompositionEvent) => void;
1459
+ focus: (evt: FocusEvent) => void;
1460
+ keydown: (evt: Event | KeyboardEvent) => void;
1461
+ mouseenter: (evt: MouseEvent) => void;
1462
+ mouseleave: (evt: MouseEvent) => void;
1463
+ }, string, {
1464
+ readonly disabled: boolean;
1465
+ readonly id: string;
1466
+ readonly type: string;
1467
+ readonly modelValue: string | number | null | undefined;
1468
+ readonly tabindex: string | number;
1469
+ readonly readonly: boolean;
1470
+ readonly autosize: InputAutoSize;
1471
+ readonly autocomplete: string;
1472
+ readonly containerRole: string;
1473
+ readonly validateEvent: boolean;
1474
+ readonly inputStyle: StyleValue;
1475
+ readonly rows: number;
1476
+ readonly inputmode: "text" | "none" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
1477
+ readonly clearable: boolean;
1478
+ readonly showPassword: boolean;
1479
+ readonly showWordLimit: boolean;
1480
+ readonly autofocus: boolean;
1481
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
1482
+ beforeCreate?: (() => void) | (() => void)[];
1483
+ created?: (() => void) | (() => void)[];
1484
+ beforeMount?: (() => void) | (() => void)[];
1485
+ mounted?: (() => void) | (() => void)[];
1486
+ beforeUpdate?: (() => void) | (() => void)[];
1487
+ updated?: (() => void) | (() => void)[];
1488
+ activated?: (() => void) | (() => void)[];
1489
+ deactivated?: (() => void) | (() => void)[];
1490
+ beforeDestroy?: (() => void) | (() => void)[];
1491
+ beforeUnmount?: (() => void) | (() => void)[];
1492
+ destroyed?: (() => void) | (() => void)[];
1493
+ unmounted?: (() => void) | (() => void)[];
1494
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
1495
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
1496
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
1497
+ };
1498
+ $forceUpdate: () => void;
1499
+ $nextTick: nextTick;
1500
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
1501
+ } & Readonly<{
1502
+ readonly disabled: boolean;
1503
+ readonly id: string;
1504
+ readonly type: string;
1505
+ readonly modelValue: string | number | null | undefined;
1506
+ readonly tabindex: string | number;
1507
+ readonly readonly: boolean;
1508
+ readonly autosize: InputAutoSize;
1509
+ readonly autocomplete: string;
1510
+ readonly containerRole: string;
1511
+ readonly validateEvent: boolean;
1512
+ readonly inputStyle: StyleValue;
1513
+ readonly rows: number;
1514
+ readonly inputmode: "text" | "none" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
1515
+ readonly clearable: boolean;
1516
+ readonly showPassword: boolean;
1517
+ readonly showWordLimit: boolean;
1518
+ readonly autofocus: boolean;
1519
+ }> & Omit<Readonly<ExtractPropTypes< {
1520
+ readonly inputmode: {
1521
+ readonly type: PropType<"text" | "none" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined>;
1522
+ readonly required: false;
1523
+ readonly validator: ((val: unknown) => boolean) | undefined;
1524
+ __epPropKey: true;
1525
+ } & {
1526
+ readonly default: undefined;
1527
+ };
1528
+ readonly name: StringConstructor;
1529
+ readonly ariaLabel: StringConstructor;
1530
+ readonly id: {
1531
+ readonly type: PropType<string>;
1532
+ readonly required: false;
1533
+ readonly validator: ((val: unknown) => boolean) | undefined;
1534
+ __epPropKey: true;
1535
+ } & {
1536
+ readonly default: undefined;
1537
+ };
1538
+ readonly size: {
1539
+ readonly type: PropType<"" | "small" | "default" | "large">;
1540
+ readonly required: false;
1541
+ readonly validator: ((val: unknown) => boolean) | undefined;
1542
+ __epPropKey: true;
1543
+ };
1544
+ readonly disabled: BooleanConstructor;
1545
+ readonly modelValue: {
1546
+ readonly type: PropType<string | number | null | undefined>;
1547
+ readonly required: false;
1548
+ readonly validator: ((val: unknown) => boolean) | undefined;
1549
+ __epPropKey: true;
1550
+ } & {
1551
+ readonly default: "";
1552
+ };
1553
+ readonly maxlength: {
1554
+ readonly type: PropType<string | number>;
1555
+ readonly required: false;
1556
+ readonly validator: ((val: unknown) => boolean) | undefined;
1557
+ __epPropKey: true;
1558
+ };
1559
+ readonly minlength: {
1560
+ readonly type: PropType<string | number>;
1561
+ readonly required: false;
1562
+ readonly validator: ((val: unknown) => boolean) | undefined;
1563
+ __epPropKey: true;
1564
+ };
1565
+ readonly type: {
1566
+ readonly type: PropType<string>;
1567
+ readonly required: false;
1568
+ readonly validator: ((val: unknown) => boolean) | undefined;
1569
+ __epPropKey: true;
1570
+ } & {
1571
+ readonly default: "text";
1572
+ };
1573
+ readonly resize: {
1574
+ readonly type: PropType<"none" | "both" | "horizontal" | "vertical">;
1575
+ readonly required: false;
1576
+ readonly validator: ((val: unknown) => boolean) | undefined;
1577
+ __epPropKey: true;
1578
+ };
1579
+ readonly autosize: {
1580
+ readonly type: PropType<InputAutoSize>;
1581
+ readonly required: false;
1582
+ readonly validator: ((val: unknown) => boolean) | undefined;
1583
+ __epPropKey: true;
1584
+ } & {
1585
+ readonly default: false;
1586
+ };
1587
+ readonly autocomplete: {
1588
+ readonly type: PropType<string>;
1589
+ readonly required: false;
1590
+ readonly validator: ((val: unknown) => boolean) | undefined;
1591
+ __epPropKey: true;
1592
+ } & {
1593
+ readonly default: "off";
1594
+ };
1595
+ readonly formatter: {
1596
+ readonly type: PropType<Function>;
1597
+ readonly required: false;
1598
+ readonly validator: ((val: unknown) => boolean) | undefined;
1599
+ __epPropKey: true;
1600
+ };
1601
+ readonly parser: {
1602
+ readonly type: PropType<Function>;
1603
+ readonly required: false;
1604
+ readonly validator: ((val: unknown) => boolean) | undefined;
1605
+ __epPropKey: true;
1606
+ };
1607
+ readonly placeholder: {
1608
+ readonly type: PropType<string>;
1609
+ readonly required: false;
1610
+ readonly validator: ((val: unknown) => boolean) | undefined;
1611
+ __epPropKey: true;
1612
+ };
1613
+ readonly form: {
1614
+ readonly type: PropType<string>;
1615
+ readonly required: false;
1616
+ readonly validator: ((val: unknown) => boolean) | undefined;
1617
+ __epPropKey: true;
1618
+ };
1619
+ readonly readonly: BooleanConstructor;
1620
+ readonly clearable: BooleanConstructor;
1621
+ readonly showPassword: BooleanConstructor;
1622
+ readonly showWordLimit: BooleanConstructor;
1623
+ readonly suffixIcon: {
1624
+ readonly type: PropType<string | Component>;
1625
+ readonly required: false;
1626
+ readonly validator: ((val: unknown) => boolean) | undefined;
1627
+ __epPropKey: true;
1628
+ };
1629
+ readonly prefixIcon: {
1630
+ readonly type: PropType<string | Component>;
1631
+ readonly required: false;
1632
+ readonly validator: ((val: unknown) => boolean) | undefined;
1633
+ __epPropKey: true;
1634
+ };
1635
+ readonly containerRole: {
1636
+ readonly type: PropType<string>;
1637
+ readonly required: false;
1638
+ readonly validator: ((val: unknown) => boolean) | undefined;
1639
+ __epPropKey: true;
1640
+ } & {
1641
+ readonly default: undefined;
1642
+ };
1643
+ readonly tabindex: {
1644
+ readonly type: PropType<string | number>;
1645
+ readonly required: false;
1646
+ readonly validator: ((val: unknown) => boolean) | undefined;
1647
+ __epPropKey: true;
1648
+ } & {
1649
+ readonly default: 0;
1650
+ };
1651
+ readonly validateEvent: {
1652
+ readonly type: PropType<boolean>;
1653
+ readonly required: false;
1654
+ readonly validator: ((val: unknown) => boolean) | undefined;
1655
+ __epPropKey: true;
1656
+ } & {
1657
+ readonly default: true;
1658
+ };
1659
+ readonly inputStyle: {
1660
+ readonly type: PropType<StyleValue>;
1661
+ readonly required: false;
1662
+ readonly validator: ((val: unknown) => boolean) | undefined;
1663
+ __epPropKey: true;
1664
+ } & {
1665
+ readonly default: () => {};
1666
+ };
1667
+ readonly autofocus: BooleanConstructor;
1668
+ readonly rows: {
1669
+ readonly type: PropType<number>;
1670
+ readonly required: false;
1671
+ readonly validator: ((val: unknown) => boolean) | undefined;
1672
+ __epPropKey: true;
1673
+ } & {
1674
+ readonly default: 2;
1675
+ };
1676
+ }>> & {
1677
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1678
+ onChange?: ((value: string) => any) | undefined;
1679
+ onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
1680
+ onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
1681
+ onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
1682
+ onFocus?: ((evt: FocusEvent) => any) | undefined;
1683
+ onBlur?: ((evt: FocusEvent) => any) | undefined;
1684
+ onInput?: ((value: string) => any) | undefined;
1685
+ onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
1686
+ onMouseenter?: ((evt: MouseEvent) => any) | undefined;
1687
+ onMouseleave?: ((evt: MouseEvent) => any) | undefined;
1688
+ onClear?: (() => any) | undefined;
1689
+ }, "clear" | "input" | "select" | "textarea" | "modelValue" | "id" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "type" | "inputmode" | "autosize" | "readonly" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "autofocus" | "rows" | "blur" | "focus" | "ref" | "textareaStyle" | "isComposing" | "resizeTextarea"> & ShallowUnwrapRef< {
1690
+ input: ShallowRef<HTMLInputElement | undefined>;
1691
+ textarea: ShallowRef<HTMLTextAreaElement | undefined>;
1692
+ ref: ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
1693
+ textareaStyle: ComputedRef<StyleValue>;
1694
+ autosize: Ref<InputAutoSize>;
1695
+ isComposing: Ref<boolean>;
1696
+ focus: () => void | undefined;
1697
+ blur: () => void | undefined;
1698
+ select: () => void;
1699
+ clear: () => void;
1700
+ resizeTextarea: () => void;
1701
+ }> & {} & ComponentCustomProperties & {} & {
1702
+ $slots: {
1703
+ prepend?(_: {}): any;
1704
+ prefix?(_: {}): any;
1705
+ suffix?(_: {}): any;
1706
+ append?(_: {}): any;
1707
+ };
1708
+ }) | undefined>;
1709
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
658
1710
  "update:modelValue": (value: any) => any;
659
1711
  change: (value: string) => any;
660
1712
  suffixClick: () => any;
@@ -665,7 +1717,9 @@ onSuffixClick?: (() => any) | undefined;
665
1717
  }>, {
666
1718
  readonly validateEvent: boolean;
667
1719
  on: TEvent & Partial<InputEmits>;
668
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1720
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
1721
+ inputRef: unknown;
1722
+ }, any>;
669
1723
 
670
1724
  export declare const BaseSelect: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
671
1725