sakura-ui-plus 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/index.js +1852 -0
- package/dist/lib/index.js +1852 -0
- package/dist/style.css +4573 -0
- package/dist/types/components/cell/cell-group.vue.d.ts +21 -0
- package/dist/types/components/cell/cell.vue.d.ts +18 -0
- package/dist/types/components/cell/constant.d.ts +3 -0
- package/dist/types/components/cell/props.d.ts +9 -0
- package/dist/types/components/container/container.vue.d.ts +20 -0
- package/dist/types/components/container/props.d.ts +3 -0
- package/dist/types/components/count-down/count-down.vue.d.ts +10 -0
- package/dist/types/components/count-down/props.d.ts +7 -0
- package/dist/types/components/dialog/dialog.vue.d.ts +58 -0
- package/dist/types/components/dialog/props.d.ts +35 -0
- package/dist/types/components/drawer/drawer.vue.d.ts +58 -0
- package/dist/types/components/drawer/props.d.ts +34 -0
- package/dist/types/components/file/item.vue.d.ts +24 -0
- package/dist/types/components/file/list.vue.d.ts +8 -0
- package/dist/types/components/file/props.d.ts +17 -0
- package/dist/types/components/filter/constant.d.ts +3 -0
- package/dist/types/components/filter/filter-group.vue.d.ts +26 -0
- package/dist/types/components/filter/filter-item.vue.d.ts +22 -0
- package/dist/types/components/filter/props.d.ts +13 -0
- package/dist/types/components/index.d.ts +2092 -0
- package/dist/types/components/pagination/pagination.vue.d.ts +23 -0
- package/dist/types/components/pagination/props.d.ts +16 -0
- package/dist/types/components/register-components.d.ts +11 -0
- package/dist/types/components/search-input/props.d.ts +10 -0
- package/dist/types/components/search-input/search-input.vue.d.ts +19 -0
- package/dist/types/components/select/props.d.ts +31 -0
- package/dist/types/components/select/select.vue.d.ts +2958 -0
- package/dist/types/components/show-modal/install.d.ts +5 -0
- package/dist/types/components/show-modal/props.d.ts +19 -0
- package/dist/types/components/show-modal/show-modal.vue.d.ts +14 -0
- package/dist/types/components/show-modal/utils.d.ts +6 -0
- package/dist/types/components/status/props.d.ts +7 -0
- package/dist/types/components/status/status.vue.d.ts +20 -0
- package/dist/types/components/tabs/props.d.ts +7 -0
- package/dist/types/components/tabs/tabs.vue.d.ts +30 -0
- package/dist/types/components/tooltip-text/props.d.ts +9 -0
- package/dist/types/components/tooltip-text/tooltip-text.vue.d.ts +11 -0
- package/dist/types/constants/event.d.ts +61 -0
- package/dist/types/constants/index.d.ts +1 -0
- package/dist/types/hooks/index.d.ts +7 -0
- package/dist/types/hooks/use-callback-trigger/index.d.ts +10 -0
- package/dist/types/hooks/use-loading/index.d.ts +10 -0
- package/dist/types/hooks/use-message/index.d.ts +4 -0
- package/dist/types/hooks/use-message-box/index.d.ts +8 -0
- package/dist/types/hooks/use-namespace/index.d.ts +26 -0
- package/dist/types/hooks/use-notification/index.d.ts +8 -0
- package/dist/types/hooks/use-notification/type.d.ts +65 -0
- package/dist/types/hooks/use-show-modal/index.d.ts +2 -0
- package/dist/types/index.d.ts +10 -0
- package/dist/types/types/index.d.ts +28 -0
- package/dist/types/utils/index.d.ts +6 -0
- package/package.json +79 -0
|
@@ -0,0 +1,2092 @@
|
|
|
1
|
+
import { default as Select } from './select/select.vue';
|
|
2
|
+
import { default as Cell } from './cell/cell.vue';
|
|
3
|
+
import { default as CellGroup } from './cell/cell-group.vue';
|
|
4
|
+
import { default as Status } from './status/status.vue';
|
|
5
|
+
import { default as Container } from './container/container.vue';
|
|
6
|
+
import { default as Pagination } from './pagination/pagination.vue';
|
|
7
|
+
import { default as SearchInput } from './search-input/search-input.vue';
|
|
8
|
+
import { default as FilterItem } from './filter/filter-item.vue';
|
|
9
|
+
import { default as FilterGroup } from './filter/filter-group.vue';
|
|
10
|
+
import { default as Tabs } from './tabs/tabs.vue';
|
|
11
|
+
import { default as TooltipText } from './tooltip-text/tooltip-text.vue';
|
|
12
|
+
import { default as FileItem } from './file/item.vue';
|
|
13
|
+
import { default as FileList } from './file/list.vue';
|
|
14
|
+
import { default as CountDown } from './count-down/count-down.vue';
|
|
15
|
+
import { default as Dialog } from './dialog/dialog.vue';
|
|
16
|
+
import { default as Drawer } from './drawer/drawer.vue';
|
|
17
|
+
import { default as ShowModal } from './show-modal/show-modal.vue';
|
|
18
|
+
declare const _default: {
|
|
19
|
+
Select: {
|
|
20
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
21
|
+
modelValue?: any;
|
|
22
|
+
} & import('./select/props').SelectProps> & Readonly<{
|
|
23
|
+
onChange?: ((args_0: {
|
|
24
|
+
value: any;
|
|
25
|
+
options: any[];
|
|
26
|
+
}) => any) | undefined;
|
|
27
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
28
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
29
|
+
change: (args_0: {
|
|
30
|
+
value: any;
|
|
31
|
+
options: any[];
|
|
32
|
+
}) => any;
|
|
33
|
+
"update:modelValue": (value: any) => any;
|
|
34
|
+
}, import('vue').PublicProps, {
|
|
35
|
+
size: import('..').ComponentSize;
|
|
36
|
+
disabled: boolean;
|
|
37
|
+
placeholder: string;
|
|
38
|
+
clearable: boolean;
|
|
39
|
+
multiple: boolean;
|
|
40
|
+
collapseTags: boolean;
|
|
41
|
+
collapseTagsTooltip: boolean;
|
|
42
|
+
emptyValues: any[];
|
|
43
|
+
stringEmpty: boolean;
|
|
44
|
+
locale: any;
|
|
45
|
+
maxLength: number;
|
|
46
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
47
|
+
elSelectRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
48
|
+
readonly ariaLabel: StringConstructor;
|
|
49
|
+
readonly emptyValues: ArrayConstructor;
|
|
50
|
+
readonly valueOnClear: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null))[], unknown, unknown, undefined, boolean>;
|
|
51
|
+
readonly allowCreate: BooleanConstructor;
|
|
52
|
+
readonly autocomplete: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => "none" | "both" | "inline" | "list") | (() => "none" | "both" | "inline" | "list") | ((new (...args: any[]) => "none" | "both" | "inline" | "list") | (() => "none" | "both" | "inline" | "list"))[], unknown, unknown, "none", boolean>;
|
|
53
|
+
readonly automaticDropdown: BooleanConstructor;
|
|
54
|
+
readonly clearable: BooleanConstructor;
|
|
55
|
+
readonly clearIcon: {
|
|
56
|
+
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>>;
|
|
57
|
+
readonly required: false;
|
|
58
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
59
|
+
__epPropKey: true;
|
|
60
|
+
};
|
|
61
|
+
readonly effect: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string) | (() => import('element-plus').PopperEffect) | ((new (...args: any[]) => string) | (() => import('element-plus').PopperEffect))[], unknown, unknown, "light", boolean>;
|
|
62
|
+
readonly collapseTags: BooleanConstructor;
|
|
63
|
+
readonly collapseTagsTooltip: BooleanConstructor;
|
|
64
|
+
readonly maxCollapseTags: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 1, boolean>;
|
|
65
|
+
readonly defaultFirstOption: BooleanConstructor;
|
|
66
|
+
readonly disabled: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
67
|
+
readonly estimatedOptionHeight: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, undefined, boolean>;
|
|
68
|
+
readonly filterable: BooleanConstructor;
|
|
69
|
+
readonly filterMethod: {
|
|
70
|
+
readonly type: import('vue').PropType<(query: string) => void>;
|
|
71
|
+
readonly required: false;
|
|
72
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
73
|
+
__epPropKey: true;
|
|
74
|
+
};
|
|
75
|
+
readonly height: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 274, boolean>;
|
|
76
|
+
readonly itemHeight: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 34, boolean>;
|
|
77
|
+
readonly id: StringConstructor;
|
|
78
|
+
readonly loading: BooleanConstructor;
|
|
79
|
+
readonly loadingText: StringConstructor;
|
|
80
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => any) | (() => any) | {
|
|
81
|
+
(): any;
|
|
82
|
+
new (): any;
|
|
83
|
+
readonly prototype: any;
|
|
84
|
+
} | ((new (...args: any[]) => any) | (() => any) | {
|
|
85
|
+
(): any;
|
|
86
|
+
new (): any;
|
|
87
|
+
readonly prototype: any;
|
|
88
|
+
})[], unknown, unknown, undefined, boolean>;
|
|
89
|
+
readonly multiple: BooleanConstructor;
|
|
90
|
+
readonly multipleLimit: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
91
|
+
readonly name: StringConstructor;
|
|
92
|
+
readonly noDataText: StringConstructor;
|
|
93
|
+
readonly noMatchText: StringConstructor;
|
|
94
|
+
readonly remoteMethod: {
|
|
95
|
+
readonly type: import('vue').PropType<(query: string) => void>;
|
|
96
|
+
readonly required: false;
|
|
97
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
98
|
+
__epPropKey: true;
|
|
99
|
+
};
|
|
100
|
+
readonly reserveKeyword: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
101
|
+
readonly options: {
|
|
102
|
+
readonly type: import('vue').PropType<import('element-plus/es/components/select-v2/src/select.types.mjs').OptionType[]>;
|
|
103
|
+
readonly required: true;
|
|
104
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
105
|
+
__epPropKey: true;
|
|
106
|
+
};
|
|
107
|
+
readonly placeholder: {
|
|
108
|
+
readonly type: import('vue').PropType<string>;
|
|
109
|
+
readonly required: false;
|
|
110
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
111
|
+
__epPropKey: true;
|
|
112
|
+
};
|
|
113
|
+
readonly teleported: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
114
|
+
readonly persistent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
115
|
+
readonly popperClass: {
|
|
116
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | {
|
|
117
|
+
[x: string]: boolean;
|
|
118
|
+
} | (string | {
|
|
119
|
+
[x: string]: boolean;
|
|
120
|
+
} | (string | {
|
|
121
|
+
[x: string]: boolean;
|
|
122
|
+
} | (string | {
|
|
123
|
+
[x: string]: boolean;
|
|
124
|
+
} | (string | {
|
|
125
|
+
[x: string]: boolean;
|
|
126
|
+
} | (string | {
|
|
127
|
+
[x: string]: boolean;
|
|
128
|
+
} | (string | {
|
|
129
|
+
[x: string]: boolean;
|
|
130
|
+
} | (string | {
|
|
131
|
+
[x: string]: boolean;
|
|
132
|
+
} | (string | {
|
|
133
|
+
[x: string]: boolean;
|
|
134
|
+
} | (string | {
|
|
135
|
+
[x: string]: boolean;
|
|
136
|
+
} | (string | {
|
|
137
|
+
[x: string]: boolean;
|
|
138
|
+
} | (string | {
|
|
139
|
+
[x: string]: boolean;
|
|
140
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]) | (() => string | {
|
|
141
|
+
[x: string]: boolean;
|
|
142
|
+
} | (string | {
|
|
143
|
+
[x: string]: boolean;
|
|
144
|
+
} | (string | {
|
|
145
|
+
[x: string]: boolean;
|
|
146
|
+
} | (string | {
|
|
147
|
+
[x: string]: boolean;
|
|
148
|
+
} | (string | {
|
|
149
|
+
[x: string]: boolean;
|
|
150
|
+
} | (string | {
|
|
151
|
+
[x: string]: boolean;
|
|
152
|
+
} | (string | {
|
|
153
|
+
[x: string]: boolean;
|
|
154
|
+
} | (string | {
|
|
155
|
+
[x: string]: boolean;
|
|
156
|
+
} | (string | {
|
|
157
|
+
[x: string]: boolean;
|
|
158
|
+
} | (string | {
|
|
159
|
+
[x: string]: boolean;
|
|
160
|
+
} | (string | {
|
|
161
|
+
[x: string]: boolean;
|
|
162
|
+
} | (string | {
|
|
163
|
+
[x: string]: boolean;
|
|
164
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]) | ((new (...args: any[]) => string | {
|
|
165
|
+
[x: string]: boolean;
|
|
166
|
+
} | (string | {
|
|
167
|
+
[x: string]: boolean;
|
|
168
|
+
} | (string | {
|
|
169
|
+
[x: string]: boolean;
|
|
170
|
+
} | (string | {
|
|
171
|
+
[x: string]: boolean;
|
|
172
|
+
} | (string | {
|
|
173
|
+
[x: string]: boolean;
|
|
174
|
+
} | (string | {
|
|
175
|
+
[x: string]: boolean;
|
|
176
|
+
} | (string | {
|
|
177
|
+
[x: string]: boolean;
|
|
178
|
+
} | (string | {
|
|
179
|
+
[x: string]: boolean;
|
|
180
|
+
} | (string | {
|
|
181
|
+
[x: string]: boolean;
|
|
182
|
+
} | (string | {
|
|
183
|
+
[x: string]: boolean;
|
|
184
|
+
} | (string | {
|
|
185
|
+
[x: string]: boolean;
|
|
186
|
+
} | (string | {
|
|
187
|
+
[x: string]: boolean;
|
|
188
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]) | (() => string | {
|
|
189
|
+
[x: string]: boolean;
|
|
190
|
+
} | (string | {
|
|
191
|
+
[x: string]: boolean;
|
|
192
|
+
} | (string | {
|
|
193
|
+
[x: string]: boolean;
|
|
194
|
+
} | (string | {
|
|
195
|
+
[x: string]: boolean;
|
|
196
|
+
} | (string | {
|
|
197
|
+
[x: string]: boolean;
|
|
198
|
+
} | (string | {
|
|
199
|
+
[x: string]: boolean;
|
|
200
|
+
} | (string | {
|
|
201
|
+
[x: string]: boolean;
|
|
202
|
+
} | (string | {
|
|
203
|
+
[x: string]: boolean;
|
|
204
|
+
} | (string | {
|
|
205
|
+
[x: string]: boolean;
|
|
206
|
+
} | (string | {
|
|
207
|
+
[x: string]: boolean;
|
|
208
|
+
} | (string | {
|
|
209
|
+
[x: string]: boolean;
|
|
210
|
+
} | (string | {
|
|
211
|
+
[x: string]: boolean;
|
|
212
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]))[], unknown, unknown>>;
|
|
213
|
+
readonly required: false;
|
|
214
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
215
|
+
__epPropKey: true;
|
|
216
|
+
};
|
|
217
|
+
readonly popperStyle: {
|
|
218
|
+
readonly type: import('vue').PropType<import('vue').StyleValue>;
|
|
219
|
+
readonly required: false;
|
|
220
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
221
|
+
__epPropKey: true;
|
|
222
|
+
};
|
|
223
|
+
readonly popperOptions: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => Partial<import('element-plus').Options>) | (() => Partial<import('element-plus').Options>) | ((new (...args: any[]) => Partial<import('element-plus').Options>) | (() => Partial<import('element-plus').Options>))[], unknown, unknown, () => Partial<import('element-plus').Options>, boolean>;
|
|
224
|
+
readonly remote: BooleanConstructor;
|
|
225
|
+
readonly debounce: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 300, boolean>;
|
|
226
|
+
readonly size: {
|
|
227
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
228
|
+
readonly required: false;
|
|
229
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
230
|
+
__epPropKey: true;
|
|
231
|
+
};
|
|
232
|
+
readonly props: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus/es/components/select-v2/src/useProps.mjs').Props) | (() => import('element-plus/es/components/select-v2/src/useProps.mjs').Props) | ((new (...args: any[]) => import('element-plus/es/components/select-v2/src/useProps.mjs').Props) | (() => import('element-plus/es/components/select-v2/src/useProps.mjs').Props))[], unknown, unknown, () => Required<import('element-plus/es/components/select-v2/src/useProps.mjs').Props>, boolean>;
|
|
233
|
+
readonly valueKey: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "value", boolean>;
|
|
234
|
+
readonly scrollbarAlwaysOn: BooleanConstructor;
|
|
235
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
236
|
+
readonly offset: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 12, boolean>;
|
|
237
|
+
readonly remoteShowSuffix: BooleanConstructor;
|
|
238
|
+
readonly showArrow: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
239
|
+
readonly placement: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement) | ((new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement))[], import('element-plus').Placement, unknown, "bottom-start", boolean>;
|
|
240
|
+
readonly fallbackPlacements: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').Placement[]) | (() => import('element-plus').Placement[]) | ((new (...args: any[]) => import('element-plus').Placement[]) | (() => import('element-plus').Placement[]))[], unknown, unknown, readonly ["bottom-start", "top-start", "right", "left"], boolean>;
|
|
241
|
+
readonly tagType: {
|
|
242
|
+
readonly default: "info";
|
|
243
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "primary" | "success" | "warning" | "info" | "danger", unknown>>;
|
|
244
|
+
readonly required: false;
|
|
245
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
246
|
+
readonly __epPropKey: true;
|
|
247
|
+
};
|
|
248
|
+
readonly tagEffect: {
|
|
249
|
+
readonly default: "light";
|
|
250
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "dark" | "light" | "plain", unknown>>;
|
|
251
|
+
readonly required: false;
|
|
252
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
253
|
+
readonly __epPropKey: true;
|
|
254
|
+
};
|
|
255
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
|
|
256
|
+
readonly appendTo: {
|
|
257
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
|
|
258
|
+
readonly required: false;
|
|
259
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
260
|
+
__epPropKey: true;
|
|
261
|
+
};
|
|
262
|
+
readonly fitInputWidth: import('element-plus/es/utils/index.mjs').EpPropFinalized<readonly [BooleanConstructor, NumberConstructor], unknown, number | boolean, true, boolean>;
|
|
263
|
+
readonly suffixIcon: {
|
|
264
|
+
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>>;
|
|
265
|
+
readonly required: false;
|
|
266
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
267
|
+
__epPropKey: true;
|
|
268
|
+
};
|
|
269
|
+
}>> & {
|
|
270
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
271
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
272
|
+
onChange?: ((val: any) => any) | undefined;
|
|
273
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
274
|
+
onClear?: (() => any) | undefined;
|
|
275
|
+
"onVisible-change"?: ((visible: boolean) => any) | undefined;
|
|
276
|
+
"onRemove-tag"?: ((val: unknown) => any) | undefined;
|
|
277
|
+
}, {
|
|
278
|
+
modelValue: import('vue').ComputedRef<any>;
|
|
279
|
+
selectedLabel: import('vue').ComputedRef<string | string[]>;
|
|
280
|
+
calculatorRef: import('vue').ShallowRef<HTMLElement | undefined>;
|
|
281
|
+
inputStyle: import('vue').ComputedRef<{
|
|
282
|
+
minWidth: string;
|
|
283
|
+
}>;
|
|
284
|
+
contentId: import('vue').Ref<string>;
|
|
285
|
+
BORDER_HORIZONTAL_WIDTH: number;
|
|
286
|
+
inputId: import('vue').Ref<string | undefined>;
|
|
287
|
+
collapseTagSize: import('vue').ComputedRef<"default" | "small">;
|
|
288
|
+
currentPlaceholder: import('vue').ComputedRef<string>;
|
|
289
|
+
expanded: import('vue').Ref<boolean>;
|
|
290
|
+
emptyText: import('vue').ComputedRef<string | null>;
|
|
291
|
+
popupHeight: import('vue').ComputedRef<number>;
|
|
292
|
+
debounce: import('vue').ComputedRef<number>;
|
|
293
|
+
allOptions: import('vue').ComputedRef<import('element-plus/es/components/select-v2/src/select.types.mjs').OptionType[]>;
|
|
294
|
+
allOptionsValueMap: import('vue').ComputedRef<Map<any, any>>;
|
|
295
|
+
filteredOptions: import('vue').Ref<({
|
|
296
|
+
[x: string]: any;
|
|
297
|
+
} | {
|
|
298
|
+
[x: string]: any;
|
|
299
|
+
created?: boolean | undefined;
|
|
300
|
+
})[]>;
|
|
301
|
+
iconComponent: import('vue').ComputedRef<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> | undefined>;
|
|
302
|
+
iconReverse: import('vue').ComputedRef<string | undefined>;
|
|
303
|
+
tagStyle: import('vue').ComputedRef<{
|
|
304
|
+
maxWidth: string;
|
|
305
|
+
}>;
|
|
306
|
+
collapseTagStyle: import('vue').ComputedRef<{
|
|
307
|
+
maxWidth: string;
|
|
308
|
+
}>;
|
|
309
|
+
popperSize: import('vue').Ref<number>;
|
|
310
|
+
dropdownMenuVisible: import('vue').WritableComputedRef<boolean>;
|
|
311
|
+
hasModelValue: import('vue').ComputedRef<boolean>;
|
|
312
|
+
shouldShowPlaceholder: import('vue').ComputedRef<boolean>;
|
|
313
|
+
selectDisabled: import('vue').ComputedRef<boolean>;
|
|
314
|
+
selectSize: import('vue').ComputedRef<"" | "small" | "default" | "large">;
|
|
315
|
+
needStatusIcon: import('vue').ComputedRef<boolean>;
|
|
316
|
+
showClearBtn: import('vue').ComputedRef<boolean>;
|
|
317
|
+
states: import('element-plus/es/components/select-v2/src/select.types.mjs').SelectStates;
|
|
318
|
+
isFocused: import('vue').Ref<boolean>;
|
|
319
|
+
nsSelect: {
|
|
320
|
+
namespace: import('vue').ComputedRef<string>;
|
|
321
|
+
b: (blockSuffix?: string) => string;
|
|
322
|
+
e: (element?: string) => string;
|
|
323
|
+
m: (modifier?: string) => string;
|
|
324
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
325
|
+
em: (element?: string, modifier?: string) => string;
|
|
326
|
+
bm: (blockSuffix?: string, modifier?: string) => string;
|
|
327
|
+
bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
|
|
328
|
+
is: {
|
|
329
|
+
(name: string, state: boolean | undefined): string;
|
|
330
|
+
(name: string): string;
|
|
331
|
+
};
|
|
332
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
333
|
+
cssVarName: (name: string) => string;
|
|
334
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
335
|
+
cssVarBlockName: (name: string) => string;
|
|
336
|
+
};
|
|
337
|
+
nsInput: {
|
|
338
|
+
namespace: import('vue').ComputedRef<string>;
|
|
339
|
+
b: (blockSuffix?: string) => string;
|
|
340
|
+
e: (element?: string) => string;
|
|
341
|
+
m: (modifier?: string) => string;
|
|
342
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
343
|
+
em: (element?: string, modifier?: string) => string;
|
|
344
|
+
bm: (blockSuffix?: string, modifier?: string) => string;
|
|
345
|
+
bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
|
|
346
|
+
is: {
|
|
347
|
+
(name: string, state: boolean | undefined): string;
|
|
348
|
+
(name: string): string;
|
|
349
|
+
};
|
|
350
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
351
|
+
cssVarName: (name: string) => string;
|
|
352
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
353
|
+
cssVarBlockName: (name: string) => string;
|
|
354
|
+
};
|
|
355
|
+
inputRef: import('vue').Ref<HTMLElement | undefined>;
|
|
356
|
+
menuRef: import('vue').Ref<import('element-plus/es/components/select-v2/src/select-dropdown.mjs').SelectDropdownInstance | undefined>;
|
|
357
|
+
tagMenuRef: import('vue').Ref<HTMLElement | undefined>;
|
|
358
|
+
tooltipRef: import('vue').Ref<import('element-plus').TooltipInstance | undefined>;
|
|
359
|
+
tagTooltipRef: import('vue').Ref<import('element-plus').TooltipInstance | undefined>;
|
|
360
|
+
selectRef: import('vue').Ref<HTMLElement | undefined>;
|
|
361
|
+
wrapperRef: import('vue').ShallowRef<HTMLElement | undefined>;
|
|
362
|
+
selectionRef: import('vue').Ref<HTMLElement | undefined>;
|
|
363
|
+
prefixRef: import('vue').Ref<HTMLElement | undefined>;
|
|
364
|
+
suffixRef: import('vue').Ref<HTMLElement | undefined>;
|
|
365
|
+
collapseItemRef: import('vue').Ref<HTMLElement | undefined>;
|
|
366
|
+
popperRef: import('vue').ComputedRef<HTMLElement | undefined>;
|
|
367
|
+
validateState: import('vue').ComputedRef<"" | "error" | "success" | "validating">;
|
|
368
|
+
validateIcon: import('vue').ComputedRef<any>;
|
|
369
|
+
showTagList: import('vue').ComputedRef<import('element-plus/es/components/select-v2/src/select.types.mjs').Option[]>;
|
|
370
|
+
collapseTagList: import('vue').ComputedRef<import('element-plus/es/components/select-v2/src/select.types.mjs').Option[]>;
|
|
371
|
+
debouncedOnInputChange: import('@vueuse/core').PromisifyFn<() => void>;
|
|
372
|
+
deleteTag: (event: MouseEvent, option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => void;
|
|
373
|
+
getLabel: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => any;
|
|
374
|
+
getValue: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => any;
|
|
375
|
+
getDisabled: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => any;
|
|
376
|
+
getValueKey: (item: unknown) => any;
|
|
377
|
+
getIndex: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => any;
|
|
378
|
+
handleClear: () => void;
|
|
379
|
+
handleClickOutside: (event: Event) => void;
|
|
380
|
+
handleDel: (e: KeyboardEvent) => void;
|
|
381
|
+
handleEsc: () => void;
|
|
382
|
+
focus: () => void;
|
|
383
|
+
blur: () => void;
|
|
384
|
+
handleMenuEnter: () => Promise<Awaited<R>>;
|
|
385
|
+
handleResize: () => void;
|
|
386
|
+
resetSelectionWidth: () => void;
|
|
387
|
+
updateTooltip: () => void;
|
|
388
|
+
updateTagTooltip: () => void;
|
|
389
|
+
updateOptions: () => void;
|
|
390
|
+
toggleMenu: (event?: Event) => void;
|
|
391
|
+
scrollTo: (index: number) => void;
|
|
392
|
+
onInput: (event: Event) => void;
|
|
393
|
+
onKeyboardNavigate: (direction: "forward" | "backward", hoveringIndex?: number | undefined) => void;
|
|
394
|
+
onKeyboardSelect: () => void;
|
|
395
|
+
onSelect: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => void;
|
|
396
|
+
onHover: (idx?: number) => void;
|
|
397
|
+
handleCompositionStart: (event: CompositionEvent) => void;
|
|
398
|
+
handleCompositionEnd: (event: CompositionEvent) => void;
|
|
399
|
+
handleCompositionUpdate: (event: CompositionEvent) => void;
|
|
400
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
401
|
+
"update:modelValue": (val: import('element-plus').SelectV2Props["modelValue"]) => boolean;
|
|
402
|
+
change: (val: import('element-plus').SelectV2Props["modelValue"]) => boolean;
|
|
403
|
+
'remove-tag': (val: unknown) => boolean;
|
|
404
|
+
'visible-change': (visible: boolean) => boolean;
|
|
405
|
+
focus: (evt: FocusEvent) => boolean;
|
|
406
|
+
blur: (evt: FocusEvent) => boolean;
|
|
407
|
+
clear: () => boolean;
|
|
408
|
+
}, import('vue').PublicProps, {
|
|
409
|
+
readonly disabled: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
410
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
411
|
+
readonly height: number;
|
|
412
|
+
readonly offset: number;
|
|
413
|
+
readonly multiple: boolean;
|
|
414
|
+
readonly props: import('element-plus/es/components/select-v2/src/useProps.mjs').Props;
|
|
415
|
+
readonly loading: boolean;
|
|
416
|
+
readonly modelValue: any;
|
|
417
|
+
readonly placement: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement) | ((new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement))[], import('element-plus').Placement, unknown>;
|
|
418
|
+
readonly effect: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string) | (() => import('element-plus').PopperEffect) | ((new (...args: any[]) => string) | (() => import('element-plus').PopperEffect))[], unknown, unknown>;
|
|
419
|
+
readonly valueOnClear: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null))[], unknown, unknown>;
|
|
420
|
+
readonly teleported: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
421
|
+
readonly autocomplete: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => "none" | "both" | "inline" | "list") | (() => "none" | "both" | "inline" | "list") | ((new (...args: any[]) => "none" | "both" | "inline" | "list") | (() => "none" | "both" | "inline" | "list"))[], unknown, unknown>;
|
|
422
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
423
|
+
readonly clearable: boolean;
|
|
424
|
+
readonly fallbackPlacements: import('element-plus').Placement[];
|
|
425
|
+
readonly popperOptions: Partial<import('element-plus').Options>;
|
|
426
|
+
readonly persistent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
427
|
+
readonly showArrow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
428
|
+
readonly valueKey: string;
|
|
429
|
+
readonly debounce: number;
|
|
430
|
+
readonly fitInputWidth: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [BooleanConstructor, NumberConstructor], unknown, number | boolean>;
|
|
431
|
+
readonly automaticDropdown: boolean;
|
|
432
|
+
readonly filterable: boolean;
|
|
433
|
+
readonly collapseTags: boolean;
|
|
434
|
+
readonly maxCollapseTags: number;
|
|
435
|
+
readonly collapseTagsTooltip: boolean;
|
|
436
|
+
readonly tagType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "primary" | "success" | "warning" | "info" | "danger", unknown>;
|
|
437
|
+
readonly tagEffect: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "dark" | "light" | "plain", unknown>;
|
|
438
|
+
readonly scrollbarAlwaysOn: boolean;
|
|
439
|
+
readonly estimatedOptionHeight: number;
|
|
440
|
+
readonly itemHeight: number;
|
|
441
|
+
readonly multipleLimit: number;
|
|
442
|
+
readonly reserveKeyword: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
443
|
+
readonly allowCreate: boolean;
|
|
444
|
+
readonly defaultFirstOption: boolean;
|
|
445
|
+
readonly remote: boolean;
|
|
446
|
+
readonly remoteShowSuffix: boolean;
|
|
447
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
448
|
+
P: {};
|
|
449
|
+
B: {};
|
|
450
|
+
D: {};
|
|
451
|
+
C: {};
|
|
452
|
+
M: {};
|
|
453
|
+
Defaults: {};
|
|
454
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
455
|
+
readonly ariaLabel: StringConstructor;
|
|
456
|
+
readonly emptyValues: ArrayConstructor;
|
|
457
|
+
readonly valueOnClear: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null))[], unknown, unknown, undefined, boolean>;
|
|
458
|
+
readonly allowCreate: BooleanConstructor;
|
|
459
|
+
readonly autocomplete: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => "none" | "both" | "inline" | "list") | (() => "none" | "both" | "inline" | "list") | ((new (...args: any[]) => "none" | "both" | "inline" | "list") | (() => "none" | "both" | "inline" | "list"))[], unknown, unknown, "none", boolean>;
|
|
460
|
+
readonly automaticDropdown: BooleanConstructor;
|
|
461
|
+
readonly clearable: BooleanConstructor;
|
|
462
|
+
readonly clearIcon: {
|
|
463
|
+
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>>;
|
|
464
|
+
readonly required: false;
|
|
465
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
466
|
+
__epPropKey: true;
|
|
467
|
+
};
|
|
468
|
+
readonly effect: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string) | (() => import('element-plus').PopperEffect) | ((new (...args: any[]) => string) | (() => import('element-plus').PopperEffect))[], unknown, unknown, "light", boolean>;
|
|
469
|
+
readonly collapseTags: BooleanConstructor;
|
|
470
|
+
readonly collapseTagsTooltip: BooleanConstructor;
|
|
471
|
+
readonly maxCollapseTags: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 1, boolean>;
|
|
472
|
+
readonly defaultFirstOption: BooleanConstructor;
|
|
473
|
+
readonly disabled: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
474
|
+
readonly estimatedOptionHeight: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, undefined, boolean>;
|
|
475
|
+
readonly filterable: BooleanConstructor;
|
|
476
|
+
readonly filterMethod: {
|
|
477
|
+
readonly type: import('vue').PropType<(query: string) => void>;
|
|
478
|
+
readonly required: false;
|
|
479
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
480
|
+
__epPropKey: true;
|
|
481
|
+
};
|
|
482
|
+
readonly height: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 274, boolean>;
|
|
483
|
+
readonly itemHeight: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 34, boolean>;
|
|
484
|
+
readonly id: StringConstructor;
|
|
485
|
+
readonly loading: BooleanConstructor;
|
|
486
|
+
readonly loadingText: StringConstructor;
|
|
487
|
+
readonly modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => any) | (() => any) | {
|
|
488
|
+
(): any;
|
|
489
|
+
new (): any;
|
|
490
|
+
readonly prototype: any;
|
|
491
|
+
} | ((new (...args: any[]) => any) | (() => any) | {
|
|
492
|
+
(): any;
|
|
493
|
+
new (): any;
|
|
494
|
+
readonly prototype: any;
|
|
495
|
+
})[], unknown, unknown, undefined, boolean>;
|
|
496
|
+
readonly multiple: BooleanConstructor;
|
|
497
|
+
readonly multipleLimit: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 0, boolean>;
|
|
498
|
+
readonly name: StringConstructor;
|
|
499
|
+
readonly noDataText: StringConstructor;
|
|
500
|
+
readonly noMatchText: StringConstructor;
|
|
501
|
+
readonly remoteMethod: {
|
|
502
|
+
readonly type: import('vue').PropType<(query: string) => void>;
|
|
503
|
+
readonly required: false;
|
|
504
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
505
|
+
__epPropKey: true;
|
|
506
|
+
};
|
|
507
|
+
readonly reserveKeyword: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
508
|
+
readonly options: {
|
|
509
|
+
readonly type: import('vue').PropType<import('element-plus/es/components/select-v2/src/select.types.mjs').OptionType[]>;
|
|
510
|
+
readonly required: true;
|
|
511
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
512
|
+
__epPropKey: true;
|
|
513
|
+
};
|
|
514
|
+
readonly placeholder: {
|
|
515
|
+
readonly type: import('vue').PropType<string>;
|
|
516
|
+
readonly required: false;
|
|
517
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
518
|
+
__epPropKey: true;
|
|
519
|
+
};
|
|
520
|
+
readonly teleported: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
521
|
+
readonly persistent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
522
|
+
readonly popperClass: {
|
|
523
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | {
|
|
524
|
+
[x: string]: boolean;
|
|
525
|
+
} | (string | {
|
|
526
|
+
[x: string]: boolean;
|
|
527
|
+
} | (string | {
|
|
528
|
+
[x: string]: boolean;
|
|
529
|
+
} | (string | {
|
|
530
|
+
[x: string]: boolean;
|
|
531
|
+
} | (string | {
|
|
532
|
+
[x: string]: boolean;
|
|
533
|
+
} | (string | {
|
|
534
|
+
[x: string]: boolean;
|
|
535
|
+
} | (string | {
|
|
536
|
+
[x: string]: boolean;
|
|
537
|
+
} | (string | {
|
|
538
|
+
[x: string]: boolean;
|
|
539
|
+
} | (string | {
|
|
540
|
+
[x: string]: boolean;
|
|
541
|
+
} | (string | {
|
|
542
|
+
[x: string]: boolean;
|
|
543
|
+
} | (string | {
|
|
544
|
+
[x: string]: boolean;
|
|
545
|
+
} | (string | {
|
|
546
|
+
[x: string]: boolean;
|
|
547
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]) | (() => string | {
|
|
548
|
+
[x: string]: boolean;
|
|
549
|
+
} | (string | {
|
|
550
|
+
[x: string]: boolean;
|
|
551
|
+
} | (string | {
|
|
552
|
+
[x: string]: boolean;
|
|
553
|
+
} | (string | {
|
|
554
|
+
[x: string]: boolean;
|
|
555
|
+
} | (string | {
|
|
556
|
+
[x: string]: boolean;
|
|
557
|
+
} | (string | {
|
|
558
|
+
[x: string]: boolean;
|
|
559
|
+
} | (string | {
|
|
560
|
+
[x: string]: boolean;
|
|
561
|
+
} | (string | {
|
|
562
|
+
[x: string]: boolean;
|
|
563
|
+
} | (string | {
|
|
564
|
+
[x: string]: boolean;
|
|
565
|
+
} | (string | {
|
|
566
|
+
[x: string]: boolean;
|
|
567
|
+
} | (string | {
|
|
568
|
+
[x: string]: boolean;
|
|
569
|
+
} | (string | {
|
|
570
|
+
[x: string]: boolean;
|
|
571
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]) | ((new (...args: any[]) => string | {
|
|
572
|
+
[x: string]: boolean;
|
|
573
|
+
} | (string | {
|
|
574
|
+
[x: string]: boolean;
|
|
575
|
+
} | (string | {
|
|
576
|
+
[x: string]: boolean;
|
|
577
|
+
} | (string | {
|
|
578
|
+
[x: string]: boolean;
|
|
579
|
+
} | (string | {
|
|
580
|
+
[x: string]: boolean;
|
|
581
|
+
} | (string | {
|
|
582
|
+
[x: string]: boolean;
|
|
583
|
+
} | (string | {
|
|
584
|
+
[x: string]: boolean;
|
|
585
|
+
} | (string | {
|
|
586
|
+
[x: string]: boolean;
|
|
587
|
+
} | (string | {
|
|
588
|
+
[x: string]: boolean;
|
|
589
|
+
} | (string | {
|
|
590
|
+
[x: string]: boolean;
|
|
591
|
+
} | (string | {
|
|
592
|
+
[x: string]: boolean;
|
|
593
|
+
} | (string | {
|
|
594
|
+
[x: string]: boolean;
|
|
595
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]) | (() => string | {
|
|
596
|
+
[x: string]: boolean;
|
|
597
|
+
} | (string | {
|
|
598
|
+
[x: string]: boolean;
|
|
599
|
+
} | (string | {
|
|
600
|
+
[x: string]: boolean;
|
|
601
|
+
} | (string | {
|
|
602
|
+
[x: string]: boolean;
|
|
603
|
+
} | (string | {
|
|
604
|
+
[x: string]: boolean;
|
|
605
|
+
} | (string | {
|
|
606
|
+
[x: string]: boolean;
|
|
607
|
+
} | (string | {
|
|
608
|
+
[x: string]: boolean;
|
|
609
|
+
} | (string | {
|
|
610
|
+
[x: string]: boolean;
|
|
611
|
+
} | (string | {
|
|
612
|
+
[x: string]: boolean;
|
|
613
|
+
} | (string | {
|
|
614
|
+
[x: string]: boolean;
|
|
615
|
+
} | (string | {
|
|
616
|
+
[x: string]: boolean;
|
|
617
|
+
} | (string | {
|
|
618
|
+
[x: string]: boolean;
|
|
619
|
+
} | any)[])[])[])[])[])[])[])[])[])[])[]))[], unknown, unknown>>;
|
|
620
|
+
readonly required: false;
|
|
621
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
622
|
+
__epPropKey: true;
|
|
623
|
+
};
|
|
624
|
+
readonly popperStyle: {
|
|
625
|
+
readonly type: import('vue').PropType<import('vue').StyleValue>;
|
|
626
|
+
readonly required: false;
|
|
627
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
628
|
+
__epPropKey: true;
|
|
629
|
+
};
|
|
630
|
+
readonly popperOptions: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => Partial<import('element-plus').Options>) | (() => Partial<import('element-plus').Options>) | ((new (...args: any[]) => Partial<import('element-plus').Options>) | (() => Partial<import('element-plus').Options>))[], unknown, unknown, () => Partial<import('element-plus').Options>, boolean>;
|
|
631
|
+
readonly remote: BooleanConstructor;
|
|
632
|
+
readonly debounce: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 300, boolean>;
|
|
633
|
+
readonly size: {
|
|
634
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
635
|
+
readonly required: false;
|
|
636
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
637
|
+
__epPropKey: true;
|
|
638
|
+
};
|
|
639
|
+
readonly props: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus/es/components/select-v2/src/useProps.mjs').Props) | (() => import('element-plus/es/components/select-v2/src/useProps.mjs').Props) | ((new (...args: any[]) => import('element-plus/es/components/select-v2/src/useProps.mjs').Props) | (() => import('element-plus/es/components/select-v2/src/useProps.mjs').Props))[], unknown, unknown, () => Required<import('element-plus/es/components/select-v2/src/useProps.mjs').Props>, boolean>;
|
|
640
|
+
readonly valueKey: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, "value", boolean>;
|
|
641
|
+
readonly scrollbarAlwaysOn: BooleanConstructor;
|
|
642
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
643
|
+
readonly offset: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, 12, boolean>;
|
|
644
|
+
readonly remoteShowSuffix: BooleanConstructor;
|
|
645
|
+
readonly showArrow: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
646
|
+
readonly placement: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement) | ((new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement))[], import('element-plus').Placement, unknown, "bottom-start", boolean>;
|
|
647
|
+
readonly fallbackPlacements: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').Placement[]) | (() => import('element-plus').Placement[]) | ((new (...args: any[]) => import('element-plus').Placement[]) | (() => import('element-plus').Placement[]))[], unknown, unknown, readonly ["bottom-start", "top-start", "right", "left"], boolean>;
|
|
648
|
+
readonly tagType: {
|
|
649
|
+
readonly default: "info";
|
|
650
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "primary" | "success" | "warning" | "info" | "danger", unknown>>;
|
|
651
|
+
readonly required: false;
|
|
652
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
653
|
+
readonly __epPropKey: true;
|
|
654
|
+
};
|
|
655
|
+
readonly tagEffect: {
|
|
656
|
+
readonly default: "light";
|
|
657
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "dark" | "light" | "plain", unknown>>;
|
|
658
|
+
readonly required: false;
|
|
659
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
660
|
+
readonly __epPropKey: true;
|
|
661
|
+
};
|
|
662
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
|
|
663
|
+
readonly appendTo: {
|
|
664
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
|
|
665
|
+
readonly required: false;
|
|
666
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
667
|
+
__epPropKey: true;
|
|
668
|
+
};
|
|
669
|
+
readonly fitInputWidth: import('element-plus/es/utils/index.mjs').EpPropFinalized<readonly [BooleanConstructor, NumberConstructor], unknown, number | boolean, true, boolean>;
|
|
670
|
+
readonly suffixIcon: {
|
|
671
|
+
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>>;
|
|
672
|
+
readonly required: false;
|
|
673
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
674
|
+
__epPropKey: true;
|
|
675
|
+
};
|
|
676
|
+
}>> & {
|
|
677
|
+
"onUpdate:modelValue"?: ((val: any) => any) | undefined;
|
|
678
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
679
|
+
onChange?: ((val: any) => any) | undefined;
|
|
680
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
681
|
+
onClear?: (() => any) | undefined;
|
|
682
|
+
"onVisible-change"?: ((visible: boolean) => any) | undefined;
|
|
683
|
+
"onRemove-tag"?: ((val: unknown) => any) | undefined;
|
|
684
|
+
}, {
|
|
685
|
+
modelValue: import('vue').ComputedRef<any>;
|
|
686
|
+
selectedLabel: import('vue').ComputedRef<string | string[]>;
|
|
687
|
+
calculatorRef: import('vue').ShallowRef<HTMLElement | undefined>;
|
|
688
|
+
inputStyle: import('vue').ComputedRef<{
|
|
689
|
+
minWidth: string;
|
|
690
|
+
}>;
|
|
691
|
+
contentId: import('vue').Ref<string>;
|
|
692
|
+
BORDER_HORIZONTAL_WIDTH: number;
|
|
693
|
+
inputId: import('vue').Ref<string | undefined>;
|
|
694
|
+
collapseTagSize: import('vue').ComputedRef<"default" | "small">;
|
|
695
|
+
currentPlaceholder: import('vue').ComputedRef<string>;
|
|
696
|
+
expanded: import('vue').Ref<boolean>;
|
|
697
|
+
emptyText: import('vue').ComputedRef<string | null>;
|
|
698
|
+
popupHeight: import('vue').ComputedRef<number>;
|
|
699
|
+
debounce: import('vue').ComputedRef<number>;
|
|
700
|
+
allOptions: import('vue').ComputedRef<import('element-plus/es/components/select-v2/src/select.types.mjs').OptionType[]>;
|
|
701
|
+
allOptionsValueMap: import('vue').ComputedRef<Map<any, any>>;
|
|
702
|
+
filteredOptions: import('vue').Ref<({
|
|
703
|
+
[x: string]: any;
|
|
704
|
+
} | {
|
|
705
|
+
[x: string]: any;
|
|
706
|
+
created?: boolean | undefined;
|
|
707
|
+
})[]>;
|
|
708
|
+
iconComponent: import('vue').ComputedRef<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> | undefined>;
|
|
709
|
+
iconReverse: import('vue').ComputedRef<string | undefined>;
|
|
710
|
+
tagStyle: import('vue').ComputedRef<{
|
|
711
|
+
maxWidth: string;
|
|
712
|
+
}>;
|
|
713
|
+
collapseTagStyle: import('vue').ComputedRef<{
|
|
714
|
+
maxWidth: string;
|
|
715
|
+
}>;
|
|
716
|
+
popperSize: import('vue').Ref<number>;
|
|
717
|
+
dropdownMenuVisible: import('vue').WritableComputedRef<boolean>;
|
|
718
|
+
hasModelValue: import('vue').ComputedRef<boolean>;
|
|
719
|
+
shouldShowPlaceholder: import('vue').ComputedRef<boolean>;
|
|
720
|
+
selectDisabled: import('vue').ComputedRef<boolean>;
|
|
721
|
+
selectSize: import('vue').ComputedRef<"" | "small" | "default" | "large">;
|
|
722
|
+
needStatusIcon: import('vue').ComputedRef<boolean>;
|
|
723
|
+
showClearBtn: import('vue').ComputedRef<boolean>;
|
|
724
|
+
states: import('element-plus/es/components/select-v2/src/select.types.mjs').SelectStates;
|
|
725
|
+
isFocused: import('vue').Ref<boolean>;
|
|
726
|
+
nsSelect: {
|
|
727
|
+
namespace: import('vue').ComputedRef<string>;
|
|
728
|
+
b: (blockSuffix?: string) => string;
|
|
729
|
+
e: (element?: string) => string;
|
|
730
|
+
m: (modifier?: string) => string;
|
|
731
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
732
|
+
em: (element?: string, modifier?: string) => string;
|
|
733
|
+
bm: (blockSuffix?: string, modifier?: string) => string;
|
|
734
|
+
bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
|
|
735
|
+
is: {
|
|
736
|
+
(name: string, state: boolean | undefined): string;
|
|
737
|
+
(name: string): string;
|
|
738
|
+
};
|
|
739
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
740
|
+
cssVarName: (name: string) => string;
|
|
741
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
742
|
+
cssVarBlockName: (name: string) => string;
|
|
743
|
+
};
|
|
744
|
+
nsInput: {
|
|
745
|
+
namespace: import('vue').ComputedRef<string>;
|
|
746
|
+
b: (blockSuffix?: string) => string;
|
|
747
|
+
e: (element?: string) => string;
|
|
748
|
+
m: (modifier?: string) => string;
|
|
749
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
750
|
+
em: (element?: string, modifier?: string) => string;
|
|
751
|
+
bm: (blockSuffix?: string, modifier?: string) => string;
|
|
752
|
+
bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
|
|
753
|
+
is: {
|
|
754
|
+
(name: string, state: boolean | undefined): string;
|
|
755
|
+
(name: string): string;
|
|
756
|
+
};
|
|
757
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
758
|
+
cssVarName: (name: string) => string;
|
|
759
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
760
|
+
cssVarBlockName: (name: string) => string;
|
|
761
|
+
};
|
|
762
|
+
inputRef: import('vue').Ref<HTMLElement | undefined>;
|
|
763
|
+
menuRef: import('vue').Ref<import('element-plus/es/components/select-v2/src/select-dropdown.mjs').SelectDropdownInstance | undefined>;
|
|
764
|
+
tagMenuRef: import('vue').Ref<HTMLElement | undefined>;
|
|
765
|
+
tooltipRef: import('vue').Ref<import('element-plus').TooltipInstance | undefined>;
|
|
766
|
+
tagTooltipRef: import('vue').Ref<import('element-plus').TooltipInstance | undefined>;
|
|
767
|
+
selectRef: import('vue').Ref<HTMLElement | undefined>;
|
|
768
|
+
wrapperRef: import('vue').ShallowRef<HTMLElement | undefined>;
|
|
769
|
+
selectionRef: import('vue').Ref<HTMLElement | undefined>;
|
|
770
|
+
prefixRef: import('vue').Ref<HTMLElement | undefined>;
|
|
771
|
+
suffixRef: import('vue').Ref<HTMLElement | undefined>;
|
|
772
|
+
collapseItemRef: import('vue').Ref<HTMLElement | undefined>;
|
|
773
|
+
popperRef: import('vue').ComputedRef<HTMLElement | undefined>;
|
|
774
|
+
validateState: import('vue').ComputedRef<"" | "error" | "success" | "validating">;
|
|
775
|
+
validateIcon: import('vue').ComputedRef<any>;
|
|
776
|
+
showTagList: import('vue').ComputedRef<import('element-plus/es/components/select-v2/src/select.types.mjs').Option[]>;
|
|
777
|
+
collapseTagList: import('vue').ComputedRef<import('element-plus/es/components/select-v2/src/select.types.mjs').Option[]>;
|
|
778
|
+
debouncedOnInputChange: import('@vueuse/core').PromisifyFn<() => void>;
|
|
779
|
+
deleteTag: (event: MouseEvent, option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => void;
|
|
780
|
+
getLabel: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => any;
|
|
781
|
+
getValue: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => any;
|
|
782
|
+
getDisabled: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => any;
|
|
783
|
+
getValueKey: (item: unknown) => any;
|
|
784
|
+
getIndex: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => any;
|
|
785
|
+
handleClear: () => void;
|
|
786
|
+
handleClickOutside: (event: Event) => void;
|
|
787
|
+
handleDel: (e: KeyboardEvent) => void;
|
|
788
|
+
handleEsc: () => void;
|
|
789
|
+
focus: () => void;
|
|
790
|
+
blur: () => void;
|
|
791
|
+
handleMenuEnter: () => Promise<Awaited<R>>;
|
|
792
|
+
handleResize: () => void;
|
|
793
|
+
resetSelectionWidth: () => void;
|
|
794
|
+
updateTooltip: () => void;
|
|
795
|
+
updateTagTooltip: () => void;
|
|
796
|
+
updateOptions: () => void;
|
|
797
|
+
toggleMenu: (event?: Event) => void;
|
|
798
|
+
scrollTo: (index: number) => void;
|
|
799
|
+
onInput: (event: Event) => void;
|
|
800
|
+
onKeyboardNavigate: (direction: "forward" | "backward", hoveringIndex?: number | undefined) => void;
|
|
801
|
+
onKeyboardSelect: () => void;
|
|
802
|
+
onSelect: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => void;
|
|
803
|
+
onHover: (idx?: number) => void;
|
|
804
|
+
handleCompositionStart: (event: CompositionEvent) => void;
|
|
805
|
+
handleCompositionEnd: (event: CompositionEvent) => void;
|
|
806
|
+
handleCompositionUpdate: (event: CompositionEvent) => void;
|
|
807
|
+
}, {}, {}, {}, {
|
|
808
|
+
readonly disabled: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
809
|
+
readonly tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
810
|
+
readonly height: number;
|
|
811
|
+
readonly offset: number;
|
|
812
|
+
readonly multiple: boolean;
|
|
813
|
+
readonly props: import('element-plus/es/components/select-v2/src/useProps.mjs').Props;
|
|
814
|
+
readonly loading: boolean;
|
|
815
|
+
readonly modelValue: any;
|
|
816
|
+
readonly placement: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement) | ((new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement))[], import('element-plus').Placement, unknown>;
|
|
817
|
+
readonly effect: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string) | (() => import('element-plus').PopperEffect) | ((new (...args: any[]) => string) | (() => import('element-plus').PopperEffect))[], unknown, unknown>;
|
|
818
|
+
readonly valueOnClear: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null))[], unknown, unknown>;
|
|
819
|
+
readonly teleported: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
820
|
+
readonly autocomplete: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => "none" | "both" | "inline" | "list") | (() => "none" | "both" | "inline" | "list") | ((new (...args: any[]) => "none" | "both" | "inline" | "list") | (() => "none" | "both" | "inline" | "list"))[], unknown, unknown>;
|
|
821
|
+
readonly validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
822
|
+
readonly clearable: boolean;
|
|
823
|
+
readonly fallbackPlacements: import('element-plus').Placement[];
|
|
824
|
+
readonly popperOptions: Partial<import('element-plus').Options>;
|
|
825
|
+
readonly persistent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
826
|
+
readonly showArrow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
827
|
+
readonly valueKey: string;
|
|
828
|
+
readonly debounce: number;
|
|
829
|
+
readonly fitInputWidth: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [BooleanConstructor, NumberConstructor], unknown, number | boolean>;
|
|
830
|
+
readonly automaticDropdown: boolean;
|
|
831
|
+
readonly filterable: boolean;
|
|
832
|
+
readonly collapseTags: boolean;
|
|
833
|
+
readonly maxCollapseTags: number;
|
|
834
|
+
readonly collapseTagsTooltip: boolean;
|
|
835
|
+
readonly tagType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "primary" | "success" | "warning" | "info" | "danger", unknown>;
|
|
836
|
+
readonly tagEffect: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "dark" | "light" | "plain", unknown>;
|
|
837
|
+
readonly scrollbarAlwaysOn: boolean;
|
|
838
|
+
readonly estimatedOptionHeight: number;
|
|
839
|
+
readonly itemHeight: number;
|
|
840
|
+
readonly multipleLimit: number;
|
|
841
|
+
readonly reserveKeyword: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
842
|
+
readonly allowCreate: boolean;
|
|
843
|
+
readonly defaultFirstOption: boolean;
|
|
844
|
+
readonly remote: boolean;
|
|
845
|
+
readonly remoteShowSuffix: boolean;
|
|
846
|
+
}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
847
|
+
ariaLabel: StringConstructor;
|
|
848
|
+
emptyValues: ArrayConstructor;
|
|
849
|
+
valueOnClear: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null))[], unknown, unknown, undefined, boolean>;
|
|
850
|
+
name: StringConstructor;
|
|
851
|
+
id: StringConstructor;
|
|
852
|
+
modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number | boolean | Record<string, any> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>[]) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>[] | null) | ((new (...args: any[]) => string | number | boolean | Record<string, any> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>[]) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>[] | null))[], unknown, unknown, undefined, boolean>;
|
|
853
|
+
autocomplete: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, string, boolean>;
|
|
854
|
+
automaticDropdown: BooleanConstructor;
|
|
855
|
+
size: {
|
|
856
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
857
|
+
readonly required: false;
|
|
858
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
859
|
+
__epPropKey: true;
|
|
860
|
+
};
|
|
861
|
+
effect: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string) | (() => import('element-plus').PopperEffect) | ((new (...args: any[]) => string) | (() => import('element-plus').PopperEffect))[], unknown, unknown, string, boolean>;
|
|
862
|
+
disabled: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
863
|
+
clearable: BooleanConstructor;
|
|
864
|
+
filterable: BooleanConstructor;
|
|
865
|
+
allowCreate: BooleanConstructor;
|
|
866
|
+
loading: BooleanConstructor;
|
|
867
|
+
popperClass: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, string, boolean>;
|
|
868
|
+
popperStyle: {
|
|
869
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | import('vue').CSSProperties) | (() => string | import('vue').CSSProperties) | ((new (...args: any[]) => string | import('vue').CSSProperties) | (() => string | import('vue').CSSProperties))[], unknown, unknown>>;
|
|
870
|
+
readonly required: false;
|
|
871
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
872
|
+
__epPropKey: true;
|
|
873
|
+
};
|
|
874
|
+
popperOptions: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => Partial<import('element-plus').Options>) | (() => Partial<import('element-plus').Options>) | ((new (...args: any[]) => Partial<import('element-plus').Options>) | (() => Partial<import('element-plus').Options>))[], unknown, unknown, () => Partial<import('element-plus').Options>, boolean>;
|
|
875
|
+
remote: BooleanConstructor;
|
|
876
|
+
debounce: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
|
|
877
|
+
loadingText: StringConstructor;
|
|
878
|
+
noMatchText: StringConstructor;
|
|
879
|
+
noDataText: StringConstructor;
|
|
880
|
+
remoteMethod: {
|
|
881
|
+
readonly type: import('vue').PropType<(query: string) => void>;
|
|
882
|
+
readonly required: false;
|
|
883
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
884
|
+
__epPropKey: true;
|
|
885
|
+
};
|
|
886
|
+
filterMethod: {
|
|
887
|
+
readonly type: import('vue').PropType<(query: string) => void>;
|
|
888
|
+
readonly required: false;
|
|
889
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
890
|
+
__epPropKey: true;
|
|
891
|
+
};
|
|
892
|
+
multiple: BooleanConstructor;
|
|
893
|
+
multipleLimit: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
|
|
894
|
+
placeholder: {
|
|
895
|
+
readonly type: import('vue').PropType<string>;
|
|
896
|
+
readonly required: false;
|
|
897
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
898
|
+
__epPropKey: true;
|
|
899
|
+
};
|
|
900
|
+
defaultFirstOption: BooleanConstructor;
|
|
901
|
+
reserveKeyword: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
902
|
+
valueKey: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, string, boolean>;
|
|
903
|
+
collapseTags: BooleanConstructor;
|
|
904
|
+
collapseTagsTooltip: BooleanConstructor;
|
|
905
|
+
maxCollapseTags: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
|
|
906
|
+
teleported: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
907
|
+
persistent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
908
|
+
clearIcon: {
|
|
909
|
+
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>>;
|
|
910
|
+
readonly required: false;
|
|
911
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
912
|
+
__epPropKey: true;
|
|
913
|
+
};
|
|
914
|
+
fitInputWidth: BooleanConstructor;
|
|
915
|
+
suffixIcon: {
|
|
916
|
+
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>>;
|
|
917
|
+
readonly required: false;
|
|
918
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
919
|
+
__epPropKey: true;
|
|
920
|
+
};
|
|
921
|
+
tagType: {
|
|
922
|
+
default: string;
|
|
923
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "primary" | "success" | "warning" | "info" | "danger", unknown>>;
|
|
924
|
+
required: false;
|
|
925
|
+
validator: ((val: unknown) => boolean) | undefined;
|
|
926
|
+
__epPropKey: true;
|
|
927
|
+
};
|
|
928
|
+
tagEffect: {
|
|
929
|
+
default: string;
|
|
930
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "dark" | "light" | "plain", unknown>>;
|
|
931
|
+
required: false;
|
|
932
|
+
validator: ((val: unknown) => boolean) | undefined;
|
|
933
|
+
__epPropKey: true;
|
|
934
|
+
};
|
|
935
|
+
validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
936
|
+
remoteShowSuffix: BooleanConstructor;
|
|
937
|
+
showArrow: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
938
|
+
offset: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
|
|
939
|
+
placement: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement) | ((new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement))[], import('element-plus').Placement, unknown, string, boolean>;
|
|
940
|
+
fallbackPlacements: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').Placement[]) | (() => import('element-plus').Placement[]) | ((new (...args: any[]) => import('element-plus').Placement[]) | (() => import('element-plus').Placement[]))[], unknown, unknown, string[], boolean>;
|
|
941
|
+
tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<(NumberConstructor | StringConstructor)[], unknown, unknown, number, boolean>;
|
|
942
|
+
appendTo: {
|
|
943
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
|
|
944
|
+
readonly required: false;
|
|
945
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
946
|
+
__epPropKey: true;
|
|
947
|
+
};
|
|
948
|
+
options: {
|
|
949
|
+
readonly type: import('vue').PropType<Record<string, any>[]>;
|
|
950
|
+
readonly required: false;
|
|
951
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
952
|
+
__epPropKey: true;
|
|
953
|
+
};
|
|
954
|
+
props: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus/es/components/select-v2/src/useProps.mjs').Props) | (() => import('element-plus/es/components/select-v2/src/useProps.mjs').Props) | ((new (...args: any[]) => import('element-plus/es/components/select-v2/src/useProps.mjs').Props) | (() => import('element-plus/es/components/select-v2/src/useProps.mjs').Props))[], unknown, unknown, () => Required<import('element-plus/es/components/select-v2/src/useProps.mjs').Props>, boolean>;
|
|
955
|
+
}>> & {
|
|
956
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
957
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
958
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
959
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
960
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
961
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
962
|
+
"onRemove-tag"?: ((...args: any[]) => any) | undefined;
|
|
963
|
+
"onPopup-scroll"?: ((...args: any[]) => any) | undefined;
|
|
964
|
+
}, {
|
|
965
|
+
modelValue: import('vue').ComputedRef<string | number | boolean | any[] | Record<string, any> | null | undefined>;
|
|
966
|
+
selectedLabel: import('vue').ComputedRef<string | string[]>;
|
|
967
|
+
calculatorRef: import('vue').ShallowRef<HTMLElement | undefined>;
|
|
968
|
+
inputStyle: import('vue').ComputedRef<{
|
|
969
|
+
minWidth: string;
|
|
970
|
+
}>;
|
|
971
|
+
getLabel: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => any;
|
|
972
|
+
getValue: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => any;
|
|
973
|
+
getOptions: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => any;
|
|
974
|
+
getDisabled: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => any;
|
|
975
|
+
getOptionProps: (option: Record<string, any>) => {
|
|
976
|
+
label: any;
|
|
977
|
+
value: any;
|
|
978
|
+
disabled: any;
|
|
979
|
+
};
|
|
980
|
+
inputId: import('vue').Ref<string | undefined>;
|
|
981
|
+
contentId: import('vue').Ref<string>;
|
|
982
|
+
nsSelect: {
|
|
983
|
+
namespace: import('vue').ComputedRef<string>;
|
|
984
|
+
b: (blockSuffix?: string) => string;
|
|
985
|
+
e: (element?: string) => string;
|
|
986
|
+
m: (modifier?: string) => string;
|
|
987
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
988
|
+
em: (element?: string, modifier?: string) => string;
|
|
989
|
+
bm: (blockSuffix?: string, modifier?: string) => string;
|
|
990
|
+
bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
|
|
991
|
+
is: {
|
|
992
|
+
(name: string, state: boolean | undefined): string;
|
|
993
|
+
(name: string): string;
|
|
994
|
+
};
|
|
995
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
996
|
+
cssVarName: (name: string) => string;
|
|
997
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
998
|
+
cssVarBlockName: (name: string) => string;
|
|
999
|
+
};
|
|
1000
|
+
nsInput: {
|
|
1001
|
+
namespace: import('vue').ComputedRef<string>;
|
|
1002
|
+
b: (blockSuffix?: string) => string;
|
|
1003
|
+
e: (element?: string) => string;
|
|
1004
|
+
m: (modifier?: string) => string;
|
|
1005
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
1006
|
+
em: (element?: string, modifier?: string) => string;
|
|
1007
|
+
bm: (blockSuffix?: string, modifier?: string) => string;
|
|
1008
|
+
bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
|
|
1009
|
+
is: {
|
|
1010
|
+
(name: string, state: boolean | undefined): string;
|
|
1011
|
+
(name: string): string;
|
|
1012
|
+
};
|
|
1013
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
1014
|
+
cssVarName: (name: string) => string;
|
|
1015
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
1016
|
+
cssVarBlockName: (name: string) => string;
|
|
1017
|
+
};
|
|
1018
|
+
states: {
|
|
1019
|
+
inputValue: string;
|
|
1020
|
+
options: Map<import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>, import('element-plus').OptionPublicInstance> & Omit<Map<import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>, import('element-plus').OptionPublicInstance>, keyof Map<any, any>>;
|
|
1021
|
+
cachedOptions: Map<import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>, import('element-plus').OptionPublicInstance> & Omit<Map<import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>, import('element-plus').OptionPublicInstance>, keyof Map<any, any>>;
|
|
1022
|
+
optionValues: import('element-plus/es/components/select/src/type.mjs').OptionValue[];
|
|
1023
|
+
selected: {
|
|
1024
|
+
index: number;
|
|
1025
|
+
value: import('element-plus/es/components/select/src/type.mjs').OptionValue;
|
|
1026
|
+
currentLabel: import('element-plus').OptionPublicInstance["currentLabel"];
|
|
1027
|
+
isDisabled?: import('element-plus').OptionPublicInstance["isDisabled"] | undefined;
|
|
1028
|
+
}[];
|
|
1029
|
+
hoveringIndex: number;
|
|
1030
|
+
inputHovering: boolean;
|
|
1031
|
+
selectionWidth: number;
|
|
1032
|
+
collapseItemWidth: number;
|
|
1033
|
+
previousQuery: string | null;
|
|
1034
|
+
selectedLabel: string;
|
|
1035
|
+
menuVisibleOnFocus: boolean;
|
|
1036
|
+
isBeforeHide: boolean;
|
|
1037
|
+
};
|
|
1038
|
+
isFocused: import('vue').Ref<boolean>;
|
|
1039
|
+
expanded: import('vue').Ref<boolean>;
|
|
1040
|
+
optionsArray: import('vue').ComputedRef<import('element-plus').OptionPublicInstance[]>;
|
|
1041
|
+
hoverOption: import('vue').Ref<any>;
|
|
1042
|
+
selectSize: import('vue').ComputedRef<"" | "small" | "default" | "large">;
|
|
1043
|
+
filteredOptionsCount: import('vue').ComputedRef<number>;
|
|
1044
|
+
updateTooltip: () => void;
|
|
1045
|
+
updateTagTooltip: () => void;
|
|
1046
|
+
debouncedOnInputChange: import('@vueuse/core').PromisifyFn<() => void>;
|
|
1047
|
+
onInput: (event: Event) => void;
|
|
1048
|
+
deletePrevTag: (e: KeyboardEvent) => void;
|
|
1049
|
+
deleteTag: (event: MouseEvent, tag: import('element-plus').OptionBasic) => void;
|
|
1050
|
+
deleteSelected: (event: Event) => void;
|
|
1051
|
+
handleOptionSelect: (option: import('element-plus').OptionPublicInstance) => void;
|
|
1052
|
+
scrollToOption: (option: import('element-plus').OptionPublicInstance | import('element-plus').OptionPublicInstance[] | import('element-plus/es/components/select/src/type.mjs').SelectStates["selected"]) => void;
|
|
1053
|
+
hasModelValue: import('vue').ComputedRef<boolean>;
|
|
1054
|
+
shouldShowPlaceholder: import('vue').ComputedRef<boolean>;
|
|
1055
|
+
currentPlaceholder: import('vue').ComputedRef<string>;
|
|
1056
|
+
mouseEnterEventName: import('vue').ComputedRef<"mouseenter" | null>;
|
|
1057
|
+
needStatusIcon: import('vue').ComputedRef<boolean>;
|
|
1058
|
+
showClearBtn: import('vue').ComputedRef<boolean>;
|
|
1059
|
+
iconComponent: import('vue').ComputedRef<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> | undefined>;
|
|
1060
|
+
iconReverse: import('vue').ComputedRef<string>;
|
|
1061
|
+
validateState: import('vue').ComputedRef<"" | "error" | "success" | "validating">;
|
|
1062
|
+
validateIcon: import('vue').ComputedRef<"" | import('vue').Component>;
|
|
1063
|
+
showNewOption: import('vue').ComputedRef<boolean>;
|
|
1064
|
+
updateOptions: () => void;
|
|
1065
|
+
collapseTagSize: import('vue').ComputedRef<"default" | "small">;
|
|
1066
|
+
setSelected: () => void;
|
|
1067
|
+
selectDisabled: import('vue').ComputedRef<boolean>;
|
|
1068
|
+
emptyText: import('vue').ComputedRef<string | null>;
|
|
1069
|
+
handleCompositionStart: (event: CompositionEvent) => void;
|
|
1070
|
+
handleCompositionUpdate: (event: CompositionEvent) => void;
|
|
1071
|
+
handleCompositionEnd: (event: CompositionEvent) => void;
|
|
1072
|
+
handleKeydown: (e: KeyboardEvent) => void;
|
|
1073
|
+
onOptionCreate: (vm: import('element-plus').OptionPublicInstance) => void;
|
|
1074
|
+
onOptionDestroy: (key: import('element-plus/es/components/select/src/type.mjs').OptionValue, vm: import('element-plus').OptionPublicInstance) => void;
|
|
1075
|
+
handleMenuEnter: () => void;
|
|
1076
|
+
focus: () => void;
|
|
1077
|
+
blur: () => void;
|
|
1078
|
+
handleClearClick: (event: Event) => void;
|
|
1079
|
+
handleClickOutside: (event: Event) => void;
|
|
1080
|
+
handleEsc: () => void;
|
|
1081
|
+
toggleMenu: (event?: Event) => void;
|
|
1082
|
+
selectOption: () => void;
|
|
1083
|
+
getValueKey: (item: import('element-plus').OptionPublicInstance | import('element-plus/es/components/select/src/type.mjs').SelectStates["selected"][0]) => any;
|
|
1084
|
+
navigateOptions: (direction: "prev" | "next") => void;
|
|
1085
|
+
dropdownMenuVisible: import('vue').WritableComputedRef<boolean>;
|
|
1086
|
+
showTagList: import('vue').ComputedRef<{
|
|
1087
|
+
index: number;
|
|
1088
|
+
value: import('element-plus/es/components/select/src/type.mjs').OptionValue;
|
|
1089
|
+
currentLabel: import('element-plus').OptionPublicInstance["currentLabel"];
|
|
1090
|
+
isDisabled?: import('element-plus').OptionPublicInstance["isDisabled"] | undefined;
|
|
1091
|
+
}[]>;
|
|
1092
|
+
collapseTagList: import('vue').ComputedRef<{
|
|
1093
|
+
index: number;
|
|
1094
|
+
value: import('element-plus/es/components/select/src/type.mjs').OptionValue;
|
|
1095
|
+
currentLabel: import('element-plus').OptionPublicInstance["currentLabel"];
|
|
1096
|
+
isDisabled?: import('element-plus').OptionPublicInstance["isDisabled"] | undefined;
|
|
1097
|
+
}[]>;
|
|
1098
|
+
popupScroll: (data: {
|
|
1099
|
+
scrollTop: number;
|
|
1100
|
+
scrollLeft: number;
|
|
1101
|
+
}) => void;
|
|
1102
|
+
getOption: (value: import('element-plus/es/components/select/src/type.mjs').OptionValue) => {
|
|
1103
|
+
index: number;
|
|
1104
|
+
value: import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>;
|
|
1105
|
+
currentLabel: any;
|
|
1106
|
+
} | {
|
|
1107
|
+
index: number;
|
|
1108
|
+
value: import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>;
|
|
1109
|
+
currentLabel: string | number | boolean;
|
|
1110
|
+
readonly isDisabled: boolean;
|
|
1111
|
+
};
|
|
1112
|
+
tagStyle: import('vue').ComputedRef<{
|
|
1113
|
+
maxWidth: string;
|
|
1114
|
+
}>;
|
|
1115
|
+
collapseTagStyle: import('vue').ComputedRef<{
|
|
1116
|
+
maxWidth: string;
|
|
1117
|
+
}>;
|
|
1118
|
+
popperRef: import('vue').ComputedRef<HTMLElement | undefined>;
|
|
1119
|
+
inputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
1120
|
+
tooltipRef: import('vue').Ref<import('element-plus').TooltipInstance | undefined>;
|
|
1121
|
+
tagTooltipRef: import('vue').Ref<import('element-plus').TooltipInstance | undefined>;
|
|
1122
|
+
prefixRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1123
|
+
suffixRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1124
|
+
selectRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1125
|
+
wrapperRef: import('vue').ShallowRef<HTMLElement | undefined>;
|
|
1126
|
+
selectionRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1127
|
+
scrollbarRef: import('vue').Ref<import('element-plus').ScrollbarInstance | undefined>;
|
|
1128
|
+
menuRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1129
|
+
tagMenuRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1130
|
+
collapseItemRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1131
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("clear" | "change" | "focus" | "blur" | "update:modelValue" | "visible-change" | "remove-tag" | "popup-scroll")[], import('vue').PublicProps, {
|
|
1132
|
+
disabled: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1133
|
+
tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<(NumberConstructor | StringConstructor)[], unknown, unknown>;
|
|
1134
|
+
offset: number;
|
|
1135
|
+
multiple: boolean;
|
|
1136
|
+
props: import('element-plus/es/components/select-v2/src/useProps.mjs').Props;
|
|
1137
|
+
loading: boolean;
|
|
1138
|
+
modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number | boolean | Record<string, any> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>[]) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>[] | null) | ((new (...args: any[]) => string | number | boolean | Record<string, any> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>[]) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>[] | null))[], unknown, unknown>;
|
|
1139
|
+
placement: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement) | ((new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement))[], import('element-plus').Placement, unknown>;
|
|
1140
|
+
effect: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string) | (() => import('element-plus').PopperEffect) | ((new (...args: any[]) => string) | (() => import('element-plus').PopperEffect))[], unknown, unknown>;
|
|
1141
|
+
valueOnClear: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null))[], unknown, unknown>;
|
|
1142
|
+
teleported: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1143
|
+
autocomplete: string;
|
|
1144
|
+
validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1145
|
+
clearable: boolean;
|
|
1146
|
+
fallbackPlacements: import('element-plus').Placement[];
|
|
1147
|
+
popperOptions: Partial<import('element-plus').Options>;
|
|
1148
|
+
popperClass: string;
|
|
1149
|
+
persistent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1150
|
+
showArrow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1151
|
+
valueKey: string;
|
|
1152
|
+
debounce: number;
|
|
1153
|
+
fitInputWidth: boolean;
|
|
1154
|
+
automaticDropdown: boolean;
|
|
1155
|
+
filterable: boolean;
|
|
1156
|
+
collapseTags: boolean;
|
|
1157
|
+
maxCollapseTags: number;
|
|
1158
|
+
collapseTagsTooltip: boolean;
|
|
1159
|
+
tagType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "primary" | "success" | "warning" | "info" | "danger", unknown>;
|
|
1160
|
+
tagEffect: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "dark" | "light" | "plain", unknown>;
|
|
1161
|
+
multipleLimit: number;
|
|
1162
|
+
reserveKeyword: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1163
|
+
allowCreate: boolean;
|
|
1164
|
+
defaultFirstOption: boolean;
|
|
1165
|
+
remote: boolean;
|
|
1166
|
+
remoteShowSuffix: boolean;
|
|
1167
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1168
|
+
P: {};
|
|
1169
|
+
B: {};
|
|
1170
|
+
D: {};
|
|
1171
|
+
C: {};
|
|
1172
|
+
M: {};
|
|
1173
|
+
Defaults: {};
|
|
1174
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
1175
|
+
ariaLabel: StringConstructor;
|
|
1176
|
+
emptyValues: ArrayConstructor;
|
|
1177
|
+
valueOnClear: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null))[], unknown, unknown, undefined, boolean>;
|
|
1178
|
+
name: StringConstructor;
|
|
1179
|
+
id: StringConstructor;
|
|
1180
|
+
modelValue: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string | number | boolean | Record<string, any> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>[]) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>[] | null) | ((new (...args: any[]) => string | number | boolean | Record<string, any> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>[]) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>[] | null))[], unknown, unknown, undefined, boolean>;
|
|
1181
|
+
autocomplete: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, string, boolean>;
|
|
1182
|
+
automaticDropdown: BooleanConstructor;
|
|
1183
|
+
size: {
|
|
1184
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
|
|
1185
|
+
readonly required: false;
|
|
1186
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1187
|
+
__epPropKey: true;
|
|
1188
|
+
};
|
|
1189
|
+
effect: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => string) | (() => import('element-plus').PopperEffect) | ((new (...args: any[]) => string) | (() => import('element-plus').PopperEffect))[], unknown, unknown, string, boolean>;
|
|
1190
|
+
disabled: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, undefined, boolean>;
|
|
1191
|
+
clearable: BooleanConstructor;
|
|
1192
|
+
filterable: BooleanConstructor;
|
|
1193
|
+
allowCreate: BooleanConstructor;
|
|
1194
|
+
loading: BooleanConstructor;
|
|
1195
|
+
popperClass: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, string, boolean>;
|
|
1196
|
+
popperStyle: {
|
|
1197
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | import('vue').CSSProperties) | (() => string | import('vue').CSSProperties) | ((new (...args: any[]) => string | import('vue').CSSProperties) | (() => string | import('vue').CSSProperties))[], unknown, unknown>>;
|
|
1198
|
+
readonly required: false;
|
|
1199
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1200
|
+
__epPropKey: true;
|
|
1201
|
+
};
|
|
1202
|
+
popperOptions: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => Partial<import('element-plus').Options>) | (() => Partial<import('element-plus').Options>) | ((new (...args: any[]) => Partial<import('element-plus').Options>) | (() => Partial<import('element-plus').Options>))[], unknown, unknown, () => Partial<import('element-plus').Options>, boolean>;
|
|
1203
|
+
remote: BooleanConstructor;
|
|
1204
|
+
debounce: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
|
|
1205
|
+
loadingText: StringConstructor;
|
|
1206
|
+
noMatchText: StringConstructor;
|
|
1207
|
+
noDataText: StringConstructor;
|
|
1208
|
+
remoteMethod: {
|
|
1209
|
+
readonly type: import('vue').PropType<(query: string) => void>;
|
|
1210
|
+
readonly required: false;
|
|
1211
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1212
|
+
__epPropKey: true;
|
|
1213
|
+
};
|
|
1214
|
+
filterMethod: {
|
|
1215
|
+
readonly type: import('vue').PropType<(query: string) => void>;
|
|
1216
|
+
readonly required: false;
|
|
1217
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1218
|
+
__epPropKey: true;
|
|
1219
|
+
};
|
|
1220
|
+
multiple: BooleanConstructor;
|
|
1221
|
+
multipleLimit: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
|
|
1222
|
+
placeholder: {
|
|
1223
|
+
readonly type: import('vue').PropType<string>;
|
|
1224
|
+
readonly required: false;
|
|
1225
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1226
|
+
__epPropKey: true;
|
|
1227
|
+
};
|
|
1228
|
+
defaultFirstOption: BooleanConstructor;
|
|
1229
|
+
reserveKeyword: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
1230
|
+
valueKey: import('element-plus/es/utils/index.mjs').EpPropFinalized<StringConstructor, unknown, unknown, string, boolean>;
|
|
1231
|
+
collapseTags: BooleanConstructor;
|
|
1232
|
+
collapseTagsTooltip: BooleanConstructor;
|
|
1233
|
+
maxCollapseTags: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
|
|
1234
|
+
teleported: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
|
1235
|
+
persistent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
1236
|
+
clearIcon: {
|
|
1237
|
+
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>>;
|
|
1238
|
+
readonly required: false;
|
|
1239
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1240
|
+
__epPropKey: true;
|
|
1241
|
+
};
|
|
1242
|
+
fitInputWidth: BooleanConstructor;
|
|
1243
|
+
suffixIcon: {
|
|
1244
|
+
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>>;
|
|
1245
|
+
readonly required: false;
|
|
1246
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1247
|
+
__epPropKey: true;
|
|
1248
|
+
};
|
|
1249
|
+
tagType: {
|
|
1250
|
+
default: string;
|
|
1251
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "primary" | "success" | "warning" | "info" | "danger", unknown>>;
|
|
1252
|
+
required: false;
|
|
1253
|
+
validator: ((val: unknown) => boolean) | undefined;
|
|
1254
|
+
__epPropKey: true;
|
|
1255
|
+
};
|
|
1256
|
+
tagEffect: {
|
|
1257
|
+
default: string;
|
|
1258
|
+
type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "dark" | "light" | "plain", unknown>>;
|
|
1259
|
+
required: false;
|
|
1260
|
+
validator: ((val: unknown) => boolean) | undefined;
|
|
1261
|
+
__epPropKey: true;
|
|
1262
|
+
};
|
|
1263
|
+
validateEvent: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
1264
|
+
remoteShowSuffix: BooleanConstructor;
|
|
1265
|
+
showArrow: import('element-plus/es/utils/index.mjs').EpPropFinalized<BooleanConstructor, unknown, unknown, boolean, boolean>;
|
|
1266
|
+
offset: import('element-plus/es/utils/index.mjs').EpPropFinalized<NumberConstructor, unknown, unknown, number, boolean>;
|
|
1267
|
+
placement: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement) | ((new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement))[], import('element-plus').Placement, unknown, string, boolean>;
|
|
1268
|
+
fallbackPlacements: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus').Placement[]) | (() => import('element-plus').Placement[]) | ((new (...args: any[]) => import('element-plus').Placement[]) | (() => import('element-plus').Placement[]))[], unknown, unknown, string[], boolean>;
|
|
1269
|
+
tabindex: import('element-plus/es/utils/index.mjs').EpPropFinalized<(NumberConstructor | StringConstructor)[], unknown, unknown, number, boolean>;
|
|
1270
|
+
appendTo: {
|
|
1271
|
+
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>>;
|
|
1272
|
+
readonly required: false;
|
|
1273
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1274
|
+
__epPropKey: true;
|
|
1275
|
+
};
|
|
1276
|
+
options: {
|
|
1277
|
+
readonly type: import('vue').PropType<Record<string, any>[]>;
|
|
1278
|
+
readonly required: false;
|
|
1279
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1280
|
+
__epPropKey: true;
|
|
1281
|
+
};
|
|
1282
|
+
props: import('element-plus/es/utils/index.mjs').EpPropFinalized<(new (...args: any[]) => import('element-plus/es/components/select-v2/src/useProps.mjs').Props) | (() => import('element-plus/es/components/select-v2/src/useProps.mjs').Props) | ((new (...args: any[]) => import('element-plus/es/components/select-v2/src/useProps.mjs').Props) | (() => import('element-plus/es/components/select-v2/src/useProps.mjs').Props))[], unknown, unknown, () => Required<import('element-plus/es/components/select-v2/src/useProps.mjs').Props>, boolean>;
|
|
1283
|
+
}>> & {
|
|
1284
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1285
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
1286
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1287
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1288
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
1289
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
1290
|
+
"onRemove-tag"?: ((...args: any[]) => any) | undefined;
|
|
1291
|
+
"onPopup-scroll"?: ((...args: any[]) => any) | undefined;
|
|
1292
|
+
}, {
|
|
1293
|
+
modelValue: import('vue').ComputedRef<string | number | boolean | any[] | Record<string, any> | null | undefined>;
|
|
1294
|
+
selectedLabel: import('vue').ComputedRef<string | string[]>;
|
|
1295
|
+
calculatorRef: import('vue').ShallowRef<HTMLElement | undefined>;
|
|
1296
|
+
inputStyle: import('vue').ComputedRef<{
|
|
1297
|
+
minWidth: string;
|
|
1298
|
+
}>;
|
|
1299
|
+
getLabel: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => any;
|
|
1300
|
+
getValue: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => any;
|
|
1301
|
+
getOptions: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => any;
|
|
1302
|
+
getDisabled: (option: import('element-plus/es/components/select-v2/src/select.types.mjs').Option) => any;
|
|
1303
|
+
getOptionProps: (option: Record<string, any>) => {
|
|
1304
|
+
label: any;
|
|
1305
|
+
value: any;
|
|
1306
|
+
disabled: any;
|
|
1307
|
+
};
|
|
1308
|
+
inputId: import('vue').Ref<string | undefined>;
|
|
1309
|
+
contentId: import('vue').Ref<string>;
|
|
1310
|
+
nsSelect: {
|
|
1311
|
+
namespace: import('vue').ComputedRef<string>;
|
|
1312
|
+
b: (blockSuffix?: string) => string;
|
|
1313
|
+
e: (element?: string) => string;
|
|
1314
|
+
m: (modifier?: string) => string;
|
|
1315
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
1316
|
+
em: (element?: string, modifier?: string) => string;
|
|
1317
|
+
bm: (blockSuffix?: string, modifier?: string) => string;
|
|
1318
|
+
bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
|
|
1319
|
+
is: {
|
|
1320
|
+
(name: string, state: boolean | undefined): string;
|
|
1321
|
+
(name: string): string;
|
|
1322
|
+
};
|
|
1323
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
1324
|
+
cssVarName: (name: string) => string;
|
|
1325
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
1326
|
+
cssVarBlockName: (name: string) => string;
|
|
1327
|
+
};
|
|
1328
|
+
nsInput: {
|
|
1329
|
+
namespace: import('vue').ComputedRef<string>;
|
|
1330
|
+
b: (blockSuffix?: string) => string;
|
|
1331
|
+
e: (element?: string) => string;
|
|
1332
|
+
m: (modifier?: string) => string;
|
|
1333
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
1334
|
+
em: (element?: string, modifier?: string) => string;
|
|
1335
|
+
bm: (blockSuffix?: string, modifier?: string) => string;
|
|
1336
|
+
bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
|
|
1337
|
+
is: {
|
|
1338
|
+
(name: string, state: boolean | undefined): string;
|
|
1339
|
+
(name: string): string;
|
|
1340
|
+
};
|
|
1341
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
1342
|
+
cssVarName: (name: string) => string;
|
|
1343
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
1344
|
+
cssVarBlockName: (name: string) => string;
|
|
1345
|
+
};
|
|
1346
|
+
states: {
|
|
1347
|
+
inputValue: string;
|
|
1348
|
+
options: Map<import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>, import('element-plus').OptionPublicInstance> & Omit<Map<import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>, import('element-plus').OptionPublicInstance>, keyof Map<any, any>>;
|
|
1349
|
+
cachedOptions: Map<import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>, import('element-plus').OptionPublicInstance> & Omit<Map<import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>, import('element-plus').OptionPublicInstance>, keyof Map<any, any>>;
|
|
1350
|
+
optionValues: import('element-plus/es/components/select/src/type.mjs').OptionValue[];
|
|
1351
|
+
selected: {
|
|
1352
|
+
index: number;
|
|
1353
|
+
value: import('element-plus/es/components/select/src/type.mjs').OptionValue;
|
|
1354
|
+
currentLabel: import('element-plus').OptionPublicInstance["currentLabel"];
|
|
1355
|
+
isDisabled?: import('element-plus').OptionPublicInstance["isDisabled"] | undefined;
|
|
1356
|
+
}[];
|
|
1357
|
+
hoveringIndex: number;
|
|
1358
|
+
inputHovering: boolean;
|
|
1359
|
+
selectionWidth: number;
|
|
1360
|
+
collapseItemWidth: number;
|
|
1361
|
+
previousQuery: string | null;
|
|
1362
|
+
selectedLabel: string;
|
|
1363
|
+
menuVisibleOnFocus: boolean;
|
|
1364
|
+
isBeforeHide: boolean;
|
|
1365
|
+
};
|
|
1366
|
+
isFocused: import('vue').Ref<boolean>;
|
|
1367
|
+
expanded: import('vue').Ref<boolean>;
|
|
1368
|
+
optionsArray: import('vue').ComputedRef<import('element-plus').OptionPublicInstance[]>;
|
|
1369
|
+
hoverOption: import('vue').Ref<any>;
|
|
1370
|
+
selectSize: import('vue').ComputedRef<"" | "small" | "default" | "large">;
|
|
1371
|
+
filteredOptionsCount: import('vue').ComputedRef<number>;
|
|
1372
|
+
updateTooltip: () => void;
|
|
1373
|
+
updateTagTooltip: () => void;
|
|
1374
|
+
debouncedOnInputChange: import('@vueuse/core').PromisifyFn<() => void>;
|
|
1375
|
+
onInput: (event: Event) => void;
|
|
1376
|
+
deletePrevTag: (e: KeyboardEvent) => void;
|
|
1377
|
+
deleteTag: (event: MouseEvent, tag: import('element-plus').OptionBasic) => void;
|
|
1378
|
+
deleteSelected: (event: Event) => void;
|
|
1379
|
+
handleOptionSelect: (option: import('element-plus').OptionPublicInstance) => void;
|
|
1380
|
+
scrollToOption: (option: import('element-plus').OptionPublicInstance | import('element-plus').OptionPublicInstance[] | import('element-plus/es/components/select/src/type.mjs').SelectStates["selected"]) => void;
|
|
1381
|
+
hasModelValue: import('vue').ComputedRef<boolean>;
|
|
1382
|
+
shouldShowPlaceholder: import('vue').ComputedRef<boolean>;
|
|
1383
|
+
currentPlaceholder: import('vue').ComputedRef<string>;
|
|
1384
|
+
mouseEnterEventName: import('vue').ComputedRef<"mouseenter" | null>;
|
|
1385
|
+
needStatusIcon: import('vue').ComputedRef<boolean>;
|
|
1386
|
+
showClearBtn: import('vue').ComputedRef<boolean>;
|
|
1387
|
+
iconComponent: import('vue').ComputedRef<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> | undefined>;
|
|
1388
|
+
iconReverse: import('vue').ComputedRef<string>;
|
|
1389
|
+
validateState: import('vue').ComputedRef<"" | "error" | "success" | "validating">;
|
|
1390
|
+
validateIcon: import('vue').ComputedRef<"" | import('vue').Component>;
|
|
1391
|
+
showNewOption: import('vue').ComputedRef<boolean>;
|
|
1392
|
+
updateOptions: () => void;
|
|
1393
|
+
collapseTagSize: import('vue').ComputedRef<"default" | "small">;
|
|
1394
|
+
setSelected: () => void;
|
|
1395
|
+
selectDisabled: import('vue').ComputedRef<boolean>;
|
|
1396
|
+
emptyText: import('vue').ComputedRef<string | null>;
|
|
1397
|
+
handleCompositionStart: (event: CompositionEvent) => void;
|
|
1398
|
+
handleCompositionUpdate: (event: CompositionEvent) => void;
|
|
1399
|
+
handleCompositionEnd: (event: CompositionEvent) => void;
|
|
1400
|
+
handleKeydown: (e: KeyboardEvent) => void;
|
|
1401
|
+
onOptionCreate: (vm: import('element-plus').OptionPublicInstance) => void;
|
|
1402
|
+
onOptionDestroy: (key: import('element-plus/es/components/select/src/type.mjs').OptionValue, vm: import('element-plus').OptionPublicInstance) => void;
|
|
1403
|
+
handleMenuEnter: () => void;
|
|
1404
|
+
focus: () => void;
|
|
1405
|
+
blur: () => void;
|
|
1406
|
+
handleClearClick: (event: Event) => void;
|
|
1407
|
+
handleClickOutside: (event: Event) => void;
|
|
1408
|
+
handleEsc: () => void;
|
|
1409
|
+
toggleMenu: (event?: Event) => void;
|
|
1410
|
+
selectOption: () => void;
|
|
1411
|
+
getValueKey: (item: import('element-plus').OptionPublicInstance | import('element-plus/es/components/select/src/type.mjs').SelectStates["selected"][0]) => any;
|
|
1412
|
+
navigateOptions: (direction: "prev" | "next") => void;
|
|
1413
|
+
dropdownMenuVisible: import('vue').WritableComputedRef<boolean>;
|
|
1414
|
+
showTagList: import('vue').ComputedRef<{
|
|
1415
|
+
index: number;
|
|
1416
|
+
value: import('element-plus/es/components/select/src/type.mjs').OptionValue;
|
|
1417
|
+
currentLabel: import('element-plus').OptionPublicInstance["currentLabel"];
|
|
1418
|
+
isDisabled?: import('element-plus').OptionPublicInstance["isDisabled"] | undefined;
|
|
1419
|
+
}[]>;
|
|
1420
|
+
collapseTagList: import('vue').ComputedRef<{
|
|
1421
|
+
index: number;
|
|
1422
|
+
value: import('element-plus/es/components/select/src/type.mjs').OptionValue;
|
|
1423
|
+
currentLabel: import('element-plus').OptionPublicInstance["currentLabel"];
|
|
1424
|
+
isDisabled?: import('element-plus').OptionPublicInstance["isDisabled"] | undefined;
|
|
1425
|
+
}[]>;
|
|
1426
|
+
popupScroll: (data: {
|
|
1427
|
+
scrollTop: number;
|
|
1428
|
+
scrollLeft: number;
|
|
1429
|
+
}) => void;
|
|
1430
|
+
getOption: (value: import('element-plus/es/components/select/src/type.mjs').OptionValue) => {
|
|
1431
|
+
index: number;
|
|
1432
|
+
value: import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>;
|
|
1433
|
+
currentLabel: any;
|
|
1434
|
+
} | {
|
|
1435
|
+
index: number;
|
|
1436
|
+
value: import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>;
|
|
1437
|
+
currentLabel: string | number | boolean;
|
|
1438
|
+
readonly isDisabled: boolean;
|
|
1439
|
+
};
|
|
1440
|
+
tagStyle: import('vue').ComputedRef<{
|
|
1441
|
+
maxWidth: string;
|
|
1442
|
+
}>;
|
|
1443
|
+
collapseTagStyle: import('vue').ComputedRef<{
|
|
1444
|
+
maxWidth: string;
|
|
1445
|
+
}>;
|
|
1446
|
+
popperRef: import('vue').ComputedRef<HTMLElement | undefined>;
|
|
1447
|
+
inputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
1448
|
+
tooltipRef: import('vue').Ref<import('element-plus').TooltipInstance | undefined>;
|
|
1449
|
+
tagTooltipRef: import('vue').Ref<import('element-plus').TooltipInstance | undefined>;
|
|
1450
|
+
prefixRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1451
|
+
suffixRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1452
|
+
selectRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1453
|
+
wrapperRef: import('vue').ShallowRef<HTMLElement | undefined>;
|
|
1454
|
+
selectionRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1455
|
+
scrollbarRef: import('vue').Ref<import('element-plus').ScrollbarInstance | undefined>;
|
|
1456
|
+
menuRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1457
|
+
tagMenuRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1458
|
+
collapseItemRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1459
|
+
}, {}, {}, {}, {
|
|
1460
|
+
disabled: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1461
|
+
tabindex: import('element-plus/es/utils/index.mjs').EpPropMergeType<(NumberConstructor | StringConstructor)[], unknown, unknown>;
|
|
1462
|
+
offset: number;
|
|
1463
|
+
multiple: boolean;
|
|
1464
|
+
props: import('element-plus/es/components/select-v2/src/useProps.mjs').Props;
|
|
1465
|
+
loading: boolean;
|
|
1466
|
+
modelValue: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number | boolean | Record<string, any> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>[]) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>[] | null) | ((new (...args: any[]) => string | number | boolean | Record<string, any> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>[]) | (() => import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown> | import('element-plus/es/utils/index.mjs').EpPropMergeType<(ObjectConstructor | NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown>[] | null))[], unknown, unknown>;
|
|
1467
|
+
placement: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement) | ((new (...args: any[]) => "left" | "right" | "top" | "bottom" | "auto" | "auto-start" | "auto-end" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "right-start" | "right-end" | "left-start" | "left-end") | (() => import('element-plus').Placement))[], import('element-plus').Placement, unknown>;
|
|
1468
|
+
effect: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string) | (() => import('element-plus').PopperEffect) | ((new (...args: any[]) => string) | (() => import('element-plus').PopperEffect))[], unknown, unknown>;
|
|
1469
|
+
valueOnClear: import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null))[], unknown, unknown>;
|
|
1470
|
+
teleported: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1471
|
+
autocomplete: string;
|
|
1472
|
+
validateEvent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1473
|
+
clearable: boolean;
|
|
1474
|
+
fallbackPlacements: import('element-plus').Placement[];
|
|
1475
|
+
popperOptions: Partial<import('element-plus').Options>;
|
|
1476
|
+
popperClass: string;
|
|
1477
|
+
persistent: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1478
|
+
showArrow: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1479
|
+
valueKey: string;
|
|
1480
|
+
debounce: number;
|
|
1481
|
+
fitInputWidth: boolean;
|
|
1482
|
+
automaticDropdown: boolean;
|
|
1483
|
+
filterable: boolean;
|
|
1484
|
+
collapseTags: boolean;
|
|
1485
|
+
maxCollapseTags: number;
|
|
1486
|
+
collapseTagsTooltip: boolean;
|
|
1487
|
+
tagType: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "primary" | "success" | "warning" | "info" | "danger", unknown>;
|
|
1488
|
+
tagEffect: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "dark" | "light" | "plain", unknown>;
|
|
1489
|
+
multipleLimit: number;
|
|
1490
|
+
reserveKeyword: import('element-plus/es/utils/index.mjs').EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
1491
|
+
allowCreate: boolean;
|
|
1492
|
+
defaultFirstOption: boolean;
|
|
1493
|
+
remote: boolean;
|
|
1494
|
+
remoteShowSuffix: boolean;
|
|
1495
|
+
}> | null;
|
|
1496
|
+
}, any, import('vue').ComponentProvideOptions, {
|
|
1497
|
+
P: {};
|
|
1498
|
+
B: {};
|
|
1499
|
+
D: {};
|
|
1500
|
+
C: {};
|
|
1501
|
+
M: {};
|
|
1502
|
+
Defaults: {};
|
|
1503
|
+
}, Readonly<{
|
|
1504
|
+
modelValue?: any;
|
|
1505
|
+
} & import('./select/props').SelectProps> & Readonly<{
|
|
1506
|
+
onChange?: ((args_0: {
|
|
1507
|
+
value: any;
|
|
1508
|
+
options: any[];
|
|
1509
|
+
}) => any) | undefined;
|
|
1510
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
1511
|
+
}>, {}, {}, {}, {}, {
|
|
1512
|
+
size: import('..').ComponentSize;
|
|
1513
|
+
disabled: boolean;
|
|
1514
|
+
placeholder: string;
|
|
1515
|
+
clearable: boolean;
|
|
1516
|
+
multiple: boolean;
|
|
1517
|
+
collapseTags: boolean;
|
|
1518
|
+
collapseTagsTooltip: boolean;
|
|
1519
|
+
emptyValues: any[];
|
|
1520
|
+
stringEmpty: boolean;
|
|
1521
|
+
locale: any;
|
|
1522
|
+
maxLength: number;
|
|
1523
|
+
}>;
|
|
1524
|
+
__isFragment?: never;
|
|
1525
|
+
__isTeleport?: never;
|
|
1526
|
+
__isSuspense?: never;
|
|
1527
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
1528
|
+
modelValue?: any;
|
|
1529
|
+
} & import('./select/props').SelectProps> & Readonly<{
|
|
1530
|
+
onChange?: ((args_0: {
|
|
1531
|
+
value: any;
|
|
1532
|
+
options: any[];
|
|
1533
|
+
}) => any) | undefined;
|
|
1534
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
1535
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1536
|
+
change: (args_0: {
|
|
1537
|
+
value: any;
|
|
1538
|
+
options: any[];
|
|
1539
|
+
}) => any;
|
|
1540
|
+
"update:modelValue": (value: any) => any;
|
|
1541
|
+
}, string, {
|
|
1542
|
+
size: import('..').ComponentSize;
|
|
1543
|
+
disabled: boolean;
|
|
1544
|
+
placeholder: string;
|
|
1545
|
+
clearable: boolean;
|
|
1546
|
+
multiple: boolean;
|
|
1547
|
+
collapseTags: boolean;
|
|
1548
|
+
collapseTagsTooltip: boolean;
|
|
1549
|
+
emptyValues: any[];
|
|
1550
|
+
stringEmpty: boolean;
|
|
1551
|
+
locale: any;
|
|
1552
|
+
maxLength: number;
|
|
1553
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1554
|
+
$slots: {
|
|
1555
|
+
header?(_: {}): any;
|
|
1556
|
+
default?(_: {
|
|
1557
|
+
item: any;
|
|
1558
|
+
}): any;
|
|
1559
|
+
default?(_: {
|
|
1560
|
+
item: import('..').OptionsItem;
|
|
1561
|
+
}): any;
|
|
1562
|
+
footer?(_: {}): any;
|
|
1563
|
+
tag?(_: {
|
|
1564
|
+
data: any;
|
|
1565
|
+
}): any;
|
|
1566
|
+
};
|
|
1567
|
+
});
|
|
1568
|
+
Cell: {
|
|
1569
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./cell/props').CellProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
1570
|
+
P: {};
|
|
1571
|
+
B: {};
|
|
1572
|
+
D: {};
|
|
1573
|
+
C: {};
|
|
1574
|
+
M: {};
|
|
1575
|
+
Defaults: {};
|
|
1576
|
+
}, Readonly<import('./cell/props').CellProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
1577
|
+
__isFragment?: never;
|
|
1578
|
+
__isTeleport?: never;
|
|
1579
|
+
__isSuspense?: never;
|
|
1580
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./cell/props').CellProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1581
|
+
$slots: {
|
|
1582
|
+
default?(_: {}): any;
|
|
1583
|
+
};
|
|
1584
|
+
});
|
|
1585
|
+
CellGroup: {
|
|
1586
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./cell/props').CellGroupProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
1587
|
+
background: string;
|
|
1588
|
+
labelWidth: string | number;
|
|
1589
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
1590
|
+
P: {};
|
|
1591
|
+
B: {};
|
|
1592
|
+
D: {};
|
|
1593
|
+
C: {};
|
|
1594
|
+
M: {};
|
|
1595
|
+
Defaults: {};
|
|
1596
|
+
}, Readonly<import('./cell/props').CellGroupProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
1597
|
+
background: string;
|
|
1598
|
+
labelWidth: string | number;
|
|
1599
|
+
}>;
|
|
1600
|
+
__isFragment?: never;
|
|
1601
|
+
__isTeleport?: never;
|
|
1602
|
+
__isSuspense?: never;
|
|
1603
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./cell/props').CellGroupProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
1604
|
+
background: string;
|
|
1605
|
+
labelWidth: string | number;
|
|
1606
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1607
|
+
$slots: {
|
|
1608
|
+
default?(_: {}): any;
|
|
1609
|
+
};
|
|
1610
|
+
});
|
|
1611
|
+
Status: {
|
|
1612
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./status/props').StatusProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
1613
|
+
type: import('..').ComponentType;
|
|
1614
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLSpanElement, import('vue').ComponentProvideOptions, {
|
|
1615
|
+
P: {};
|
|
1616
|
+
B: {};
|
|
1617
|
+
D: {};
|
|
1618
|
+
C: {};
|
|
1619
|
+
M: {};
|
|
1620
|
+
Defaults: {};
|
|
1621
|
+
}, Readonly<import('./status/props').StatusProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
1622
|
+
type: import('..').ComponentType;
|
|
1623
|
+
}>;
|
|
1624
|
+
__isFragment?: never;
|
|
1625
|
+
__isTeleport?: never;
|
|
1626
|
+
__isSuspense?: never;
|
|
1627
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./status/props').StatusProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
1628
|
+
type: import('..').ComponentType;
|
|
1629
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1630
|
+
$slots: {
|
|
1631
|
+
default?(_: {}): any;
|
|
1632
|
+
};
|
|
1633
|
+
});
|
|
1634
|
+
Container: {
|
|
1635
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./container/props').ContainerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
1636
|
+
P: {};
|
|
1637
|
+
B: {};
|
|
1638
|
+
D: {};
|
|
1639
|
+
C: {};
|
|
1640
|
+
M: {};
|
|
1641
|
+
Defaults: {};
|
|
1642
|
+
}, Readonly<import('./container/props').ContainerProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
1643
|
+
__isFragment?: never;
|
|
1644
|
+
__isTeleport?: never;
|
|
1645
|
+
__isSuspense?: never;
|
|
1646
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./container/props').ContainerProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1647
|
+
$slots: {
|
|
1648
|
+
header?(_: {}): any;
|
|
1649
|
+
default?(_: {}): any;
|
|
1650
|
+
footer?(_: {}): any;
|
|
1651
|
+
};
|
|
1652
|
+
});
|
|
1653
|
+
Pagination: import('vue').DefineComponent<{
|
|
1654
|
+
pageSize?: number;
|
|
1655
|
+
pageNum?: number;
|
|
1656
|
+
} & import('./pagination/props').PaginationProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1657
|
+
change: () => any;
|
|
1658
|
+
"update:pageSize": (value: number) => any;
|
|
1659
|
+
"update:pageNum": (value: number) => any;
|
|
1660
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
1661
|
+
pageSize?: number;
|
|
1662
|
+
pageNum?: number;
|
|
1663
|
+
} & import('./pagination/props').PaginationProps> & Readonly<{
|
|
1664
|
+
onChange?: (() => any) | undefined;
|
|
1665
|
+
"onUpdate:pageSize"?: ((value: number) => any) | undefined;
|
|
1666
|
+
"onUpdate:pageNum"?: ((value: number) => any) | undefined;
|
|
1667
|
+
}>, {
|
|
1668
|
+
size: import('..').ComponentSize;
|
|
1669
|
+
locale: any;
|
|
1670
|
+
total: number;
|
|
1671
|
+
layout: string;
|
|
1672
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
1673
|
+
SearchInput: import('vue').DefineComponent<{
|
|
1674
|
+
modelValue?: string;
|
|
1675
|
+
} & import('./search-input/props').SearchInputProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1676
|
+
search: (value?: string | undefined) => any;
|
|
1677
|
+
"update:modelValue": (value: string) => any;
|
|
1678
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
1679
|
+
modelValue?: string;
|
|
1680
|
+
} & import('./search-input/props').SearchInputProps> & Readonly<{
|
|
1681
|
+
onSearch?: ((value?: string | undefined) => any) | undefined;
|
|
1682
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1683
|
+
}>, {
|
|
1684
|
+
width: string | number;
|
|
1685
|
+
size: import('..').ComponentSize;
|
|
1686
|
+
placeholder: string;
|
|
1687
|
+
searchText: string;
|
|
1688
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1689
|
+
FilterItem: {
|
|
1690
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./filter/props').FilterItemProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
1691
|
+
filterItemRef: HTMLDivElement;
|
|
1692
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
1693
|
+
P: {};
|
|
1694
|
+
B: {};
|
|
1695
|
+
D: {};
|
|
1696
|
+
C: {};
|
|
1697
|
+
M: {};
|
|
1698
|
+
Defaults: {};
|
|
1699
|
+
}, Readonly<import('./filter/props').FilterItemProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
|
|
1700
|
+
__isFragment?: never;
|
|
1701
|
+
__isTeleport?: never;
|
|
1702
|
+
__isSuspense?: never;
|
|
1703
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./filter/props').FilterItemProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1704
|
+
$slots: {
|
|
1705
|
+
default?(_: {}): any;
|
|
1706
|
+
};
|
|
1707
|
+
});
|
|
1708
|
+
FilterGroup: {
|
|
1709
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./filter/props').FilterGroupProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
1710
|
+
minWidth: string | number;
|
|
1711
|
+
direction: "column" | "row";
|
|
1712
|
+
gap: string | number;
|
|
1713
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
1714
|
+
filterGroupRef: HTMLDivElement;
|
|
1715
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
1716
|
+
P: {};
|
|
1717
|
+
B: {};
|
|
1718
|
+
D: {};
|
|
1719
|
+
C: {};
|
|
1720
|
+
M: {};
|
|
1721
|
+
Defaults: {};
|
|
1722
|
+
}, Readonly<import('./filter/props').FilterGroupProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
1723
|
+
minWidth: string | number;
|
|
1724
|
+
direction: "column" | "row";
|
|
1725
|
+
gap: string | number;
|
|
1726
|
+
}>;
|
|
1727
|
+
__isFragment?: never;
|
|
1728
|
+
__isTeleport?: never;
|
|
1729
|
+
__isSuspense?: never;
|
|
1730
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./filter/props').FilterGroupProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
1731
|
+
minWidth: string | number;
|
|
1732
|
+
direction: "column" | "row";
|
|
1733
|
+
gap: string | number;
|
|
1734
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1735
|
+
$slots: {
|
|
1736
|
+
default?(_: {}): any;
|
|
1737
|
+
};
|
|
1738
|
+
});
|
|
1739
|
+
Tabs: {
|
|
1740
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1741
|
+
modelValue?: any;
|
|
1742
|
+
} & import('./tabs/props').TabsProps> & Readonly<{
|
|
1743
|
+
onChange?: ((value?: any) => any) | undefined;
|
|
1744
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
1745
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1746
|
+
change: (value?: any) => any;
|
|
1747
|
+
"update:modelValue": (value: any) => any;
|
|
1748
|
+
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
1749
|
+
P: {};
|
|
1750
|
+
B: {};
|
|
1751
|
+
D: {};
|
|
1752
|
+
C: {};
|
|
1753
|
+
M: {};
|
|
1754
|
+
Defaults: {};
|
|
1755
|
+
}, Readonly<{
|
|
1756
|
+
modelValue?: any;
|
|
1757
|
+
} & import('./tabs/props').TabsProps> & Readonly<{
|
|
1758
|
+
onChange?: ((value?: any) => any) | undefined;
|
|
1759
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
1760
|
+
}>, {}, {}, {}, {}, {}>;
|
|
1761
|
+
__isFragment?: never;
|
|
1762
|
+
__isTeleport?: never;
|
|
1763
|
+
__isSuspense?: never;
|
|
1764
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
1765
|
+
modelValue?: any;
|
|
1766
|
+
} & import('./tabs/props').TabsProps> & Readonly<{
|
|
1767
|
+
onChange?: ((value?: any) => any) | undefined;
|
|
1768
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
1769
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1770
|
+
change: (value?: any) => any;
|
|
1771
|
+
"update:modelValue": (value: any) => any;
|
|
1772
|
+
}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1773
|
+
$slots: {
|
|
1774
|
+
default?(_: {
|
|
1775
|
+
data: import('..').OptionsItem;
|
|
1776
|
+
}): any;
|
|
1777
|
+
};
|
|
1778
|
+
});
|
|
1779
|
+
TooltipText: import('vue').DefineComponent<import('./tooltip-text/props').TooltipTextProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('./tooltip-text/props').TooltipTextProps> & Readonly<{}>, {
|
|
1780
|
+
width: string | number;
|
|
1781
|
+
effect: "dark" | "light";
|
|
1782
|
+
truncated: boolean;
|
|
1783
|
+
fontSize: number;
|
|
1784
|
+
fontWeight: boolean;
|
|
1785
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
1786
|
+
tooltipTextRef: HTMLDivElement;
|
|
1787
|
+
}, HTMLDivElement>;
|
|
1788
|
+
FileItem: {
|
|
1789
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./file/props').FileItemProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
1790
|
+
pdfIcon: string;
|
|
1791
|
+
imageIcon: string;
|
|
1792
|
+
wordIcon: string;
|
|
1793
|
+
zipIcon: string;
|
|
1794
|
+
excelIcon: string;
|
|
1795
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
1796
|
+
P: {};
|
|
1797
|
+
B: {};
|
|
1798
|
+
D: {};
|
|
1799
|
+
C: {};
|
|
1800
|
+
M: {};
|
|
1801
|
+
Defaults: {};
|
|
1802
|
+
}, Readonly<import('./file/props').FileItemProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
1803
|
+
pdfIcon: string;
|
|
1804
|
+
imageIcon: string;
|
|
1805
|
+
wordIcon: string;
|
|
1806
|
+
zipIcon: string;
|
|
1807
|
+
excelIcon: string;
|
|
1808
|
+
}>;
|
|
1809
|
+
__isFragment?: never;
|
|
1810
|
+
__isTeleport?: never;
|
|
1811
|
+
__isSuspense?: never;
|
|
1812
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('./file/props').FileItemProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
1813
|
+
pdfIcon: string;
|
|
1814
|
+
imageIcon: string;
|
|
1815
|
+
wordIcon: string;
|
|
1816
|
+
zipIcon: string;
|
|
1817
|
+
excelIcon: string;
|
|
1818
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1819
|
+
$slots: {
|
|
1820
|
+
default?(_: {}): any;
|
|
1821
|
+
};
|
|
1822
|
+
});
|
|
1823
|
+
FileList: import('vue').DefineComponent<import('./file/props').FileListProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('./file/props').FileListProps> & Readonly<{}>, {
|
|
1824
|
+
width: string | number;
|
|
1825
|
+
row: number;
|
|
1826
|
+
direction: "column" | "row";
|
|
1827
|
+
gap: number;
|
|
1828
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1829
|
+
CountDown: import('vue').DefineComponent<import('./count-down/props').CountDownProps, {
|
|
1830
|
+
endCountDown: () => void;
|
|
1831
|
+
startCountDown: () => void;
|
|
1832
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('./count-down/props').CountDownProps> & Readonly<{}>, {
|
|
1833
|
+
type: import('..').ComponentType;
|
|
1834
|
+
defaultText: string;
|
|
1835
|
+
countDownNum: number;
|
|
1836
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
1837
|
+
Dialog: {
|
|
1838
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1839
|
+
modelValue?: boolean;
|
|
1840
|
+
} & import('./dialog/props').DialogProps> & Readonly<{
|
|
1841
|
+
onConfirm?: (() => any) | undefined;
|
|
1842
|
+
onClose?: (() => any) | undefined;
|
|
1843
|
+
onCancel?: (() => any) | undefined;
|
|
1844
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1845
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1846
|
+
confirm: () => any;
|
|
1847
|
+
close: () => any;
|
|
1848
|
+
cancel: () => any;
|
|
1849
|
+
"update:modelValue": (value: boolean) => any;
|
|
1850
|
+
}, import('vue').PublicProps, {
|
|
1851
|
+
width: string | number;
|
|
1852
|
+
showConfirmButton: boolean;
|
|
1853
|
+
showCancelButton: boolean;
|
|
1854
|
+
cancelButtonText: string;
|
|
1855
|
+
confirmButtonText: string;
|
|
1856
|
+
showClose: boolean;
|
|
1857
|
+
borderRadius: string | number;
|
|
1858
|
+
top: string | number;
|
|
1859
|
+
confirmButtonType: import('..').ComponentType;
|
|
1860
|
+
confirmButtonSize: import('..').ComponentSize;
|
|
1861
|
+
cancelButtonType: import('..').ComponentType;
|
|
1862
|
+
cancelButtonSize: import('..').ComponentSize;
|
|
1863
|
+
showButton: boolean;
|
|
1864
|
+
closeOnClickModal: boolean;
|
|
1865
|
+
closeOnPressEscape: boolean;
|
|
1866
|
+
closeOnCancelButton: boolean;
|
|
1867
|
+
closeOnClickCloseIcon: boolean;
|
|
1868
|
+
fullscreen: boolean;
|
|
1869
|
+
closeIconSize: string | number;
|
|
1870
|
+
closeIconColor: string;
|
|
1871
|
+
background: string;
|
|
1872
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1873
|
+
P: {};
|
|
1874
|
+
B: {};
|
|
1875
|
+
D: {};
|
|
1876
|
+
C: {};
|
|
1877
|
+
M: {};
|
|
1878
|
+
Defaults: {};
|
|
1879
|
+
}, Readonly<{
|
|
1880
|
+
modelValue?: boolean;
|
|
1881
|
+
} & import('./dialog/props').DialogProps> & Readonly<{
|
|
1882
|
+
onConfirm?: (() => any) | undefined;
|
|
1883
|
+
onClose?: (() => any) | undefined;
|
|
1884
|
+
onCancel?: (() => any) | undefined;
|
|
1885
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1886
|
+
}>, {}, {}, {}, {}, {
|
|
1887
|
+
width: string | number;
|
|
1888
|
+
showConfirmButton: boolean;
|
|
1889
|
+
showCancelButton: boolean;
|
|
1890
|
+
cancelButtonText: string;
|
|
1891
|
+
confirmButtonText: string;
|
|
1892
|
+
showClose: boolean;
|
|
1893
|
+
borderRadius: string | number;
|
|
1894
|
+
top: string | number;
|
|
1895
|
+
confirmButtonType: import('..').ComponentType;
|
|
1896
|
+
confirmButtonSize: import('..').ComponentSize;
|
|
1897
|
+
cancelButtonType: import('..').ComponentType;
|
|
1898
|
+
cancelButtonSize: import('..').ComponentSize;
|
|
1899
|
+
showButton: boolean;
|
|
1900
|
+
closeOnClickModal: boolean;
|
|
1901
|
+
closeOnPressEscape: boolean;
|
|
1902
|
+
closeOnCancelButton: boolean;
|
|
1903
|
+
closeOnClickCloseIcon: boolean;
|
|
1904
|
+
fullscreen: boolean;
|
|
1905
|
+
closeIconSize: string | number;
|
|
1906
|
+
closeIconColor: string;
|
|
1907
|
+
background: string;
|
|
1908
|
+
}>;
|
|
1909
|
+
__isFragment?: never;
|
|
1910
|
+
__isTeleport?: never;
|
|
1911
|
+
__isSuspense?: never;
|
|
1912
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
1913
|
+
modelValue?: boolean;
|
|
1914
|
+
} & import('./dialog/props').DialogProps> & Readonly<{
|
|
1915
|
+
onConfirm?: (() => any) | undefined;
|
|
1916
|
+
onClose?: (() => any) | undefined;
|
|
1917
|
+
onCancel?: (() => any) | undefined;
|
|
1918
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1919
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1920
|
+
confirm: () => any;
|
|
1921
|
+
close: () => any;
|
|
1922
|
+
cancel: () => any;
|
|
1923
|
+
"update:modelValue": (value: boolean) => any;
|
|
1924
|
+
}, string, {
|
|
1925
|
+
width: string | number;
|
|
1926
|
+
showConfirmButton: boolean;
|
|
1927
|
+
showCancelButton: boolean;
|
|
1928
|
+
cancelButtonText: string;
|
|
1929
|
+
confirmButtonText: string;
|
|
1930
|
+
showClose: boolean;
|
|
1931
|
+
borderRadius: string | number;
|
|
1932
|
+
top: string | number;
|
|
1933
|
+
confirmButtonType: import('..').ComponentType;
|
|
1934
|
+
confirmButtonSize: import('..').ComponentSize;
|
|
1935
|
+
cancelButtonType: import('..').ComponentType;
|
|
1936
|
+
cancelButtonSize: import('..').ComponentSize;
|
|
1937
|
+
showButton: boolean;
|
|
1938
|
+
closeOnClickModal: boolean;
|
|
1939
|
+
closeOnPressEscape: boolean;
|
|
1940
|
+
closeOnCancelButton: boolean;
|
|
1941
|
+
closeOnClickCloseIcon: boolean;
|
|
1942
|
+
fullscreen: boolean;
|
|
1943
|
+
closeIconSize: string | number;
|
|
1944
|
+
closeIconColor: string;
|
|
1945
|
+
background: string;
|
|
1946
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1947
|
+
$slots: {
|
|
1948
|
+
header?(_: {}): any;
|
|
1949
|
+
default?(_: {}): any;
|
|
1950
|
+
default?(_: {}): any;
|
|
1951
|
+
footer?(_: {}): any;
|
|
1952
|
+
};
|
|
1953
|
+
});
|
|
1954
|
+
Drawer: {
|
|
1955
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1956
|
+
modelValue?: boolean;
|
|
1957
|
+
} & import('./drawer/props').DrawerProps> & Readonly<{
|
|
1958
|
+
onConfirm?: (() => any) | undefined;
|
|
1959
|
+
onClose?: (() => any) | undefined;
|
|
1960
|
+
onCancel?: (() => any) | undefined;
|
|
1961
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1962
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1963
|
+
confirm: () => any;
|
|
1964
|
+
close: () => any;
|
|
1965
|
+
cancel: () => any;
|
|
1966
|
+
"update:modelValue": (value: boolean) => any;
|
|
1967
|
+
}, import('vue').PublicProps, {
|
|
1968
|
+
width: string | number;
|
|
1969
|
+
showConfirmButton: boolean;
|
|
1970
|
+
showCancelButton: boolean;
|
|
1971
|
+
cancelButtonText: string;
|
|
1972
|
+
confirmButtonText: string;
|
|
1973
|
+
showClose: boolean;
|
|
1974
|
+
borderRadius: string | number;
|
|
1975
|
+
top: string | number;
|
|
1976
|
+
confirmButtonType: import('..').ComponentType;
|
|
1977
|
+
confirmButtonSize: import('..').ComponentSize;
|
|
1978
|
+
cancelButtonType: import('..').ComponentType;
|
|
1979
|
+
cancelButtonSize: import('..').ComponentSize;
|
|
1980
|
+
showButton: boolean;
|
|
1981
|
+
closeOnClickModal: boolean;
|
|
1982
|
+
closeOnPressEscape: boolean;
|
|
1983
|
+
closeOnCancelButton: boolean;
|
|
1984
|
+
closeOnClickCloseIcon: boolean;
|
|
1985
|
+
fullscreen: boolean;
|
|
1986
|
+
closeIconSize: string | number;
|
|
1987
|
+
closeIconColor: string;
|
|
1988
|
+
background: string;
|
|
1989
|
+
direction: "rtl" | "ltr" | "ttb" | "btt";
|
|
1990
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
1991
|
+
P: {};
|
|
1992
|
+
B: {};
|
|
1993
|
+
D: {};
|
|
1994
|
+
C: {};
|
|
1995
|
+
M: {};
|
|
1996
|
+
Defaults: {};
|
|
1997
|
+
}, Readonly<{
|
|
1998
|
+
modelValue?: boolean;
|
|
1999
|
+
} & import('./drawer/props').DrawerProps> & Readonly<{
|
|
2000
|
+
onConfirm?: (() => any) | undefined;
|
|
2001
|
+
onClose?: (() => any) | undefined;
|
|
2002
|
+
onCancel?: (() => any) | undefined;
|
|
2003
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2004
|
+
}>, {}, {}, {}, {}, {
|
|
2005
|
+
width: string | number;
|
|
2006
|
+
showConfirmButton: boolean;
|
|
2007
|
+
showCancelButton: boolean;
|
|
2008
|
+
cancelButtonText: string;
|
|
2009
|
+
confirmButtonText: string;
|
|
2010
|
+
showClose: boolean;
|
|
2011
|
+
borderRadius: string | number;
|
|
2012
|
+
top: string | number;
|
|
2013
|
+
confirmButtonType: import('..').ComponentType;
|
|
2014
|
+
confirmButtonSize: import('..').ComponentSize;
|
|
2015
|
+
cancelButtonType: import('..').ComponentType;
|
|
2016
|
+
cancelButtonSize: import('..').ComponentSize;
|
|
2017
|
+
showButton: boolean;
|
|
2018
|
+
closeOnClickModal: boolean;
|
|
2019
|
+
closeOnPressEscape: boolean;
|
|
2020
|
+
closeOnCancelButton: boolean;
|
|
2021
|
+
closeOnClickCloseIcon: boolean;
|
|
2022
|
+
fullscreen: boolean;
|
|
2023
|
+
closeIconSize: string | number;
|
|
2024
|
+
closeIconColor: string;
|
|
2025
|
+
background: string;
|
|
2026
|
+
direction: "rtl" | "ltr" | "ttb" | "btt";
|
|
2027
|
+
}>;
|
|
2028
|
+
__isFragment?: never;
|
|
2029
|
+
__isTeleport?: never;
|
|
2030
|
+
__isSuspense?: never;
|
|
2031
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
2032
|
+
modelValue?: boolean;
|
|
2033
|
+
} & import('./drawer/props').DrawerProps> & Readonly<{
|
|
2034
|
+
onConfirm?: (() => any) | undefined;
|
|
2035
|
+
onClose?: (() => any) | undefined;
|
|
2036
|
+
onCancel?: (() => any) | undefined;
|
|
2037
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2038
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2039
|
+
confirm: () => any;
|
|
2040
|
+
close: () => any;
|
|
2041
|
+
cancel: () => any;
|
|
2042
|
+
"update:modelValue": (value: boolean) => any;
|
|
2043
|
+
}, string, {
|
|
2044
|
+
width: string | number;
|
|
2045
|
+
showConfirmButton: boolean;
|
|
2046
|
+
showCancelButton: boolean;
|
|
2047
|
+
cancelButtonText: string;
|
|
2048
|
+
confirmButtonText: string;
|
|
2049
|
+
showClose: boolean;
|
|
2050
|
+
borderRadius: string | number;
|
|
2051
|
+
top: string | number;
|
|
2052
|
+
confirmButtonType: import('..').ComponentType;
|
|
2053
|
+
confirmButtonSize: import('..').ComponentSize;
|
|
2054
|
+
cancelButtonType: import('..').ComponentType;
|
|
2055
|
+
cancelButtonSize: import('..').ComponentSize;
|
|
2056
|
+
showButton: boolean;
|
|
2057
|
+
closeOnClickModal: boolean;
|
|
2058
|
+
closeOnPressEscape: boolean;
|
|
2059
|
+
closeOnCancelButton: boolean;
|
|
2060
|
+
closeOnClickCloseIcon: boolean;
|
|
2061
|
+
fullscreen: boolean;
|
|
2062
|
+
closeIconSize: string | number;
|
|
2063
|
+
closeIconColor: string;
|
|
2064
|
+
background: string;
|
|
2065
|
+
direction: "rtl" | "ltr" | "ttb" | "btt";
|
|
2066
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
2067
|
+
$slots: {
|
|
2068
|
+
header?(_: {}): any;
|
|
2069
|
+
default?(_: {}): any;
|
|
2070
|
+
footer?(_: {}): any;
|
|
2071
|
+
};
|
|
2072
|
+
});
|
|
2073
|
+
ShowModal: import('vue').DefineComponent<{
|
|
2074
|
+
modelValue?: boolean;
|
|
2075
|
+
} & Pick<import('./dialog/props').DialogProps, "width" | "showConfirmButton" | "showCancelButton" | "cancelButtonText" | "confirmButtonText" | "showClose" | "title"> & {
|
|
2076
|
+
content?: string | import('vue').VNode | Function;
|
|
2077
|
+
resolve?: Function;
|
|
2078
|
+
}, {
|
|
2079
|
+
visibleShowModal: import('@vueuse/core').PromisifyFn<(content?: string, title?: string, showCancelButton?: any, params?: import('./show-modal/props').ShowModalProps) => Promise<boolean>>;
|
|
2080
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2081
|
+
"update:modelValue": (value: boolean) => any;
|
|
2082
|
+
}, string, import('vue').PublicProps, Readonly<{
|
|
2083
|
+
modelValue?: boolean;
|
|
2084
|
+
} & Pick<import('./dialog/props').DialogProps, "width" | "showConfirmButton" | "showCancelButton" | "cancelButtonText" | "confirmButtonText" | "showClose" | "title"> & {
|
|
2085
|
+
content?: string | import('vue').VNode | Function;
|
|
2086
|
+
resolve?: Function;
|
|
2087
|
+
}> & Readonly<{
|
|
2088
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2089
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
2090
|
+
};
|
|
2091
|
+
export default _default;
|
|
2092
|
+
export { Select, Cell, CellGroup, Status, Container, Pagination, SearchInput, FilterItem, FilterGroup, Tabs, TooltipText, FileItem, FileList, CountDown, Dialog, Drawer, ShowModal };
|