@zyui/components 0.0.7 → 0.0.9
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/es/index.js +200 -7
- package/es/index.mjs +78172 -3576
- package/es/src/components/ConfigProvider/src/hooks.d.ts +1 -0
- package/es/src/components/CustomForm/const.d.ts +1331 -0
- package/es/src/components/FilePreview/index.d.ts +1 -0
- package/es/src/components/FormFlow/components/CustomNode/End.vue.d.ts +2 -0
- package/es/src/components/FormFlow/components/CustomNode/Normal.vue.d.ts +27 -0
- package/es/src/components/FormFlow/components/CustomNode/Parent.vue.d.ts +2 -0
- package/es/src/components/FormFlow/components/CustomNode/Start.vue.d.ts +2 -0
- package/es/src/components/FormFlow/components/CustomNode/index.vue.d.ts +8 -0
- package/es/src/components/FormFlow/components/Edges/const.d.ts +2 -0
- package/es/src/components/FormFlow/components/NodeEditDialog/index.vue.d.ts +4 -0
- package/es/src/components/FormFlow/emitter/index.d.ts +12 -0
- package/es/src/components/FormFlow/emitter/types.d.ts +15 -0
- package/es/src/components/FormFlow/helper.d.ts +4 -0
- package/es/src/components/FormFlow/hooks/useAddNode.d.ts +3 -0
- package/es/src/components/FormFlow/hooks/useCtrlKey.d.ts +1 -0
- package/es/src/components/FormFlow/hooks/useFlowData.d.ts +13 -0
- package/es/src/components/FormFlow/hooks/useFlowEvents.d.ts +8 -0
- package/es/src/components/FormFlow/hooks/useFlowProps.d.ts +9 -0
- package/es/src/components/FormFlow/hooks/useLayout.d.ts +261 -0
- package/es/src/components/FormFlow/hooks/useMergeAndSplit.d.ts +4 -0
- package/es/src/components/FormFlow/hooks/useUndoRedo.d.ts +9 -0
- package/es/src/components/FormFlow/index.d.ts +1 -0
- package/es/src/components/FormFlow/type.d.ts +19 -0
- package/es/src/components/NodesEditor/ContextMenu/index.vue.d.ts +20 -0
- package/es/src/components/NodesEditor/FormItem/index.vue.d.ts +17 -0
- package/es/src/components/NodesEditor/NodesEditUI.vue.d.ts +33 -0
- package/es/src/components/NodesEditor/NodesEnterUI.vue.d.ts +401 -0
- package/es/src/components/NodesEditor/NodesPreviewUI.vue.d.ts +33 -0
- package/es/src/components/NodesEditor/NodesProvider.vue.d.ts +38 -0
- package/es/src/components/NodesEditor/NodesSelectUI.vue.d.ts +33 -0
- package/es/src/components/NodesEditor/Preview/index.vue.d.ts +6 -0
- package/es/src/components/NodesEditor/const.d.ts +1 -0
- package/es/src/components/NodesEditor/context.d.ts +12 -0
- package/es/src/components/NodesEditor/contextUI.d.ts +17 -0
- package/es/src/components/NodesEditor/helper.d.ts +30 -0
- package/es/src/components/NodesEditor/hooks/useContentEditable.d.ts +3 -0
- package/es/src/components/NodesEditor/hooks/useContextMenu.d.ts +16 -0
- package/es/src/components/NodesEditor/hooks/useCtrlKey.d.ts +1 -0
- package/es/src/components/NodesEditor/hooks/useFocusPosition.d.ts +9 -0
- package/es/src/components/NodesEditor/hooks/useNodes.d.ts +10 -0
- package/es/src/components/NodesEditor/hooks/useNodesRender.d.ts +84 -0
- package/es/src/components/NodesEditor/hooks/useSetCurrentStyle.d.ts +9 -0
- package/es/src/components/NodesEditor/hooks/useTableSelection.d.ts +57 -0
- package/es/src/components/NodesEditor/hooks/useUndoRedo.d.ts +5 -0
- package/es/src/components/NodesEditor/index.d.ts +2 -0
- package/es/src/components/NodesEditor/index.vue.d.ts +610 -0
- package/es/src/components/NodesEditor/type.d.ts +34 -0
- package/es/src/components/ProEditor/Preview/index.vue.d.ts +6 -0
- package/es/src/components/ProEditor/index.d.ts +2 -0
- package/es/src/components/ProEditor/js/config.d.ts +28 -0
- package/es/src/components/ProEditor/js/importTinymce.d.ts +1 -0
- package/es/src/components/ProEditor/plugins/helper.d.ts +16 -0
- package/es/src/components/ProEditor/plugins/nodecompleter.d.ts +6 -0
- package/es/src/components/ProEditor/plugins/pagesize.d.ts +4 -0
- package/es/src/components/ProEditor/plugins/pasteprocess.d.ts +1 -0
- package/es/src/components/Setters/ConfirmText/const.d.ts +4 -0
- package/es/src/components/Setters/DateFormat/const.d.ts +4 -0
- package/es/src/components/Setters/index.d.ts +3 -0
- package/es/src/components/ShadowDomWrap/index.vue.d.ts +5 -0
- package/es/src/components/index.d.ts +5 -0
- package/es/style.css +1 -1
- package/lib/src/components/ConfigProvider/src/hooks.d.ts +1 -0
- package/lib/src/components/CustomForm/const.d.ts +1331 -0
- package/lib/src/components/Editor/index.d.ts +1 -0
- package/lib/src/components/Editor/index.vue.d.ts +45 -0
- package/lib/src/components/Editor/mockApi.d.ts +6 -0
- package/lib/src/components/Editor/plugins/mention.d.ts +6 -0
- package/lib/src/components/FilePreview/index.d.ts +1 -0
- package/lib/src/components/FormFlow/components/CustomNode/End.vue.d.ts +2 -0
- package/lib/src/components/FormFlow/components/CustomNode/Normal.vue.d.ts +27 -0
- package/lib/src/components/FormFlow/components/CustomNode/Parent.vue.d.ts +2 -0
- package/lib/src/components/FormFlow/components/CustomNode/Start.vue.d.ts +2 -0
- package/lib/src/components/FormFlow/components/CustomNode/index.vue.d.ts +8 -0
- package/lib/src/components/FormFlow/components/Edges/const.d.ts +2 -0
- package/lib/src/components/FormFlow/components/NodeEditDialog/index.vue.d.ts +4 -0
- package/lib/src/components/FormFlow/emitter/index.d.ts +12 -0
- package/lib/src/components/FormFlow/emitter/types.d.ts +15 -0
- package/lib/src/components/FormFlow/helper.d.ts +4 -0
- package/lib/src/components/FormFlow/hooks/useAddNode.d.ts +3 -0
- package/lib/src/components/FormFlow/hooks/useCtrlKey.d.ts +1 -0
- package/lib/src/components/FormFlow/hooks/useFlowData.d.ts +13 -0
- package/lib/src/components/FormFlow/hooks/useFlowEvents.d.ts +8 -0
- package/lib/src/components/FormFlow/hooks/useFlowProps.d.ts +9 -0
- package/lib/src/components/FormFlow/hooks/useLayout.d.ts +261 -0
- package/lib/src/components/FormFlow/hooks/useMergeAndSplit.d.ts +4 -0
- package/lib/src/components/FormFlow/hooks/useUndoRedo.d.ts +9 -0
- package/lib/src/components/FormFlow/index.d.ts +1 -0
- package/lib/src/components/FormFlow/type.d.ts +19 -0
- package/lib/src/components/NodesEditor/ContextMenu/index.vue.d.ts +20 -0
- package/lib/src/components/NodesEditor/FormItem/index.vue.d.ts +17 -0
- package/lib/src/components/NodesEditor/NodesEditUI.vue.d.ts +33 -0
- package/lib/src/components/NodesEditor/NodesEnterUI.vue.d.ts +401 -0
- package/lib/src/components/NodesEditor/NodesPreviewUI.vue.d.ts +33 -0
- package/lib/src/components/NodesEditor/NodesProvider.vue.d.ts +38 -0
- package/lib/src/components/NodesEditor/NodesSelectUI.vue.d.ts +33 -0
- package/lib/src/components/NodesEditor/Preview/index.vue.d.ts +6 -0
- package/lib/src/components/NodesEditor/const.d.ts +1 -0
- package/lib/src/components/NodesEditor/context.d.ts +12 -0
- package/lib/src/components/NodesEditor/contextUI.d.ts +17 -0
- package/lib/src/components/NodesEditor/helper.d.ts +30 -0
- package/lib/src/components/NodesEditor/hooks/useContentEditable.d.ts +3 -0
- package/lib/src/components/NodesEditor/hooks/useContextMenu.d.ts +16 -0
- package/lib/src/components/NodesEditor/hooks/useCtrlKey.d.ts +1 -0
- package/lib/src/components/NodesEditor/hooks/useFocusPosition.d.ts +9 -0
- package/lib/src/components/NodesEditor/hooks/useNodes.d.ts +10 -0
- package/lib/src/components/NodesEditor/hooks/useNodesRender.d.ts +84 -0
- package/lib/src/components/NodesEditor/hooks/useSetCurrentStyle.d.ts +9 -0
- package/lib/src/components/NodesEditor/hooks/useTableSelection.d.ts +57 -0
- package/lib/src/components/NodesEditor/hooks/useUndoRedo.d.ts +5 -0
- package/lib/src/components/NodesEditor/index.d.ts +2 -0
- package/lib/src/components/NodesEditor/index.vue.d.ts +610 -0
- package/lib/src/components/NodesEditor/type.d.ts +34 -0
- package/lib/src/components/ProEditor/Preview/index.vue.d.ts +6 -0
- package/lib/src/components/ProEditor/index.d.ts +2 -0
- package/lib/src/components/ProEditor/js/config.d.ts +28 -0
- package/lib/src/components/ProEditor/js/importTinymce.d.ts +1 -0
- package/lib/src/components/ProEditor/mockApi.d.ts +6 -0
- package/lib/src/components/ProEditor/plugins/helper.d.ts +16 -0
- package/lib/src/components/ProEditor/plugins/mention.d.ts +8 -0
- package/lib/src/components/ProEditor/plugins/nodecompleter.d.ts +6 -0
- package/lib/src/components/ProEditor/plugins/pagesize.d.ts +4 -0
- package/lib/src/components/ProEditor/plugins/pasteprocess.d.ts +1 -0
- package/lib/src/components/Setters/ConfirmText/const.d.ts +4 -0
- package/lib/src/components/Setters/DateFormat/const.d.ts +4 -0
- package/lib/src/components/Setters/index.d.ts +3 -0
- package/lib/src/components/ShadowDomWrap/index.vue.d.ts +5 -0
- package/lib/src/components/index.d.ts +5 -0
- package/package.json +23 -5
- package/lib/src/components/ConfigProvider/src/ConfigProvider.d.ts +0 -32
|
@@ -0,0 +1,1331 @@
|
|
|
1
|
+
import { dateFormat } from '@zyui/utils';
|
|
2
|
+
|
|
3
|
+
export declare const inputTypeMap: {
|
|
4
|
+
text: {
|
|
5
|
+
title: string;
|
|
6
|
+
inputType: import('element-plus/es/utils/index.mjs').SFCWithInstall<{
|
|
7
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
8
|
+
readonly ariaLabel: StringConstructor;
|
|
9
|
+
readonly id: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
10
|
+
readonly size: {
|
|
11
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
12
|
+
readonly required: false;
|
|
13
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
14
|
+
__epPropKey: true;
|
|
15
|
+
};
|
|
16
|
+
readonly disabled: BooleanConstructor;
|
|
17
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
|
|
18
|
+
readonly maxlength: {
|
|
19
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
20
|
+
readonly required: false;
|
|
21
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
22
|
+
__epPropKey: true;
|
|
23
|
+
};
|
|
24
|
+
readonly minlength: {
|
|
25
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
26
|
+
readonly required: false;
|
|
27
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
28
|
+
__epPropKey: true;
|
|
29
|
+
};
|
|
30
|
+
readonly type: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "text", boolean>;
|
|
31
|
+
readonly resize: {
|
|
32
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown>>;
|
|
33
|
+
readonly required: false;
|
|
34
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
35
|
+
__epPropKey: true;
|
|
36
|
+
};
|
|
37
|
+
readonly autosize: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => boolean | {
|
|
38
|
+
minRows?: number;
|
|
39
|
+
maxRows?: number;
|
|
40
|
+
}) | (() => import('element-plus').InputAutoSize) | ((new (...args: any[]) => boolean | {
|
|
41
|
+
minRows?: number;
|
|
42
|
+
maxRows?: number;
|
|
43
|
+
}) | (() => import('element-plus').InputAutoSize))[], unknown, unknown, false, boolean>;
|
|
44
|
+
readonly autocomplete: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "off", boolean>;
|
|
45
|
+
readonly formatter: {
|
|
46
|
+
readonly type: import('vue').PropType<Function>;
|
|
47
|
+
readonly required: false;
|
|
48
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
49
|
+
__epPropKey: true;
|
|
50
|
+
};
|
|
51
|
+
readonly parser: {
|
|
52
|
+
readonly type: import('vue').PropType<Function>;
|
|
53
|
+
readonly required: false;
|
|
54
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
55
|
+
__epPropKey: true;
|
|
56
|
+
};
|
|
57
|
+
readonly placeholder: {
|
|
58
|
+
readonly type: import('vue').PropType<string>;
|
|
59
|
+
readonly required: false;
|
|
60
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
61
|
+
__epPropKey: true;
|
|
62
|
+
};
|
|
63
|
+
readonly form: {
|
|
64
|
+
readonly type: import('vue').PropType<string>;
|
|
65
|
+
readonly required: false;
|
|
66
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
67
|
+
__epPropKey: true;
|
|
68
|
+
};
|
|
69
|
+
readonly readonly: BooleanConstructor;
|
|
70
|
+
readonly clearable: BooleanConstructor;
|
|
71
|
+
readonly showPassword: BooleanConstructor;
|
|
72
|
+
readonly showWordLimit: BooleanConstructor;
|
|
73
|
+
readonly suffixIcon: {
|
|
74
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
75
|
+
readonly required: false;
|
|
76
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
77
|
+
__epPropKey: true;
|
|
78
|
+
};
|
|
79
|
+
readonly prefixIcon: {
|
|
80
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
81
|
+
readonly required: false;
|
|
82
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
83
|
+
__epPropKey: true;
|
|
84
|
+
};
|
|
85
|
+
readonly containerRole: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
86
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
|
|
87
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
88
|
+
readonly inputStyle: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | import('vue').CSSProperties | import('vue').StyleValue[]) | (() => import('vue').StyleValue) | ((new (...args: any[]) => string | import('vue').CSSProperties | import('vue').StyleValue[]) | (() => import('vue').StyleValue))[], unknown, unknown, () => import('element-plus/es/utils/typescript.mjs').Mutable<{}>, boolean>;
|
|
89
|
+
readonly autofocus: BooleanConstructor;
|
|
90
|
+
readonly rows: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
|
|
91
|
+
}>> & {
|
|
92
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
93
|
+
onChange?: ((value: string) => any) | undefined;
|
|
94
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
95
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
96
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
97
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
98
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
99
|
+
onInput?: ((value: string) => any) | undefined;
|
|
100
|
+
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
101
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
102
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
103
|
+
onClear?: (() => any) | undefined;
|
|
104
|
+
}, {
|
|
105
|
+
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
106
|
+
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
107
|
+
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
108
|
+
textareaStyle: import('vue').ComputedRef<import('vue').StyleValue>;
|
|
109
|
+
autosize: import('vue').Ref<import('element-plus').InputAutoSize>;
|
|
110
|
+
isComposing: import('vue').Ref<boolean>;
|
|
111
|
+
focus: () => void | undefined;
|
|
112
|
+
blur: () => void | undefined;
|
|
113
|
+
select: () => void;
|
|
114
|
+
clear: () => void;
|
|
115
|
+
resizeTextarea: () => void;
|
|
116
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
117
|
+
input: (value: string) => void;
|
|
118
|
+
clear: () => void;
|
|
119
|
+
"update:modelValue": (value: string) => void;
|
|
120
|
+
change: (value: string) => void;
|
|
121
|
+
blur: (evt: FocusEvent) => void;
|
|
122
|
+
compositionend: (evt: CompositionEvent) => void;
|
|
123
|
+
compositionstart: (evt: CompositionEvent) => void;
|
|
124
|
+
compositionupdate: (evt: CompositionEvent) => void;
|
|
125
|
+
focus: (evt: FocusEvent) => void;
|
|
126
|
+
keydown: (evt: Event | KeyboardEvent) => void;
|
|
127
|
+
mouseenter: (evt: MouseEvent) => void;
|
|
128
|
+
mouseleave: (evt: MouseEvent) => void;
|
|
129
|
+
}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
|
|
130
|
+
readonly disabled: boolean;
|
|
131
|
+
readonly id: string;
|
|
132
|
+
readonly type: string;
|
|
133
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
|
|
134
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
135
|
+
readonly readonly: boolean;
|
|
136
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
137
|
+
readonly autocomplete: string;
|
|
138
|
+
readonly containerRole: string;
|
|
139
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
140
|
+
readonly inputStyle: import('vue').StyleValue;
|
|
141
|
+
readonly rows: number;
|
|
142
|
+
readonly clearable: boolean;
|
|
143
|
+
readonly showPassword: boolean;
|
|
144
|
+
readonly showWordLimit: boolean;
|
|
145
|
+
readonly autofocus: boolean;
|
|
146
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
147
|
+
P: {};
|
|
148
|
+
B: {};
|
|
149
|
+
D: {};
|
|
150
|
+
C: {};
|
|
151
|
+
M: {};
|
|
152
|
+
Defaults: {};
|
|
153
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
154
|
+
readonly ariaLabel: StringConstructor;
|
|
155
|
+
readonly id: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
156
|
+
readonly size: {
|
|
157
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
158
|
+
readonly required: false;
|
|
159
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
160
|
+
__epPropKey: true;
|
|
161
|
+
};
|
|
162
|
+
readonly disabled: BooleanConstructor;
|
|
163
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
|
|
164
|
+
readonly maxlength: {
|
|
165
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
166
|
+
readonly required: false;
|
|
167
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
168
|
+
__epPropKey: true;
|
|
169
|
+
};
|
|
170
|
+
readonly minlength: {
|
|
171
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
172
|
+
readonly required: false;
|
|
173
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
174
|
+
__epPropKey: true;
|
|
175
|
+
};
|
|
176
|
+
readonly type: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "text", boolean>;
|
|
177
|
+
readonly resize: {
|
|
178
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown>>;
|
|
179
|
+
readonly required: false;
|
|
180
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
181
|
+
__epPropKey: true;
|
|
182
|
+
};
|
|
183
|
+
readonly autosize: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => boolean | {
|
|
184
|
+
minRows?: number;
|
|
185
|
+
maxRows?: number;
|
|
186
|
+
}) | (() => import('element-plus').InputAutoSize) | ((new (...args: any[]) => boolean | {
|
|
187
|
+
minRows?: number;
|
|
188
|
+
maxRows?: number;
|
|
189
|
+
}) | (() => import('element-plus').InputAutoSize))[], unknown, unknown, false, boolean>;
|
|
190
|
+
readonly autocomplete: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "off", boolean>;
|
|
191
|
+
readonly formatter: {
|
|
192
|
+
readonly type: import('vue').PropType<Function>;
|
|
193
|
+
readonly required: false;
|
|
194
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
195
|
+
__epPropKey: true;
|
|
196
|
+
};
|
|
197
|
+
readonly parser: {
|
|
198
|
+
readonly type: import('vue').PropType<Function>;
|
|
199
|
+
readonly required: false;
|
|
200
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
201
|
+
__epPropKey: true;
|
|
202
|
+
};
|
|
203
|
+
readonly placeholder: {
|
|
204
|
+
readonly type: import('vue').PropType<string>;
|
|
205
|
+
readonly required: false;
|
|
206
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
207
|
+
__epPropKey: true;
|
|
208
|
+
};
|
|
209
|
+
readonly form: {
|
|
210
|
+
readonly type: import('vue').PropType<string>;
|
|
211
|
+
readonly required: false;
|
|
212
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
213
|
+
__epPropKey: true;
|
|
214
|
+
};
|
|
215
|
+
readonly readonly: BooleanConstructor;
|
|
216
|
+
readonly clearable: BooleanConstructor;
|
|
217
|
+
readonly showPassword: BooleanConstructor;
|
|
218
|
+
readonly showWordLimit: BooleanConstructor;
|
|
219
|
+
readonly suffixIcon: {
|
|
220
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
221
|
+
readonly required: false;
|
|
222
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
223
|
+
__epPropKey: true;
|
|
224
|
+
};
|
|
225
|
+
readonly prefixIcon: {
|
|
226
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
227
|
+
readonly required: false;
|
|
228
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
229
|
+
__epPropKey: true;
|
|
230
|
+
};
|
|
231
|
+
readonly containerRole: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
232
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
|
|
233
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
234
|
+
readonly inputStyle: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | import('vue').CSSProperties | import('vue').StyleValue[]) | (() => import('vue').StyleValue) | ((new (...args: any[]) => string | import('vue').CSSProperties | import('vue').StyleValue[]) | (() => import('vue').StyleValue))[], unknown, unknown, () => import('element-plus/es/utils/typescript.mjs').Mutable<{}>, boolean>;
|
|
235
|
+
readonly autofocus: BooleanConstructor;
|
|
236
|
+
readonly rows: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
|
|
237
|
+
}>> & {
|
|
238
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
239
|
+
onChange?: ((value: string) => any) | undefined;
|
|
240
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
241
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
242
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
243
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
244
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
245
|
+
onInput?: ((value: string) => any) | undefined;
|
|
246
|
+
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
247
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
248
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
249
|
+
onClear?: (() => any) | undefined;
|
|
250
|
+
}, {
|
|
251
|
+
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
252
|
+
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
253
|
+
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
254
|
+
textareaStyle: import('vue').ComputedRef<import('vue').StyleValue>;
|
|
255
|
+
autosize: import('vue').Ref<import('element-plus').InputAutoSize>;
|
|
256
|
+
isComposing: import('vue').Ref<boolean>;
|
|
257
|
+
focus: () => void | undefined;
|
|
258
|
+
blur: () => void | undefined;
|
|
259
|
+
select: () => void;
|
|
260
|
+
clear: () => void;
|
|
261
|
+
resizeTextarea: () => void;
|
|
262
|
+
}, {}, {}, {}, {
|
|
263
|
+
readonly disabled: boolean;
|
|
264
|
+
readonly id: string;
|
|
265
|
+
readonly type: string;
|
|
266
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
|
|
267
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
268
|
+
readonly readonly: boolean;
|
|
269
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
270
|
+
readonly autocomplete: string;
|
|
271
|
+
readonly containerRole: string;
|
|
272
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
273
|
+
readonly inputStyle: import('vue').StyleValue;
|
|
274
|
+
readonly rows: number;
|
|
275
|
+
readonly clearable: boolean;
|
|
276
|
+
readonly showPassword: boolean;
|
|
277
|
+
readonly showWordLimit: boolean;
|
|
278
|
+
readonly autofocus: boolean;
|
|
279
|
+
}>;
|
|
280
|
+
__isFragment?: never;
|
|
281
|
+
__isTeleport?: never;
|
|
282
|
+
__isSuspense?: never;
|
|
283
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
284
|
+
readonly ariaLabel: StringConstructor;
|
|
285
|
+
readonly id: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
286
|
+
readonly size: {
|
|
287
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
288
|
+
readonly required: false;
|
|
289
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
290
|
+
__epPropKey: true;
|
|
291
|
+
};
|
|
292
|
+
readonly disabled: BooleanConstructor;
|
|
293
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
|
|
294
|
+
readonly maxlength: {
|
|
295
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
296
|
+
readonly required: false;
|
|
297
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
298
|
+
__epPropKey: true;
|
|
299
|
+
};
|
|
300
|
+
readonly minlength: {
|
|
301
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
302
|
+
readonly required: false;
|
|
303
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
304
|
+
__epPropKey: true;
|
|
305
|
+
};
|
|
306
|
+
readonly type: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "text", boolean>;
|
|
307
|
+
readonly resize: {
|
|
308
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown>>;
|
|
309
|
+
readonly required: false;
|
|
310
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
311
|
+
__epPropKey: true;
|
|
312
|
+
};
|
|
313
|
+
readonly autosize: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => boolean | {
|
|
314
|
+
minRows?: number;
|
|
315
|
+
maxRows?: number;
|
|
316
|
+
}) | (() => import('element-plus').InputAutoSize) | ((new (...args: any[]) => boolean | {
|
|
317
|
+
minRows?: number;
|
|
318
|
+
maxRows?: number;
|
|
319
|
+
}) | (() => import('element-plus').InputAutoSize))[], unknown, unknown, false, boolean>;
|
|
320
|
+
readonly autocomplete: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "off", boolean>;
|
|
321
|
+
readonly formatter: {
|
|
322
|
+
readonly type: import('vue').PropType<Function>;
|
|
323
|
+
readonly required: false;
|
|
324
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
325
|
+
__epPropKey: true;
|
|
326
|
+
};
|
|
327
|
+
readonly parser: {
|
|
328
|
+
readonly type: import('vue').PropType<Function>;
|
|
329
|
+
readonly required: false;
|
|
330
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
331
|
+
__epPropKey: true;
|
|
332
|
+
};
|
|
333
|
+
readonly placeholder: {
|
|
334
|
+
readonly type: import('vue').PropType<string>;
|
|
335
|
+
readonly required: false;
|
|
336
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
337
|
+
__epPropKey: true;
|
|
338
|
+
};
|
|
339
|
+
readonly form: {
|
|
340
|
+
readonly type: import('vue').PropType<string>;
|
|
341
|
+
readonly required: false;
|
|
342
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
343
|
+
__epPropKey: true;
|
|
344
|
+
};
|
|
345
|
+
readonly readonly: BooleanConstructor;
|
|
346
|
+
readonly clearable: BooleanConstructor;
|
|
347
|
+
readonly showPassword: BooleanConstructor;
|
|
348
|
+
readonly showWordLimit: BooleanConstructor;
|
|
349
|
+
readonly suffixIcon: {
|
|
350
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
351
|
+
readonly required: false;
|
|
352
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
353
|
+
__epPropKey: true;
|
|
354
|
+
};
|
|
355
|
+
readonly prefixIcon: {
|
|
356
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
357
|
+
readonly required: false;
|
|
358
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
359
|
+
__epPropKey: true;
|
|
360
|
+
};
|
|
361
|
+
readonly containerRole: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
362
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
|
|
363
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
364
|
+
readonly inputStyle: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | import('vue').CSSProperties | import('vue').StyleValue[]) | (() => import('vue').StyleValue) | ((new (...args: any[]) => string | import('vue').CSSProperties | import('vue').StyleValue[]) | (() => import('vue').StyleValue))[], unknown, unknown, () => import('element-plus/es/utils/typescript.mjs').Mutable<{}>, boolean>;
|
|
365
|
+
readonly autofocus: BooleanConstructor;
|
|
366
|
+
readonly rows: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
|
|
367
|
+
}>> & {
|
|
368
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
369
|
+
onChange?: ((value: string) => any) | undefined;
|
|
370
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
371
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
372
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
373
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
374
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
375
|
+
onInput?: ((value: string) => any) | undefined;
|
|
376
|
+
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
377
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
378
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
379
|
+
onClear?: (() => any) | undefined;
|
|
380
|
+
}, {
|
|
381
|
+
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
382
|
+
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
383
|
+
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
384
|
+
textareaStyle: import('vue').ComputedRef<import('vue').StyleValue>;
|
|
385
|
+
autosize: import('vue').Ref<import('element-plus').InputAutoSize>;
|
|
386
|
+
isComposing: import('vue').Ref<boolean>;
|
|
387
|
+
focus: () => void | undefined;
|
|
388
|
+
blur: () => void | undefined;
|
|
389
|
+
select: () => void;
|
|
390
|
+
clear: () => void;
|
|
391
|
+
resizeTextarea: () => void;
|
|
392
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
393
|
+
input: (value: string) => void;
|
|
394
|
+
clear: () => void;
|
|
395
|
+
"update:modelValue": (value: string) => void;
|
|
396
|
+
change: (value: string) => void;
|
|
397
|
+
blur: (evt: FocusEvent) => void;
|
|
398
|
+
compositionend: (evt: CompositionEvent) => void;
|
|
399
|
+
compositionstart: (evt: CompositionEvent) => void;
|
|
400
|
+
compositionupdate: (evt: CompositionEvent) => void;
|
|
401
|
+
focus: (evt: FocusEvent) => void;
|
|
402
|
+
keydown: (evt: Event | KeyboardEvent) => void;
|
|
403
|
+
mouseenter: (evt: MouseEvent) => void;
|
|
404
|
+
mouseleave: (evt: MouseEvent) => void;
|
|
405
|
+
}, string, {
|
|
406
|
+
readonly disabled: boolean;
|
|
407
|
+
readonly id: string;
|
|
408
|
+
readonly type: string;
|
|
409
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
|
|
410
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
411
|
+
readonly readonly: boolean;
|
|
412
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
413
|
+
readonly autocomplete: string;
|
|
414
|
+
readonly containerRole: string;
|
|
415
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
416
|
+
readonly inputStyle: import('vue').StyleValue;
|
|
417
|
+
readonly rows: number;
|
|
418
|
+
readonly clearable: boolean;
|
|
419
|
+
readonly showPassword: boolean;
|
|
420
|
+
readonly showWordLimit: boolean;
|
|
421
|
+
readonly autofocus: boolean;
|
|
422
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
423
|
+
$slots: {
|
|
424
|
+
prepend?(_: {}): any;
|
|
425
|
+
prefix?(_: {}): any;
|
|
426
|
+
suffix?(_: {}): any;
|
|
427
|
+
append?(_: {}): any;
|
|
428
|
+
};
|
|
429
|
+
})>;
|
|
430
|
+
valueKey: string;
|
|
431
|
+
defaultProps: {};
|
|
432
|
+
};
|
|
433
|
+
textarea: {
|
|
434
|
+
title: string;
|
|
435
|
+
valueKey: string;
|
|
436
|
+
inputType: import('element-plus/es/utils/index.mjs').SFCWithInstall<{
|
|
437
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
438
|
+
readonly ariaLabel: StringConstructor;
|
|
439
|
+
readonly id: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
440
|
+
readonly size: {
|
|
441
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
442
|
+
readonly required: false;
|
|
443
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
444
|
+
__epPropKey: true;
|
|
445
|
+
};
|
|
446
|
+
readonly disabled: BooleanConstructor;
|
|
447
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
|
|
448
|
+
readonly maxlength: {
|
|
449
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
450
|
+
readonly required: false;
|
|
451
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
452
|
+
__epPropKey: true;
|
|
453
|
+
};
|
|
454
|
+
readonly minlength: {
|
|
455
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
456
|
+
readonly required: false;
|
|
457
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
458
|
+
__epPropKey: true;
|
|
459
|
+
};
|
|
460
|
+
readonly type: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "text", boolean>;
|
|
461
|
+
readonly resize: {
|
|
462
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown>>;
|
|
463
|
+
readonly required: false;
|
|
464
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
465
|
+
__epPropKey: true;
|
|
466
|
+
};
|
|
467
|
+
readonly autosize: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => boolean | {
|
|
468
|
+
minRows?: number;
|
|
469
|
+
maxRows?: number;
|
|
470
|
+
}) | (() => import('element-plus').InputAutoSize) | ((new (...args: any[]) => boolean | {
|
|
471
|
+
minRows?: number;
|
|
472
|
+
maxRows?: number;
|
|
473
|
+
}) | (() => import('element-plus').InputAutoSize))[], unknown, unknown, false, boolean>;
|
|
474
|
+
readonly autocomplete: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "off", boolean>;
|
|
475
|
+
readonly formatter: {
|
|
476
|
+
readonly type: import('vue').PropType<Function>;
|
|
477
|
+
readonly required: false;
|
|
478
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
479
|
+
__epPropKey: true;
|
|
480
|
+
};
|
|
481
|
+
readonly parser: {
|
|
482
|
+
readonly type: import('vue').PropType<Function>;
|
|
483
|
+
readonly required: false;
|
|
484
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
485
|
+
__epPropKey: true;
|
|
486
|
+
};
|
|
487
|
+
readonly placeholder: {
|
|
488
|
+
readonly type: import('vue').PropType<string>;
|
|
489
|
+
readonly required: false;
|
|
490
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
491
|
+
__epPropKey: true;
|
|
492
|
+
};
|
|
493
|
+
readonly form: {
|
|
494
|
+
readonly type: import('vue').PropType<string>;
|
|
495
|
+
readonly required: false;
|
|
496
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
497
|
+
__epPropKey: true;
|
|
498
|
+
};
|
|
499
|
+
readonly readonly: BooleanConstructor;
|
|
500
|
+
readonly clearable: BooleanConstructor;
|
|
501
|
+
readonly showPassword: BooleanConstructor;
|
|
502
|
+
readonly showWordLimit: BooleanConstructor;
|
|
503
|
+
readonly suffixIcon: {
|
|
504
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
505
|
+
readonly required: false;
|
|
506
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
507
|
+
__epPropKey: true;
|
|
508
|
+
};
|
|
509
|
+
readonly prefixIcon: {
|
|
510
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
511
|
+
readonly required: false;
|
|
512
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
513
|
+
__epPropKey: true;
|
|
514
|
+
};
|
|
515
|
+
readonly containerRole: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
516
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
|
|
517
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
518
|
+
readonly inputStyle: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | import('vue').CSSProperties | import('vue').StyleValue[]) | (() => import('vue').StyleValue) | ((new (...args: any[]) => string | import('vue').CSSProperties | import('vue').StyleValue[]) | (() => import('vue').StyleValue))[], unknown, unknown, () => import('element-plus/es/utils/typescript.mjs').Mutable<{}>, boolean>;
|
|
519
|
+
readonly autofocus: BooleanConstructor;
|
|
520
|
+
readonly rows: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
|
|
521
|
+
}>> & {
|
|
522
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
523
|
+
onChange?: ((value: string) => any) | undefined;
|
|
524
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
525
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
526
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
527
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
528
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
529
|
+
onInput?: ((value: string) => any) | undefined;
|
|
530
|
+
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
531
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
532
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
533
|
+
onClear?: (() => any) | undefined;
|
|
534
|
+
}, {
|
|
535
|
+
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
536
|
+
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
537
|
+
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
538
|
+
textareaStyle: import('vue').ComputedRef<import('vue').StyleValue>;
|
|
539
|
+
autosize: import('vue').Ref<import('element-plus').InputAutoSize>;
|
|
540
|
+
isComposing: import('vue').Ref<boolean>;
|
|
541
|
+
focus: () => void | undefined;
|
|
542
|
+
blur: () => void | undefined;
|
|
543
|
+
select: () => void;
|
|
544
|
+
clear: () => void;
|
|
545
|
+
resizeTextarea: () => void;
|
|
546
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
547
|
+
input: (value: string) => void;
|
|
548
|
+
clear: () => void;
|
|
549
|
+
"update:modelValue": (value: string) => void;
|
|
550
|
+
change: (value: string) => void;
|
|
551
|
+
blur: (evt: FocusEvent) => void;
|
|
552
|
+
compositionend: (evt: CompositionEvent) => void;
|
|
553
|
+
compositionstart: (evt: CompositionEvent) => void;
|
|
554
|
+
compositionupdate: (evt: CompositionEvent) => void;
|
|
555
|
+
focus: (evt: FocusEvent) => void;
|
|
556
|
+
keydown: (evt: Event | KeyboardEvent) => void;
|
|
557
|
+
mouseenter: (evt: MouseEvent) => void;
|
|
558
|
+
mouseleave: (evt: MouseEvent) => void;
|
|
559
|
+
}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
|
|
560
|
+
readonly disabled: boolean;
|
|
561
|
+
readonly id: string;
|
|
562
|
+
readonly type: string;
|
|
563
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
|
|
564
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
565
|
+
readonly readonly: boolean;
|
|
566
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
567
|
+
readonly autocomplete: string;
|
|
568
|
+
readonly containerRole: string;
|
|
569
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
570
|
+
readonly inputStyle: import('vue').StyleValue;
|
|
571
|
+
readonly rows: number;
|
|
572
|
+
readonly clearable: boolean;
|
|
573
|
+
readonly showPassword: boolean;
|
|
574
|
+
readonly showWordLimit: boolean;
|
|
575
|
+
readonly autofocus: boolean;
|
|
576
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
577
|
+
P: {};
|
|
578
|
+
B: {};
|
|
579
|
+
D: {};
|
|
580
|
+
C: {};
|
|
581
|
+
M: {};
|
|
582
|
+
Defaults: {};
|
|
583
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
584
|
+
readonly ariaLabel: StringConstructor;
|
|
585
|
+
readonly id: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
586
|
+
readonly size: {
|
|
587
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
588
|
+
readonly required: false;
|
|
589
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
590
|
+
__epPropKey: true;
|
|
591
|
+
};
|
|
592
|
+
readonly disabled: BooleanConstructor;
|
|
593
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
|
|
594
|
+
readonly maxlength: {
|
|
595
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
596
|
+
readonly required: false;
|
|
597
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
598
|
+
__epPropKey: true;
|
|
599
|
+
};
|
|
600
|
+
readonly minlength: {
|
|
601
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
602
|
+
readonly required: false;
|
|
603
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
604
|
+
__epPropKey: true;
|
|
605
|
+
};
|
|
606
|
+
readonly type: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "text", boolean>;
|
|
607
|
+
readonly resize: {
|
|
608
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown>>;
|
|
609
|
+
readonly required: false;
|
|
610
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
611
|
+
__epPropKey: true;
|
|
612
|
+
};
|
|
613
|
+
readonly autosize: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => boolean | {
|
|
614
|
+
minRows?: number;
|
|
615
|
+
maxRows?: number;
|
|
616
|
+
}) | (() => import('element-plus').InputAutoSize) | ((new (...args: any[]) => boolean | {
|
|
617
|
+
minRows?: number;
|
|
618
|
+
maxRows?: number;
|
|
619
|
+
}) | (() => import('element-plus').InputAutoSize))[], unknown, unknown, false, boolean>;
|
|
620
|
+
readonly autocomplete: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "off", boolean>;
|
|
621
|
+
readonly formatter: {
|
|
622
|
+
readonly type: import('vue').PropType<Function>;
|
|
623
|
+
readonly required: false;
|
|
624
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
625
|
+
__epPropKey: true;
|
|
626
|
+
};
|
|
627
|
+
readonly parser: {
|
|
628
|
+
readonly type: import('vue').PropType<Function>;
|
|
629
|
+
readonly required: false;
|
|
630
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
631
|
+
__epPropKey: true;
|
|
632
|
+
};
|
|
633
|
+
readonly placeholder: {
|
|
634
|
+
readonly type: import('vue').PropType<string>;
|
|
635
|
+
readonly required: false;
|
|
636
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
637
|
+
__epPropKey: true;
|
|
638
|
+
};
|
|
639
|
+
readonly form: {
|
|
640
|
+
readonly type: import('vue').PropType<string>;
|
|
641
|
+
readonly required: false;
|
|
642
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
643
|
+
__epPropKey: true;
|
|
644
|
+
};
|
|
645
|
+
readonly readonly: BooleanConstructor;
|
|
646
|
+
readonly clearable: BooleanConstructor;
|
|
647
|
+
readonly showPassword: BooleanConstructor;
|
|
648
|
+
readonly showWordLimit: BooleanConstructor;
|
|
649
|
+
readonly suffixIcon: {
|
|
650
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
651
|
+
readonly required: false;
|
|
652
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
653
|
+
__epPropKey: true;
|
|
654
|
+
};
|
|
655
|
+
readonly prefixIcon: {
|
|
656
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
657
|
+
readonly required: false;
|
|
658
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
659
|
+
__epPropKey: true;
|
|
660
|
+
};
|
|
661
|
+
readonly containerRole: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
662
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
|
|
663
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
664
|
+
readonly inputStyle: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | import('vue').CSSProperties | import('vue').StyleValue[]) | (() => import('vue').StyleValue) | ((new (...args: any[]) => string | import('vue').CSSProperties | import('vue').StyleValue[]) | (() => import('vue').StyleValue))[], unknown, unknown, () => import('element-plus/es/utils/typescript.mjs').Mutable<{}>, boolean>;
|
|
665
|
+
readonly autofocus: BooleanConstructor;
|
|
666
|
+
readonly rows: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
|
|
667
|
+
}>> & {
|
|
668
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
669
|
+
onChange?: ((value: string) => any) | undefined;
|
|
670
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
671
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
672
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
673
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
674
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
675
|
+
onInput?: ((value: string) => any) | undefined;
|
|
676
|
+
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
677
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
678
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
679
|
+
onClear?: (() => any) | undefined;
|
|
680
|
+
}, {
|
|
681
|
+
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
682
|
+
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
683
|
+
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
684
|
+
textareaStyle: import('vue').ComputedRef<import('vue').StyleValue>;
|
|
685
|
+
autosize: import('vue').Ref<import('element-plus').InputAutoSize>;
|
|
686
|
+
isComposing: import('vue').Ref<boolean>;
|
|
687
|
+
focus: () => void | undefined;
|
|
688
|
+
blur: () => void | undefined;
|
|
689
|
+
select: () => void;
|
|
690
|
+
clear: () => void;
|
|
691
|
+
resizeTextarea: () => void;
|
|
692
|
+
}, {}, {}, {}, {
|
|
693
|
+
readonly disabled: boolean;
|
|
694
|
+
readonly id: string;
|
|
695
|
+
readonly type: string;
|
|
696
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
|
|
697
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
698
|
+
readonly readonly: boolean;
|
|
699
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
700
|
+
readonly autocomplete: string;
|
|
701
|
+
readonly containerRole: string;
|
|
702
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
703
|
+
readonly inputStyle: import('vue').StyleValue;
|
|
704
|
+
readonly rows: number;
|
|
705
|
+
readonly clearable: boolean;
|
|
706
|
+
readonly showPassword: boolean;
|
|
707
|
+
readonly showWordLimit: boolean;
|
|
708
|
+
readonly autofocus: boolean;
|
|
709
|
+
}>;
|
|
710
|
+
__isFragment?: never;
|
|
711
|
+
__isTeleport?: never;
|
|
712
|
+
__isSuspense?: never;
|
|
713
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
714
|
+
readonly ariaLabel: StringConstructor;
|
|
715
|
+
readonly id: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
716
|
+
readonly size: {
|
|
717
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
718
|
+
readonly required: false;
|
|
719
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
720
|
+
__epPropKey: true;
|
|
721
|
+
};
|
|
722
|
+
readonly disabled: BooleanConstructor;
|
|
723
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
|
|
724
|
+
readonly maxlength: {
|
|
725
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
726
|
+
readonly required: false;
|
|
727
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
728
|
+
__epPropKey: true;
|
|
729
|
+
};
|
|
730
|
+
readonly minlength: {
|
|
731
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
|
|
732
|
+
readonly required: false;
|
|
733
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
734
|
+
__epPropKey: true;
|
|
735
|
+
};
|
|
736
|
+
readonly type: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "text", boolean>;
|
|
737
|
+
readonly resize: {
|
|
738
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown>>;
|
|
739
|
+
readonly required: false;
|
|
740
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
741
|
+
__epPropKey: true;
|
|
742
|
+
};
|
|
743
|
+
readonly autosize: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => boolean | {
|
|
744
|
+
minRows?: number;
|
|
745
|
+
maxRows?: number;
|
|
746
|
+
}) | (() => import('element-plus').InputAutoSize) | ((new (...args: any[]) => boolean | {
|
|
747
|
+
minRows?: number;
|
|
748
|
+
maxRows?: number;
|
|
749
|
+
}) | (() => import('element-plus').InputAutoSize))[], unknown, unknown, false, boolean>;
|
|
750
|
+
readonly autocomplete: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "off", boolean>;
|
|
751
|
+
readonly formatter: {
|
|
752
|
+
readonly type: import('vue').PropType<Function>;
|
|
753
|
+
readonly required: false;
|
|
754
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
755
|
+
__epPropKey: true;
|
|
756
|
+
};
|
|
757
|
+
readonly parser: {
|
|
758
|
+
readonly type: import('vue').PropType<Function>;
|
|
759
|
+
readonly required: false;
|
|
760
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
761
|
+
__epPropKey: true;
|
|
762
|
+
};
|
|
763
|
+
readonly placeholder: {
|
|
764
|
+
readonly type: import('vue').PropType<string>;
|
|
765
|
+
readonly required: false;
|
|
766
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
767
|
+
__epPropKey: true;
|
|
768
|
+
};
|
|
769
|
+
readonly form: {
|
|
770
|
+
readonly type: import('vue').PropType<string>;
|
|
771
|
+
readonly required: false;
|
|
772
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
773
|
+
__epPropKey: true;
|
|
774
|
+
};
|
|
775
|
+
readonly readonly: BooleanConstructor;
|
|
776
|
+
readonly clearable: BooleanConstructor;
|
|
777
|
+
readonly showPassword: BooleanConstructor;
|
|
778
|
+
readonly showWordLimit: BooleanConstructor;
|
|
779
|
+
readonly suffixIcon: {
|
|
780
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
781
|
+
readonly required: false;
|
|
782
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
783
|
+
__epPropKey: true;
|
|
784
|
+
};
|
|
785
|
+
readonly prefixIcon: {
|
|
786
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
787
|
+
readonly required: false;
|
|
788
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
789
|
+
__epPropKey: true;
|
|
790
|
+
};
|
|
791
|
+
readonly containerRole: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
|
|
792
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
|
|
793
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
794
|
+
readonly inputStyle: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | import('vue').CSSProperties | import('vue').StyleValue[]) | (() => import('vue').StyleValue) | ((new (...args: any[]) => string | import('vue').CSSProperties | import('vue').StyleValue[]) | (() => import('vue').StyleValue))[], unknown, unknown, () => import('element-plus/es/utils/typescript.mjs').Mutable<{}>, boolean>;
|
|
795
|
+
readonly autofocus: BooleanConstructor;
|
|
796
|
+
readonly rows: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
|
|
797
|
+
}>> & {
|
|
798
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
799
|
+
onChange?: ((value: string) => any) | undefined;
|
|
800
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
801
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
802
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
803
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
804
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
805
|
+
onInput?: ((value: string) => any) | undefined;
|
|
806
|
+
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
807
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
808
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
809
|
+
onClear?: (() => any) | undefined;
|
|
810
|
+
}, {
|
|
811
|
+
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
812
|
+
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
813
|
+
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
814
|
+
textareaStyle: import('vue').ComputedRef<import('vue').StyleValue>;
|
|
815
|
+
autosize: import('vue').Ref<import('element-plus').InputAutoSize>;
|
|
816
|
+
isComposing: import('vue').Ref<boolean>;
|
|
817
|
+
focus: () => void | undefined;
|
|
818
|
+
blur: () => void | undefined;
|
|
819
|
+
select: () => void;
|
|
820
|
+
clear: () => void;
|
|
821
|
+
resizeTextarea: () => void;
|
|
822
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
823
|
+
input: (value: string) => void;
|
|
824
|
+
clear: () => void;
|
|
825
|
+
"update:modelValue": (value: string) => void;
|
|
826
|
+
change: (value: string) => void;
|
|
827
|
+
blur: (evt: FocusEvent) => void;
|
|
828
|
+
compositionend: (evt: CompositionEvent) => void;
|
|
829
|
+
compositionstart: (evt: CompositionEvent) => void;
|
|
830
|
+
compositionupdate: (evt: CompositionEvent) => void;
|
|
831
|
+
focus: (evt: FocusEvent) => void;
|
|
832
|
+
keydown: (evt: Event | KeyboardEvent) => void;
|
|
833
|
+
mouseenter: (evt: MouseEvent) => void;
|
|
834
|
+
mouseleave: (evt: MouseEvent) => void;
|
|
835
|
+
}, string, {
|
|
836
|
+
readonly disabled: boolean;
|
|
837
|
+
readonly id: string;
|
|
838
|
+
readonly type: string;
|
|
839
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
|
|
840
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
841
|
+
readonly readonly: boolean;
|
|
842
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
843
|
+
readonly autocomplete: string;
|
|
844
|
+
readonly containerRole: string;
|
|
845
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
846
|
+
readonly inputStyle: import('vue').StyleValue;
|
|
847
|
+
readonly rows: number;
|
|
848
|
+
readonly clearable: boolean;
|
|
849
|
+
readonly showPassword: boolean;
|
|
850
|
+
readonly showWordLimit: boolean;
|
|
851
|
+
readonly autofocus: boolean;
|
|
852
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
853
|
+
$slots: {
|
|
854
|
+
prepend?(_: {}): any;
|
|
855
|
+
prefix?(_: {}): any;
|
|
856
|
+
suffix?(_: {}): any;
|
|
857
|
+
append?(_: {}): any;
|
|
858
|
+
};
|
|
859
|
+
})>;
|
|
860
|
+
defaultProps: {
|
|
861
|
+
type: string;
|
|
862
|
+
};
|
|
863
|
+
displayRender: (val: any) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
864
|
+
[key: string]: any;
|
|
865
|
+
}>;
|
|
866
|
+
textRender: (val: any) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
867
|
+
[key: string]: any;
|
|
868
|
+
}>;
|
|
869
|
+
};
|
|
870
|
+
datetime: {
|
|
871
|
+
title: string;
|
|
872
|
+
inputType: import('element-plus/es/utils/index.mjs').SFCWithInstall<import('vue').DefineComponent<{
|
|
873
|
+
readonly type: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import('element-plus/es/components/date-picker/src/date-picker.type.mjs').IDatePickerType) | ((new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import('element-plus/es/components/date-picker/src/date-picker.type.mjs').IDatePickerType))[], unknown, unknown, "date", boolean>;
|
|
874
|
+
readonly showNow: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
875
|
+
readonly ariaLabel: StringConstructor;
|
|
876
|
+
readonly emptyValues: ArrayConstructor;
|
|
877
|
+
readonly valueOnClear: import('element-plus/es/utils/index.mjs').EpPropFinalized<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown, undefined, boolean>;
|
|
878
|
+
readonly disabledDate: {
|
|
879
|
+
readonly type: import('vue').PropType<Function>;
|
|
880
|
+
readonly required: false;
|
|
881
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
882
|
+
__epPropKey: true;
|
|
883
|
+
};
|
|
884
|
+
readonly cellClassName: {
|
|
885
|
+
readonly type: import('vue').PropType<Function>;
|
|
886
|
+
readonly required: false;
|
|
887
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
888
|
+
__epPropKey: true;
|
|
889
|
+
};
|
|
890
|
+
readonly shortcuts: import('element-plus/es/utils/index.mjs').EpPropFinalized<ArrayConstructor, unknown, unknown, () => never[], boolean>;
|
|
891
|
+
readonly arrowControl: BooleanConstructor;
|
|
892
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
893
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
894
|
+
readonly unlinkPanels: BooleanConstructor;
|
|
895
|
+
readonly placement: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('@popperjs/core').Placement) | ((new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('@popperjs/core').Placement))[], import('@popperjs/core').Placement, unknown, "bottom", boolean>;
|
|
896
|
+
readonly fallbackPlacements: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('@popperjs/core').Placement[]) | (() => import('@popperjs/core').Placement[]) | ((new (...args: any[]) => import('@popperjs/core').Placement[]) | (() => import('@popperjs/core').Placement[]))[], unknown, unknown, readonly ["bottom", "top", "right", "left"], boolean>;
|
|
897
|
+
readonly disabledHours: {
|
|
898
|
+
readonly type: import('vue').PropType<import('element-plus/es/components/time-picker/src/props/shared.mjs').GetDisabledHours>;
|
|
899
|
+
readonly required: false;
|
|
900
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
901
|
+
__epPropKey: true;
|
|
902
|
+
};
|
|
903
|
+
readonly disabledMinutes: {
|
|
904
|
+
readonly type: import('vue').PropType<import('element-plus/es/components/time-picker/src/props/shared.mjs').GetDisabledMinutes>;
|
|
905
|
+
readonly required: false;
|
|
906
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
907
|
+
__epPropKey: true;
|
|
908
|
+
};
|
|
909
|
+
readonly disabledSeconds: {
|
|
910
|
+
readonly type: import('vue').PropType<import('element-plus/es/components/time-picker/src/props/shared.mjs').GetDisabledSeconds>;
|
|
911
|
+
readonly required: false;
|
|
912
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
913
|
+
__epPropKey: true;
|
|
914
|
+
};
|
|
915
|
+
readonly id: {
|
|
916
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>))[], unknown, unknown>>;
|
|
917
|
+
readonly required: false;
|
|
918
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
919
|
+
__epPropKey: true;
|
|
920
|
+
};
|
|
921
|
+
readonly name: {
|
|
922
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>))[], unknown, unknown>>;
|
|
923
|
+
readonly required: false;
|
|
924
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
925
|
+
__epPropKey: true;
|
|
926
|
+
};
|
|
927
|
+
readonly popperClass: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
928
|
+
readonly format: StringConstructor;
|
|
929
|
+
readonly valueFormat: StringConstructor;
|
|
930
|
+
readonly dateFormat: StringConstructor;
|
|
931
|
+
readonly timeFormat: StringConstructor;
|
|
932
|
+
readonly clearable: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
933
|
+
readonly clearIcon: {
|
|
934
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
935
|
+
readonly required: false;
|
|
936
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
937
|
+
__epPropKey: true;
|
|
938
|
+
};
|
|
939
|
+
readonly editable: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
940
|
+
readonly prefixIcon: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown, "", boolean>;
|
|
941
|
+
readonly size: {
|
|
942
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
943
|
+
readonly required: false;
|
|
944
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
945
|
+
__epPropKey: true;
|
|
946
|
+
};
|
|
947
|
+
readonly readonly: BooleanConstructor;
|
|
948
|
+
readonly disabled: BooleanConstructor;
|
|
949
|
+
readonly placeholder: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
950
|
+
readonly popperOptions: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => Partial<import('@popperjs/core').Options>) | (() => Partial<import('@popperjs/core').Options>) | ((new (...args: any[]) => Partial<import('@popperjs/core').Options>) | (() => Partial<import('@popperjs/core').Options>))[], unknown, unknown, () => {}, boolean>;
|
|
951
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number | string[] | Date | [import('element-plus').DateModelType, import('element-plus').DateModelType]) | (() => import('element-plus').ModelValueType) | ((new (...args: any[]) => string | number | string[] | Date | [import('element-plus').DateModelType, import('element-plus').DateModelType]) | (() => import('element-plus').ModelValueType))[], unknown, unknown, "", boolean>;
|
|
952
|
+
readonly rangeSeparator: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "-", boolean>;
|
|
953
|
+
readonly startPlaceholder: StringConstructor;
|
|
954
|
+
readonly endPlaceholder: StringConstructor;
|
|
955
|
+
readonly defaultValue: {
|
|
956
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>))[], unknown, unknown>>;
|
|
957
|
+
readonly required: false;
|
|
958
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
959
|
+
__epPropKey: true;
|
|
960
|
+
};
|
|
961
|
+
readonly defaultTime: {
|
|
962
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>))[], unknown, unknown>>;
|
|
963
|
+
readonly required: false;
|
|
964
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
965
|
+
__epPropKey: true;
|
|
966
|
+
};
|
|
967
|
+
readonly isRange: BooleanConstructor;
|
|
968
|
+
}, () => JSX.Element, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
969
|
+
readonly type: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import('element-plus/es/components/date-picker/src/date-picker.type.mjs').IDatePickerType) | ((new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import('element-plus/es/components/date-picker/src/date-picker.type.mjs').IDatePickerType))[], unknown, unknown, "date", boolean>;
|
|
970
|
+
readonly showNow: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
971
|
+
readonly ariaLabel: StringConstructor;
|
|
972
|
+
readonly emptyValues: ArrayConstructor;
|
|
973
|
+
readonly valueOnClear: import('element-plus/es/utils/index.mjs').EpPropFinalized<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown, undefined, boolean>;
|
|
974
|
+
readonly disabledDate: {
|
|
975
|
+
readonly type: import('vue').PropType<Function>;
|
|
976
|
+
readonly required: false;
|
|
977
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
978
|
+
__epPropKey: true;
|
|
979
|
+
};
|
|
980
|
+
readonly cellClassName: {
|
|
981
|
+
readonly type: import('vue').PropType<Function>;
|
|
982
|
+
readonly required: false;
|
|
983
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
984
|
+
__epPropKey: true;
|
|
985
|
+
};
|
|
986
|
+
readonly shortcuts: import('element-plus/es/utils/index.mjs').EpPropFinalized<ArrayConstructor, unknown, unknown, () => never[], boolean>;
|
|
987
|
+
readonly arrowControl: BooleanConstructor;
|
|
988
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
989
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
990
|
+
readonly unlinkPanels: BooleanConstructor;
|
|
991
|
+
readonly placement: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('@popperjs/core').Placement) | ((new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('@popperjs/core').Placement))[], import('@popperjs/core').Placement, unknown, "bottom", boolean>;
|
|
992
|
+
readonly fallbackPlacements: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('@popperjs/core').Placement[]) | (() => import('@popperjs/core').Placement[]) | ((new (...args: any[]) => import('@popperjs/core').Placement[]) | (() => import('@popperjs/core').Placement[]))[], unknown, unknown, readonly ["bottom", "top", "right", "left"], boolean>;
|
|
993
|
+
readonly disabledHours: {
|
|
994
|
+
readonly type: import('vue').PropType<import('element-plus/es/components/time-picker/src/props/shared.mjs').GetDisabledHours>;
|
|
995
|
+
readonly required: false;
|
|
996
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
997
|
+
__epPropKey: true;
|
|
998
|
+
};
|
|
999
|
+
readonly disabledMinutes: {
|
|
1000
|
+
readonly type: import('vue').PropType<import('element-plus/es/components/time-picker/src/props/shared.mjs').GetDisabledMinutes>;
|
|
1001
|
+
readonly required: false;
|
|
1002
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1003
|
+
__epPropKey: true;
|
|
1004
|
+
};
|
|
1005
|
+
readonly disabledSeconds: {
|
|
1006
|
+
readonly type: import('vue').PropType<import('element-plus/es/components/time-picker/src/props/shared.mjs').GetDisabledSeconds>;
|
|
1007
|
+
readonly required: false;
|
|
1008
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1009
|
+
__epPropKey: true;
|
|
1010
|
+
};
|
|
1011
|
+
readonly id: {
|
|
1012
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>))[], unknown, unknown>>;
|
|
1013
|
+
readonly required: false;
|
|
1014
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1015
|
+
__epPropKey: true;
|
|
1016
|
+
};
|
|
1017
|
+
readonly name: {
|
|
1018
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>))[], unknown, unknown>>;
|
|
1019
|
+
readonly required: false;
|
|
1020
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1021
|
+
__epPropKey: true;
|
|
1022
|
+
};
|
|
1023
|
+
readonly popperClass: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
1024
|
+
readonly format: StringConstructor;
|
|
1025
|
+
readonly valueFormat: StringConstructor;
|
|
1026
|
+
readonly dateFormat: StringConstructor;
|
|
1027
|
+
readonly timeFormat: StringConstructor;
|
|
1028
|
+
readonly clearable: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1029
|
+
readonly clearIcon: {
|
|
1030
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
1031
|
+
readonly required: false;
|
|
1032
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1033
|
+
__epPropKey: true;
|
|
1034
|
+
};
|
|
1035
|
+
readonly editable: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1036
|
+
readonly prefixIcon: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown, "", boolean>;
|
|
1037
|
+
readonly size: {
|
|
1038
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
1039
|
+
readonly required: false;
|
|
1040
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1041
|
+
__epPropKey: true;
|
|
1042
|
+
};
|
|
1043
|
+
readonly readonly: BooleanConstructor;
|
|
1044
|
+
readonly disabled: BooleanConstructor;
|
|
1045
|
+
readonly placeholder: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
1046
|
+
readonly popperOptions: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => Partial<import('@popperjs/core').Options>) | (() => Partial<import('@popperjs/core').Options>) | ((new (...args: any[]) => Partial<import('@popperjs/core').Options>) | (() => Partial<import('@popperjs/core').Options>))[], unknown, unknown, () => {}, boolean>;
|
|
1047
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number | string[] | Date | [import('element-plus').DateModelType, import('element-plus').DateModelType]) | (() => import('element-plus').ModelValueType) | ((new (...args: any[]) => string | number | string[] | Date | [import('element-plus').DateModelType, import('element-plus').DateModelType]) | (() => import('element-plus').ModelValueType))[], unknown, unknown, "", boolean>;
|
|
1048
|
+
readonly rangeSeparator: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "-", boolean>;
|
|
1049
|
+
readonly startPlaceholder: StringConstructor;
|
|
1050
|
+
readonly endPlaceholder: StringConstructor;
|
|
1051
|
+
readonly defaultValue: {
|
|
1052
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>))[], unknown, unknown>>;
|
|
1053
|
+
readonly required: false;
|
|
1054
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1055
|
+
__epPropKey: true;
|
|
1056
|
+
};
|
|
1057
|
+
readonly defaultTime: {
|
|
1058
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>))[], unknown, unknown>>;
|
|
1059
|
+
readonly required: false;
|
|
1060
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1061
|
+
__epPropKey: true;
|
|
1062
|
+
};
|
|
1063
|
+
readonly isRange: BooleanConstructor;
|
|
1064
|
+
}>> & {
|
|
1065
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1066
|
+
}, {
|
|
1067
|
+
readonly disabled: boolean;
|
|
1068
|
+
readonly type: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import('element-plus/es/components/date-picker/src/date-picker.type.mjs').IDatePickerType) | ((new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import('element-plus/es/components/date-picker/src/date-picker.type.mjs').IDatePickerType))[], unknown, unknown>;
|
|
1069
|
+
readonly placeholder: string;
|
|
1070
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number | string[] | Date | [import('element-plus').DateModelType, import('element-plus').DateModelType]) | (() => import('element-plus').ModelValueType) | ((new (...args: any[]) => string | number | string[] | Date | [import('element-plus').DateModelType, import('element-plus').DateModelType]) | (() => import('element-plus').ModelValueType))[], unknown, unknown>;
|
|
1071
|
+
readonly placement: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('@popperjs/core').Placement) | ((new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('@popperjs/core').Placement))[], import('@popperjs/core').Placement, unknown>;
|
|
1072
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
1073
|
+
readonly valueOnClear: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown>;
|
|
1074
|
+
readonly readonly: boolean;
|
|
1075
|
+
readonly prefixIcon: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>;
|
|
1076
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1077
|
+
readonly clearable: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1078
|
+
readonly fallbackPlacements: import('@popperjs/core').Placement[];
|
|
1079
|
+
readonly popperOptions: Partial<import('@popperjs/core').Options>;
|
|
1080
|
+
readonly popperClass: string;
|
|
1081
|
+
readonly editable: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1082
|
+
readonly rangeSeparator: string;
|
|
1083
|
+
readonly shortcuts: unknown[];
|
|
1084
|
+
readonly showNow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1085
|
+
readonly arrowControl: boolean;
|
|
1086
|
+
readonly unlinkPanels: boolean;
|
|
1087
|
+
readonly isRange: boolean;
|
|
1088
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>>;
|
|
1089
|
+
valueKey: string;
|
|
1090
|
+
defaultProps: {
|
|
1091
|
+
type: string;
|
|
1092
|
+
};
|
|
1093
|
+
displayRender: (val: any) => any;
|
|
1094
|
+
textRender: (val: any) => any;
|
|
1095
|
+
};
|
|
1096
|
+
datePicker: {
|
|
1097
|
+
title: string;
|
|
1098
|
+
inputType: import('element-plus/es/utils/index.mjs').SFCWithInstall<import('vue').DefineComponent<{
|
|
1099
|
+
readonly type: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import('element-plus/es/components/date-picker/src/date-picker.type.mjs').IDatePickerType) | ((new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import('element-plus/es/components/date-picker/src/date-picker.type.mjs').IDatePickerType))[], unknown, unknown, "date", boolean>;
|
|
1100
|
+
readonly showNow: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1101
|
+
readonly ariaLabel: StringConstructor;
|
|
1102
|
+
readonly emptyValues: ArrayConstructor;
|
|
1103
|
+
readonly valueOnClear: import('element-plus/es/utils/index.mjs').EpPropFinalized<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown, undefined, boolean>;
|
|
1104
|
+
readonly disabledDate: {
|
|
1105
|
+
readonly type: import('vue').PropType<Function>;
|
|
1106
|
+
readonly required: false;
|
|
1107
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1108
|
+
__epPropKey: true;
|
|
1109
|
+
};
|
|
1110
|
+
readonly cellClassName: {
|
|
1111
|
+
readonly type: import('vue').PropType<Function>;
|
|
1112
|
+
readonly required: false;
|
|
1113
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1114
|
+
__epPropKey: true;
|
|
1115
|
+
};
|
|
1116
|
+
readonly shortcuts: import('element-plus/es/utils/index.mjs').EpPropFinalized<ArrayConstructor, unknown, unknown, () => never[], boolean>;
|
|
1117
|
+
readonly arrowControl: BooleanConstructor;
|
|
1118
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
1119
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1120
|
+
readonly unlinkPanels: BooleanConstructor;
|
|
1121
|
+
readonly placement: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('@popperjs/core').Placement) | ((new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('@popperjs/core').Placement))[], import('@popperjs/core').Placement, unknown, "bottom", boolean>;
|
|
1122
|
+
readonly fallbackPlacements: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('@popperjs/core').Placement[]) | (() => import('@popperjs/core').Placement[]) | ((new (...args: any[]) => import('@popperjs/core').Placement[]) | (() => import('@popperjs/core').Placement[]))[], unknown, unknown, readonly ["bottom", "top", "right", "left"], boolean>;
|
|
1123
|
+
readonly disabledHours: {
|
|
1124
|
+
readonly type: import('vue').PropType<import('element-plus/es/components/time-picker/src/props/shared.mjs').GetDisabledHours>;
|
|
1125
|
+
readonly required: false;
|
|
1126
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1127
|
+
__epPropKey: true;
|
|
1128
|
+
};
|
|
1129
|
+
readonly disabledMinutes: {
|
|
1130
|
+
readonly type: import('vue').PropType<import('element-plus/es/components/time-picker/src/props/shared.mjs').GetDisabledMinutes>;
|
|
1131
|
+
readonly required: false;
|
|
1132
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1133
|
+
__epPropKey: true;
|
|
1134
|
+
};
|
|
1135
|
+
readonly disabledSeconds: {
|
|
1136
|
+
readonly type: import('vue').PropType<import('element-plus/es/components/time-picker/src/props/shared.mjs').GetDisabledSeconds>;
|
|
1137
|
+
readonly required: false;
|
|
1138
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1139
|
+
__epPropKey: true;
|
|
1140
|
+
};
|
|
1141
|
+
readonly id: {
|
|
1142
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>))[], unknown, unknown>>;
|
|
1143
|
+
readonly required: false;
|
|
1144
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1145
|
+
__epPropKey: true;
|
|
1146
|
+
};
|
|
1147
|
+
readonly name: {
|
|
1148
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>))[], unknown, unknown>>;
|
|
1149
|
+
readonly required: false;
|
|
1150
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1151
|
+
__epPropKey: true;
|
|
1152
|
+
};
|
|
1153
|
+
readonly popperClass: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
1154
|
+
readonly format: StringConstructor;
|
|
1155
|
+
readonly valueFormat: StringConstructor;
|
|
1156
|
+
readonly dateFormat: StringConstructor;
|
|
1157
|
+
readonly timeFormat: StringConstructor;
|
|
1158
|
+
readonly clearable: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1159
|
+
readonly clearIcon: {
|
|
1160
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
1161
|
+
readonly required: false;
|
|
1162
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1163
|
+
__epPropKey: true;
|
|
1164
|
+
};
|
|
1165
|
+
readonly editable: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1166
|
+
readonly prefixIcon: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown, "", boolean>;
|
|
1167
|
+
readonly size: {
|
|
1168
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
1169
|
+
readonly required: false;
|
|
1170
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1171
|
+
__epPropKey: true;
|
|
1172
|
+
};
|
|
1173
|
+
readonly readonly: BooleanConstructor;
|
|
1174
|
+
readonly disabled: BooleanConstructor;
|
|
1175
|
+
readonly placeholder: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
1176
|
+
readonly popperOptions: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => Partial<import('@popperjs/core').Options>) | (() => Partial<import('@popperjs/core').Options>) | ((new (...args: any[]) => Partial<import('@popperjs/core').Options>) | (() => Partial<import('@popperjs/core').Options>))[], unknown, unknown, () => {}, boolean>;
|
|
1177
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number | string[] | Date | [import('element-plus').DateModelType, import('element-plus').DateModelType]) | (() => import('element-plus').ModelValueType) | ((new (...args: any[]) => string | number | string[] | Date | [import('element-plus').DateModelType, import('element-plus').DateModelType]) | (() => import('element-plus').ModelValueType))[], unknown, unknown, "", boolean>;
|
|
1178
|
+
readonly rangeSeparator: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "-", boolean>;
|
|
1179
|
+
readonly startPlaceholder: StringConstructor;
|
|
1180
|
+
readonly endPlaceholder: StringConstructor;
|
|
1181
|
+
readonly defaultValue: {
|
|
1182
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>))[], unknown, unknown>>;
|
|
1183
|
+
readonly required: false;
|
|
1184
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1185
|
+
__epPropKey: true;
|
|
1186
|
+
};
|
|
1187
|
+
readonly defaultTime: {
|
|
1188
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>))[], unknown, unknown>>;
|
|
1189
|
+
readonly required: false;
|
|
1190
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1191
|
+
__epPropKey: true;
|
|
1192
|
+
};
|
|
1193
|
+
readonly isRange: BooleanConstructor;
|
|
1194
|
+
}, () => JSX.Element, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1195
|
+
readonly type: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import('element-plus/es/components/date-picker/src/date-picker.type.mjs').IDatePickerType) | ((new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import('element-plus/es/components/date-picker/src/date-picker.type.mjs').IDatePickerType))[], unknown, unknown, "date", boolean>;
|
|
1196
|
+
readonly showNow: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1197
|
+
readonly ariaLabel: StringConstructor;
|
|
1198
|
+
readonly emptyValues: ArrayConstructor;
|
|
1199
|
+
readonly valueOnClear: import('element-plus/es/utils/index.mjs').EpPropFinalized<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown, undefined, boolean>;
|
|
1200
|
+
readonly disabledDate: {
|
|
1201
|
+
readonly type: import('vue').PropType<Function>;
|
|
1202
|
+
readonly required: false;
|
|
1203
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1204
|
+
__epPropKey: true;
|
|
1205
|
+
};
|
|
1206
|
+
readonly cellClassName: {
|
|
1207
|
+
readonly type: import('vue').PropType<Function>;
|
|
1208
|
+
readonly required: false;
|
|
1209
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1210
|
+
__epPropKey: true;
|
|
1211
|
+
};
|
|
1212
|
+
readonly shortcuts: import('element-plus/es/utils/index.mjs').EpPropFinalized<ArrayConstructor, unknown, unknown, () => never[], boolean>;
|
|
1213
|
+
readonly arrowControl: BooleanConstructor;
|
|
1214
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown, 0, boolean>;
|
|
1215
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1216
|
+
readonly unlinkPanels: BooleanConstructor;
|
|
1217
|
+
readonly placement: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('@popperjs/core').Placement) | ((new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('@popperjs/core').Placement))[], import('@popperjs/core').Placement, unknown, "bottom", boolean>;
|
|
1218
|
+
readonly fallbackPlacements: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('@popperjs/core').Placement[]) | (() => import('@popperjs/core').Placement[]) | ((new (...args: any[]) => import('@popperjs/core').Placement[]) | (() => import('@popperjs/core').Placement[]))[], unknown, unknown, readonly ["bottom", "top", "right", "left"], boolean>;
|
|
1219
|
+
readonly disabledHours: {
|
|
1220
|
+
readonly type: import('vue').PropType<import('element-plus/es/components/time-picker/src/props/shared.mjs').GetDisabledHours>;
|
|
1221
|
+
readonly required: false;
|
|
1222
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1223
|
+
__epPropKey: true;
|
|
1224
|
+
};
|
|
1225
|
+
readonly disabledMinutes: {
|
|
1226
|
+
readonly type: import('vue').PropType<import('element-plus/es/components/time-picker/src/props/shared.mjs').GetDisabledMinutes>;
|
|
1227
|
+
readonly required: false;
|
|
1228
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1229
|
+
__epPropKey: true;
|
|
1230
|
+
};
|
|
1231
|
+
readonly disabledSeconds: {
|
|
1232
|
+
readonly type: import('vue').PropType<import('element-plus/es/components/time-picker/src/props/shared.mjs').GetDisabledSeconds>;
|
|
1233
|
+
readonly required: false;
|
|
1234
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1235
|
+
__epPropKey: true;
|
|
1236
|
+
};
|
|
1237
|
+
readonly id: {
|
|
1238
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>))[], unknown, unknown>>;
|
|
1239
|
+
readonly required: false;
|
|
1240
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1241
|
+
__epPropKey: true;
|
|
1242
|
+
};
|
|
1243
|
+
readonly name: {
|
|
1244
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>) | ((new (...args: any[]) => string | [string, string]) | (() => import('element-plus').SingleOrRange<string>))[], unknown, unknown>>;
|
|
1245
|
+
readonly required: false;
|
|
1246
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1247
|
+
__epPropKey: true;
|
|
1248
|
+
};
|
|
1249
|
+
readonly popperClass: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
1250
|
+
readonly format: StringConstructor;
|
|
1251
|
+
readonly valueFormat: StringConstructor;
|
|
1252
|
+
readonly dateFormat: StringConstructor;
|
|
1253
|
+
readonly timeFormat: StringConstructor;
|
|
1254
|
+
readonly clearable: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1255
|
+
readonly clearIcon: {
|
|
1256
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>>;
|
|
1257
|
+
readonly required: false;
|
|
1258
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1259
|
+
__epPropKey: true;
|
|
1260
|
+
};
|
|
1261
|
+
readonly editable: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1262
|
+
readonly prefixIcon: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown, "", boolean>;
|
|
1263
|
+
readonly size: {
|
|
1264
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
1265
|
+
readonly required: false;
|
|
1266
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1267
|
+
__epPropKey: true;
|
|
1268
|
+
};
|
|
1269
|
+
readonly readonly: BooleanConstructor;
|
|
1270
|
+
readonly disabled: BooleanConstructor;
|
|
1271
|
+
readonly placeholder: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
|
1272
|
+
readonly popperOptions: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => Partial<import('@popperjs/core').Options>) | (() => Partial<import('@popperjs/core').Options>) | ((new (...args: any[]) => Partial<import('@popperjs/core').Options>) | (() => Partial<import('@popperjs/core').Options>))[], unknown, unknown, () => {}, boolean>;
|
|
1273
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number | string[] | Date | [import('element-plus').DateModelType, import('element-plus').DateModelType]) | (() => import('element-plus').ModelValueType) | ((new (...args: any[]) => string | number | string[] | Date | [import('element-plus').DateModelType, import('element-plus').DateModelType]) | (() => import('element-plus').ModelValueType))[], unknown, unknown, "", boolean>;
|
|
1274
|
+
readonly rangeSeparator: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "-", boolean>;
|
|
1275
|
+
readonly startPlaceholder: StringConstructor;
|
|
1276
|
+
readonly endPlaceholder: StringConstructor;
|
|
1277
|
+
readonly defaultValue: {
|
|
1278
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>))[], unknown, unknown>>;
|
|
1279
|
+
readonly required: false;
|
|
1280
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1281
|
+
__epPropKey: true;
|
|
1282
|
+
};
|
|
1283
|
+
readonly defaultTime: {
|
|
1284
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>) | ((new (...args: any[]) => Date | [Date, Date]) | (() => import('element-plus').SingleOrRange<Date>))[], unknown, unknown>>;
|
|
1285
|
+
readonly required: false;
|
|
1286
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1287
|
+
__epPropKey: true;
|
|
1288
|
+
};
|
|
1289
|
+
readonly isRange: BooleanConstructor;
|
|
1290
|
+
}>> & {
|
|
1291
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1292
|
+
}, {
|
|
1293
|
+
readonly disabled: boolean;
|
|
1294
|
+
readonly type: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import('element-plus/es/components/date-picker/src/date-picker.type.mjs').IDatePickerType) | ((new (...args: any[]) => "year" | "years" | "month" | "months" | "date" | "dates" | "week" | "datetime" | "datetimerange" | "daterange" | "monthrange" | "yearrange") | (() => import('element-plus/es/components/date-picker/src/date-picker.type.mjs').IDatePickerType))[], unknown, unknown>;
|
|
1295
|
+
readonly placeholder: string;
|
|
1296
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number | string[] | Date | [import('element-plus').DateModelType, import('element-plus').DateModelType]) | (() => import('element-plus').ModelValueType) | ((new (...args: any[]) => string | number | string[] | Date | [import('element-plus').DateModelType, import('element-plus').DateModelType]) | (() => import('element-plus').ModelValueType))[], unknown, unknown>;
|
|
1297
|
+
readonly placement: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('@popperjs/core').Placement) | ((new (...args: any[]) => "top" | "bottom" | "left" | "right" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('@popperjs/core').Placement))[], import('@popperjs/core').Placement, unknown>;
|
|
1298
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number) | ((new (...args: any[]) => string | number) | (() => string | number))[], unknown, unknown>;
|
|
1299
|
+
readonly valueOnClear: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown>;
|
|
1300
|
+
readonly readonly: boolean;
|
|
1301
|
+
readonly prefixIcon: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component) | ((new (...args: any[]) => (string | import('vue').Component) & {}) | (() => string | import('vue').Component))[], unknown, unknown>;
|
|
1302
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1303
|
+
readonly clearable: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1304
|
+
readonly fallbackPlacements: import('@popperjs/core').Placement[];
|
|
1305
|
+
readonly popperOptions: Partial<import('@popperjs/core').Options>;
|
|
1306
|
+
readonly popperClass: string;
|
|
1307
|
+
readonly editable: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1308
|
+
readonly rangeSeparator: string;
|
|
1309
|
+
readonly shortcuts: unknown[];
|
|
1310
|
+
readonly showNow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1311
|
+
readonly arrowControl: boolean;
|
|
1312
|
+
readonly unlinkPanels: boolean;
|
|
1313
|
+
readonly isRange: boolean;
|
|
1314
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>>;
|
|
1315
|
+
valueKey: string;
|
|
1316
|
+
defaultProps: {
|
|
1317
|
+
format: string;
|
|
1318
|
+
'date-format': string;
|
|
1319
|
+
};
|
|
1320
|
+
displayRender: (val: any) => any;
|
|
1321
|
+
textRender: (val: any) => any;
|
|
1322
|
+
};
|
|
1323
|
+
};
|
|
1324
|
+
export declare const inputTypesOption: {
|
|
1325
|
+
label: any;
|
|
1326
|
+
value: string;
|
|
1327
|
+
}[];
|
|
1328
|
+
export declare const defaultItem: {
|
|
1329
|
+
inputType: string;
|
|
1330
|
+
title: string;
|
|
1331
|
+
};
|